mrsolutions
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Author cannot Edit Image TitleSame problem here, a bump for this issue.
Forum: Fixing WordPress
In reply to: I can’t see text when editing pages and posts – html editor disabledI am having a similar issue.
When editing a post the text in the visual editor is often white (so invisible unless selected).
Then after switching between visual and HTML, the visual just shows HTML.
– Visual editor is enabled
– Still persists with all plugins disabled
– Still persists with the wordpress default theme.I’d also be interested in this.
Forum: Fixing WordPress
In reply to: remove ‘[]’ shortcode text in excerptsI had a look into this. In normal circumstances I think wordpress does it automatically. You should be able to find this code in the formatting.php file or another file (can’t remember which).
$text = str_replace(']]>', ']]>', $text); $text = strip_tags($text, $allowed_tags);However, a plugin may interfere, such as a plugin for advanced excerpts or any plugin involved in creating an excerpt.
Therefore make sure that code is in there. So you may want to study the plugin’s code and add that code to it. I added the following and it got rid of most unwanted code in excerpts:
$text = str_replace(']]>', ']]>', $text); $text = preg_replace('@.*?</script>@si', '', $text); //remove javascript $text = preg_replace('@<![\s\S]*?--[ \t\n\r]*>@', '', $text); // remove CDATA $text = strip_tags($text, $allowed_tags); $text = preg_replace('<code>\[[^\]]*\]</code>','',$text); //remove anything in square bracketsForum: Fixing WordPress
In reply to: remove ‘[]’ shortcode text in excerptsalso would like to know how to do this
Forum: Plugins
In reply to: Any new plugin requests?@kaethy
Try this: http://www.gdstarrating.com/Forum: Plugins
In reply to: Role Manager and WordPress 2.8 – Is plugin now obsolete?What you are making sounds good.
The problem with role manager is that it is not being updated, and will likely start to break down. For some people its already not working in 2.8. It is fine for me though so far.
One problem is that removing the Role Manager plugin is difficult because it keeps the old rules, and once removed you can’t edit them without the plugin. If it becomes buggy this could be a real pain.
So for you plugin if it could work with a previous Role Manager setup that would be handy.
Otherwise your plugin looks very good.
Fixed!
I found it was DomTabs script causing the problem.Forum: Everything else WordPress
In reply to: template body disappears in comments pageSame problem:
http://ww.wp.xz.cn/support/topic/297926?replies=1I notice yours works now – how did you fix it?
Forum: Fixing WordPress
In reply to: #respond & #comments disapear all content. Urgent, please helpSame problem:
http://ww.wp.xz.cn/support/topic/297926?replies=1Forum: Fixing WordPress
In reply to: Not showing full article after clicking ‘Read More’Same problem:
http://ww.wp.xz.cn/support/topic/297926?replies=1Forum: Plugins
In reply to: [Plugin: WP Smush.it] Smush.it error: Failed to create a temp dirSeems to be working again now
Forum: Fixing WordPress
In reply to: Edit Posts Screen Not Displaying Correctly (edit.php)Thanks, it was an outdated SEO Title Tag plugin that was causing it. Upgraded and now fixed.
Forum: Plugins
In reply to: [Plugin: WP Smush.it] Smush.it error: Failed to create a temp dirI asked my host about the problem, they looked into it and concluded:
Your image is being passed for processing to a php script at smushit.com. It is that script that is returning “could not create temp dir” and failing. Therefore, there isn’t anything you can do site/server wise to fix this issue. You will have to contact smush.it to get them to fix their script so that it can smush your images.
Forum: Plugins
In reply to: Set Max File/Image Size (kb) for image uploads for users other than admin?anyone?