Viewing 8 replies - 1 through 8 (of 8 total)
  • Jeroen

    (@jeronimodesign)

    I am having the same problem, WooCommerce Product Navigation does not respect the (manually set…) order of the products in WooCommerce.

    Mariette

    (@mariette-jackson)

    And me! Would really appreciate a solution – then the plugin would be great.

    Same here.

    And when i click next and then on the next product’s page click the previous button it often does not take me back to where i came from. And the other way around.

    Suggestion for a better experience: keep the next / previous navigation to products within the same category. Otherwise visitors may be “shocked” what happened coming from T-Shirts to Watches or so.

    Thank you for your work!

    I had to leave the plugin, and I’m sorry

    I am having the same issue. The next button takes me to the previous product. Also, is there any way to set it so that the products are in the same category?
    For example right now if I am in category 1, when I press next/previous, I get taken to products in category 2 or 3.
    Hoping to get this problem solved soon!
    Thanks.

    DITTO derekryans, specially concerning products in the same category. I will love this plugin when it’s fixed!

    Anyone working on this issue??
    Have the same problem, seems like this plugin navigates in some random way. Why call it “previous” and “next” if it doesn’t go there?
    Hope someone will be able to fix this. If it works properly, as it should be, it will be a very nice plugin.

    Hello everyone,
    I had the same problem of navigation between categories while it is necessary to limit the navigation to just inside the specific category…

    The solution for this is on the file plugins/woocommerce-product-navigation/woocommerce-product-navigation.php on lines 46-47:

    replace the following:

    $previous_link = get_permalink(get_adjacent_post(false,'',false));
    		$next_link = get_permalink(get_adjacent_post(false,'',true));

    to:

    $previous_link = get_permalink(get_adjacent_post(true,'',false, 'product_cat'));
    		$next_link = get_permalink(get_adjacent_post(true,'',true, 'product_cat'));

    This is also a recommendation for the plugin author to add this if another version ever comes out 🙂

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Nav not working properly.’ is closed to new replies.