• Hello,

    Example: search for ‘gold’ or “red” in search box.

    The results layout should be a 3×3 grid. It’s currently displaying one row of three and a row of two.

    I have disabled the caching plugin FlyingPress but no difference.

    Thanks in advance.

    Jerome @ Wilde Ones`

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author YummyWP

    (@yummy-wp)

    Hi,

    This issue relates to your theme.

    Probably you need to add a filter to your functions.php file (if you have a child theme you should add the code in the child’s theme function.php file)

    Code example for setting 12 products?per page:

    add_filter( ‘loop_shop_per_page’, ‘ysm_loop_shop_per_page’, 9999 );
    /**
    * Return the number of products you want to show per page.
    */
    function ysm_loop_shop_per_page( $cols ) {
    return 12;
    }

    Thread Starter Jerome

    (@wildeones)

    Hi YummyWP,

    Thanks for the tip but the last time I touched the functions.php the whole site crashed as I don’t have the expertise to alter code. I was hoping there might be a CSS snippet I could add instead.

    Best,

    J

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Search results layout wrong’ is closed to new replies.