Hi there,
Since updating to the latest 2.0.8, our accordian which we've programmed to the backend of our child theme is not working.
Is there a bug? Solution and workaround would be helpful.
I've attached 2 images for you to view, one is the backend code and the other is the accordian after the update.
Thanks!
Can you please check the accordions on wordpress default posts and pages ?
Check js errors in your site :
https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors
Hi Alex,
Yes, I was able to create the accordian on a wordpress default pages and posts.
And javascript diagnosis shows everything is fine. No errors.
Please advise.
Thanks!
So that means that the Visual composer is not loading its scripts on the course page .
This is an issue as of now with the visual composer and we ahev already contacted the VC about this .
at course page we have already called main scripts of VC forcefuly to support VC but there are still many scripts that are needed to be called .
So please compare the course page adn the normal page (where the tans are working ) for the VC scripts that are loading in which tabs are working and load it manually on the course page .
You can do it like this :
add_action('wp_head','custom_fx');
function custom_fx(){
echo "<link rel='stylesheet' id='pmpro_frontend-css' href='yoursoite.com/wp-content/plugins/js_composer/css/frontend.css' type='text/css' media='screen' />";
}