This topic has 2 replies, 2 voices, and was last updated 3 years ago ago by Olga Barlow
Hello, can a word be displayed in product categories? example screen
Hello,
Only by additional customization.
Add the below code to child theme fucntions.php
add_action( 'woocommerce_after_shop_loop_item_title', 'custom_show_stock_shop', 10 );
function custom_show_stock_shop() {
global $product;
echo wc_get_stock_html( $product );
}
and the below code to child theme style.css
.content-product .product-details .stock {
display: block;
position: relative;
transform: none;
left: auto;
top: auto;
}
Regards
Tagged: categories, conclusion, persuasive, product, templates, woocommerce, wordpress
You must be logged in to reply to this topic.Log in/Sign up