Conflict with Cozmoslabs
-
Hi Jeff, I’m back again. I have finally had time to give Cozmoslabs solution a try, but it hasn’t fixed the issue. I’m interested to know if you think this is a fix or have a solution. Here’s what they suggested. I followed these instructions. No luck. (I have a support request with Cozmoslabs.)
Instructions
You can remove that notification from Profile Builder WYSIWYG editor by using this mini-plugin.
The download counter will still work on your backend classical editor.- Create an empty plugin like this: https://gist.github.com/sareiodata/76f701e01db6685829db
- Add the following code to the end of it:
- Install this plugin via FTP (copy it inside wp-content/plugins) or create a zip archive with it and install it via the WordPress plugin upload functionality
add_filter(‘mce_external_plugins’, ‘remove_simple_download_counter_add_mce_plugin’, 100); function remove_simple_download_counter_add_mce_plugin($plugins){ global $wppb_shortcode_on_front; if ( $wppb_shortcode_on_front ){ if (is_array($plugins) && isset($plugins[‘sdc_download’])){ unset($plugins[‘sdc_download’]); } } return $plugins; }
The page I need help with: [log in to see the link]
- The topic ‘Conflict with Cozmoslabs’ is closed to new replies.