Visual Composer Accordion element not working on phone or tablet

I’ve transferred a site over to X Pro, but am having a problem when trying to view the accordion element on a phone or tablet. Though it does work on the desktop/laptop.

On the previous theme, it worked fine.

https://adamsaunderscomposer.com/v2/discography

When clicking on the + on a phone or tablet, it doesn’t open up that section.

Thanks.

Hi @Moonworks,

Thanks for writing in.

It’s the conflict between the theme and visual composer’s native elements. The theme only supports the integration between visual composer and classic shortcodes. You may try this temporary workaround, please add this code to your theme options’ custom javascript.

jQuery( document ).ready( function( $ ) {

setTimeout ( function() {

$('.vc_tta-panel-heading a').off('touchstart touchend');

}, 750 );

} );

Thanks!

Thank you for the code, it worked great

You’re welcome!
Thanks for letting us know that it has worked for you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.