Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Update… removed the “All” option and the problem remains the same. Still able to reinstantiate the pagination by pressing any one of the filter resets.

    Using the product filter plugin on the shop page. Only 2 filters; categories and brands. 8 products per page. pagination standard.

    When using the product filter on the shop page, on first load the pagination is missing. The pagination comes back when the filter is cleared.. ie. select ‘all’ on both filters and press submit. Also comes back by clearing either filter (they are both on “All” by default.

    Seems that the initial page load may default the filter(s) to some value that causes the pagination to hide itself because there are no products found.

    Thread Starter rlincoln

    (@rlincoln)

    Ok.. solved my own problem.

    Adding the following code into your themes custom CSS will align the add to cart buttons on the product page while leaving other buttons in their correct position (including on other pages.)

    /* This code aligns the add to cart buttons; leaving other buttons untouched */

    .woocommerce ul.products li.product.woocommerce-page ul.products li.product {
    min-height: 315px;
    margin-bottom:10px;
    }
    #wrapper #content a {
    position: absolute;
    }
    .woocommerce ul.products li.product .button {
    bottom: 0;
    vertical-align:bottom;
    margin-bottom: 10px;
    }

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