NP 7.8.1 vs WooCommerce 3.0.5

Posted in: Newspaper
Post count: 42

Hi, i have style problem with my shop after update woocommerce to 3.0.5
they make changes in php code and font(i use custom font function)\css from theme panel now working 50\50.
and they makes some css changes, that i can’t fixed (before all was Ok).
please, help me fix my shop.

Before update:
http://i.piccy.info/i9/2f78e13327365ddf557f4441e8e7af26/1493801454/65048/1142607/catalog_before.jpg
http://i.piccy.info/i9/14a2e3111ae84bd53ffe45740721c95c/1493801473/65726/1142607/upsells_before.jpg

After update:
http://i.piccy.info/i9/ef31298ec9b18620bc7a5754cba21a39/1493801497/67679/1142607/catalog_after.jpg
http://i.piccy.info/i9/77e656f60de2f71eebd2763abba2e128/1493801535/72149/1142607/upsells_after.jpg

Post count: 42

And theme haven’t enabled the new gallery features of Woocommerce 3 by default.

Post count: 42

About woocommerce gllery theme support:
fixed by manual adding in functions.php this code:
add_theme_support( ‘wc-product-gallery-zoom’ );
add_theme_support( ‘wc-product-gallery-lightbox’ );
add_theme_support( ‘wc-product-gallery-slider’ );

Post count: 42

Fixed catalog by adding to custom css this:
/* The Title of Woocommerce */
.woocommerce-loop-product__title{
line-height:20px!important;
}

Upsells products still dont’t know how to fix.

Post count: 22421

Thank you for posting the solutions. We appreciate your contribution to our community.
Have a nice day!

Post count: 42

Hope you can give me solution for upsells products…

Post count: 22421

Please provide an example so we can take a look. Provide a link so we can inspect the page.
Thanks.

Post count: 42
Post count: 22421

Hello,

You can fix the background color by using this custom css:
.woocommerce .product .products h2{
background-color:transparent;
color:black;
}

Thank you!

Post count: 42

It’s works, thank you! But how i can put bg back on upsell block title? he become transparent too…

Post count: 22421

Hello,

Please replace the previous code with this one:
.woocommerce .product .products ul h2{
background-color:transparent;
color:black;
}

Thanks

Post count: 42

MAGIC! RESOLVED!

Viewing 12 posts - 1 through 12 (of 12 total)
The forum ‘Newspaper’ is closed to new topics and replies.