Hot Deals tweak help needed

Hello,



On my site i want hot deals to show without name or price below, were to remove these?

I have looked everywhere but can't find how to do this.

Please help…

Yo Roderick1,



The way you can remove these is like so (if you want a real quick solution I have added a quick CSS line below):




  1. First you need to know which Products Template you are using - enable the Design Mode in the template.

    So go to Design → Design Mode (I am not sure of the Dutch equivalent is but the menu position will be the same) in the Admin Area.








  2. Once you get to this page, enable Customization Mode by clicking on the Enable Customisation Mode Button. Once that is done click on the View Storefront Button above it to be taken to your store in Admin mode [kinda].


  3. You’ll get taken to your home page and there’ll be a tiny icon like so near the top left of the page - if there is more then one then click on the nearest to the block content (i.e after the logo and menu on the page.)




  4. Find the first line that has product_list templates in it and go to the next line under that - this will be you’re editable template. After all of that, go to the file (it’ll be in the skins/customer/ directory) and add a hook to the file name you found previously - I’ll assume you know how hooks work.


  5. Add a duplicate of that file into the hook file you create. In the hook file look for {$product.product|unescape} (the title) and {$smarty.capture.$price} (price) and remove them.



    That usually does the trick.



    ALTERNATIVE (Place this into a css file that you are using):


<br />
.compact .product-title {<br />
display: none;<br />
}<br />

```<br />
<br />
However this will disable any tables which are using this code in every page that the css  so it's better to use the above solution instead.

You can also add .hot-deals-list ,deals-title {display:none} and you only hide the titles in that div . But you will have the space below as problem to solve. Try with margin-top :10px at the .hot-deals-item.