@djwilko12 Hi mate, the functionality of infinite scrolling or pagination is determined by the theme you have installed on your website. Our Perfect Brands plugin does not control this feature as it is managed by the theme you’re using.
Best regards, QuadLayers Support Team.
Hi,
I understand that the scroll functionality is generally controlled by the theme rather than the Perfect Brands plugin. However, considering the popularity of the Flatsome theme, it would be highly beneficial for users if the plugin could be adapted to ensure compatibility. Many users, including myself, have raised similar concerns. Therefore, I kindly request that you consider investigating this matter. If possible, could you provide a code snippet or guidance to integrate the desired scrolling feature with the Flatsome theme? Your assistance would greatly help many of us in the community.
Thank you for your attention to this matter.
@djwilko12
Hi mate,
We would like to inform you that we have received your feature request and will promptly communicate it to our development team for their evaluation.
Best regards, QuadLayers Support Team.
Hi,
Thank you for your response. As many sites are now opting for infinite scroll, it would be greatly beneficial if the brand pages within your plugin supported this functionality. Given its widespread use, the implementation might not be overly complex and I believe many users, including myself, would greatly appreciate this enhancement.
@djwilko12 Ok mate, thanks for your contribution.
what is your estimated time for releasing this feature ?
@djwilko12 Hi mate, our development team has not yet evaluated the feasibility of implementing that feature. If we decide to incorporate it, it is planned to be released in a future version.
Best regards, QuadLayers Support Team.
I have the exact same issue
Would consider it not to be resolved
Im sure the is hundreds if not thousands more out there that has the same problem that has not yet noticed it perhaps
For the flatsome theme, all you need to do is filter the “flatsome_is_shop_archive”:
add_filter('flatsome_is_shop_archive', function($ret) {
if (is_tax('brand')) {
return true;
}
return $ret;
});
Note that your “brand” taxonomy might not just be called “brand” like mine, so that might need adjusting…