Version:3.7, having issue.
I replaced Version:3.7 with Version 3.6.2 things are back to normal all functions working well.
Hi @marahmanb2b could you drop us a message via https://premmerce.com/contact-us/ so we can help troubleshoot please
I have the same issue, the moment I updated to v3.7
Could you please advice for a solution?
I had same issue, here’s how I fixed it.
My register sidebar function had “aside” blocks in before and after widget:
register_sidebar(
array(
'id' => 'products_filter',
'name' => 'Filter',
'description' => 'A place for filters.',
'before_widget' => '<aside id="%1$s" class="%2$s">',
'after_widget' => '</aside>',
'before_title' => '<header><h4>',
'after_title' => '</h4></header>'
)
);
What I made, is just changed aside blocks to div and everything is working now:
register_sidebar(
array(
'id' => 'products_filter',
'name' => 'Filter',
'description' => 'A place for filters.',
'before_widget' => '<div id="%1$s" class="%2$s">',
'after_widget' => '</div>',
'before_title' => '<div>',
'after_title' => '</div>'
)
);
Hi @komarovski ,
Thank you very much for letting us know about this, and for providing your fix regarding this issue. Indeed, it looks like this is due to the fact that Flatsome still uses the old widget system for WordPress.
In such cases you may proceed in using the available shortcodes instead:
[premmerce_filter] – for showing main Premmerce Filter (Product attributes filter)
[premmerce_active_filters] – for showing main Premmerce active filters (Product attributes active filters)
Furthermore, if there’s a way to utilize the new WooCommerce widget system, please proceed in doing so and reinsert the new Product filter blocks.
Hi Mark
I tried Widgets Custom HTML & Blocks but no result
http://prntscr.com/8Y5zGh4Lg942
-
This reply was modified 3 years, 8 months ago by
marahman.b2b.
Hello @marahmanb2b ,
It seems that I could not view the screenshot that you provided. I’ll be glad to further assist you with this, could you please send us an email in our contact form? – https://premmerce.com/contact-us/
I’ll look forward to help you with this.