No search results were found in Documentation!
🙂
here is an improved shim (1.0 Beta 3): https://forum.tagdiv.com/files_for_users/td-visual-composer-shim.zip
– fixed an issue with column calculation on 1/1 full width rows
– added vc_separator shortcode
– added vc_column_text shortcode
– added vc_raw_html shortcode
the plugin it’s still a bit messy but after we finish the new Newspaper I will make it much better. All the shortcodes that are supported now are with minimal support 🙁 (ex: no designer tab support yet / no custom visual composer css support).
@Chris … do you want a beta version of Newspaper? Let me know and I will sent it via email.
Hi Chris, the original code does not work for the shim style because I’m using another id for the css (td-vc-composer-css-shim)
Here is the code that will remove the css form js composer and also from my shim on single pages.
function dequeue_visual_composer_css() {
if (is_single()) {
wp_dequeue_style('js_composer_front');
wp_dequeue_style('td-vc-composer-css-shim');
}
}
add_action('wp_enqueue_scripts', 'dequeue_visual_composer_css', 1003);
Hi all,
I’m working to make the visual composer shim work better and it will be released here in 1-2 days.
@mrmorrison @mattrock – we had searched for the slowdown issue for almost one month now. It appears sometimes on bigger sites but we where unable to reproduce it here. Chirs S helped me by testing the visual composer shim and it looks like it works…. so the slow down can be from visual composer.
I’ve searched a lot in visual composer for what may cause this but it looks like I have to look deeper. The plugin is damn HUGE, it’s bigger than our themes and it’s not our code so it’s hard to debug. Especially that we did not find anything unusual on the callstack traces / memory traces.
Chris thanks a lot for the feedback and help, I will analyze the stats from the email and I will get back to you.
Hi Christopher,
the jquery from google apis is loaded from the speedbooster plugin. Some time ago I changed the jquery path to use is_ssl() from wordpress http://screencast.com/t/RDuiivrSn0wr . Do you have the latest version? or is_ssl is not reliable?
In the next update I will change the html5shim to is_ssl and also bump up the jquery version to wordpress 4’s one.