Jump to content

How to remove the print button from product pages


Recommended Posts

Just simply go to your prestashop directory ( ftp ) and download product.tpl then remove this line:

 

<li class="print"><a href="javascript:print();">{l s='Print'}</a></li> and the "Print this page" will dissapear

  • Like 1
Link to comment
Share on other sites

go to the themes/Your_theme/product.tpl and look foor:

 

<ul id="usefull_link_block">
  {if $HOOK_EXTRA_LEFT}{$HOOK_EXTRA_LEFT}{/if}
  <li class="print"><a href="javascript:print();">{l s='Print'}</a></li>
  {if $have_image && !$jqZoomEnabled}
  {/if}
</ul>

 

you have to remove the:

 

 <li class="print"><a href="javascript:print();">{l s='Print'}</a></li>

Link to comment
Share on other sites

×
×
  • Create New...