Answer the question
In order to leave comments, you need to log in
How to make product status color on category page?
Hello. Made a product status output (from the admin panel) on the category page. Tell me how to make the product with the status "In stock" green, "Out of stock" - red, "On order" blue?
I thought of assigning it to css, but in this case it becomes green for all statuses.
}
.stock-status {
color: green;
}
Answer the question
In order to leave comments, you need to log in
$(function () {
if($('.text').text('В наличии'))
$(this).css('color', 'green');
else
$(this).css('color', 'red');
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question