Paul Webb

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Images Sizes #14939
    Paul Webb
    Member

    How can I force it to use square images? These are now standard for Facebook and Google Ads?
    My images are currently 500 x 500

    in reply to: Number of products shown per page #4206
    Paul Webb
    Member

    Add the following to functions.php in themes folder, change $cols to number of products you want to show on each page

    add_filter( ‘loop_shop_per_page’, ‘new_loop_shop_per_page’, 20 );

    function new_loop_shop_per_page( $cols ) {
    // $cols contains the current number of products per page based on the value stored on Options -> Reading
    // Return the number of products you wanna show per page.
    $cols = 9;
    return $cols;
    }

    in reply to: Images Sizes #4182
    Paul Webb
    Member

    I am also having this problem and would like to change aspect and size of category images.

Viewing 3 posts - 1 through 3 (of 3 total)