Social Settings tab not working
-
Morning, there is an error into the aioseop_module.js that breaks tabs into the page when you activate the social plugin.
Line 341 and 342:
jQuery(‘.aioseop_header_tab[href!=#’+stringref+’]’).removeClass(‘active’);
jQuery(‘.aioseop_header_tab[href=#’ + stringref+’]’).addClass(‘active’);It’s a conflict with the new version of jQuery.
It’s possible to fix it like that:
jQuery(‘.aioseop_header_tab[href!=”#’+stringref+'”]’).removeClass(‘active’);
jQuery(‘.aioseop_header_tab[href=”#’ + stringref+'”]’).addClass(‘active’);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Social Settings tab not working’ is closed to new replies.