Add text below products on shop page

Hi,

I tried the js from this page https://theme.co/apex/forums/topic/displaying-page-text-below-the-woocommerce-shop-page-instead-of-above-products/
but it dint work.

Any ideas?

Thanks,

Brent

Hello Brent,

Thanks for writing in!

The JS code did not work for you because it is not specifically for your site. Please have it updated and use this instead:

jQuery(function() {
  jQuery( ".archive .page-description" ).insertAfter( ".products.cols-4" );
});

We would loved to know if this has work for you. Thank you.

Hi Rue,

thatt worked great. thanks.

I set the shop page to 100% with to add a parallax design element but am unable to add any padding to the products now.

I used the code for https://theme.co/apex/forums/topic/woocommerce-shop-page-full-width/

Any ideas?

Thanks

Brent

Hi Brent,

To add padding to your products, you can add this in Theme Options > CSS

.woocommerce ul.products {
    padding: 0 50px;
}

.woocommerce-ordering {
      margin-left:50px;
} 

.woocommerce-result-count {
    margin-right:50px;
}

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.