Dear Team,
I bought this plugin because of accordion feature, but it doesn’t seem to work?
the menu is created as a widget, and checkbox “Activate accordion menu” is activated.
So can you please help me?
Thanks in advance
Serge
We use cookies to allow login, checkout, and analyze site traffic. By continuing to use this website, you consent to the use of cookies in accordance with our cookie policy.
More info: I have just deactivated Autooptimizer, now accordion appears logged in, but unfortunately not anonymous
Hi Serguei,
The accordion appears to be working, however the icons are not showing. Looks like something in your theme or one of your plugins is preventing the Dashicons style sheet from loading during the footer’s late style init functionality.
If you add the following filter to your active theme’s functions.php file, it will add the style sheet in the header which will likely clear up the issue:
Have a great weekend!
Mat Lipe
Thanx Mat! I really had this script in functions.php file:
function mw_dequeue_dashicon() {
if (is_user_logged_in()) {
return;
}
wp_deregister_style(‘dashicons’);
}
add_action(‘wp_enqueue_scripts’, ‘mw_dequeue_dashicon’);
Now it seems to work!