Hello There,
Is this, http://prntscr.com/kzn1df, your shop page?
For image opacity, please update this code:
.woocommerce li.product .entry-featured:hover img {
opacity: 0.30;
}
And make use of this code instead:
.woocommerce li.product .entry-featured:hover img,
.woocommerce li.product-category.product:hover img {
opacity: 0.30;
}
For the titles, please replace this:
.woocommerce li.product .entry-header h3,
.woocommerce li.product .entry-header h3 a {
text-transform: capitalize;
}
.woocommerce.single-product .product_title.entry-title {
text-transform: uppercase;
}
By using this code instead:
.woocommerce li.product .entry-header h3,
.woocommerce li.product .entry-header h3 a,
.woocommerce .woocommerce-loop-category__title {
text-transform: capitalize;
letter-spacing: 0px;
}
.woocommerce.single-product .product_title.entry-title {
text-transform: uppercase;
letter-spacing: 0px;
}
Also is there a setting to be able to let the category pages load more than 4 products? Currently it only displays 4 and then has the option to go to the next page. Would like it to display all the products.
Please go to X > Theme Options > WooCommerce > Shop and set the “Posts per page” to 12 or more.
We would loved to know if this has work for you. Thank you.