melriks
Forum Replies Created
-
Forum: Plugins
In reply to: [TubePress] Tubepress thumbnails not working, nothing happens on clickWhen I look at a debugging tool, I see this error “Unable to get property ‘title’ of undefined or null reference.” Can it be fixed?
Forum: Plugins
In reply to: [WP Bulletin Board] Email notificationsNothing. From what I could find, it couldn’t be done without a developer to modify the code.
Forum: Plugins
In reply to: [WP Bulletin Board] Email notificationsPlus 1. I need this functionality too.
Some download sources of this plug-in still have the original code to them where the slider doesn’t stay in the source position. Apply the code above to fix.
Forum: Fixing WordPress
In reply to: Visual Editor problem – adding text at bottomJust so you don’t feel all alone, I have the same problem. WordPress taking chunks of my page text and randomly adding them to the bottom of the page. Very annoying behavior.
I suspect it has to do with WordPress’ bug about adding <p> tags around everything. I find that WordPress grabs code it wants to rewrite and pastes chunks of it at the bottom. If I recode including <p> tags where you don’t necessarily need them, it doesn’t paste the random code at the bottom.
You can turn html back on by editing includes/content-permissions.php
Line 110 return apply_filters( ‘members_post_error_message’, $return );
apply_filters is converting your html code to special characters.
Change line 110 to return htmlspecialchars_decode($return);
and it will output text wrapped in html or process shortcodes.
I found the same. Any fix for this bug in an otherwise fantastic plug-in.