Is it possible to change the description a.k.a the bio on each blog individually? For example, I have three blogs, one I would like to say something different to the first. To be clear this is the text I am talking about
I’d like to have something similar where it would allow for .Site.description to be set for every site. Currently it uses “follow @username on Micro.blog”.
This is possible with a custom theme to change the config, but I agree it really should be easier to change. I was thinking maybe if we had a couple plug-ins that changed this that would be a good solution.
I’ll work on this and also write up some documentation for changing it yourself.
I should explain a little more, because I realized it’s not obvious what I meant when I said “custom theme”. Micro.blog can essentially merge multiple themes together, so you can make a custom theme or plug-in that only overrides one thing from your main theme.
Here are the basic steps. Will write up more documentation later:
Click Design → Edit Custom Themes → New Plug-in.
Give it a name like “Custom about text”, the URL can be blank.
Create a new template in the plug-in named “config.json”.
For the content of the template, use something like this:
{
"params": {
"description": "This is new text to use instead of the 'follow me' text.",
"itunes_description": "This is the 'about me' text. Yes, it's named badly."
}
}