<?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>Free script resoure online - WP theme - Joomla theme - VBB theme - Graphic theme &#187; Others</title>
	<atom:link href="http://www.w3code.net/category/others/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.w3code.net</link>
	<description>WP theme - Joomla theme - VBB theme - Graphic theme</description>
	<lastBuildDate>Wed, 01 Feb 2012 08:55:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to fix OpenCart problem on SEO URLs via htaccess</title>
		<link>http://www.w3code.net/fix-opencart-problem-seo-urls-htaccess/</link>
		<comments>http://www.w3code.net/fix-opencart-problem-seo-urls-htaccess/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 15:38:35 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[OpenCart SEO URLs]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=2671</guid>
		<description><![CDATA[I am having a problem on how to setup the SEO friendly URL in OpenCart ver 1.4.9.1. All the hyperlink always come back to the home page when you click on any categories or products link. Here is the solution on how to make it works. 3 steps to setup SEO URLs in OpenCart : [...]]]></description>
			<content:encoded><![CDATA[<p>I am having a problem on how to setup the SEO friendly URL in  OpenCart ver 1.4.9.1. All the hyperlink always come back to the home  page when you click on any categories or products link. Here is the  solution on how to make it works.</p>
<p>3 steps to setup SEO URLs in OpenCart :</p>
<h3><strong>Step 1.</strong> : Enable the SEO URLs from the Admin section.</h3>
<p>Go to<strong> System -&gt; Server -&gt; Use SEO URL’s</strong></p>
<p><a href="http://www.w3code.net/wp-content/uploads//2011/10/seo-admin.jpg"><img title="OpenCart SEO URL" src="http://www.w3code.net/wp-content/uploads//2011/10/seo-admin.jpg" alt="" width="586" height="625" /></a></p>
<h3>Step 2. : Rename the <strong>.htaccess.txt</strong> to <strong>.htaccess (Remove the .txt file extension)<br />
</strong></h3>
<h3><a href="http://www.w3code.net/wp-content/uploads//2011/10/htaccess-txt.jpg"><img title="htaccess-txt" src="http://www.w3code.net/wp-content/uploads//2011/10/htaccess-txt.jpg" alt="" width="158" height="215" /></a>Step 3. : Fill in the SEO Keyword for all the <strong>Categories </strong>and <strong>Products</strong>.</h3>
<ul>
<li><strong>SEO Keyword is unique. No duplicate is allowed.</strong></li>
<li><strong>SEO Keyword no space in between each word.<br />
</strong></li>
</ul>
<p><strong>Go to Catalog -&gt; Products -&gt; Data -&gt; Seo Keyword<br />
</strong></p>
<p><a href="http://www.w3code.net/wp-content/uploads//2011/10/seo-keyword-1.jpg"><img title="seo-keyword-1" src="http://www.w3code.net/wp-content/uploads//2011/10/seo-keyword-1.jpg" alt="" width="493" height="263" /></a><a href="http://www.w3code.net/wp-content/uploads//2011/10/SEO-keyword.jpg"><img title="SEO-keyword" src="http://www.w3code.net/wp-content/uploads//2011/10/SEO-keyword.jpg" alt="" width="388" height="161" /></a></p>
<p>Done ! Refresh your OpenCart shopping cart website to view the result.</p>
<p>If you are still having a problem on it, please check that <strong>Is your OpenCart installed into the Subfolder or subdirectory of your domain name ? </strong></p>
<p>For example ,<strong> http://www.<em>your_domain_name</em>.com</strong></p>
<p>Your OpenCart is under [store] folder ,  <strong>http://www.<em>your_domain_name</em>.com/store</strong></p>
<p>In this case , you have to do a minor modification on the <strong>.htaccess</strong> file located in the OpenCart folder.</p>
<p>Open .htaccess, go to the <strong>Line 20 </strong></p>
<div>
<div id="highlighter_891449">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div>18</div>
<div>19</div>
<div>20</div>
<div>21</div>
<div>22</div>
<div>23</div>
</td>
<td>
<div>
<div>
<div class="codesnip-container" ># SEO URL Settings</div>
</div>
<div>
<div class="codesnip-container" >RewriteEngine On</div>
</div>
<div>
<div class="codesnip-container" >RewriteBase /</div>
</div>
<div>
<div class="codesnip-container" >RewriteCond %{REQUEST_FILENAME} !-f</div>
</div>
<div>
<div class="codesnip-container" >RewriteCond %{REQUEST_FILENAME} !-d</div>
</div>
<div>
<div class="codesnip-container" >RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<p><strong>[Solution] </strong>: Edit <strong>RewriteBase /</strong> to <strong>RewriteBase /store/</strong></p>
<p>Source Code after editing</p>
<div>
<div id="highlighter_456503">
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>
<div>18</div>
<div>19</div>
<div>20</div>
<div>21</div>
<div>22</div>
<div>23</div>
</td>
<td>
<div>
<div>
<div class="codesnip-container" ># SEO URL Settings</div>
</div>
<div>
<div class="codesnip-container" >RewriteEngine On</div>
</div>
<div>
<div class="codesnip-container" >RewriteBase /store/</div>
</div>
<div>
<div class="codesnip-container" >RewriteCond %{REQUEST_FILENAME} !-f</div>
</div>
<div>
<div class="codesnip-container" >RewriteCond %{REQUEST_FILENAME} !-d</div>
</div>
<div>
<div class="codesnip-container" >RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<p>Done ! Refresh your OpenCart from the browser again, SEO URLs should be working correctly.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/fix-opencart-problem-seo-urls-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 Reasons Why WordPress is better than Google Blogspot</title>
		<link>http://www.w3code.net/7-reasons-wordpress-google-blogspot/</link>
		<comments>http://www.w3code.net/7-reasons-wordpress-google-blogspot/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 13:22:03 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Ebooks - Tips]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[Google Blogspot]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP vs Blogspot]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=2496</guid>
		<description><![CDATA[For a newbie blogger WordPress and Blogger are the best platforms to begin in blogging platform. However, in the long run when you are learn through experiences, this is when you will be requiring and understanding the potential of a self hosted blog. Amongst the self-hosted WordPress blogs are the most commonly preferred ones as [...]]]></description>
			<content:encoded><![CDATA[<p>For a newbie blogger WordPress and Blogger are the best platforms to  begin in blogging platform. However, in the long run when you are learn  through experiences, this is when you will be requiring and  understanding the potential of a self hosted blog. Amongst the  self-hosted WordPress blogs are the most commonly preferred ones as it  have loads of advantages.</p>
<p style="text-align: center;"><a href="http://www.w3code.net/wp-content/uploads//2011/09/blogger-vs-wordpress.jpg"><img class="aligncenter" title="blogger-vs-wordpress" src="http://www.w3code.net/wp-content/uploads//2011/09/blogger-vs-wordpress.jpg" alt="blogger vs wordpress 7 Reasons Why WordPress is better than Google Blogspot" width="500" height="334" /></a></p>
<p><em>Discussed here are the reasons that justify how WordPress has grown up to be one of the best blogging platforms.</em></p>
<p><em><strong>1. Search Engine Optimization:</strong></em></p>
<p>For  WordPress this is no matter where and how your blog is located, as  traffic driven to your blog is the most important thing that someone  could think of, and you can find that WordPress has more options to  optimize your blog for search engine, unlike blog spot where certain  settings are limited. You do not have the wide options that wordpress  could offer you to the do better search engine optimizations.</p>
<p><strong>2. Reputation:</strong></p>
<p>While  the reputation that WordPress has gained owing to the varsity of  applications that this can permit also WordPress do not encourage Black  Hat SEO, spamming and affiliate landing being less. In simple words,  wordpress is the best place to begin a blogging carrier.</p>
<p><strong>3. Adsense:</strong></p>
<p>This  is the lifeline for any blogger who are trying to make money from the  blog. In the initial years, a blogspot blog used to be the key for  getting an adsense account, but bad reputation has been developed by not  keeping a check on the spammers. So Google gives a better chance of  getting your adsense account approved, if you use WordPress. Also it is  comfortable to use adsense in WordPress more than in a blogspot blog.</p>
<p><strong>4. Plugins and support:</strong></p>
<p>The  community of WordPress is filled with a wide range of Plugins and  support that there are many options for you to add features like  displaying related posts on your blog, and adding such similar features.  I started my weight watchers promo codes and ediet coupon blog as a  blogspot one but later changed to wordpress for this reason. There is a  lot to achieve using these Plugins and therefore this is necessary that  you take the help from WordPress support forum to get custom code and  extend the capabilities of the blog.</p>
<p><strong>5. Theme and templates:</strong></p>
<p>There  are two ranges of themes available with WordPress, the unlimited and  free theme, and the limited and Premium themes. You can choose for  premium themes, as will help you to develop a much more versatile  platform than a blogspot blog.</p>
<p><strong>6. Social Media Websites:</strong></p>
<p>Many  of the social networking websites and media like Digg, Stumbleupon, and  reddit, love WordPress than blogspot that they publicize most of the  work done using word press blog better than that written in a blogspot  as the former blends well with these social media websites.</p>
<p><strong>7. Reselling your blog:</strong></p>
<p>With  self-hosted blogging platforms like WordPress, it is possible to resell  your blogs unlike blog spot wherein this cannot be done. There might be  umpteen reasons why you want to resell your blogs or buy a blog that is  being resold.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/7-reasons-wordpress-google-blogspot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CartMania – The Ultimate Template v1.2 for Opencart 1.4.9.5</title>
		<link>http://www.w3code.net/cartmania-ultimate-template-v12-opencart-1495/</link>
		<comments>http://www.w3code.net/cartmania-ultimate-template-v12-opencart-1495/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 02:37:35 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Premium OpenCart]]></category>
		<category><![CDATA[Premium Template]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=2402</guid>
		<description><![CDATA[CartMania is very advanced, Premium Opencart 1.4.9.3/1.4.9.4/1.4.9.5 and OpenCart 1.5.1.1 theme suitable for different types of e-shops. This theme comes with 5 color skins. With it’s clean design, 7 custom modules and reworked layout it is suitable for both direct use or custom theme development. MAIN FEATURES 5 color skins Mega Menu – 2 levels [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://scriptoffers.com/index.php?route=product/product&amp;product_id=30"></a><a href="http://www.w3code.net/wp-content/uploads//2011/08/CartMania.jpg"><img class="alignleft size-medium wp-image-2403" title="CartMania" src="http://www.w3code.net/wp-content/uploads//2011/08/CartMania-213x300.jpg" alt="" width="213" height="300" /></a>CartMania is very advanced, Premium Opencart 1.4.9.3/1.4.9.4/1.4.9.5 and <strong>OpenCart 1.5.1.1</strong> theme suitable for different types of e-shops.</p>
<p>This theme comes with 5 color skins. With it’s clean design, 7 custom  modules and reworked layout it is suitable for both direct use or  custom theme development.</p>
<h3>MAIN FEATURES</h3>
<ul>
<li>5 color skins</li>
<li>Mega Menu – 2 levels deep (Category&gt;Subcategory)</li>
<li>Custom Nivo Slider module with two positions (header and home)</li>
<li>Custom Banners module with two positions (header and home)</li>
<li>Custom Sliding Brands module with two positions (header and home)</li>
<li>Featured Products slider module for home position</li>
<li>Custom Home Text module – no more default “welcome text” always on top of the home pagecontent</li>
<li>Custom footer with store menu, information menu and first level categories</li>
<li>Custom Footer Text module</li>
<li>PretyPhoto plugin integrated for product page</li>
<li>jQuery powered layout with custom effects</li>
<li>Review form now in modal box</li>
<li>Lef column  ABOVE  the main contetn with drop-down modules</li>
<li>Facebook like button for products (SEO URLs must be enabled)</li>
<li>Scroll-to-top function</li>
<li>Visitor greeting in header (user’s first name used if logged</li>
<li>Instructions for modules setup in help files</li>
</ul>
<p>Recommended to use on clean install or existing shops without system core modifications!</p>
<p>Please, read the help files carefully before install!</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/cartmania-ultimate-template-v12-opencart-1495/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gentle Premium Template v3.0 for Opencart v1.5.1.1</title>
		<link>http://www.w3code.net/gentle-premium-template-v30-opencart-v1511/</link>
		<comments>http://www.w3code.net/gentle-premium-template-v30-opencart-v1511/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 02:16:33 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Premium OpenCart]]></category>
		<category><![CDATA[Premium Template]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=2395</guid>
		<description><![CDATA[Gentle is a very powerful, aesthetically pleasing theme made especially for OpenCart 1.5. It comes with many custom options and powerful theme panel, which allows you to change virtually anything about its appearance. You can fully customise the theme, change its colours by using colour pickers and fonts by using drop – down menus. It [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.w3code.net/wp-content/uploads//2011/08/Gentle-Premium-Template.jpg"><img class="alignleft size-medium wp-image-2396" title="Gentle Premium Template" src="http://www.w3code.net/wp-content/uploads//2011/08/Gentle-Premium-Template-300x290.jpg" alt="" width="300" height="290" /></a><a href="http://scriptoffers.com/index.php?route=product/product&amp;product_id=42">Gentle</a> is a very powerful, aesthetically pleasing theme made especially for <strong>OpenCart 1.5.</strong> It comes with many custom options and <strong>powerful theme panel</strong>, which allows you to change virtually anything about its appearance.</p>
<p><strong>You can fully customise the theme</strong>, change its colours by using colour pickers and fonts by using drop – down menus. <strong>It has a built in support for Google Fonts</strong>,  so it will do all the work (linking to the selected font and changing  the stylesheet) dynamically for you. Additionally, it takes advantage of  all the new features introduced in OpenCart 1.5, such as slideshows,  banners, reward points, grid – list product listings, wish lists and  many, many more.</p>
<p><strong>Installation process is very easy</strong>, and together with themeís files, you are supplied with easy to follow, step by step instruction guide.</p>
<p>We believe this theme will suit any kind of store (especially  fashion, electronics, furniture, accesories, computer hardware, gadgets  etc.), so why donít you have a look at demo, play a bit with its  powerful customisation options and make sure itís the right theme for  you before you buy it?</p>
<p>Oh, and remember: customisation panel in the demo doesnít show all available options, <strong>there is even more to change from within the admin panel. </strong></p>
<p><strong>Regular Licence: $20<br />
</strong></p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/gentle-premium-template-v30-opencart-v1511/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shoppica – Premium OpenCart Theme</title>
		<link>http://www.w3code.net/shoppica-premium-opencart-theme/</link>
		<comments>http://www.w3code.net/shoppica-premium-opencart-theme/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 02:11:09 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[OpenCart Theme]]></category>
		<category><![CDATA[Premium OpenCart]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=2392</guid>
		<description><![CDATA[Shoppica is a stylish premium OpenCart theme (currently supported versions are 1.4.9.3/1.4.9.4/1.4.9.5/1.5.0.5/1.5.1/1.5.1.1). The clean and modern design allows you to use the theme for every kind of online shop. In combination with the powerfull option to change all the element’s color, Shoppica theme give you the possibility to make a unique e-commerce website that stands [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://scriptoffers.com/index.php?route=product/product&amp;product_id=52">Shoppica</a> is a stylish premium OpenCart theme (currently supported versions are  1.4.9.3/1.4.9.4/1.4.9.5/1.5.0.5/1.5.1/1.5.1.1). The clean and modern  design allows you to use the theme for every kind of online shop. In  combination with the powerfull option to change all the element’s color,  Shoppica theme give you the possibility to make a unique e-commerce  website that stands out of the crowd!<a href="http://www.w3code.net/wp-content/uploads//2011/08/Shoppica.jpg"><img class="alignright size-medium wp-image-2393" title="Shoppica" src="http://www.w3code.net/wp-content/uploads//2011/08/Shoppica-190x300.jpg" alt="" width="190" height="300" /></a></p>
<h3>Theme features</h3>
<ul>
<li>Stylish and modern design</li>
<li>Unlimited color combinations; full control over the colors of the site elements; <strong>Every category and subcategory can have different color scheme!</strong></li>
<li>Custom background textures and images – you can upload your own. You can set different background for every category.</li>
<li><strong> SEO -ready</strong>. Entirely new semantic and  SEO  friendly markup, based on the popular 960 grid system</li>
<li>Clean and readable typography.</li>
<li>2 different site design styles: with fixed and full width</li>
<li>Configurable side column position (left or right)</li>
<li>Single or multicolumn layout (configurable)</li>
<li>Choose products per row number</li>
<li>Intro slideshow – you can show uploaded images, or selected products  from the catalog. Configurable transition effects, slideshow border and  slideshow size. <strong>Every category and subcategory can have different slideshow, with different products and images!</strong></li>
<li>Horizontal navigation with unlimited subcategory levels</li>
<li>Show brands for every top level category in horizontal navigation  and creates a page with the category products filtered by the selected  brand</li>
<li>Custom cart menu dropdown</li>
<li>Grid / list products view</li>
<li>Jquery enhanced user interface – tabs, lightbox photo preview, form validation</li>
<li>Home banners – configurable through admin area</li>
<li>Footer information – short info, contact details, twitter and facebook widgets with multilanguage support</li>
<li>Category sitemap in the footer</li>
<li>Custom payment icons – can be configured in the admin panel</li>
<li>Extensive documentation – you can read it even before you purchased the theme.</li>
</ul>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/shoppica-premium-opencart-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prestashop Template (Mobile Store)</title>
		<link>http://www.w3code.net/prestashop-template-mobile-store/</link>
		<comments>http://www.w3code.net/prestashop-template-mobile-store/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 13:41:39 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Prestashop Template]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=2380</guid>
		<description><![CDATA[Prestashop template is a theme for Prestashop e-commerce solution. It provides you with vast variety of customization opportunities and allows you to create an online store that fully meet your needs. PrestaShop is an e-commerce solution which is free for the basic kernel and open source. It supports payment gateways such as Google checkout, paypal [...]]]></description>
			<content:encoded><![CDATA[<p>Prestashop template is a theme for Prestashop e-commerce solution. It  provides you with vast variety of customization opportunities and allows  you to create an online store that fully meet your needs.</p>
<p><a href="http://www.w3code.net/wp-content/uploads//2011/08/Prestashop-Template.jpeg"><img class="aligncenter size-full wp-image-2381" title="Prestashop Template" src="http://www.w3code.net/wp-content/uploads//2011/08/Prestashop-Template.jpeg" alt="" width="410" height="500" /></a></p>
<p><a target="_blank" href="http://letitbit.net/download/2727.2a5d372aee8f210c2f5404962b15/prestashop-templates-sample-th.zip.html">PrestaShop  is an e-commerce solution</a> which is free for the basic kernel and open  source. It supports payment gateways such as Google checkout, paypal or  payments pro via APIs.</p>
<p>PrestaShop is available under the Open  Software License and officially launched in August 2007 for small to  medium-sized businesses. The software, which is based on the Smarty  template engine, is used by several thousands of shops worldwide.</p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/prestashop-template-mobile-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice Prestashop Theme for Clothes Store</title>
		<link>http://www.w3code.net/nice-prestashop-theme-clothes-store/</link>
		<comments>http://www.w3code.net/nice-prestashop-theme-clothes-store/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 13:39:11 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Prestashop Theme]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=2377</guid>
		<description><![CDATA[This nice template is a cloth store template from prestadesigner.com wich is compatible with the latest version of Prestashop (Prestashop 1.4) Get it free]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.w3code.net/wp-content/uploads//2011/08/Clothes-Store.jpg"><img class="aligncenter size-full wp-image-2378" title="Clothes Store" src="http://www.w3code.net/wp-content/uploads//2011/08/Clothes-Store.jpg" alt="" width="500" height="621" /></a></p>
<p>This nice template is a cloth store template from prestadesigner.com  wich is compatible with the latest version of Prestashop (Prestashop  1.4) <a target="_blank" href="http://www.fileserve.com/file/uSs4MNK">Get it free</a></p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/nice-prestashop-theme-clothes-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moon theme Prestashop</title>
		<link>http://www.w3code.net/moon-theme-prestashop/</link>
		<comments>http://www.w3code.net/moon-theme-prestashop/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 13:37:00 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Prestashop]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=2374</guid>
		<description><![CDATA[Moon template is another concept store for Prestashop CMS, with a simple and purified design. Get it free]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.w3code.net/wp-content/uploads//2011/08/Moon-theme-Prestashop.jpg"><img class="aligncenter size-full wp-image-2375" title="Moon theme Prestashop" src="http://www.w3code.net/wp-content/uploads//2011/08/Moon-theme-Prestashop.jpg" alt="" width="530" height="553" /></a></p>
<p>Moon template is another concept store for Prestashop CMS, with a simple and purified design. <a target="_blank" href="http://www.fileserve.com/file/5khU2qm/moon.zip">Get it free</a></p>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/moon-theme-prestashop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google +1 Content Locker</title>
		<link>http://www.w3code.net/google-1-content-locker/</link>
		<comments>http://www.w3code.net/google-1-content-locker/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 15:47:49 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[PHP script]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=2203</guid>
		<description><![CDATA[Tap into Google’s 500 million plus users with Google +1 Content Locker and gain immediate search and social traffic boosts. More +1′s = more traffic = more money! The first plugin of its kind, Google +1 Content Locker allows you to wrap your WordPress post and page content in a “content locker” that will require [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.w3code.net/wp-content/uploads//2011/07/Content-Locker-v1.1.jpg"><img class="alignright size-medium wp-image-2204" title="Content Locker v1.1" src="http://www.w3code.net/wp-content/uploads//2011/07/Content-Locker-v1.1-300x152.jpg" alt="" width="300" height="152" /></a></p>
<p>Tap into Google’s 500 million plus users  with <a target="_blank" href="http://www.filesonic.com/file/1529759801/Google_+1_Content_Locker_v1.1.rar">Google +1 Content Locker</a> and gain immediate search and social  traffic boosts. More +1′s = more traffic = more money!</p>
<p>The first plugin of its kind, Google +1 Content Locker allows you to  wrap your WordPress post and page content in a “content locker” that  will require the user to share your content with Google +1 before they  can see it. Build a social media super prescense over night by locking  all, or just parts of your posts and pages!</p>
<p><strong>Features</strong></p>
<ul>
<li>Content is <strong>100% locked</strong>until the user shares / +1′s your desired URL. There is no other way to view it!</li>
<li>Works with <strong>posts &amp; pages</strong></li>
<li>Super fast, <strong>no BS install</strong></li>
<li><strong>Requires NO CODE to use!</strong></li>
<li>Includes <strong>powerful tinyMCE toolbar plugin</strong> that makes adding Content Lockers to your site a simply <strong>point and click</strong> operation.</li>
<li><strong>Fully customizable</strong> CSS and includes <strong>7 different color themes</strong></li>
<li>Proven method to <strong>increase your social traffic and Google rankings!</strong></li>
<li>Use an <strong>unlimited number of content lockers</strong> in a single post / page</li>
<li>Works great with Google +1 for WordPress and WordPress Like Locker!</li>
</ul>
<p>Great For…</p>
<ul>
<li>Download links – Have your users share your content before being able to download</li>
<li>Wallpaper sites</li>
<li>File hosts</li>
<li>Access to premium content like tutorials etc.</li>
<li>Audio share / download sites</li>
<li>Music video sites</li>
<li>The possibilities are endless!</li>
</ul>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/google-1-content-locker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The WordPress Review Site Theme You Should Have</title>
		<link>http://www.w3code.net/wordpress-review-site-theme/</link>
		<comments>http://www.w3code.net/wordpress-review-site-theme/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 19:27:17 +0000</pubDate>
		<dc:creator>Script</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Review Website]]></category>
		<category><![CDATA[WP Review theme]]></category>
		<category><![CDATA[WP Review Website]]></category>

		<guid isPermaLink="false">http://www.w3code.net/?p=2157</guid>
		<description><![CDATA[So you&#8217;ve decided to set up a review site. Smart choice! You get to influence a customer&#8217;s decision right when they&#8217;re on the cusp of purchase, as well as promote more than one affiliate product on a site. Setting up a review site truly is one of the best decisions an Internet marketer can make. [...]]]></description>
			<content:encoded><![CDATA[<div id="article-content">
<p>So you&#8217;ve decided to set up a review site. Smart choice! You get  to influence a customer&#8217;s decision right when they&#8217;re on the cusp of  purchase, as well as promote more than one affiliate product on a site.  Setting up a review site truly is one of the best decisions an Internet  marketer can make.</p>
<p>To make it easy on yourself, consider using a  review theme. WordPress is a blogging platform that allows you choose  from and install thousands of different themes, making your website  almost endlessly customizable. Of those themes, you should look for one  that is set up as a review site theme. This sort of theme takes out some  of the traditional blog formatting that most WordPress themes come  with, such as dates on every post and organizing by date. Instead, you  use a theme to set up a professional looking site in minutes.</p>
<p>But  don&#8217;t just look for any review themes! Many require a working knowledge  of HTML to customize. If you want your own header or a different layout,  you may find yourself editing PHP pages constantly. Try to find one  that&#8217;s easily customizable, so you can use it on several different  sites. Also, make sure it&#8217;s customizable by simply filling out a form &#8211;  some say customizable, but they still expect you to go into the PHP  files!</p>
<p>Also, look for a theme that provides support. Some  designers make their themes and set them out there, but don&#8217;t catch all  the errors. And if it&#8217;s a free theme, they might not care enough to help  you fix them.</p>
<p>At the same time, don&#8217;t pay a ton of money for a  theme. Customizable themes could run you $79, $89, or $99! I&#8217;ve found a  theme that is priced for much MUCH less. It&#8217;s attractive, easy to use,  and provides support.</p>
</div>
<div id="article-resource">
<p><a target="_blank" rel="nofollow" href="http://premiumthemesdirectory.com/" target="_new">PremiumThemesDirectory</a> who bring you the best Premium WordPress Themes &amp; coupon code, such as the 12 <a target="_blank" rel="nofollow" href="http://premiumthemesdirectory.com/wordpress-review-theme.html" target="_new">WordPress Review theme</a>, iThemes FlexxTheme Discount Code and the Organic Themes Discount Code.</p>
</div>
  ]]></content:encoded>
			<wfw:commentRss>http://www.w3code.net/wordpress-review-site-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

