Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello,

    What is the content of your Shop (Drug test consulting) page? It should be empty.

    Thread Starter EvolveWorkforce

    (@evolveworkforce)

    It’s just a very basic sales page with a listing of my products. The short code I have used to display my products is:

    [featured_products per_page=”12″ columns=”4″ pagination=”yes”]

    Also, I believe all of my products are set as “featured”. Each is a digital file. I hope that helps.

    Hi I have a similar issue. I have per_page = 18, coloms = 3 and a template loop-shop in my theme directory. I noticed the last 6 products of the current page are always listed as 6 first in the next page. The result is the same when i changed per_page to 15 or 12.


    https://malishopping.com/shop/

    Note : the result is the same if I delete the loop-shop file in my theme/jigoshop/ dir.

    I think the issue is in Jigoshop Settings / Catalog & Pricing / Sorting via Product Post Order. To display my Products ID for check, I added this code to loop-shop.php:

    $my_products_id = array();
    while ( have_posts() ) : the_post();
    array_push($my_products_id, $post->ID);
    ...
    endwhile;

    and this to the head of products listing area (in the same file) :

    ...
    $content .= '<div><b>' . implode (', ', $my_products_id) . '</b></div>
    ...

    I noticed the products are just listed randomly (not ASC nor DESC) and some POST ID are repeated in the next page. When I change Sort products in catalog by to Post Date, everything is just fine. Product ID are correctly sorted ASC or DESC, depending on which order I choose.

    I guess sorting via Product Post Order means Post ID, which must be like sorting via Post Date (the most recent product is the one with the highest ID or the most recent date). So sorting via Product Post Order must have the same effect like sorting via Post Date for the same order (ASC or DESC). But for some reason, sorting via Product Post Order does not work.

    EvolveWorkforce: Could you try changing the theme and see if the issue persists?

    ibou65: I can’t reproduce your problem, the products are listed just fine. Could you give us some example?

    Thread Starter EvolveWorkforce

    (@evolveworkforce)

    I ended up sorting my catalog by post date and the duplication issue went away. So I’ll just sort them by that going forward. Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Duplicate Product Listings’ is closed to new replies.