Accordion on my Issues page is static – it doesn’t work like on your demo site.


1. Go to includes/help/tb_enqueue.php and find these lines:

 

if ($postTemplate == 'page-the-issues.php') { 
 wp_register_script('accordion', TEMPLATE_DIRECTORY . '/js/jquery.elegantAccordion.js', array('jquery'), '0.3', false);
 wp_enqueue_script('accordion');
 }

 

2. change them to read

 

if ($postTemplate == 'page-the-issues.php') { 
 wp_register_script('accordion2', TEMPLATE_DIRECTORY . '/js/jquery.elegantAccordion.js', array('jquery'), '0.3', false);
 wp_enqueue_script('accordion2');
 }