View Single Post
  #1375  
Old 03-26-2019, 09:01 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - reBOOT - Responsive Template

skin/reboot/custom/reboot_service_head.tpl

Replace...
Quote:
<link rel="canonical" href="{$current_location}/{$canonical_url}" />
<link rel="prerender prefetch" href="{$current_location}/{$canonical_url}" />
with..
Quote:
<link rel="canonical" href="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}" />
<link rel="prerender prefetch" href="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}" />
Check skin/reboot/customer/bread_crumbs.tpl also...

Replace...
Quote:
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="url" content="{$current_location}/{$canonical_url}"></span><span itemprop="title">{$l.0|amp}</span></li>
With...
Quote:
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="url" content="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}"></span><span itemprop="title">{$l.0|amp}</span></li>
__________________
xcartmods.co.uk
Reply With Quote