ProdigyMike
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Builder by WooRockets.com] Version 2.4.10 breaks the columnsAwesome!
Thanks Tony, I totally love the plugin and plan to include it in my themes. Needless to say, I really appreciate all that WooRockets has done and continues to do regarding this fine piece of work.
Forum: Plugins
In reply to: [Page Builder by WooRockets.com] Version 2.4.10 breaks the columnsI can confirm this issue within my installation as well. Latest WP and the 2.4.10 update.
Forum: Plugins
In reply to: [Page Builder by WooRockets.com] Video not workingAdam,
Thanks for your prompt support. I have narrowed down the issued to be a piece of code I’m using. Specifically, it’s to add shortcodes into the editor.
This line (from shortcode editor plugin) creates the issue:
add_filter('widget_text', 'webtreats_formatter', 99);
The function called:
function webtreats_formatter($content) { $new_content = ''; /* Matches the contents and the open and closing tags */ $pattern_full = '{(\[raw\].*?\[/raw\])}is'; /* Matches just the contents */ $pattern_contents = '{\[raw\](.*?)\[/raw\]}is'; /* Divide content into pieces */ $pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE); /* Loop over pieces */ foreach ($pieces as $piece) { /* Look for presence of the shortcode */ if (preg_match($pattern_contents, $piece, $matches)) { /* Append to content (no formatting) */ $new_content .= $matches[1]; } else { /* Format and append to content */ $new_content .= wptexturize(wpautop($piece)); } } return $new_content; }
Just wanted to paste this incase you run across this in the future.
Forum: Plugins
In reply to: [Page Builder by WooRockets.com] Video not workingSure, https://testing.m-wurx.com/video-error/
It appears to be an issue with the theme used – bones starter theme for WP. This works on the latest default WP theme, Twenty Fifteen.
Forum: Plugins
In reply to: [Bulk Resize Media] [Plugin: Bulk Resize Media] "Search Images" doesn't workI encountered the same thing just now with this plugin. Maybe needs an update I guess. Thanks @talatorre , will give your solution a try now.