AbanteCart Community

eCommerce construction => Installation and Configuration => Configuration => Topic started by: gordontaylor on January 28, 2014, 01:33:44 PM

Title: Head Section
Post by: gordontaylor on January 28, 2014, 01:33:44 PM
I've modified the <head> to add some SEO stuff that I have found is helpful in rankings.

I noticed this bit of code:

Code: [Select]
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="<?php echo $this->templateResource('/image/apple-icon-57x57-precomposed.png');?>" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="<?php echo $this->templateResource('/image/apple-icon-72x72-precomposed.png');?>" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="<?php echo $this->templateResource('/image/apple-icon-114x114-precomposed.png');?>" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="<?php echo $this->templateResource('/image/apple-icon-144x144-precomposed.png');?>" />

Is it necessary to leave it? Is <link rel=> a menu thing?

Can I delete this?
Title: Re: Head Section
Post by: abolabo on January 28, 2014, 06:14:55 PM
yes, you can :) but it needed for correct view on apple devices.
Title: Re: Head Section
Post by: gordontaylor on January 28, 2014, 07:09:43 PM
Thank you Dimitri, I'm not selling Apples....just Oranges!!  :P
Title: Re: Head Section
Post by: abantecart on January 28, 2014, 08:42:43 PM
You can remove this, but it is neat for have if you have users on apple iphone or tablets. This will create app icons on the apple screen
Title: Re: Head Section
Post by: gordontaylor on January 28, 2014, 09:41:21 PM
I'm leaving it...I see it's usefulness now, thanks !