Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Guru Team

    (@guruteam)

    We working on the Pro version of the plugin and most likely this feature, as well possibility to show certain products will be included in it. But if you familiar with filters, we can add it in Categories REST API and you can exclude unwanted categories from child theme with custom code (just specifying an array with categories ID’s)

    Plugin Author Guru Team

    (@guruteam)

    Filter name is bftow_get_product_categories. $terms is an array of terms objects. Here’s an example:
    add_filter(‘bftow_get_product_categories’, function($terms){
    unset($terms[21]);
    //where 21 is the ID of the category to be excluded
    return $terms;
    });

    Thread Starter pindroide

    (@pindroide)

    Thank you very much for your help

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘show some categories’ is closed to new replies.