• Resolved matejada

    (@matejada)


    Hello Support,

    In regards to product listing pages, where can I change the number of products per row/columns? I recall older versions had ‘catalog/pricing’ settings where I could edit the number.
    Any information or tip would be extremely appreciated!

    Thank you,

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi
    There is no such option in Jigoshop eCommerce – you can, however, manage the number of items per page in Jigoshop -> Settings -> Shopping.

    The distribution between columns/rows can be done via styling.

    Thread Starter matejada

    (@matejada)

    I see! Done. Thank you.

    Last question if I may. On Product Category Listing, I would like to edit/delete the text “Products in Category ‘whatever the category is'”
    Where can I found the code and edit accordingly?

    Thank you!

    The easiest way would be to override the “shop.php” template by creating a “jigoshop” catalog in your theme’s directory, and putting the new template there – it can also be done through manipulating the filter jigoshop\shop\content\title but it will work only for the title of the page.

    Thread Starter matejada

    (@matejada)

    great, I found the line of code, but I need to edit “$title” so I can display the category name and not the “Products in Category” part.

    Thank you,

    You can try `add_filter(‘jigoshop\shop\content\title’, function($title){
    return str_replace(array(‘Products in Category:’,'”‘), ”, $title);
    });` in your theme’s functions.php file.

    Thread Starter matejada

    (@matejada)

    It worked!

    Thank you so much for the attention and support!

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Product List Rows/Columns’ is closed to new replies.