<?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>Digital Success online marketing and web blog &#187; Web Development</title>
	<atom:link href="http://www.digitalsuccess.co.uk/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digitalsuccess.co.uk</link>
	<description>Online marketing and Web thoughts blog</description>
	<lastBuildDate>Tue, 31 Jan 2012 14:09:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to delete an order in Prestashop</title>
		<link>http://www.digitalsuccess.co.uk/web-development/how-to-delete-an-order-in-prestashop/</link>
		<comments>http://www.digitalsuccess.co.uk/web-development/how-to-delete-an-order-in-prestashop/#comments</comments>
		<pubDate>Fri, 20 May 2011 08:31:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[prestashop]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=242</guid>
		<description><![CDATA[I found this tip for adding the delete button for orders in prestashop. If you are looking for the delete button for deleting the test orders before going live in PrestaShop, follow the instructions below. You probably found this blog post because you’re wondering the same thing I was this morning… the ability to delete ]]></description>
			<content:encoded><![CDATA[<p>I found this tip for adding the delete button for orders in prestashop. If you are looking for the delete button for deleting the test orders before going live in PrestaShop, follow the instructions below.</p>
<p>You probably found this blog post because you’re wondering the same thing I was this morning… the ability to delete an order is a very basic function and yet, I cannot find the delete button! Well, the delete button is is not a permission, but instead an option you must turn on by modifying the code. A lot of people that don’t speak PHP will not be happy. Anyway, the delete button will appear at the bottom of your order list by adding the following line of code in the construct of the AdminOrders class.</p>
<p>1. In the renamed admin directory of your store, go to tabs/AdminOrders.php.<br />
2. Around line 28 below $this->colorOnBackground = true; , add $this->delete = true; so it looks like this -</p>
<p>class AdminOrders extends AdminTab<br />
{<br />
	public function __construct()<br />
	{<br />
	 	$this->table = &#8216;order&#8217;;<br />
	 	$this->className = &#8216;Order&#8217;;<br />
	 	$this->view = &#8216;noActionColumn&#8217;;<br />
		$this->colorOnBackground = true;<br />
		$this->delete = true;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/web-development/how-to-delete-an-order-in-prestashop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Augmented Reality Developer Challenge</title>
		<link>http://www.digitalsuccess.co.uk/web-development/augmented-reality-developer-challenge/</link>
		<comments>http://www.digitalsuccess.co.uk/web-development/augmented-reality-developer-challenge/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 16:01:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[augmented reality]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=221</guid>
		<description><![CDATA[Qualcomm has a competition using its SDK for augmented reality. With prizes on offer for the top AR apps. AR apps allow a layer of information to be added on top of the real world when looked through a mobile phone for example. So maps and information points as well as games taking place in ]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.digitalsuccess.co.uk/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/wp-content/thumbnails/221.jpg&amp;w=200&amp;h=150&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<p>Qualcomm has a competition using its SDK for augmented reality. With prizes on offer for the top AR apps.</p>
<p>AR apps allow a layer of information to be added on top of the real world when looked through a mobile phone for example. So maps and information points as well as games taking place in the real world are popular.</p>
<p>To learn more head over to the <a href="http://developer.qualcomm.com/dev/augmented-reality/developer-challenge">competition website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/web-development/augmented-reality-developer-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript fade background images using jquery</title>
		<link>http://www.digitalsuccess.co.uk/scripts/javascript-fade-background-images-using-jquery/</link>
		<comments>http://www.digitalsuccess.co.uk/scripts/javascript-fade-background-images-using-jquery/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 16:35:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=215</guid>
		<description><![CDATA[After looking everywhere including jqueryetc for a way to do an image swap that fades, but using the background images, I figured out a rough way to do it. This is not a fully tested and final way of doing background image fading sequence but thought I would put it out as a potential way ]]></description>
			<content:encoded><![CDATA[<p>After looking everywhere including jqueryetc for a way to do an image swap that fades, but using the background images, I figured out a rough way to do it.</p>
<p>This is not a fully tested and final way of doing background image fading sequence but thought I would put it out as a potential way to do it. Hopefully it helps somebody looking for it.</p>
<p>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style&gt;<br />
#test1, #test2, #test3 { height:200px; background-position:center; background-repeat:no-repeat;width:100%; position:absolute; }<br />
#test1 {<br />
background-image:url(&#8216;img/img1.jpg&#8217;);<br />
}<br />
#test2 {<br />
background-image:url(&#8216;img/img2.jpg&#8217;);<br />
display:none;<br />
}<br />
#test3 {<br />
background-image:url(&#8216;img/img3.jpg&#8217;);<br />
display:none;<br />
}<br />
&lt;/style&gt;<br />
&lt;script src=&#8221;http://code.jquery.com/jquery-latest.min.js&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;script&gt;<br />
var $i = 1;<br />
var auto_refresh = setInterval(<br />
function ()<br />
{<br />
if($i==4) {<br />
$(&#8220;#test3&#8243;).fadeOut(1000);<br />
$(&#8220;#test2&#8243;).fadeOut(1000);<br />
$i=1;<br />
} else {<br />
$(&#8220;#test&#8221;+$i).fadeIn(1000);<br />
$i=$i+1;<br />
}<br />
}, 3000);</p>
<p>&lt;/script&gt;</p>
<p>&lt;div id=&#8221;test1&#8243;&gt;&amp;nbsp;&lt;/div&gt;<br />
&lt;div id=&#8221;test2&#8243;&gt;&amp;nbsp;&lt;/div&gt;<br />
&lt;div id=&#8221;test3&#8243;&gt;&amp;nbsp;&lt;/div&gt;</p>
<p>&lt;/body&gt;<br />
&lt;/html&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/scripts/javascript-fade-background-images-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>http://www.cakeboxes2u.co.uk Launch</title>
		<link>http://www.digitalsuccess.co.uk/website-design/httpwww-cakeboxes-co-uk-launch/</link>
		<comments>http://www.digitalsuccess.co.uk/website-design/httpwww-cakeboxes-co-uk-launch/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 09:10:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=166</guid>
		<description><![CDATA[New ecommerce cake box website launched. My company has launched a new cake box ecommerce website that we designed and built. The ecommerce platform we chose for this web project was PrestaShop. This is the first time that we used this platform so it will be interesting to see how it goes. PrestaShop is a ]]></description>
			<content:encoded><![CDATA[<p>New ecommerce <a href="http://www.cakeboxes2u.co.uk/">cake box</a> website launched. My company has launched a new cake box ecommerce website that we designed and built. The ecommerce platform we chose for this web project was PrestaShop. This is the first time that we used this platform so it will be interesting to see how it goes.</p>
<p>PrestaShop is a modern opensource ecommerce platform that allows quite a few options that come built in.</p>
<p>View the site now.</p>
<p><a href="http://www.cakeboxes2u.co.uk/">http://www.cakeboxes2u.co.uk/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/website-design/httpwww-cakeboxes-co-uk-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML 5 and new possibilities</title>
		<link>http://www.digitalsuccess.co.uk/web-development/html-5-and-new-possibilities/</link>
		<comments>http://www.digitalsuccess.co.uk/web-development/html-5-and-new-possibilities/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 12:22:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=155</guid>
		<description><![CDATA[Here is a Google video about html 5 The new possibilities that html 5 will bring could be a big change to the way that webpages are developed. Here is a good resource site about it: http://html-five.net/ Also YouTube are now starting to use html5 video embeded videos]]></description>
			<content:encoded><![CDATA[<p>Here is a Google video about html 5</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/AusOPz8Ww80&amp;hl=en_GB&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/AusOPz8Ww80&amp;hl=en_GB&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The new possibilities that html 5 will bring could be a big change to the way that webpages are developed.</p>
<p>Here is a good resource site about it:</p>
<p><a href="http://html-five.net/">http://html-five.net/</a></p>
<p>Also YouTube are now starting to use html5 video embeded videos.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/web-development/html-5-and-new-possibilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Future of magazines concept</title>
		<link>http://www.digitalsuccess.co.uk/web-development/future-of-magazines-concept/</link>
		<comments>http://www.digitalsuccess.co.uk/web-development/future-of-magazines-concept/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 09:12:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[computer interaction]]></category>
		<category><![CDATA[video marketing]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=150</guid>
		<description><![CDATA[This video has a look at the future of what magazines maybe like. It is a concept video of how they could work in the near future. Mag+ from Bonnier on Vimeo]]></description>
			<content:encoded><![CDATA[<p>This video has a look at the future of what magazines maybe like. It is a concept video of how they could work in the near future.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="225" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=8217311&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="225" src="http://vimeo.com/moogaloop.swf?clip_id=8217311&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/8217311">Mag+</a> from <a href="http://vimeo.com/bonnier">Bonnier</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/web-development/future-of-magazines-concept/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Apple iPad</title>
		<link>http://www.digitalsuccess.co.uk/web-development/the-apple-ipad/</link>
		<comments>http://www.digitalsuccess.co.uk/web-development/the-apple-ipad/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 10:30:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=147</guid>
		<description><![CDATA[Just a quick update to post a video that was on techcrunch of the new iPad. People really go crazy over all things Apple, so it will be interesting to see if this changes the playing field for web developers. It king of looks like a giant iPhone I think, which is no bad thing. ]]></description>
			<content:encoded><![CDATA[<p>Just a quick update to post a video that was on techcrunch of the new iPad. People really go crazy over all things Apple, so it will be interesting to see if this changes the playing field for web developers. It king of looks like a giant iPhone I think, which is no bad thing.</p>
<p>Below is the video:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/NRQ0Aq1XzdE&amp;hl=en_GB&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/NRQ0Aq1XzdE&amp;hl=en_GB&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/web-development/the-apple-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE Tester</title>
		<link>http://www.digitalsuccess.co.uk/web-development/ie-tester/</link>
		<comments>http://www.digitalsuccess.co.uk/web-development/ie-tester/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 12:22:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=145</guid>
		<description><![CDATA[I have found a good program to test websites out in the problematic ie6, its called IE Tester. The link is: http://www.my-debugbar.com/wiki/IETester/HomePag Although I still think that ie developer tools should include testing in ie6 as well as 7 and ]]></description>
			<content:encoded><![CDATA[<p>I have found a good program to test websites out in the problematic ie6, its called IE Tester.</p>
<p>The link is: http://www.my-debugbar.com/wiki/IETester/HomePag</p>
<p>Although I still think that ie developer tools should include testing in ie6 as well as 7 and 8</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/web-development/ie-tester/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix for form textfield and submit align</title>
		<link>http://www.digitalsuccess.co.uk/web-development/fix-for-form-textfield-and-submit-align/</link>
		<comments>http://www.digitalsuccess.co.uk/web-development/fix-for-form-textfield-and-submit-align/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 16:42:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=124</guid>
		<description><![CDATA[I found this tip about a tip to align the form text field and submit button it seems to work. http://nclud.com/sketchbook/css-fix-for-graphical-input-submit-button-off-set]]></description>
			<content:encoded><![CDATA[<p>I found this tip about a tip to align the form text field and submit button it seems to work.</p>
<p>http://nclud.com/sketchbook/css-fix-for-graphical-input-submit-button-off-set/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/web-development/fix-for-form-textfield-and-submit-align/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

