Home › Forums › WoodMart support forum › How to create or edit hover templates… › Reply To: How to create or edit hover templates…
March 27, 2018 at 12:13 pm
#49179
Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file to do this
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_gzd_template_single_legal_info', 20 );
And this part of the custom CSS
.woodmart-hover-base.has-stars.purchasable.product .product-rating-price{
height: inherit;
line-height: inherit;
overflow: visible;
}
.woodmart-hover-base.has-stars.purchasable.product .wrapp-product-price{
height: inherit;
transform: translateY(0px) translateZ(0) !important;
-webkit-transform: translateY(0px) translateZ(0) !important;
display: block;
}
.products .wc-gzd-additional-info{
margin: 0;
}