Hi,
As far as I know the template (storebox, joomla 3.4.1 +VM 3.0.9) uses relatives paths in a tag (rel=«canonical») like:
for categories: <link href="/index.php/shop/store-frontpage/bags" rel="canonical" />
for parent products: <link href="/index.php/shop/store-frontpage/bags/sac5-detail" rel="canonical" />
for child products: <link href="/index.php/shop/store-frontpage/bags/sac5-child-detail" rel="canonical" />
I want it uses absolute path and a child product uses a parent rel="canonical":
for categories: <link href="http://www.site.com/index.php/shop/store-frontpage/bags" rel="canonical" />
for parent products: <link href="http://www.site.com/index.php/shop/store-frontpage/bags/sac5-detail" rel="canonical" />
for child products: <link href="http://www.site.com/index.php/shop/store-frontpage/bags/sac5-detail" rel="canonical" />
So, guys, I need your help.