Jump to content

quitar logo albaran prestashop 1.6


anto2015

Recommended Posts

Para hacer lo que necesitas deberias sobreescribir (override) la funcion

assignCommonHeaderData()

de la classe

classes\pdf\HTMLTemplate.php

añadiendo en el array de smarty la variable

'template' => ucfirst(str_replace('HTMLTemplate', '', get_class($this))),

Y luego utilizarla en el archivo

\pdf\header.tpl
\themes\TU_TEMA\pdf\header.tpl

para excluir el logo cuando el template sea el de el albaran de envio, asi por ejemplo

{if $logo_path && $template != 'DeliverySlip'}
<img src="{$logo_path}" style="width:{$width_logo}px; height:{$height_logo}px;" />
{/if}
Link to comment
Share on other sites

 

Para hacer lo que necesitas sobreescribir (override) la funcion

assignCommonHeaderData()

de la classe

classes\pdf\HTMLTemplate.php

añadiendo en el array de smarty la variable

'template' => ucfirst(str_replace('HTMLTemplate', '', get_class($this))),

Y luego utilizarla en el archivo

\pdf\header.tpl
\themes\TU_TEMA\pdf\header.tpl

para excluir el logo cuando el template sea el de el albaran de envio, asi por ejemplo

{if $logo_path && $template != 'DeliverySlip'}
<img src="{$logo_path}" style="width:{$width_logo}px; height:{$height_logo}px;" />
{/if}
  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...