This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: (URGENT) Bug search o error

#28180
Ernest MarcinkoErnest Marcinko
Keymaster

Try this as the advanced content field:

[<span class='asp_woo_price'><b>PRECIO:</b> {_price}</span>]
[ | <b>Disponibilidad:</b><span class='asp_woo_stock_{_stock_status}'></span>]

..and this custom CSS for the content and color:

.asp_woo_stock_instock::after {
	content: "In Stock";
	background: #29a617 ;
        font-weight: 600;
	color: white;
}

.asp_woo_stock_outofstock::after {
	content: "No Stock";
	background: red;
        font-weight: 600;
	color: white;
}