Jump to content

Recommended Posts

Buenas, tengo un problema y es que quiero añadir un botón en product.tpl que sea 'GUÍA DE TALLAS'(CMS)

bueno pues he añadido este código en mi product.tpl, y el caso es que me aparece el link, pero me redirecciona a http://www.alaguapatos.es/index.php?controller=404

El código:

<a href="{$link->getPageLink('cms.php?id_cms=11')}"{if {$smarty.server.REQUEST_URI} == '/content/11-guia-de-tallas'} class="active"{/if}>{l s='GUÍA DE TALLAS' mod='tmheaderlinks'}</a>
 

Muchisimás gracias de antemano

Link to comment
Share on other sites

29 minutes ago, jgamio said:

Es el link

en vez de usar getPageLink usa getCMSLink  y solo colocas el id

<a href="{$link->getCMSLink ('cms.php?id_cms=11')}"{if {$smarty.server.REQUEST_URI} == '/content/11-guia-de-tallas'} class="active"{/if}>{l s='GUÍA DE TALLAS' mod='tmheaderlinks'}</a>

así?

Muchas gracias!!

Link to comment
Share on other sites

4 minutes ago, jgamio said:

no

 

'cms.php?id_cms=11'

cambialo solo por 11

 

No me funciona :(

<a href="{$link->getCMSLink('11')}"{if {$smarty.server.REQUEST_URI} == '/content/11-guia-de-tallas'} class="active"{/if}>{l s='GUÍA DE TALLAS' mod='tmheaderlinks'}</a>
mira la url es esta:

http://www.alaguapatos.es/inicio/216-685-v1875roberta-verde.html#/51-tamano-p

Link to comment
Share on other sites

hace 2 horas, SandraPresta dijo:

No me funciona :(

<a href="{$link->getCMSLink('11')}"{if {$smarty.server.REQUEST_URI} == '/content/11-guia-de-tallas'} class="active"{/if}>{l s='GUÍA DE TALLAS' mod='tmheaderlinks'}</a>
mira la url es esta:

http://www.alaguapatos.es/inicio/216-685-v1875roberta-verde.html#/51-tamano-p

En Prestashop 1.6 con esto (para tu caso) debería ser suficiente:

 

<a href="{$link->getCMSLink('11', null)}" {if $page_name=="cms"}{if $cms->id==11}class="active"{/if}{/if}>{l s='Tengo hambre' mod='tmheaderlinks'}</a>

 

  • 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...