HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
ButtonBar v1.1 released!
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!
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!
Tagged:
3
Comments
There was an error rendering this rich post.
Vanilla Forums COO [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 COO [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 COO [GitHub, Twitter, About.me]
Hopefully whatever solution works for DirtyDog with 2.0.18 will work for me with 2.0.17.
Vanilla Forums COO [GitHub, Twitter, About.me]
There was an error rendering this rich post.
assuming camping-usa.com is your site ? have you got beta code I will register and test if you want
There was an error rendering this rich post.
$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.