When I have enabled the “Subscriptions” plugin I get a weird view of “This topic has subscriptions” when replying on posts. See screen shot below.
Support Forum
Latest of everything. Tried changing cssonly theme to default theme, but again the same problem.
Apologies – I can actually replicate this… Looks like the subscriptions message strip did not get updated to take into account not using the new integrated editor toolbar option. It is fine with the toolbar option turned on.
Shouldn’t be too hard to sort out. I will open a ticket now and look into it.
I can give you a code fix if you are up to make a small edit to a core code file
Ok – the file is /simple-press/forum/content/forms/sp-form-components.php
The function you need to find is called sp_post_editor_smileys_options()
When you have the function scroll down to the end of it to locate this section of code:
if ($display['smileys'] || $display['options']) {
$out.= $smileysBox.$optionsBox;
$out.= '</div>';
}
and add the new line as shown below:
if ($display['smileys'] || $display['options']) {
$out.= $smileysBox.$optionsBox;
$out.= sp_InsertBreak('echo=0');
$out.= '</div>';
}
and that should do the trick

