Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #686135

    Could you please let me know how I change the products that come up in the ‘Previous’ and ‘Next’ arrows?
    For some products they are appropriate, for others they are completely inappropriate ‘Next’ suggestions.
    Is there a way to make them another product from the same category?

    Thanks,
    Sally

    #686746

    Hi Sally,

    Could you post a link to the site in question so that we can take a closer look please?

    Regards,
    Rikard

    #687193

    Hi Rikard,

    We are going live with this site next week – so I was hoping to get it sorted before then!
    I have realised that the products that are suggested in the arrows on the sides of the screen point towards the next/previous product listed in the products on the back end. What I’d really like to do is have them suggest another product in the same category, is this possible?

    Thanks,

    Saly

    #688669

    Hi,

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

    add_filter('avia_post_nav_settings','avia_same_category_filter', 10, 1);
    function avia_same_category_filter($settings)
    {
    $settings['same_category'] = true;
    return $settings;
    }

    Best regards,
    Yigit

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