Hi,
Follow my steps here to resolve your issue –
Step-1 : Open your plugin directory and then now open responsive-accordion-and-collapse plugin folder.
Step-2 : Now follow this directory path – responsive-accordion-and-collapse -> lib -> installation ,
Step-3 : you will see a file name is installation.php , open it on any editor.
Step-4 : No go to line number- 15 and find this function there –
function wpsm_ac_front_script() {
wp_enqueue_script('jquery');
//font awesome css
wp_enqueue_style('wpsm_ac-font-awesome-front', wpshopmart_accordion_directory_url.'css/font-awesome/css/font-awesome.min.css');
wp_enqueue_style('wpsm_ac_bootstrap-front', wpshopmart_accordion_directory_url.'css/bootstrap-front.css');
wp_enqueue_script( 'wpsm_ac_bootstrap-js-front', wpshopmart_accordion_directory_url.'js/bootstrap.js', array('jquery'), '', true );
wp_enqueue_script( 'call_ac-js-front', wpshopmart_accordion_directory_url.'js/accordion.js', array(), '', true );
}
Step-4 : replace above code with it –
function wpsm_ac_front_script() {
wp_enqueue_script('jquery');
//font awesome css
wp_enqueue_style('wpsm_ac-font-awesome-front', wpshopmart_accordion_directory_url.'css/font-awesome/css/font-awesome.min.css');
wp_enqueue_style('wpsm_ac_bootstrap-front', wpshopmart_accordion_directory_url.'css/bootstrap-front.css');
//wp_enqueue_script( 'wpsm_ac_bootstrap-js-front', wpshopmart_accordion_directory_url.'js/bootstrap.js', array('jquery'), '', true );
wp_enqueue_script( 'call_ac-js-front', wpshopmart_accordion_directory_url.'js/accordion.js', array(), '', true );
}
Step-5 : Save your code and then check your accordion.
Thanks