How can I remove add to cart & details button from featured listing on my main page ?
here is my page :
http://www.carpetstories.com/
which templates should I edit?
How can I remove add to cart & details button from featured listing on my main page ?
here is my page :
http://www.carpetstories.com/
which templates should I edit?
You can play around with that button in admin/configuration/featured listing
It might be just that simple.
However, it looks like you have added a new class to a div called goods_back.
In admin/tools/developers tool kit, do a search for goods_back and locate those files, then you need to give a seperate id to those buttons as at the moment everything in your featured boxes has that class.
When you have done this create a stylesheet that will only affect the main page called...
index_home.css
Then add a statement for the new names.
.NEW_NAME {
display:none;
}
... or you could just edit your /includes/templates/1588/css/stylesheet.css to add the line:
#featuredProducts tr+tr {
display: none;
}