Hover show description product
Paste code to function.php in Child theme
PHP
Paste code to function.php in Child theme
function action_woocommerce_after_shop_loop_item( ) {
global $product;
echo '<a href=" '.$product->get_permalink().' ">
<div class="showinfo">
'.$product->get_short_description().'<br/>
</div>
</a>';
};
add_action( 'woocommerce_after_shop_loop_item', 'action_woocommerce_after_shop_loop_item', 10, 0 );function action_woocommerce_after_shop_loop_item( ) {
global $product;
$canban = get_field('can_ban'); // EDIT ACF FEILD
echo '<a href=" '.$product->get_permalink().' ">
<div class="showinfo">
'.$product->get_name().' <br/>
<b>Giá tiền:</b> '.$product->get_price().' <br/>
'.$canban.'
</div>
</a>';
};
add_action( 'woocommerce_after_shop_loop_item', 'action_woocommerce_after_shop_loop_item', 10, 0 );CSS
.showinfo {
position: absolute;
bottom: 0px;
left:0px;
border-radius:5px;
padding: 15px;
width:100%;
height:50%;
z-index:22;
display:none;
background: #fff;
}
.product-small:hover .showinfo{
color: #000;
display:block;
cursor:pointer;
opaticy: 0.5;
font-size: 0.8rem!important;
}Last updated