/* Accordion */
jQuery('.simnor-shortcode-toggle-active').each(function() {
jQuery(this).find('.simnor-shortcode-toggle-content').show();
});
jQuery('.simnor-shortcode-toggle .simnor-shortcode-toggle-heading').click(function() {
var toggle = jQuery(this).parent('.simnor-shortcode-toggle');
if(jQuery(this).parent('.simnor-shortcode-toggle').parent('div').hasClass('simnor-shortcode-accordion')) {
// toggle.parent('div').find('.simnor-shortcode-toggle').find('.simnor-shortcode-toggle-content:visible').slideUp();
toggle.parent('div').find('.simnor-shortcode-toggle-active').removeClass('simnor-shortcode-toggle-active');
toggle.toggleClass('simnor-shortcode-toggle-active');
toggle.find('.simnor-shortcode-toggle-content').slideToggle(500);
} else {
toggle.toggleClass('simnor-shortcode-toggle-active');
toggle.find('.simnor-shortcode-toggle-content').slideToggle(500);
}
});
Just comment out the one line shown above in the shortcodes.js file.