Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #692319

    In the margins of my single product pages there are left and right two arrows, which lead to upsell or related products. How to remove them (since they show the wrong products)?

    #692325

    Hi M!

    Please add following code to functions.php file in Appearance > Editor

    add_filter('avia_post_nav_entries','avia_remove_post_nav', 10, 1);
    function avia_remove_post_nav()
    {
    if(is_product()){
    return false;
    }
    }

    Cheers!
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.