<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>bartman.co.uk</title>
	<atom:link href="http://bartman.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://bartman.co.uk</link>
	<description>Blogging eBay, prestashop and ecommerce soloutions</description>
	<lastBuildDate>Thu, 01 Sep 2011 23:30:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Does Amazon.co.uk comply with the distance selling regulations ?</title>
		<link>http://bartman.co.uk/2011/09/does-amazon-co-uk-comply-with-the-distance-selling-regulations/</link>
		<comments>http://bartman.co.uk/2011/09/does-amazon-co-uk-comply-with-the-distance-selling-regulations/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 23:27:27 +0000</pubDate>
		<dc:creator>chris barton</dc:creator>
				<category><![CDATA[Amazon]]></category>

		<guid isPermaLink="false">http://bartman.co.uk/?p=67</guid>
		<description><![CDATA[When buying products on-line the consumer is protected by the distance selling regulations. Which state in regulation seven You must give your consumers certain information before they agree to buy from you. We refer to this as pre-contractual information which includes the following. (i) Your identity including sufficient detail for the consumer to be able [...]]]></description>
			<content:encoded><![CDATA[<p>When buying products on-line the consumer is protected by the distance selling regulations. Which state in regulation seven</p>
<p>You must give your consumers certain information before they agree<br />
to buy from you. We refer to this as pre-contractual information which<br />
includes the following.</p>
<p>(i) Your identity including sufficient detail for the consumer to be<br />
able to identify the business they are dealing with.</p>
<p>and</p>
<p>(vi) If payment is required in advance, you must supply your full<br />
geographic address</p>
<p>This applies before<br />
goods or services are<br />
received by the<br />
consumer</p>
<p>Ebay now make professional sellers have there contact details on the listing page.</p>
<p>But I can find nowhere on amazon where the contact details of third party sellers are visible</p>
]]></content:encoded>
			<wfw:commentRss>http://bartman.co.uk/2011/09/does-amazon-co-uk-comply-with-the-distance-selling-regulations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>getOrderByCartId(intval($id_cart)) Prestashop Function</title>
		<link>http://bartman.co.uk/2010/07/getorderbycartidintvalid_cart-prestashop-function/</link>
		<comments>http://bartman.co.uk/2010/07/getorderbycartidintvalid_cart-prestashop-function/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 14:43:45 +0000</pubDate>
		<dc:creator>chris barton</dc:creator>
				<category><![CDATA[prestashop functions]]></category>

		<guid isPermaLink="false">http://bartman.co.uk/?p=63</guid>
		<description><![CDATA[the getorderByCart function simply returns the order_id when the input is a cart_id, located in /classes/order.php the function is as follows /** * Get an order by its cart id * * @param integer $id_cart Cart id * @return array Order details */ static public function getOrderByCartId($id_cart) { $result = Db::getInstance()-&#62;getRow(' SELECT `id_order` FROM `'._DB_PREFIX_.'orders` [...]]]></description>
			<content:encoded><![CDATA[<p>the getorderByCart function simply returns the order_id when the input is a cart_id, located in /classes/order.php the function is as follows</p>
<pre><code>/**
	 * Get an order by its cart id
	 *
	 * @param integer $id_cart Cart id
	 * @return array Order details
	 */
	static public function getOrderByCartId($id_cart)
    {
    	$result = Db::getInstance()-&gt;getRow('
        SELECT `id_order`
        FROM `'._DB_PREFIX_.'orders`
        WHERE `id_cart` = '.intval($id_cart));

		return isset($result['id_order']) ? $result['id_order'] : false;
    }</code></pre>
<p>example of use</p>
<p><code>$myid_order = Order::getOrderByCartId(intval($id_cart));</code></p>
]]></content:encoded>
			<wfw:commentRss>http://bartman.co.uk/2010/07/getorderbycartidintvalid_cart-prestashop-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>prestashop shop seo page loading speed</title>
		<link>http://bartman.co.uk/2010/06/prestashop-shop-seo-page-loading-speed/</link>
		<comments>http://bartman.co.uk/2010/06/prestashop-shop-seo-page-loading-speed/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 23:42:32 +0000</pubDate>
		<dc:creator>chris barton</dc:creator>
				<category><![CDATA[prestashop coding notes]]></category>

		<guid isPermaLink="false">http://bartman.co.uk/?p=58</guid>
		<description><![CDATA[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 &#60;script type="text/javascript" src="{$content_dir}js/jquery/jquery.easing.1.3.js"&#62;&#60;/script&#62; and change to &#60;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"&#62;&#60;/script&#62; now if your site is ssl secured its a bit more complicated, as [...]]]></description>
			<content:encoded><![CDATA[<p>While trying to increase page speeds load, it would make sense to use the google cdn.</p>
<p>now if your prestashop does not use ssl it is an easy change</p>
<p>just edit header.tpl</p>
<p>find</p>
<p><code>&lt;script type="text/javascript" src="{$content_dir}js/jquery/jquery.easing.1.3.js"&gt;&lt;/script&gt;</code></p>
<p>and change to</p>
<p><code>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"&gt;&lt;/script&gt;</code></p>
<p>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.</p>
<p>you could just call</p>
<p><code>&lt;script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"&gt;&lt;/script&gt;</code></p>
<p>from every page, but an https call takes slightly longer than a straight http call</p>
<p>their are several ways you can achieve the desired results, mainly involving lost of <code>{if}</code> loops in the header to ensure the correct protocol is used</p>
<p>but a far easier way is as follows</p>
<p>edit init.php in you web root and add the following code after</p>
]]></content:encoded>
			<wfw:commentRss>http://bartman.co.uk/2010/06/prestashop-shop-seo-page-loading-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>google site map module ignores canonical url setting</title>
		<link>http://bartman.co.uk/2010/06/google-site-map-module-ignores-canonical-url-setting/</link>
		<comments>http://bartman.co.uk/2010/06/google-site-map-module-ignores-canonical-url-setting/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 11:30:40 +0000</pubDate>
		<dc:creator>chris barton</dc:creator>
				<category><![CDATA[Prestashop code snippits]]></category>

		<guid isPermaLink="false">http://bartman.co.uk/?p=48</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p>Just found out that when generating a site map with the google site map module it completely ignores the canonical url setting in presatshop</p>
<p>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,</p>
<p>attached file should fix this problem, its a bit quick and nasty but it works</p>
<p><a href='http://bartman.co.uk/wp-content/uploads/2010/06/gsitemap.zip'>gsitemap</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bartman.co.uk/2010/06/google-site-map-module-ignores-canonical-url-setting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prestashop Uk address format</title>
		<link>http://bartman.co.uk/2010/06/prestashop-uk-address-format/</link>
		<comments>http://bartman.co.uk/2010/06/prestashop-uk-address-format/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 10:28:15 +0000</pubDate>
		<dc:creator>chris barton</dc:creator>
				<category><![CDATA[prestashop coding notes]]></category>

		<guid isPermaLink="false">http://bartman.co.uk/?p=46</guid>
		<description><![CDATA[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 [...]]]></description>
			<content:encoded><![CDATA[<p>This will show you how to change the default layout of addresses in prestashop to UK format.</p>
<p>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.</p>
]]></content:encoded>
			<wfw:commentRss>http://bartman.co.uk/2010/06/prestashop-uk-address-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a site with prestashop 1.3 Part One</title>
		<link>http://bartman.co.uk/2010/05/creating-a-site-with-prestashop-1-3-part-one/</link>
		<comments>http://bartman.co.uk/2010/05/creating-a-site-with-prestashop-1-3-part-one/#comments</comments>
		<pubDate>Thu, 27 May 2010 20:21:12 +0000</pubDate>
		<dc:creator>chris barton</dc:creator>
				<category><![CDATA[Prestashop stores]]></category>

		<guid isPermaLink="false">http://bartman.co.uk/?p=39</guid>
		<description><![CDATA[We will; be working on http://firestriker.co.uk a site for selling light my fire products First of all download a copy of the latest version of prestashop from http://prestashop.com Once downloaded unzip all the files to upload to your server you will need a ftp, the one we use is filezilla which is available from http://filezilla-project.org. [...]]]></description>
			<content:encoded><![CDATA[<p>We will; be working on <a href="http://firestriker.co.uk">http://firestriker.co.uk</a> a site for selling light my fire products</p>
<p>First of all download a copy of the latest version of prestashop from <a href="http://prestashop.com">http://prestashop.com</a></p>
<p>Once downloaded unzip all the files</p>
<p>to upload to your server you will need a ftp, the one we use is filezilla which is available from <a href="http://filezilla-project.org">http://filezilla-project.org</a>.</p>
<p>Download the ftp client and install. you do not need the server version.</p>
<p>To setup filezilla you will need to know your ftp username and password for your server.</p>
<p>Start filezilla and click on File -> SiteManager and select new site.</p>
<p>Enter you details into the correct boxes </p>
<p>site name which should be your ftp server</p>
<p>you then have to change the login type to normal</p>
<p>and enter your ftp username and ftp password</p>
<p>once you have entered all your details click on connect and if you have everything entered correctly you should be conected to your ftp server</p>
<p>To be continued</p>
]]></content:encoded>
			<wfw:commentRss>http://bartman.co.uk/2010/05/creating-a-site-with-prestashop-1-3-part-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>prestashop featured products under categorys that have subcategorys</title>
		<link>http://bartman.co.uk/2010/05/prestashop-featured-products-under-categorys-that-have-subcategorys/</link>
		<comments>http://bartman.co.uk/2010/05/prestashop-featured-products-under-categorys-that-have-subcategorys/#comments</comments>
		<pubDate>Mon, 24 May 2010 10:44:45 +0000</pubDate>
		<dc:creator>chris barton</dc:creator>
				<category><![CDATA[prestashop coding notes]]></category>

		<guid isPermaLink="false">http://bartman.co.uk/?p=37</guid>
		<description><![CDATA[thinking of displaying random products underneath the subcategory boxes, only when the category has subcategorys, of course you can do this by placing the product in the subcategory and the main category but it does not appear in a featured box so the code that detects if sub categorys are present is as follows {if [...]]]></description>
			<content:encoded><![CDATA[<p>thinking of displaying random products underneath the subcategory boxes, only when the category has subcategorys, of course you can do this by placing the product in the subcategory and the main category</p>
<p>but it does not appear in a featured box</p>
<p>so  the code that detects if sub categorys are present is as follows</p>
<p><code>{if isset($subcategories)}</code></p>
<p>more info to follow</p>
]]></content:encoded>
			<wfw:commentRss>http://bartman.co.uk/2010/05/prestashop-featured-products-under-categorys-that-have-subcategorys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide the wishlist block from unlogged in users on prestashop</title>
		<link>http://bartman.co.uk/2010/05/29/</link>
		<comments>http://bartman.co.uk/2010/05/29/#comments</comments>
		<pubDate>Fri, 21 May 2010 07:24:03 +0000</pubDate>
		<dc:creator>chris barton</dc:creator>
				<category><![CDATA[Prestashop code snippits]]></category>
		<category><![CDATA[prestashop]]></category>
		<category><![CDATA[prestashop code]]></category>
		<category><![CDATA[preststa shop code mods]]></category>
		<category><![CDATA[wishlist block]]></category>

		<guid isPermaLink="false">http://bartman.co.uk/?p=29</guid>
		<description><![CDATA[I have always thought it is a bit pointless showing the wishlist box all the time, generally because the feature is only available to logged in users, so if you have people browsing the site it is just a empty box so to make it visible to only customers who have a account and are [...]]]></description>
			<content:encoded><![CDATA[<p>I have always thought it is a bit pointless showing the wishlist box all the time, generally because the feature is only available to logged in users, so if you have people browsing the site it is just a empty box</p>
<p>so to make it visible to only customers who have a account and are logged in edit blockwishlist.tpl in you modules/wishlist directory</p>
<p>Just wrap the whole block with the following code</p>
<pre>
<code> {if logged}

{/if}</code>
</pre>
<p>simply and then the block only appear when the user is logged in</p>
]]></content:encoded>
			<wfw:commentRss>http://bartman.co.uk/2010/05/29/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Socialbookmarking for ebay</title>
		<link>http://bartman.co.uk/2010/03/socialbookmarking-for-ebay/</link>
		<comments>http://bartman.co.uk/2010/03/socialbookmarking-for-ebay/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 21:37:13 +0000</pubDate>
		<dc:creator>chris barton</dc:creator>
				<category><![CDATA[Ebay]]></category>
		<category><![CDATA[bookmarks]]></category>

		<guid isPermaLink="false">http://bartman.co.uk/2010/03/socialbookmarking-for-ebay/</guid>
		<description><![CDATA[Proof of concept]]></description>
			<content:encoded><![CDATA[<p>Proof of concept</p>
]]></content:encoded>
			<wfw:commentRss>http://bartman.co.uk/2010/03/socialbookmarking-for-ebay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>social bookmarking for prestashop</title>
		<link>http://bartman.co.uk/2010/03/social-bookmarkinf-for-prestashop/</link>
		<comments>http://bartman.co.uk/2010/03/social-bookmarkinf-for-prestashop/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 23:19:12 +0000</pubDate>
		<dc:creator>chris barton</dc:creator>
				<category><![CDATA[Prestashop modules]]></category>
		<category><![CDATA[free prestashop modules]]></category>
		<category><![CDATA[prestashop]]></category>

		<guid isPermaLink="false">http://bartman.co.uk/?p=17</guid>
		<description><![CDATA[After looking at a few actinic shops and noticed that quite a few had started to implement the ability to add social bookmarks on the product page tabs, after searching around for a prestashop module that did the same, I could not find anything that did the job, so I came up with this simple [...]]]></description>
			<content:encoded><![CDATA[<p>After looking at a few actinic shops and noticed that quite a few had started to implement the ability to add social bookmarks on the product page tabs, after searching around for a prestashop module that did the same, I could not find anything that did the job, so I came up with this simple module. the look of the page by editing the socialbookmarks.tpl file</p>
<p>You can see it in action here. <a href="http://safety-glow.co.uk/sporks-spoon-knife-fork-/59-little-baby-spork-3-pack.html">social bookmarks</a></p>
<p>Download: <a href='http://bartman.co.uk/wp-content/uploads/2010/03/socialbookmarksforproducts1.zip'>socialbookmarks for products</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bartman.co.uk/2010/03/social-bookmarkinf-for-prestashop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

