<?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>kieranbarnes &#187; CubeCart</title>
	<atom:link href="http://bloke.org/category/cubecart/feed/" rel="self" type="application/rss+xml" />
	<link>http://bloke.org</link>
	<description>do you know where your towel is?</description>
	<lastBuildDate>Sat, 21 Aug 2010 12:03:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SEO Friendly URLs for CubeCart in Windows</title>
		<link>http://bloke.org/windows/seo-friendly-urls-for-cubecart-in-windows/</link>
		<comments>http://bloke.org/windows/seo-friendly-urls-for-cubecart-in-windows/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 17:57:32 +0000</pubDate>
		<dc:creator>Kieran</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[CubeCart]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://bloke.org/?p=507</guid>
		<description><![CDATA[I have a client hosting CubeCart on a Windows server. Unfortunately the built in Apache 2 mod_rewrite rules that come bundled with CubeCart don't work in IIS/Helicon.
Simple fix...

Edit your httpd.ini with the following.
[ISAPI_Rewrite]
RewriteRule .*?/cat_(\d+)(?:\.[a-z]{3,4})?([^?]*)(?:\?(.*))? /index.php\?_a=viewCat&#38;catId=$1?2&#38;$2 [I,L]
RewriteRule .*?/prod_(\d+)(?:\.[a-z]{3,4})?(?:\?(.*))? /index.php\?_a=viewProd&#38;productId=$1?2&#38;$2 [I,L]
RewriteRule .*?/info_(\d+)(?:\.[a-z]{3,4})?(?:\?(.*))? /index.php\?_a=viewDoc&#38;docId=$1?2&#38;$2 [I,L]
RewriteRule .*?/tell_(\d+)(?:\.[a-z]{3,4})?(?:\?(.*))? /index.php\?_a=tellafriend&#38;productId=$1?2&#38;$2 [I,L]
RewriteRule .*?/_saleItems(?:\.[a-z]+)?(\?(.*))? /index.php\?_a=viewCat&#38;catId=saleItems?1&#38;$1 [I,L]


Related posts:CubeCart 4.2 CubeCart 4.2.0 was released on [...]


Related posts:<ol><li><a href='http://bloke.org/cubecart/cubecart-42/' rel='bookmark' title='Permanent Link: CubeCart 4.2'>CubeCart 4.2</a> <small>CubeCart 4.2.0 was released on 20th February. Its quite a...</small></li>
<li><a href='http://bloke.org/cubecart/cubecart-42-bugs-fixed/' rel='bookmark' title='Permanent Link: CubeCart 4.2 bugs fixed'>CubeCart 4.2 bugs fixed</a> <small>Looks like some of my reported CubeCart bugs got fixed...</small></li>
<li><a href='http://bloke.org/php/cubecart-and-wordpress-integration/' rel='bookmark' title='Permanent Link: CubeCart and Wordpress Integration'>CubeCart and Wordpress Integration</a> <small>Following my 100% CubeCart orientated posts, here's another late night...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have a client hosting CubeCart on a Windows server. Unfortunately the built in Apache 2 mod_rewrite rules that come bundled with CubeCart don't work in IIS/Helicon.</p>
<p>Simple fix...</p>
<p><span id="more-507"></span></p>
<p>Edit your httpd.ini with the following.</p>
<p><code>[ISAPI_Rewrite]<br />
RewriteRule .*?/cat_(\d+)(?:\.[a-z]{3,4})?([^?]*)(?:\?(.*))? /index.php\?_a=viewCat&amp;catId=$1?2&amp;$2 [I,L]<br />
RewriteRule .*?/prod_(\d+)(?:\.[a-z]{3,4})?(?:\?(.*))? /index.php\?_a=viewProd&amp;productId=$1?2&amp;$2 [I,L]<br />
RewriteRule .*?/info_(\d+)(?:\.[a-z]{3,4})?(?:\?(.*))? /index.php\?_a=viewDoc&amp;docId=$1?2&amp;$2 [I,L]<br />
RewriteRule .*?/tell_(\d+)(?:\.[a-z]{3,4})?(?:\?(.*))? /index.php\?_a=tellafriend&amp;productId=$1?2&amp;$2 [I,L]<br />
RewriteRule .*?/_saleItems(?:\.[a-z]+)?(\?(.*))? /index.php\?_a=viewCat&amp;catId=saleItems?1&amp;$1 [I,L]</code></p>


<p>Related posts:<ol><li><a href='http://bloke.org/cubecart/cubecart-42/' rel='bookmark' title='Permanent Link: CubeCart 4.2'>CubeCart 4.2</a> <small>CubeCart 4.2.0 was released on 20th February. Its quite a...</small></li>
<li><a href='http://bloke.org/cubecart/cubecart-42-bugs-fixed/' rel='bookmark' title='Permanent Link: CubeCart 4.2 bugs fixed'>CubeCart 4.2 bugs fixed</a> <small>Looks like some of my reported CubeCart bugs got fixed...</small></li>
<li><a href='http://bloke.org/php/cubecart-and-wordpress-integration/' rel='bookmark' title='Permanent Link: CubeCart and Wordpress Integration'>CubeCart and Wordpress Integration</a> <small>Following my 100% CubeCart orientated posts, here's another late night...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bloke.org/windows/seo-friendly-urls-for-cubecart-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CubeCart Tax Classes on Product Page</title>
		<link>http://bloke.org/php/cubecart-tax-classes-on-product-page/</link>
		<comments>http://bloke.org/php/cubecart-tax-classes-on-product-page/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 16:54:41 +0000</pubDate>
		<dc:creator>Kieran</dc:creator>
				<category><![CDATA[CubeCart]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://bloke.org/?p=501</guid>
		<description><![CDATA[A client of mine sells a mix of VAT and VAT exempt products via a CubeCart 4 store I setup.
Although CubeCart allows this and calculates the VAT right on the checkout process, it doesn't have any facility to show the customer which tax class the product falls into on the viewProd page.
Annoying. 
 As you [...]


Related posts:<ol><li><a href='http://bloke.org/cubecart/cubecart-product-thumbnail-in-viewprodtpl/' rel='bookmark' title='Permanent Link: CubeCart &#8211; Product Thumbnail in viewProd.tpl'>CubeCart &#8211; Product Thumbnail in viewProd.tpl</a> <small>Here's something that bugged me for a while. I'm working...</small></li>
<li><a href='http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Show sub-category products on category page'>CubeCart Mod &#8211; Show sub-category products on category page</a> <small>This modification is for CubeCart 3. It will show all...</small></li>
<li><a href='http://bloke.org/php/cubecart-and-wordpress-integration/' rel='bookmark' title='Permanent Link: CubeCart and Wordpress Integration'>CubeCart and Wordpress Integration</a> <small>Following my 100% CubeCart orientated posts, here's another late night...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A client of mine sells a mix of VAT and VAT exempt products via a <a href="http://www.cubecart.com">CubeCart</a> 4 store I setup.</p>
<p>Although CubeCart allows this and calculates the VAT right on the checkout process, it doesn't have any facility to show the customer which tax class the product falls into on the viewProd page.</p>
<p>Annoying. <span id="more-501"></span></p>
<p><a href="http://bloke.org/wp-content/uploads/2009/11/cc-tax.JPG"><img class="alignnone size-thumbnail wp-image-502" title="cc tax" src="http://bloke.org/wp-content/uploads/2009/11/cc-tax-150x150.jpg" alt="cc tax" width="150" height="150" /></a> As you can see we've got two main tax classes set. <em>"+VAT"</em> and <em>"VAT Exempt"</em>.</p>
<p>Here's how to display this information on your viewProd page.</p>
<p><strong>Step One</strong> - Edit <em>includes/content/viewProd.inc.php</em></p>
<p>Around line 36 you will see $query. Replace with</p>
<pre lang="sql">$query = "SELECT I.*, C.cat_name, C.cat_father_id, I.taxType , ".$glob['dbprefix']."CubeCart_taxes.taxName
FROM ".$glob['dbprefix']."CubeCart_inventory AS I
LEFT JOIN ".$glob['dbprefix']."CubeCart_category AS C ON I.cat_id = C.cat_id
LEFT JOIN ".$glob['dbprefix']."CubeCart_taxes ON I.taxType = ".$glob['dbprefix']."CubeCart_taxes.id
WHERE I.disabled='0'
AND I.productId = ".$db-&gt;mySQLSafe($_GET['productId']);</pre>
<p>Further down find,</p>
<pre lang="php"> $view_prod-&gt;assign("TXT_DESCRIPTION",$prodArray[0]['description']);</pre>
<p>Add below</p>
<pre lang="php">$view_prod-&gt;assign("TAX_TYPE",$prodArray[0]['taxName']);</pre>
<p><strong>Step Two </strong>- Edit <em>skins/YOUR SKIN/styleTemplates/content/viewProd.tpl</em></p>
<p>Put the {TAX_TYPE} where you want the Tax Name to appear. Probably next to the price.</p>
<p><a href="http://bloke.org/wp-content/uploads/2009/11/vat-2.JPG"><img class="alignnone size-medium wp-image-504" title="vat 2" src="http://bloke.org/wp-content/uploads/2009/11/vat-2-300x18.jpg" alt="vat 2" width="300" height="18" /></a></p>
<p><a href="http://bloke.org/wp-content/uploads/2009/11/vat.JPG"><img class="alignnone size-medium wp-image-505" title="vat" src="http://bloke.org/wp-content/uploads/2009/11/vat-300x20.jpg" alt="vat" width="300" height="20" /></a></p>


<p>Related posts:<ol><li><a href='http://bloke.org/cubecart/cubecart-product-thumbnail-in-viewprodtpl/' rel='bookmark' title='Permanent Link: CubeCart &#8211; Product Thumbnail in viewProd.tpl'>CubeCart &#8211; Product Thumbnail in viewProd.tpl</a> <small>Here's something that bugged me for a while. I'm working...</small></li>
<li><a href='http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Show sub-category products on category page'>CubeCart Mod &#8211; Show sub-category products on category page</a> <small>This modification is for CubeCart 3. It will show all...</small></li>
<li><a href='http://bloke.org/php/cubecart-and-wordpress-integration/' rel='bookmark' title='Permanent Link: CubeCart and Wordpress Integration'>CubeCart and Wordpress Integration</a> <small>Following my 100% CubeCart orientated posts, here's another late night...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bloke.org/php/cubecart-tax-classes-on-product-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Wordpress header and footers externally</title>
		<link>http://bloke.org/php/using-wordpress-header-and-footers-externally/</link>
		<comments>http://bloke.org/php/using-wordpress-header-and-footers-externally/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 11:18:18 +0000</pubDate>
		<dc:creator>Kieran</dc:creator>
				<category><![CDATA[CubeCart]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://bloke.org/?p=339</guid>
		<description><![CDATA[I needed to integrate a Wordpress header (header.php) and footer (footer.php) into an external application.
There are quite a few ways round this, but none are really ideal. For example, if you want to include an external page in Wordpress for whatever reason, you could use the Exec-PHP plugin. Simple, hey? No.
What if that page does [...]


Related posts:<ol><li><a href='http://bloke.org/php/cubecart-and-wordpress-integration/' rel='bookmark' title='Permanent Link: CubeCart and Wordpress Integration'>CubeCart and Wordpress Integration</a> <small>Following my 100% CubeCart orientated posts, here's another late night...</small></li>
<li><a href='http://bloke.org/linux/mod_geoip-revisted-including-stopping-spam-in-phpbb-2/' rel='bookmark' title='Permanent Link: mod_geoip Revisted including stopping spam in phpBB 2'>mod_geoip Revisted including stopping spam in phpBB 2</a> <small>I've recently moved a client's forum onto a new cPanel...</small></li>
<li><a href='http://bloke.org/wordpress/custom-page-templates-not-showing-in-wordpress/' rel='bookmark' title='Permanent Link: Custom Page Templates Not Showing in Wordpress'>Custom Page Templates Not Showing in Wordpress</a> <small>I've recently starting getting an annoying error in Wordpress, I'm...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I needed to integrate a Wordpress header (header.php) and footer (footer.php) into an external application.</p>
<p>There are quite a few ways round this, but none are really ideal. For example, if you want to include an external page in Wordpress for whatever reason, you could use the <a title="Exec PHP Plugin for Wordpress" href="http://bluesome.net/post/2005/08/18/50/" target="_blank">Exec-PHP</a> plugin. Simple, hey? No.<span id="more-339"></span></p>
<p>What if that page does something a little bit tricky that can't be run through PHP's eval();?</p>
<p>I ran into these problems whilst integrating a 3rd party web application with a new Wordpress.<br />
We needed both sites to look exactly the same, ideally, using the Wordpress theme as it creates all the page links etc for us.</p>
<p>How do we do it? Simple. I wrote a wrapper to download and save these two files so the 3rd party app can access them.</p>
<p>Here's my shell script, called <em>update_headers.sh</em></p>
<pre lang="bash"><div id="wpshdo_1" class="wp-synhighlighter-outer"><div id="wpshdi_1" class="wp-synhighlighter-inner" style="display: block;"><pre class="bash" style="font-family:monospace;"><span class="co0">#!/bin/bash</span>
<span class="kw2">rm</span> <span class="re5">-rf</span> header-wrapper.html <span class="sy0">&amp;&amp;</span> <span class="kw2">wget</span> http:<span class="sy0">//</span>YOUR_URL<span class="sy0">/</span>header-wrapper.php <span class="re5">-O</span> header-wrapper.html <span class="re5">-q</span>
<span class="kw2">rm</span> <span class="re5">-rf</span> footer-wrapper.html <span class="sy0">&amp;&amp;</span> <span class="kw2">wget</span> http:<span class="sy0">//</span>YOUR_URL<span class="sy0">/</span>footer-wrapper.php <span class="re5">-O</span> footer-wrapper.html <span class="re5">-q</span></pre></div></div></pre>
<p>It calls wget to download two simple files from the Wordpress directory.</p>
<p><em>header-wrapper.php</em> looks like this</p>
<div id="wpshdo_2" class="wp-synhighlighter-outer"><div id="wpshdi_2" class="wp-synhighlighter-inner" style="display: block;"><pre class="php" style="font-family:monospace;"><span class="kw2">&lt;?php</span>
<span class="kw1">require</span><span class="br0">&#40;</span><span class="st_h">'./wp-blog-header.php'</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
<span class="kw1">include</span> <span class="re0">$_SERVER</span><span class="br0">&#91;</span><span class="st_h">'DOCUMENT_ROOT'</span><span class="br0">&#93;</span><span class="sy0">.</span><span class="st0">&quot;/wp-content/themes/new_theme/header.php&quot;</span><span class="sy0">;</span>
<span class="sy1">?&gt;</span></pre></div></div>
<p>and <em>footer-wrapper.php</em> looks like this</p>
<div id="wpshdo_3" class="wp-synhighlighter-outer"><div id="wpshdi_3" class="wp-synhighlighter-inner" style="display: block;"><pre class="php" style="font-family:monospace;"><span class="kw2">&lt;?php</span>
<span class="kw1">require</span><span class="br0">&#40;</span><span class="st_h">'./wp-blog-header.php'</span><span class="br0">&#41;</span><span class="sy0">;</span>
&nbsp;
<span class="kw1">include</span> <span class="re0">$_SERVER</span><span class="br0">&#91;</span><span class="st_h">'DOCUMENT_ROOT'</span><span class="br0">&#93;</span><span class="sy0">.</span><span class="st0">&quot;/wp-content/themes/new_theme/footer.php&quot;</span><span class="sy0">;</span>
<span class="sy1">?&gt;</span></pre></div></div>
<p>So, the script calls the header and footer wrapper, saves the file to the web root (or where ever you ran the script from, ready to be included by your 3rd party app.</p>
<p>This particular application uses the Smarty template engine, so all I needed to do was replace the appliaction's header code with the following line</p>
<div id="wpshdo_4" class="wp-synhighlighter-outer"><div id="wpshdi_4" class="wp-synhighlighter-inner" style="display: block;"><pre class="php" style="font-family:monospace;"><span class="br0">&#123;</span><span class="kw1">include</span> <a href="http://www.php.net/file"><span class="kw3">file</span></a><span class="sy0">=</span><span class="st0">&quot;/home/YOUR_PATH/header-wrapper.html&quot;</span><span class="br0">&#125;</span></pre></div></div>
<p>and of course, your footer will look similar.</p>
<p>Whenever the client updates the Wordpress pages, for example adds a new page etc, we just call the shell script. Or, if you're lazy, set it to run every hour from cron.</p>
<p>"A bit clunky", you say? Well you find a better way!</p>


<p>Related posts:<ol><li><a href='http://bloke.org/php/cubecart-and-wordpress-integration/' rel='bookmark' title='Permanent Link: CubeCart and Wordpress Integration'>CubeCart and Wordpress Integration</a> <small>Following my 100% CubeCart orientated posts, here's another late night...</small></li>
<li><a href='http://bloke.org/linux/mod_geoip-revisted-including-stopping-spam-in-phpbb-2/' rel='bookmark' title='Permanent Link: mod_geoip Revisted including stopping spam in phpBB 2'>mod_geoip Revisted including stopping spam in phpBB 2</a> <small>I've recently moved a client's forum onto a new cPanel...</small></li>
<li><a href='http://bloke.org/wordpress/custom-page-templates-not-showing-in-wordpress/' rel='bookmark' title='Permanent Link: Custom Page Templates Not Showing in Wordpress'>Custom Page Templates Not Showing in Wordpress</a> <small>I've recently starting getting an annoying error in Wordpress, I'm...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bloke.org/php/using-wordpress-header-and-footers-externally/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Free CC Mods</title>
		<link>http://bloke.org/php/free-cc-mods/</link>
		<comments>http://bloke.org/php/free-cc-mods/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 10:17:04 +0000</pubDate>
		<dc:creator>Kieran</dc:creator>
				<category><![CDATA[CubeCart]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://bloke.org/?p=273</guid>
		<description><![CDATA[Estelle has released a few CubeCart 4 modifications free of charge. Very nice of her.
She has an excellent record of releasing top quality CubeCart modifications. Her store is a must-visit for any CubeCart developer.
Speed New Customers Through Checkout
This free CubeCart mod reduces the number of checkout pages by one for all new customers, so it [...]


Related posts:<ol><li><a href='http://bloke.org/php/cubecart-4-released/' rel='bookmark' title='Permanent Link: CubeCart 4 Released'>CubeCart 4 Released</a> <small>CubeCart 4 has just been released. CubeCart 3 had been...</small></li>
<li><a href='http://bloke.org/reviews/cubecartservicesbiz/' rel='bookmark' title='Permanent Link: cubecartservices.biz'>cubecartservices.biz</a> <small>I'd like to extend my thanks to SemperFi over at...</small></li>
<li><a href='http://bloke.org/cubecart/essential-mods-for-cubecart-4/' rel='bookmark' title='Permanent Link: Essential Mods for CubeCart 4'>Essential Mods for CubeCart 4</a> <small>Estelle has two CubeCart modifications that I would consider essential...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a title="Free CubeCart modificatons" href="http://cubecart.expandingbrain.com/index.php" target="_blank">Estelle</a> has released a few CubeCart 4 modifications free of charge. Very nice of her.<br />
She has an excellent record of releasing top quality CubeCart modifications. Her store is a must-visit for any CubeCart developer.<span id="more-273"></span></p>
<p><a href="http://cubecart.expandingbrain.com/free-cubecart-4-mods/speed-new-customers-through-checkout-cc4/prod_99.html" target="_blank">Speed New Customers Through Checkout</a><br />
This free CubeCart mod reduces the number of checkout pages by one for all new customers, so it is useful for most stores. Customers who already have an account at your store will go through the same number of checkout pages as usual.</p>
<p>For shoppers who are not logged in, normally when they view the cart then click the 'Checkout' button they will be taken to a page that has three sections, 'Repeat customer?', 'I do not have an account' and 'Continue shopping'. For most stores that have more new customers than repeat customers, this page does not serve much purpose and simply slows the customer down.</p>
<p>This CubeCart mod will remove this page so that shoppers are taken straight to the page where they enter their invoice details. It also adds information towards the top of the page: 'Already have an account? Please log in or use the forgot password feature if you cannot remember your password'.</p>
<p><a href="http://cubecart.expandingbrain.com/free-cubecart-4-mods/disable-order-acknowledgement-emails-cc4/prod_100.html" target="_blank">Disable Order Acknowledgement Emails</a><br />
CubeCart 4 sends an 'Order Acknowledgement' email to the customer when a new order is being placed. This email is sent before the customer completes payment for their order, so the email may confuse customers if they decide not to complete their order. Also two more emails, 'Payment Received' and 'Order Complete', are sent to the customer when the order status is set to Processing or Completed (respectively), so for most stores the 'Order Acknowledgement' email serves little purpose.</p>
<p>This CubeCart mod will stop the 'Order Acknowledgement' email from being sent.</p>


<p>Related posts:<ol><li><a href='http://bloke.org/php/cubecart-4-released/' rel='bookmark' title='Permanent Link: CubeCart 4 Released'>CubeCart 4 Released</a> <small>CubeCart 4 has just been released. CubeCart 3 had been...</small></li>
<li><a href='http://bloke.org/reviews/cubecartservicesbiz/' rel='bookmark' title='Permanent Link: cubecartservices.biz'>cubecartservices.biz</a> <small>I'd like to extend my thanks to SemperFi over at...</small></li>
<li><a href='http://bloke.org/cubecart/essential-mods-for-cubecart-4/' rel='bookmark' title='Permanent Link: Essential Mods for CubeCart 4'>Essential Mods for CubeCart 4</a> <small>Estelle has two CubeCart modifications that I would consider essential...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bloke.org/php/free-cc-mods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CubeCart Programming</title>
		<link>http://bloke.org/cubecart/cubecart-programming/</link>
		<comments>http://bloke.org/cubecart/cubecart-programming/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 01:08:36 +0000</pubDate>
		<dc:creator>Kieran</dc:creator>
				<category><![CDATA[CubeCart]]></category>

		<guid isPermaLink="false">http://bloke.org/cubecart/cubecart-programming/</guid>
		<description><![CDATA[I've been asked quite a few times recently if I do custom CubeCart programming.
Yes! I do custom CubeCart programming! From mod installation, customisation to full CubeCart installations and skinning.
Please contact me for my rates, portfolio and to discuss your requirements.


Related posts:CubeCart Mod &#8211; Side by Side Products Mod This universal modification allows you to show [...]


Related posts:<ol><li><a href='http://bloke.org/php/cubecart-mod-side-by-side-products-mod/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Side by Side Products Mod'>CubeCart Mod &#8211; Side by Side Products Mod</a> <small>This universal modification allows you to show your products side...</small></li>
<li><a href='http://bloke.org/general/freelance-php-programmer/' rel='bookmark' title='Permanent Link: Freelance PHP Programmer'>Freelance PHP Programmer</a> <small>I am now offering freelance PHP programming. I specialise in...</small></li>
<li><a href='http://bloke.org/php/cubecart-installation-server/' rel='bookmark' title='Permanent Link: CubeCart Installation Service'>CubeCart Installation Service</a> <small>Seen as Devellion Ltd has suspended their CubeCart installation service,...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I've been asked quite a few times recently if I do custom CubeCart programming.<br />
Yes! I do custom CubeCart programming! From mod installation, customisation to full CubeCart installations and skinning.</p>
<p>Please <a href="http://bloke.org/contact/" title="contact kieran barnes">contact me</a> for my rates, portfolio and to discuss your requirements.</p>


<p>Related posts:<ol><li><a href='http://bloke.org/php/cubecart-mod-side-by-side-products-mod/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Side by Side Products Mod'>CubeCart Mod &#8211; Side by Side Products Mod</a> <small>This universal modification allows you to show your products side...</small></li>
<li><a href='http://bloke.org/general/freelance-php-programmer/' rel='bookmark' title='Permanent Link: Freelance PHP Programmer'>Freelance PHP Programmer</a> <small>I am now offering freelance PHP programming. I specialise in...</small></li>
<li><a href='http://bloke.org/php/cubecart-installation-server/' rel='bookmark' title='Permanent Link: CubeCart Installation Service'>CubeCart Installation Service</a> <small>Seen as Devellion Ltd has suspended their CubeCart installation service,...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bloke.org/cubecart/cubecart-programming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CubeCart 4.2 bugs fixed</title>
		<link>http://bloke.org/cubecart/cubecart-42-bugs-fixed/</link>
		<comments>http://bloke.org/cubecart/cubecart-42-bugs-fixed/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 22:42:28 +0000</pubDate>
		<dc:creator>Kieran</dc:creator>
				<category><![CDATA[CubeCart]]></category>

		<guid isPermaLink="false">http://bloke.org/cubecart/cubecart-42-bugs-fixed/</guid>
		<description><![CDATA[Looks like some of my reported CubeCart bugs got fixed in the new release.
Swell! Here's to me being even more annoying towards the 4.3.1 and 4.3.2 releases.


Related posts:CubeCart 4.2 CubeCart 4.2.0 was released on 20th February. Its quite a...
CubeCart Mod &#8211; Side by Side Products Mod This universal modification allows you to show your products [...]


Related posts:<ol><li><a href='http://bloke.org/cubecart/cubecart-42/' rel='bookmark' title='Permanent Link: CubeCart 4.2'>CubeCart 4.2</a> <small>CubeCart 4.2.0 was released on 20th February. Its quite a...</small></li>
<li><a href='http://bloke.org/php/cubecart-mod-side-by-side-products-mod/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Side by Side Products Mod'>CubeCart Mod &#8211; Side by Side Products Mod</a> <small>This universal modification allows you to show your products side...</small></li>
<li><a href='http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Show sub-category products on category page'>CubeCart Mod &#8211; Show sub-category products on category page</a> <small>This modification is for CubeCart 3. It will show all...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Looks like <a href="http://bugs.cubecart.com/view.php?id=852">some</a> of my <a href="http://bugs.cubecart.com/view.php?id=898" target="_blank">reported</a> CubeCart bugs got fixed in the <a href="http://forums.cubecart.com/index.php?showtopic=32749">new release</a>.</p>
<p>Swell! Here's to me being even more annoying towards the 4.3.1 and 4.3.2 releases.</p>


<p>Related posts:<ol><li><a href='http://bloke.org/cubecart/cubecart-42/' rel='bookmark' title='Permanent Link: CubeCart 4.2'>CubeCart 4.2</a> <small>CubeCart 4.2.0 was released on 20th February. Its quite a...</small></li>
<li><a href='http://bloke.org/php/cubecart-mod-side-by-side-products-mod/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Side by Side Products Mod'>CubeCart Mod &#8211; Side by Side Products Mod</a> <small>This universal modification allows you to show your products side...</small></li>
<li><a href='http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Show sub-category products on category page'>CubeCart Mod &#8211; Show sub-category products on category page</a> <small>This modification is for CubeCart 3. It will show all...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bloke.org/cubecart/cubecart-42-bugs-fixed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CubeCart 4.2</title>
		<link>http://bloke.org/cubecart/cubecart-42/</link>
		<comments>http://bloke.org/cubecart/cubecart-42/#comments</comments>
		<pubDate>Sun, 02 Mar 2008 20:34:16 +0000</pubDate>
		<dc:creator>Kieran</dc:creator>
				<category><![CDATA[CubeCart]]></category>

		<guid isPermaLink="false">http://bloke.org/cubecart/cubecart-42/</guid>
		<description><![CDATA[CubeCart 4.2.0 was released on 20th February. Its quite a mile stone release, featuring several long requested features.
For example, store owners can now set Custom SEO URL Paths and Custom product options (Text Box/Text Area) for individual products. Two very welcome features. The developers have been working hard to add some much needed features to [...]


Related posts:<ol><li><a href='http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Show sub-category products on category page'>CubeCart Mod &#8211; Show sub-category products on category page</a> <small>This modification is for CubeCart 3. It will show all...</small></li>
<li><a href='http://bloke.org/cubecart/cubecart-programming/' rel='bookmark' title='Permanent Link: CubeCart Programming'>CubeCart Programming</a> <small>I've been asked quite a few times recently if I...</small></li>
<li><a href='http://bloke.org/php/cubecart-mod-side-by-side-products-mod/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Side by Side Products Mod'>CubeCart Mod &#8211; Side by Side Products Mod</a> <small>This universal modification allows you to show your products side...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cubecart.com" title="Cube cart" target="_blank">CubeCart</a> 4.2.0 was <a href="http://forums.cubecart.com/index.php?showtopic=32749" title="CubeCart" target="_blank">released</a> on 20th February. Its quite a mile stone release, featuring several long requested features.</p>
<p>For example, store owners can now set Custom SEO URL Paths and Custom product options (Text Box/Text Area) for individual products. <span id="more-225"></span>Two very welcome features. The developers have been working hard to add some much needed features to CubeCart 4.2.0 and there's already a 4.2.1 release due soon.</p>
<p>Shame it breaks a <a href="http://www.cubecartforums.org/index.php?showtopic=1751&amp;pid=17008&amp;st=0&amp;#entry17008" title="Hide site docs, cube cart" target="_blank">few custom modifications</a> though!</p>


<p>Related posts:<ol><li><a href='http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Show sub-category products on category page'>CubeCart Mod &#8211; Show sub-category products on category page</a> <small>This modification is for CubeCart 3. It will show all...</small></li>
<li><a href='http://bloke.org/cubecart/cubecart-programming/' rel='bookmark' title='Permanent Link: CubeCart Programming'>CubeCart Programming</a> <small>I've been asked quite a few times recently if I...</small></li>
<li><a href='http://bloke.org/php/cubecart-mod-side-by-side-products-mod/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Side by Side Products Mod'>CubeCart Mod &#8211; Side by Side Products Mod</a> <small>This universal modification allows you to show your products side...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bloke.org/cubecart/cubecart-42/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essential Mods for CubeCart 4</title>
		<link>http://bloke.org/cubecart/essential-mods-for-cubecart-4/</link>
		<comments>http://bloke.org/cubecart/essential-mods-for-cubecart-4/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 15:52:39 +0000</pubDate>
		<dc:creator>Kieran</dc:creator>
				<category><![CDATA[CubeCart]]></category>

		<guid isPermaLink="false">http://bloke.org/wordpress/2008/02/19/essential-mods-for-cubecart-4/</guid>
		<description><![CDATA[Estelle has two CubeCart modifications that I would consider essential for any serious store owner.
Firstly, Advanced Contact Forms - any store has a basic requirement for customers to make contact with the store owner.
Like  cForms II for Wordpress, which I am also a great fan of, Estelle has managed to create a fully flexible [...]


Related posts:<ol><li><a href='http://bloke.org/php/free-cc-mods/' rel='bookmark' title='Permanent Link: Free CC Mods'>Free CC Mods</a> <small>Estelle has released a few CubeCart 4 modifications free of...</small></li>
<li><a href='http://bloke.org/php/estelles-mod-store/' rel='bookmark' title='Permanent Link: Estelle&#8217;s Mod Store'>Estelle&#8217;s Mod Store</a> <small>I've recently had the pleasure of dealing with Estelle Winterflood,...</small></li>
<li><a href='http://bloke.org/cubecart/cubecart-programming/' rel='bookmark' title='Permanent Link: CubeCart Programming'>CubeCart Programming</a> <small>I've been asked quite a few times recently if I...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://cubecart.expandingbrain.com/" title="Estelles Mod Store" target="_blank">Estelle</a> has two CubeCart modifications that I would consider essential for any serious store owner.</p>
<p>Firstly, <strong>Advanced Contact Forms</strong> - any store has a basic requirement for customers to make contact with the store owner.<br />
Like  <a href="http://www.deliciousdays.com/cforms-plugin" title="cForms II" target="_blank">cForms II</a> for <a href="http://www.wordpress.org" target="_blank">Wordpress</a>, which I am also a great fan of, Estelle has managed to create a fully flexible form creation package. I purchase a copy for every store I put live.<span id="more-206"></span></p>
<p>The interface is extremely simple to use and the front end view is gorgeous, even in it's default CSS.<br />
You can even add <a href="http://recaptcha.net/learnmore.html" target="_blank">reCAPTCHA</a> to combat spam, so at $19.99 it is well worth purchasing.<br clear="all /&gt;&lt;/p&gt; &lt;p align=" /></p>
<p align="center"><a href="http://bloke.org/wordpress/wp-content/uploads/2008/02/acf_settings.jpg" title="acf_settings.jpg"><img src="http://bloke.org/wordpress/wp-content/uploads/2008/02/acf_settings.thumbnail.jpg" alt="acf_settings.jpg" border="0" hspace="10" vspace="10" /></a><a href="http://bloke.org/wordpress/wp-content/uploads/2008/02/cc4_contact_form.JPG" title="cc4_contact_form.JPG"><img src="http://bloke.org/wordpress/wp-content/uploads/2008/02/cc4_contact_form.thumbnail.JPG" alt="cc4_contact_form.JPG" border="0" hspace="10" vspace="10" /></a></p>
<p align="left">Secondly, what I consider a necessity, Force Selection of Product Options. It solves several CubeCart 4 short-comings where it stops the customer adding items to the basket without selection and required product options.<br />
You can chose which options will be forced and nice warning messages will fade in.</p>
<p align="center"><a href="http://bloke.org/wordpress/wp-content/uploads/2008/02/cc4_force_options.JPG" title="cc4_force_options.JPG"><img src="http://bloke.org/wordpress/wp-content/uploads/2008/02/cc4_force_options.thumbnail.JPG" alt="cc4_force_options.JPG" border="0" hspace="10" vspace="10" /></a></p>
<p align="left">It's really nice to see other modders start to use the <a href="http://www.prototypejs.org/" target="_blank">Prototype</a>/<a href="http://script.aculo.us/" target="_blank">scriptaculous</a> libraries bundled in CubeCart 4.</p>
<p>Previous blog entry on <a href="http://bloke.org/wordpress/2007/11/01/cubecart-and-wordpress-integration/" title="Estelle’s Mod Store">Estelles's Mod Store</a>.</p>
<p>Previous blog entry on exploiting <a href="http://www.prototypejs.org/" target="_blank">Prototype</a>/<a href="http://script.aculo.us/" target="_blank">scriptaculous</a> for <a href="http://bloke.org/wordpress/2007/10/23/flashy-cubecart-errors/" title="Flashy CubeCart errors" target="_blank">flashy errors</a>.</p>


<p>Related posts:<ol><li><a href='http://bloke.org/php/free-cc-mods/' rel='bookmark' title='Permanent Link: Free CC Mods'>Free CC Mods</a> <small>Estelle has released a few CubeCart 4 modifications free of...</small></li>
<li><a href='http://bloke.org/php/estelles-mod-store/' rel='bookmark' title='Permanent Link: Estelle&#8217;s Mod Store'>Estelle&#8217;s Mod Store</a> <small>I've recently had the pleasure of dealing with Estelle Winterflood,...</small></li>
<li><a href='http://bloke.org/cubecart/cubecart-programming/' rel='bookmark' title='Permanent Link: CubeCart Programming'>CubeCart Programming</a> <small>I've been asked quite a few times recently if I...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bloke.org/cubecart/essential-mods-for-cubecart-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CubeCart Mod &#8211; Side by Side Products Mod</title>
		<link>http://bloke.org/php/cubecart-mod-side-by-side-products-mod/</link>
		<comments>http://bloke.org/php/cubecart-mod-side-by-side-products-mod/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 10:48:23 +0000</pubDate>
		<dc:creator>Kieran</dc:creator>
				<category><![CDATA[CubeCart]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://bloke.org/wordpress/2008/01/18/cubecart-mod-side-by-side-products-mod/</guid>
		<description><![CDATA[This universal modification allows you to show your products side by side on the "View Category" page instead of the usual table top to bottom view.
Works with both CubeCart 3 and CubeCart 4.
The box size &#38; style is completely customisable with CSS. Not to hot with CSS? Then select the "Modification Customisation" option and I [...]


Related posts:<ol><li><a href='http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Show sub-category products on category page'>CubeCart Mod &#8211; Show sub-category products on category page</a> <small>This modification is for CubeCart 3. It will show all...</small></li>
<li><a href='http://bloke.org/cubecart/cubecart-programming/' rel='bookmark' title='Permanent Link: CubeCart Programming'>CubeCart Programming</a> <small>I've been asked quite a few times recently if I...</small></li>
<li><a href='http://bloke.org/php/cubecart-installation-server/' rel='bookmark' title='Permanent Link: CubeCart Installation Service'>CubeCart Installation Service</a> <small>Seen as Devellion Ltd has suspended their CubeCart installation service,...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This universal modification allows you to show your products side by side on the "View Category" page instead of the usual table top to bottom view.<br />
Works with both CubeCart 3 and CubeCart 4.<span id="more-172"></span><br />
<a href="http://bloke.org/wordpress/wp-content/uploads/2008/01/cc-mod-rows.jpg" title="cc-mod-rows.jpg"><img src="http://bloke.org/wordpress/wp-content/uploads/2008/01/cc-mod-rows.thumbnail.jpg" title="cc-mod-rows.jpg" alt="cc-mod-rows.jpg" border="0" /></a>The box size &amp; style is completely customisable with CSS. Not to hot with CSS? Then select the "Modification Customisation" option and I will contact you directly to discuss a complete customisation service.</p>
<p>I offer an installation service on this product which, if selected, I will contact you directly for your store details.</p>
<p><strong>Mod Version:</strong> 1.0 Initial Public Release<br />
<strong>Mod License:</strong> Commercial: per Web Server Installation<br />
<strong>Cost:</strong> £9.99<br />
<strong>Version History:</strong> Initial Public Release</p>
<p><a href="http://www.cubecarthosting.co.uk/index.php?act=viewProd&amp;productId=4" title="CubeCart Mod - Side by Side Products Mod" target="_blank">View Mod Details &amp; Buy</a></p>


<p>Related posts:<ol><li><a href='http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Show sub-category products on category page'>CubeCart Mod &#8211; Show sub-category products on category page</a> <small>This modification is for CubeCart 3. It will show all...</small></li>
<li><a href='http://bloke.org/cubecart/cubecart-programming/' rel='bookmark' title='Permanent Link: CubeCart Programming'>CubeCart Programming</a> <small>I've been asked quite a few times recently if I...</small></li>
<li><a href='http://bloke.org/php/cubecart-installation-server/' rel='bookmark' title='Permanent Link: CubeCart Installation Service'>CubeCart Installation Service</a> <small>Seen as Devellion Ltd has suspended their CubeCart installation service,...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bloke.org/php/cubecart-mod-side-by-side-products-mod/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CubeCart Mod &#8211; Show sub-category products on category page</title>
		<link>http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/</link>
		<comments>http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 10:46:59 +0000</pubDate>
		<dc:creator>Kieran</dc:creator>
				<category><![CDATA[CubeCart]]></category>
		<category><![CDATA[HTML, CSS, AJAX]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://bloke.org/wordpress/2008/01/18/cubecart-mod-show-sub-category-products-on-category-page/</guid>
		<description><![CDATA[This modification is for CubeCart 3.
It will show all the products belong to the subcategories on the main category page. Confused? Check out the image, it explains all!


Quite simply, it shows your customers all the products in a category and subcategories without having them click into separate subcategories.
A must have for those with lots of [...]


Related posts:<ol><li><a href='http://bloke.org/php/cubecart-mod-side-by-side-products-mod/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Side by Side Products Mod'>CubeCart Mod &#8211; Side by Side Products Mod</a> <small>This universal modification allows you to show your products side...</small></li>
<li><a href='http://bloke.org/php/cubecart-4-released/' rel='bookmark' title='Permanent Link: CubeCart 4 Released'>CubeCart 4 Released</a> <small>CubeCart 4 has just been released. CubeCart 3 had been...</small></li>
<li><a href='http://bloke.org/php/cubecart-tax-classes-on-product-page/' rel='bookmark' title='Permanent Link: CubeCart Tax Classes on Product Page'>CubeCart Tax Classes on Product Page</a> <small>A client of mine sells a mix of VAT and...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This modification is for CubeCart 3.<br />
It will show all the products belong to the subcategories on the main category page. Confused? Check out the image, it explains all!<br />
<span id="more-169"></span></p>
<p style="text-align: center"><a title="cc-mods-all-prods.jpg" href="http://bloke.org/wp-content/uploads/2008/01/cc-mods-all-prods.jpg"><img style="border: 0;" title="cc-mods-all-prods.jpg" src="http://bloke.org/wp-content/uploads/2008/01/cc-mods-all-prods.thumbnail.jpg" border="0" alt="cc-mods-all-prods.jpg" /></a></p>
<p>Quite simply, it shows your customers all the products in a category and subcategories without having them click into separate subcategories.</p>
<p>A must have for those with lots of categories.</p>
<p><strong>Mod Version:</strong> 1.0 Initial Public Release<br />
<strong>Mod License:</strong> Commercial: per Web Server Installation<br />
<strong>Cost:</strong> £15<strong><br />
Version History:</strong> Initial Public Release</p>
<p><a title="CubeCart Mod - Show sub-category products on category page" href="http://www.cubecarthosting.co.uk/index.php?act=viewProd&amp;productId=5" target="_blank">View Mod Details &amp; Buy</a></p>


<p>Related posts:<ol><li><a href='http://bloke.org/php/cubecart-mod-side-by-side-products-mod/' rel='bookmark' title='Permanent Link: CubeCart Mod &#8211; Side by Side Products Mod'>CubeCart Mod &#8211; Side by Side Products Mod</a> <small>This universal modification allows you to show your products side...</small></li>
<li><a href='http://bloke.org/php/cubecart-4-released/' rel='bookmark' title='Permanent Link: CubeCart 4 Released'>CubeCart 4 Released</a> <small>CubeCart 4 has just been released. CubeCart 3 had been...</small></li>
<li><a href='http://bloke.org/php/cubecart-tax-classes-on-product-page/' rel='bookmark' title='Permanent Link: CubeCart Tax Classes on Product Page'>CubeCart Tax Classes on Product Page</a> <small>A client of mine sells a mix of VAT and...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://bloke.org/php/cubecart-mod-show-sub-category-products-on-category-page/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
