Advertisement
NicolaiTeglskovDK

ShopOrama canonical

Nov 24th, 2024
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Smarty 0.61 KB | Source Code | 0 0
  1. <{if $canonical}>
  2.     <link rel="canonical" type="text/html" href="<{$canonical|escape}>"/>
  3. <{elseif $product}>
  4.     <link rel="canonical" type="text/html" href="<{$product->getRemoteUrl()}>"/>
  5. <{elseif $category}>
  6.     <link rel="canonical" type="text/html" href="<{$category->getRemoteUrl()}>"/>
  7. <{elseif $landing_page}>
  8.     <link rel="canonical" type="text/html" href="<{$landing_page->getRemoteUrl()}>"/>
  9. <{elseif $page}>
  10.     <link rel="canonical" type="text/html" href="<{$page->getRemoteUrl()}>"/>
  11. <{elseif $blog_post}>
  12.     <link rel="canonical" type="text/html" href="<{$blog_post->getRemoteUrl()}>"/>
  13. <{/if}>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement