Alternativo Posted August 1 Share Posted August 1 Hemos realizado una auditoría SEO del sitio y estamos teniendo problemas con los productos con combinaciones, ya que nos indica que no tienen etiquetas hreflang autorreferenciales. Nos pueden ayudar a solucionarlo? Gracias Link to comment Share on other sites More sharing options...
Knowband Plugins Posted August 13 Share Posted August 13 Hola, Para resolver el problema de que los productos con combinaciones no tengan etiquetas hreflang autorreferenciales en PrestaShop, debes asegurarte de que cada combinación de producto tenga su propia etiqueta hreflang. En el archivo tpl /themes/your-theme-name/templates/catalog/product.tpl, utiliza el siguiente código: {if isset($hreflang tags)} {foreach from=$hreflang_tags item=tag} <link rel="alternate" hreflang="{$tag.hreflang}" href="{$tag.href}" /> {/foreach} {/if} Ubica la parte del código donde se generan las etiquetas hreflang. Es posible que necesites ajustar esta lógica para incluir las URL de cada combinación. $combinations = $this->product->getAttributeCombinations((int)$this->context->language->id); if ($combinations) { foreach ($combinations as $combination) { $combinationUrl = $this->context->link->getProductLink( $this->product, null, null, null, $this->context->language->id, null, $combination['id_product_attribute'] ); $this->context->smarty->assign('hreflang_tags', array( 'hreflang' => $this->context->language->iso_code, 'href' => $combinationUrl )); } } Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now