View Single Post
  #1072  
Old 10-29-2015, 04:07 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart - reBOOT - Responsive Template

Quick blog canonical URLs fix for reBOOT v4.7.3...

In skin/reboot/custom/reboot_service_head.tpl

Replace...

Code:
{if $homepage} <link rel="canonical" href="{$current_location}" /> {else} <link rel="canonical" href="{$current_location}/{$canonical_url}" /> {/if}

With...

Code:
{if $homepage} <link rel="canonical" href="{$current_location}" /> {elseif $main eq "reboot_blog"} <link rel="canonical" href="http://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_URI}" /> {else} <link rel="canonical" href="{$current_location}/{$canonical_url}" /> {/if}

Thanks to Paul for pointing it out.
__________________
xcartmods.co.uk
Reply With Quote