Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Having trouble with HTML as a default input...
I posted in a previous thread a few times and never got any assistance with this. Please help.
When editing Roles and Permissions, I show "Will see the Html formatter pre-selected" as checked. When users make additions to threads, BBCode is now the default and its creating a few issues with photos, quoting, hyperlinking etc.
Is there another way to select HTML as a default code? Is there a file I can edit somewhere?
Any assistance would be greatly appreciated.
Thanks!
When editing Roles and Permissions, I show "Will see the Html formatter pre-selected" as checked. When users make additions to threads, BBCode is now the default and its creating a few issues with photos, quoting, hyperlinking etc.
Is there another way to select HTML as a default code? Is there a file I can edit somewhere?
Any assistance would be greatly appreciated.
Thanks!
0
This discussion has been closed.
Comments
maybe it's too much, but ther is a field in the User table in the DB, that is 'DefaultFormatType', maybe you can update it for all your users to 'Html'
$DatabaseColumns['User']['DefaultFormatType'] = 'DefaultFormatType';
What should this line read to default everyone to HTML?
Am I looking in the right place?
every change should be done in the /conf folder
AFAIK, this line just explain the DB structure, it's not real data, so I stand in the same point than I did before
There is a settings.php file in the conf folder. I see a few default settings but none of them relate to default input.
you can try to add this to your /conf/settings.php:
$Configuration['DEFAULT_FORMAT_TYPE'] = 'Html';
Uncheck the bbcode addon on your settings page
(it'll either be BBcodeParser or BetterBBcode)
The problem was with the BBCode Parser extension. I disabled it and BBCode was removed. The default input went then went to text. I altered the setting.php file to make HTML the default and that fixed the problem. Apparently both had to be done at the same time, neither worked on their own.
Thanks to both of you.