New Install, different template from demo!
-
Hello guys. I make a fresh install in a subdomain but the homepage is different about products. How can I make it the same as your demo? I am talking about Latest Products about the Add to Cart button.
Hello,
We are glad to know that you considered using Basel for your web-site. I hope you will be happy with it.
You can choose this kind of products style in Theme Settings -> Shop -> Hover on product -> Standard button.
Kind Regards
Xtemos
Fine, thanks! Can you tell me how to hide stars from product grid because I cannot find it?
Also, can I customize the default widgets of filters in eshop grid?
look here:
https://i.gyazo.com/60102022544eb72c3c8fa42dfbfa4b87.png
I would like to remove price filter
Hi,
Try to add the following PHP code snippet to the child theme functions.php file to remove the price filter
add_filter( 'basel_use_custom_price_widget', '__return_false', 10 );
As for the stars on the products gird, use the following CSS code
div.product-grid-item .star-rating {
display: none;
}
Regards