• Resolved djwilko12

    (@djwilko12)


    Hi,

    we have enabled infinite scrolling on the site, but I realized that for the brand taxonomy, the infinite scroll is not enabled. Instead, I see standard pagination. Why is that?

    we use wooxommeerce and Flatsome theme.

    thanks

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Support jmatiasmastro

    (@jmatiasmastro)

    @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.

    Thread Starter djwilko12

    (@djwilko12)

    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.

    Plugin Support jmatiasmastro

    (@jmatiasmastro)

    @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.

    Thread Starter djwilko12

    (@djwilko12)

    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.

    Plugin Support jmatiasmastro

    (@jmatiasmastro)

    @djwilko12 Ok mate, thanks for your contribution.

    Thread Starter djwilko12

    (@djwilko12)

    what is your estimated time for releasing this feature ?

    Plugin Support jmatiasmastro

    (@jmatiasmastro)

    @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

    Mikk3lRo

    (@mikk3lro)

    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…

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Scroll not working for brands’ is closed to new replies.