Removing Best Deals/New Arrivals

Earl

New Member
Hello,

I only have a few products on my store and was wondering if it's possible to remove the categories Best Deals and New Arrivals from the homepage. I am using the Raphael theme.

Thanks,
Earl
 
E

Ekaterina Sayapina

Guest
Hello,

I only have a few products on my store and was wondering if it's possible to remove the categories Best Deals and New Arrivals from the homepage. I am using the Raphael theme.

Thanks,
Earl
Hello Earl,

Thanks for your question!

To hide the Best Deals product block from your Homepage, add this piece of code to your Customization => Head => CSS style:

.list-product.best-deals {
display: none;
}

To hide the New Arrivals product block from your Homepage, add this piece of code to your Customization => Head => CSS style:

.list-product.new-arrivals {
display: none;
}
 
Top