This discussion is related to the
Button Bar addon.
This is the first release of ButtonBar, which places several simple formatting buttons above the Post Reply and New Discussion textareas, allowing easy access to HTML, BBCode and Markdown formatting.
The bar automatically uses your forum's default InputFormatter for New Discussions, and the Format of the Discussion in question when used in the Post Reply window.
Please report any bugs. Thanks!
Comments
♥ I love Vanilla. VanillaSkins | on Twitter | on Facebook | Available Freelance | Take the Vanilla Test | Free Downloads
Vanilla Forums Senior Developer [GitHub, Twitter, About.me]
Also to clarify, the buttons aren't working either so I don't think its just a matter of missing images.
I don't want to be a dick about this because I understand the pain of upgrading, but I really can't be responsible for the plugin on an old version of Vanilla. I suggest upgrading to 2.0.18
Vanilla Forums Senior Developer [GitHub, Twitter, About.me]
You should see something like this:
You should also have an entry for 'buttonbar.js' in there, so check for that.
Vanilla Forums Senior Developer [GitHub, Twitter, About.me]
Hopefully whatever solution works for DirtyDog with 2.0.18 will work for me with 2.0.17.
Vanilla Forums Senior Developer [GitHub, Twitter, About.me]
♥ I love Vanilla. VanillaSkins | on Twitter | on Facebook | Available Freelance | Take the Vanilla Test | Free Downloads
assuming camping-usa.com is your site ? have you got beta code I will register and test if you want
♥ I love Vanilla. VanillaSkins | on Twitter | on Facebook | Available Freelance | Take the Vanilla Test | Free Downloads
$Configuration['Garden']['InputFormatter'] = 'BBCode';[Edit] Also it looks like discussions retain the format that was set when they were first posted (its a field in the database), so if you create a discussion while your forum's formatter is set to HTML and then change the formatter to BBCode, the button bar will still try to insert HTML tags for comments within that discussion. To fix this, you need to execute the following SQL query (backup your database first):
Update GDN_Discussion set Format='BBCode';Or Format='HTML' if switching from BBCode back to HTML.
Vanilla developer [GitHub, Twitter]
Vanilla Forums Senior Developer [GitHub, Twitter, About.me]
To change the format on all new discussions, THIS is the line you add (or change, see if it's not already there) to your config:
$Configuration['Garden']['InputFormatter'] = 'BBCode';Vanilla Forums Senior Developer [GitHub, Twitter, About.me]