Archive for June, 2010

prestashop shop seo page loading speed

June 8th, 2010

While trying to increase page speeds load, it would make sense to use the google cdn.

now if your prestashop does not use ssl it is an easy change

just edit header.tpl

find

<script type="text/javascript" src="{$content_dir}js/jquery/jquery.easing.1.3.js"></script>

and change to

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>

now if your site is ssl secured its a bit more complicated, as you need the call to jquery to be supplied from an https source.

you could just call

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>

from every page, but an https call takes slightly longer than a straight http call

their are several ways you can achieve the desired results, mainly involving lost of {if} loops in the header to ensure the correct protocol is used

but a far easier way is as follows

edit init.php in you web root and add the following code after

google site map module ignores canonical url setting

June 7th, 2010

Just found out that when generating a site map with the google site map module it completely ignores the canonical url setting in presatshop

so all your site map links will point to http://www. even if you have your canonical url set to just the http:// domain without the www. subdomain,

attached file should fix this problem, its a bit quick and nasty but it works

gsitemap

Prestashop Uk address format

June 7th, 2010

This will show you how to change the default layout of addresses in prestashop to UK format.

The first this we always do when doing an install is to move the UK out of the Ecc zone and create a new UK zone and ad the UK to this, Simply reason this helps in the shipping set up later.