<?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>Designed2Perform</title>
	<atom:link href="http://www.designed2perform.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designed2perform.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 23:18:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Display product as FREE if the price is £0.00 Magento</title>
		<link>http://www.designed2perform.co.uk/2012/01/26/display-product-as-free-if-the-price-is-0-00-magento/</link>
		<comments>http://www.designed2perform.co.uk/2012/01/26/display-product-as-free-if-the-price-is-0-00-magento/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 21:10:52 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.designed2perform.co.uk/?p=2422</guid>
		<description><![CDATA[Today we have been working on a Magento E-commerce website where the client wanted to display the word ‘FREE’ if the product was £0.00. Magento by default doesn’t support this, so some changes to the code needed to be made including the product and category files. &#160; In Magento version 1.5.0.1 you&#8217;ll need to edit two [...]]]></description>
			<content:encoded><![CDATA[<p>Today we have been working on a Magento E-commerce website where the client wanted to display the word ‘FREE’ if the product was £0.00. Magento by default doesn’t support this, so some changes to the code needed to be made including the product and category files.</p>
<p><a href="http://www.designed2perform.co.uk/wp-content/uploads/2012/01/Screen-Shot-2012-01-26-at-21.29.32.png"><img class="alignleft  wp-image-2448" title="Screen Shot 2012-01-26 at 21.29.32" src="http://www.designed2perform.co.uk/wp-content/uploads/2012/01/Screen-Shot-2012-01-26-at-21.29.32.png" alt="" width="576" height="234" /></a></p>
<p>&nbsp;</p>
<p><span id="more-2422"></span></p>
<p>In Magento version 1.5.0.1 you&#8217;ll need to edit two files.</p>
<p><strong>app/design/frontend/default/your_theme/template/catalog/product/price.phtml &#8211; Line 189</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">                &lt;span class=&quot;regular-price&quot; id=&quot;product-price-<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$_id</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getIdSuffix</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
                    <span style="color: #000000; font-weight: bold;">&lt;?php</span> 
                    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$_coreHelper</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">currency</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_price</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'&lt;span class=&quot;price&quot;&gt;£0.00&lt;/span&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
                    	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;span class=&quot;price&quot;&gt;FREE&lt;/span&gt;'</span><span style="color: #339933;">;</span>
                    <span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span>
                    	<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$_coreHelper</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">currency</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_price</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span><span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                    <span style="color: #009900;">&#125;</span> 
                    <span style="color: #000000; font-weight: bold;">?&gt;</span>
                &lt;/span&gt;</pre></div></div>

<p><strong>app/design/frontend/default/your_theme/template/catalog/product/view/type/default.phtml &#8211; Line 36</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_product</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">price</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
    <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;div class=&quot;price-box&quot;&gt;&lt;span class=&quot;regular-price&quot;&gt;&lt;span class=&quot;price&quot;&gt;FREE&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;'</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">else</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getPriceHtml</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_product</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Remember, simple.phtml was deprecated after 1.4.1.0 in favour of default.phtml. Many people make the mistake of looking in this file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designed2perform.co.uk/2012/01/26/display-product-as-free-if-the-price-is-0-00-magento/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email marketing within Google Adwords</title>
		<link>http://www.designed2perform.co.uk/2011/12/31/email-marketing-within-google-adwords/</link>
		<comments>http://www.designed2perform.co.uk/2011/12/31/email-marketing-within-google-adwords/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 20:34:38 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[PPC]]></category>

		<guid isPermaLink="false">http://www.designed2perform.co.uk/?p=2265</guid>
		<description><![CDATA[We all know Google are constantly pushing the boundaries of marketing but this is something different and maybe a little dated but maybe not. The new ad format allows companies to buy ads which will automatically fill in the “Subscribe to newsletter” slot with the persons email address (if logged in). If the person chooses [...]]]></description>
			<content:encoded><![CDATA[<p>We all know Google are constantly pushing the boundaries of marketing but this is something different and maybe a little dated but maybe not.</p>
<p>The new ad format allows companies to buy ads which will automatically fill in the “Subscribe to newsletter” slot with the persons email address (if logged in). If the person chooses to subscribe the email address is sent to the advertiser directly, however this is only made clear to the user if they click on the privacy button which details this.</p>
<p><span id="more-2265"></span></p>
<p>The image below (source: techcrunch) is the only current example we have seen but not sure if this has been rolled out yet. It should make things very interesting in the future but unfortunately we were expecting Facebook or Twitter related marketing tied in not <a title="Email Marketing" href="http://www.designed2perform.co.uk/email-marketing/">email marketing</a>.</p>
<p style="text-align: center;"><img class="size-full wp-image-2266 aligncenter" title="Google Adwords Email Marketing" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/12/download.png" alt="" width="566" height="262" /></p>
<p>Overall this is good for people that have already visited your site and therefore know what they are signing up for, but how many email subscriptions will you get from those that have never visited your site?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designed2perform.co.uk/2011/12/31/email-marketing-within-google-adwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Google Adwords / PPC Campaign</title>
		<link>http://www.designed2perform.co.uk/2011/12/29/mobile-google-adwords-ppc-campaign/</link>
		<comments>http://www.designed2perform.co.uk/2011/12/29/mobile-google-adwords-ppc-campaign/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 15:26:26 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.designed2perform.co.uk/?p=2254</guid>
		<description><![CDATA[Over the past couple of months we&#8217;ve noticed an increase in mobile devices showing up in Google Analytics this is mainly due to the increase in smartphones and other mobile devices. User behaviour between mobile search and desktop search differs dramatically. People are becoming more reliant on mobile search, many smartphones use location services so you can be [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past couple of months we&#8217;ve noticed an increase in mobile devices showing up in Google Analytics this is mainly due to the increase in smartphones and other mobile devices. User behaviour between mobile search and desktop search differs dramatically.</p>
<p style="text-align: center;"><img class="size-full wp-image-2257 aligncenter" title="Mobile Search" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/12/mobile-search1.jpg" alt="Mobile Search" width="567" height="170" /></p>
<p><span id="more-2254"></span></p>
<p>People are becoming more reliant on mobile search, many smartphones use location services so you can be very broad with your search term as it will only return results based on your location. This being said there is a simple way to get listed quickly and get shown in the location based search by using <a title="Google Maps" href="http://www.google.com/local/">Google Places</a> (formerly called Google Business Center).</p>
<p><a href="http://www.designed2perform.co.uk/wp-content/uploads/2011/12/mobile-search-results.jpg"><img class="aligncenter size-full wp-image-2259" title="mobile-search-results" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/12/mobile-search-results.jpg" alt="" width="567" height="170" /></a></p>
<p>Many smartphones and mobile devices will allow you to select telephone numbers and call them directly from the device. From the image below you can see that the telephone number highlighted in blue is actually a trackable clickable link from this we can also take into account the amount of calls received from the <a title="PPC" href="http://www.designed2perform.co.uk/ppc-pay-per-click/">PPC</a> campaign.</p>
<p><a href="http://www.designed2perform.co.uk/wp-content/uploads/2011/12/mobile-search-ppc.jpg"><img class="aligncenter size-full wp-image-2260" title="mobile-search-ppc" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/12/mobile-search-ppc.jpg" alt="" width="567" height="170" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designed2perform.co.uk/2011/12/29/mobile-google-adwords-ppc-campaign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Legal Advice Website Live</title>
		<link>http://www.designed2perform.co.uk/2011/10/27/new-legal-advice-website-live/</link>
		<comments>http://www.designed2perform.co.uk/2011/10/27/new-legal-advice-website-live/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 20:58:04 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
				<category><![CDATA[Clients]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.designed2perform.co.uk/?p=2107</guid>
		<description><![CDATA[Over the last couple of months we&#8217;ve been busy working on all types of projects from e-commerce, bespoke systems. One of the latest websites to go live is Nineteen Legal a legal advice company based in Preston Lancashire. We developed a content management system for the website using WordPress. This will make updating the site [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last couple of months we&#8217;ve been busy working on all types of projects from <a title="e-commerce web design" href="http://www.designed2perform.co.uk/e-commerce/">e-commerce</a>, bespoke systems. One of the latest websites to go live is <a title="Nineteen Legal" href="http://www.nineteenlegal.co.uk/">Nineteen Legal</a> a legal advice company based in Preston Lancashire.</p>
<p><img class="alignleft size-full wp-image-2108" title="Nineteen Legal" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/10/nineteen_legal.jpg" alt="" width="567" height="170" /></p>
<p><span id="more-2107"></span></p>
<p>We developed a content management system for the website using WordPress. This will make updating the site simple and quick. The website is built with SEO as the foundations as a website needs to be visible in the search engines.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designed2perform.co.uk/2011/10/27/new-legal-advice-website-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Reasons To Use Wireframes In Web Design</title>
		<link>http://www.designed2perform.co.uk/2011/08/02/5-reasons-to-use-wireframes-in-web-design/</link>
		<comments>http://www.designed2perform.co.uk/2011/08/02/5-reasons-to-use-wireframes-in-web-design/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 06:25:46 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.designed2perform.co.uk/?p=2027</guid>
		<description><![CDATA[Before we create any website design we always start with wireframes, from previous experience we’ve found that it can speed up development time and also means that get the right design first time. Here are a few reasons why we use wireframes Wireframes allow you to work out the basic design of pages. You can [...]]]></description>
			<content:encoded><![CDATA[<p>Before we create any <a href="http://www.designed2perform.co.uk/">website design</a> we always start with wireframes, from previous experience we’ve found that it can speed up development time and also means that get the right design first time.</p>
<p><span id="more-2027"></span>Here are a few reasons why we use wireframes</p>
<ul>
<li>Wireframes allow you to work out the basic design of pages. You can have the position of where elements will go, text size, and tone decided before working on other design details.</li>
<li>Wireframes help insure that functionality is explored.</li>
<li>Wireframes allow you to explore numerous positioning, functional options, and how elements will work together on the page (or between pages) rapidly.</li>
<li>Wireframes are excellent for creating layouts, planning functionality, and organizing the information of your website.</li>
<li>Removing options like style and color helps you focus on things like positioning, size, and hierarchy.</li>
</ul>
<p>Below is an example of a wireframe we created for a client.</p>
<p><img class="alignnone" title="Wireframe Mockup" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/03/dprretail-mock.jpg" alt="" width="570" height="406" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designed2perform.co.uk/2011/08/02/5-reasons-to-use-wireframes-in-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hotel Website Design Goes Live!</title>
		<link>http://www.designed2perform.co.uk/2011/08/01/hotel-website-design-goes-live/</link>
		<comments>http://www.designed2perform.co.uk/2011/08/01/hotel-website-design-goes-live/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 18:32:04 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
				<category><![CDATA[Clients]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.designed2perform.co.uk/?p=2012</guid>
		<description><![CDATA[We’ve recently just launched a new website for one of our client &#8216;Rufford Arms&#8216;. The website has been designed to give maximum impact by using large background images which change on each page. We also linked up the online booking form to one of the leading providers eviivo, this help users get a fast response [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-2014 aligncenter" title="rufford" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/08/rufford.jpg" alt="" width="572" height="179" /></p>
<p>We’ve recently just launched a new website for one of our client &#8216;<a title="Rufford Arms" href="http://www.ruffordarms.com/">Rufford Arms</a>&#8216;. The website has been designed to give maximum impact by using large background images which change on each page. We also linked up the online booking form to one of the leading providers eviivo, this help users get a fast response to online booking.</p>
<p><span id="more-2012"></span>The website features:-</p>
<ul>
<li>Online booking form</li>
<li>Full gallery system</li>
<li>Gallery system for individual pages</li>
<li>Call to action contact forms</li>
<li>Editable menus</li>
<li>Latest offer section</li>
<li>Latest news section</li>
<li>Reviews</li>
</ul>
<p>All this is managed from the admin cms, if your interested in website design give us a call <strong>01772 977210</strong> alternatively you can visit the website here <a title="Rufford Arms" href="http://www.ruffordarms.com/">http://www.ruffordarms.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designed2perform.co.uk/2011/08/01/hotel-website-design-goes-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch Repairs In Essex</title>
		<link>http://www.designed2perform.co.uk/2011/07/27/watch-repairs-in-essex/</link>
		<comments>http://www.designed2perform.co.uk/2011/07/27/watch-repairs-in-essex/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 21:58:15 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
				<category><![CDATA[Clients]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.designed2perform.co.uk/?p=1994</guid>
		<description><![CDATA[One of our first clients ‘The WATCH Lab’ has recently opened a new branch in one of the most popular shopping centers in the UK.  Lakeside Shopping Centre &#8211; together with the adjoining Retail Park &#8211; forms one of the largest shopping areas in Europe boasts over 320 shops. We have created the videos that [...]]]></description>
			<content:encoded><![CDATA[<p>One of our first clients ‘<a title="Watch Repairs" href="http://thewatchlab.co.uk/">The WATCH Lab</a>’ has recently opened a new branch in one of the most popular shopping centers in the UK.  Lakeside Shopping Centre &#8211; together with the adjoining Retail Park &#8211; forms one of the largest shopping areas in Europe boasts over 320 shops.</p>
<p><span id="more-1994"></span>We have created the videos that will be displayed on the large screens with the branch. We also produced all the photography for the advertising to be used in the new branch also.</p>
<p>We’ll be updating this post with a few pictures as soon as we can, in the meantime you can visit The WATCH Lab&#8217;s <a title="Watch Repairs" href="http://thewatchlab.co.uk/">website.</a></p>
<p><a href="http://www.designed2perform.co.uk/wp-content/uploads/2011/07/photo-3.jpg"><img class="alignleft size-full wp-image-2040" title="photo-3" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/07/photo-3.jpg" alt="" width="575" height="432" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designed2perform.co.uk/2011/07/27/watch-repairs-in-essex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solenoid Valves Specialist</title>
		<link>http://www.designed2perform.co.uk/2011/07/13/solenoid-valves-specialist/</link>
		<comments>http://www.designed2perform.co.uk/2011/07/13/solenoid-valves-specialist/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 18:30:08 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
				<category><![CDATA[Clients]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[online marketing]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.designed2perform.co.uk/?p=1895</guid>
		<description><![CDATA[Designed2Perform would like to welcome our newest client, MGA Controls, a leading control and instrumentation solutions company based in Lancashire. Since 1986, MGA Controls have delivered high quality products and services to the industry. With an extensive supply base, MGA Controls provide reliable technical advice and innovative solutions using solenoid valves, pressure transmitters, actuators, pressure [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.designed2perform.co.uk/wp-content/uploads/2011/07/mga-controls.jpg"><img class="aligncenter size-full wp-image-1897" title="mga-controls" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/07/mga-controls.jpg" alt="" width="576" height="180" /></a></p>
<p>Designed2Perform would like to welcome our newest client, MGA Controls, a leading control and instrumentation solutions company based in Lancashire. Since 1986, MGA Controls have delivered high quality products and services to the industry. With an extensive supply base, MGA Controls provide reliable technical advice and innovative solutions using <a title="solenoid valves" href="http://www.mgacontrols.com/">solenoid valves</a>, pressure transmitters, actuators, pressure gauges and <a title="pneumatics" href="http://www.mgacontrols.com/pneumatics">pneumatics</a>.</p>
<p><span id="more-1895"></span>With over 25 years experience, MGA Controls have developed a strong competitive advantage with a large number of suppliers and a broad product range. Establishing long term relationships with manufacturers allows them to offer this wide range of high quality products and flexible solutions at very competitive prices. With masses of experience and a strong commitment to customer service, MGA Controls understand their customers needs and requirements and effectively serve these needs in an efficient manner.</p>
<p>In order to increase their visibility and enhance their already excellent, customer focussed service, we are extremely happy to announce that Designed2Perform will be managing and developing the SEO for MGA Controls, using our already proven search engine optimisation techniques to increase the company’s exposure. Stay tuned for updates on this exciting project and visit <a title="MGA Controls" href="http://www.mgacontrols.com/">http://www.mgacontrols.com</a> to learn more about the company and their first class selection of quality products and services.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designed2perform.co.uk/2011/07/13/solenoid-valves-specialist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link WordPress with Facebook Fan Page</title>
		<link>http://www.designed2perform.co.uk/2011/03/27/link-wordpress-with-facebook-fan-page/</link>
		<comments>http://www.designed2perform.co.uk/2011/03/27/link-wordpress-with-facebook-fan-page/#comments</comments>
		<pubDate>Sun, 27 Mar 2011 19:10:37 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.designed2perform.co.uk/?p=1743</guid>
		<description><![CDATA[Just a quick post to explain how to link your WordPress Blog with your Facebook Fan Page. It&#8217;s really simple and should only take about 4 minutes maximum. The idea behind this was request from a client of ours who is the UK&#8217;s leading watch repair company. We&#8217;ve recently created them a new website to [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick post to explain how to link your WordPress Blog with your Facebook Fan Page. It&#8217;s really simple and should only take about 4 minutes maximum. The idea behind this was request from a client of ours who is the UK&#8217;s leading <a title="Watch Repair" href="http://thewatchlab.co.uk">watch repair</a> company. We&#8217;ve recently created them a new website to establish them as the UK&#8217;s number 1 watch repair company it became a little tedious logging into Facebook and posting the latest news twice. This is what we did&#8230;</p>
<p><span id="more-1743"></span>The website is run on WordPress and has a RSS feed on the <a href="http://thewatchlab.co.uk/latest-news/">news/blog page</a> simply copy the RSS Feed location.</p>
<p><img class="alignleft size-full wp-image-1744" title="fb-step1" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/03/fb-step1.png" alt="" width="403" height="95" /></p>
<p>&nbsp;</p>
<p>Login to your Facebook Fan Page</p>
<p><img class="alignleft size-full wp-image-1745" title="fb-step2" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/03/fb-step2.png" alt="" width="576" height="180" />Once you have logged in click &#8220;edit&#8221; at the bottom down the left hand side</p>
<p><img class="alignleft size-full wp-image-1746" title="fb-step3" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/03/fb-step3.png" alt="" width="119" height="245" /></p>
<p>You&#8217;ll then find yourself at the main navigation of the Facebook Fan Page, click &#8220;apps&#8221; so it looks like this.</p>
<p><img class="alignleft size-full wp-image-1747" title="fb-step4" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/03/fb-step4.png" alt="" width="610" height="259" /></p>
<p>Then click &#8220;Go to application&#8221; and it should bring up a page with all your notes or not which maybe the case scroll down the left hand side and you&#8217;ll see &#8220;Edit Import Settings&#8221; like below.</p>
<p><img class="alignleft size-full wp-image-1748" title="fb-step5" src="http://www.designed2perform.co.uk/wp-content/uploads/2011/03/fb-step5.png" alt="" width="194" height="339" /></p>
<p>Click &#8220;Edit Import Settings&#8221; and then you&#8217;ll see where you can paste your RSS feed like below and that it. When you create a blog post you new update your Facebook Fan Page.. Simple.</p>
<p>Don&#8217;t forget to follow us on twitter <a href="http://twitter.com/designed2">http://www.twitter.com/designed2</a> and our own <a href="http://www.facebook.com/home.php#!/pages/Designed2Perform/130639803616424">Facebook Fan Page</a>. If you have any questions or need help please let us know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designed2perform.co.uk/2011/03/27/link-wordpress-with-facebook-fan-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Get A Job At Google</title>
		<link>http://www.designed2perform.co.uk/2011/02/07/how-to-get-a-job-at-google/</link>
		<comments>http://www.designed2perform.co.uk/2011/02/07/how-to-get-a-job-at-google/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 19:53:48 +0000</pubDate>
		<dc:creator>Martyn</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.designed2perform.co.uk/?p=1683</guid>
		<description><![CDATA[Getting a job at in one of the most powerful companies in the world isn&#8217;t an easy task as you can imagine. Google have recently announced that there are going to take on 6,000 new staff this year. Google is expanding in various areas such as mobile services, internet applications and display advertising as a [...]]]></description>
			<content:encoded><![CDATA[<p>Getting a job at in one of the most powerful companies in the world isn&#8217;t an easy task as you can imagine. Google have recently announced that there are going to take on 6,000 new staff this year.</p>
<p>Google is expanding in various areas such as mobile services, internet applications and display advertising as a consequence Google is looking for people to help achieve this. Google has a phenomenal reputation as an employer which makes it one of the best companies to work for, because of this the competition for the jobs matches the companies reputation.</p>
<p><span id="more-1683"></span>In a company blog, Alan Eustace, senior vice-president of engineering and research, wrote:</p>
<blockquote><p>“We’re looking for top talent. We’ll hire as many smart, creative people  as we can to tackle some of the toughest challenges in computer  science: like building a web-based operating system from scratch,  instantly searching an index of more than 100m gigabytes and even  developing cars that drive themselves.”</p></blockquote>
<p>Within 1 week Google received 75,000 CVs. It&#8217;s pretty safe to say that getting a job at Google you need to have a remarkable CV and also a little bit of luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designed2perform.co.uk/2011/02/07/how-to-get-a-job-at-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: www.designed2perform.co.uk @ 2012-02-04 03:27:06 -->
