<?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"
	>

<channel>
	<title>Web Design and Website Templates from Juipo.com</title>
	<atom:link href="http://juipo.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://juipo.com</link>
	<description>Download Free and Premium Website Templates and read about Web design.</description>
	<pubDate>Mon, 17 Mar 2008 15:23:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>SEO Friendly Page Titles</title>
		<link>http://juipo.com/code-hacks/pligg-hacks/seo-friendly-page-titles/</link>
		<comments>http://juipo.com/code-hacks/pligg-hacks/seo-friendly-page-titles/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 07:12:02 +0000</pubDate>
		<dc:creator>JuipoDev</dc:creator>
		
		<category><![CDATA[Pligg Hacks]]></category>

		<category><![CDATA[pligg]]></category>

		<category><![CDATA[seo]]></category>

		<category><![CDATA[seo friendly title]]></category>

		<category><![CDATA[title tag]]></category>

		<guid isPermaLink="false">http://juipo.com/code-hacks/pligg-hacks/seo-friendly-page-titles/</guid>
		<description><![CDATA[You must have noticed on your default Pligg installation whatever page you open, the title tags stay the same "Pligg Beta 9 " (or the name of your site when you change it). This is not very Search Engine Friendly because the "page title tag element is still one of the most important factors for ranking highly in the search engines" so having the same title tag on every page would do you no good. Here is a really simple hack that will fix your Title tags on your Pligg Site.]]></description>
			<content:encoded><![CDATA[<p><strong>Create SEO Friendly Titles on your Pligg pages</strong></p>
<p>You must have noticed on your default Pligg installation whatever page you open, the title tags stay the same &#8220;Pligg Beta 9 &#8221; (or the name of your site when you change it). This is not very Search Engine Friendly because the &#8220;<a href="http://seojr.com/meta-tags-building-and-optimizing-a-search-engine-friendly-pages-part-1/" target="_blank">page title tag element</a> is still one of the most important factors for ranking highly in the search engines&#8221; so having the same title tag on every page would do you no good.</p>
<p>So here is a really simple hack that anyone can do and I have been using on all my Pligg sites and in <a href="http://juipo.com/category/free-tamplates/free-pligg-tamplates/">free pligg templates</a> offered here. This little hack will display Story titles on story pages, category names as titles on category pages and for all other pages whatever you name them in your Admin Panel (under » Admin » Modify Language) in  PLIGG_Visual names. It will also reverse page titles putting your site name AFTER the page name which is also better for Search Engines. Here are some examples of this below.</p>
<p><strong>Original Pligg Story Title</strong><br />
BuzzSEOjr.com | Most Important SEO Tips</p>
<p><strong>SEO Friendly Pligg Story Title</strong><br />
Most Important SEO Tips | BuzzSEOjr.com</p>
<p>Now your most important keywords are at the front of the page title. Very SEARCH ENGINE FRIENDLY title don&#8217;t you think?</p>
<p>Here&#8217;s how to do it:</p>
<p>First open <strong>templates/templateName/</strong><strong>pligg.tpl</strong> and <strong>FIND</strong></p>
<p><code>&lt;title&gt;{if isset($pretitle)}{$pretitle}{/if}{#PLIGG_Visual_Name#}{if isset($posttitle)}{$posttitle}{/if}&lt;/title&gt;</code></p>
<p><strong>REPLACE WITH</strong></p>
<p><code>{if $pagename eq "story" || $pagename eq "topusers" || $pagename eq "cloud" || $pagename eq "upcoming" || $pagename eq "live" || $pagename eq "submit"}<br />
&lt;title&gt;{$posttitle|substr:3} | {#PLIGG_Visual_Name#}&lt;/title&gt;<br />
{elseif $pagename eq "search"}<br />
&lt;title&gt;{$posttitle|substr:3} search results | {#PLIGG_Visual_Name#}&lt;/title&gt;<br />
{else}<br />
&lt;title&gt;{#PLIGG_Visual_Name#} | {$pretitle|substr:22} {$posttitle|substr:3 }&lt;/title&gt;<br />
{/if}</code></p>
<p>That will take care of your main title tags. Now this Hack should take care of your h2 header tag on search page and it is optional.</p>
<p>Open <strong>templates/templateName/search_centre.tpl</strong> and <strong>FIND</strong></p>
<p><code>{if isset($templatelite.get.search)}<br />
&lt;h2&gt;{#PLIGG_Visual_Search_SearchResults#} {$templatelite.get.search|sanitize:2|stripslashes}&lt;/h2&gt;<br />
{/if}<br />
{if isset($templatelite.get.q)}<br />
&lt;h2&gt;{#PLIGG_Visual_Search_SearchResults#} {$templatelite.get.q|sanitize:2|stripslashes}&lt;/h2&gt;<br />
{/if}</code></p>
<p><strong>REPLACE WITH</strong></p>
<p><code>{if isset($templatelite.get.search)}<br />
&lt;h2&gt;{#PLIGG_Visual_Search_SearchResults#} {$templatelite.get.search|sanitize:2|stripslashes} search results&lt;/h2&gt;<br />
{/if}<br />
{if isset($templatelite.get.q)}<br />
&lt;h2&gt;{#PLIGG_Visual_Search_SearchResults#} {$templatelite.get.q|sanitize:2|stripslashes} Search Results&lt;/h2&gt;<br />
{/if}</code></p>
<p>There is one more thing to do, go to your Admin Panel / Modify Language and filter for “Search results for”, remove both pieces of text by editing and deleting the text then clicking save leaving blank text fields.</p>
<p>Thats it, you&#8217;re done. You just created SEO Optimized Page Titles on your Pligg site.</p>
<p>Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://juipo.com/code-hacks/pligg-hacks/seo-friendly-page-titles/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SEOFox</title>
		<link>http://juipo.com/free-tamplates/free-wordpress-themes/seofox/</link>
		<comments>http://juipo.com/free-tamplates/free-wordpress-themes/seofox/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 19:16:40 +0000</pubDate>
		<dc:creator>JuipoDev</dc:creator>
		
		<category><![CDATA[Free WordPress Themes]]></category>

		<category><![CDATA[seofox]]></category>

		<category><![CDATA[wordpress seo]]></category>

		<category><![CDATA[wordpress template]]></category>

		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://juipo.com/free-tamplates/free-wordpress-themes/seofox/</guid>
		<description><![CDATA[We are working on a new magazine style wordpress theme &#8220;SEOFox&#8221; that will be geared towards Search engine Optimization. There will be at least two versions, One Magazine style with &#8220;Featured&#8221; article at the top and two columns below with latest posts from various categories and one little more simpler with Featured post at the [...]]]></description>
			<content:encoded><![CDATA[<p>We are working on a new magazine style wordpress theme &#8220;SEOFox&#8221; that will be geared towards Search engine Optimization. There will be at least two versions, One Magazine style with &#8220;Featured&#8221; article at the top and two columns below with latest posts from various categories and one little more simpler with Featured post at the top and all recent posts below. Both versions will include Adsense advert blocks.</p>
<p>This will be the home page of SEOFox where you’ll be able to download it. Stay tuned.</p>
<p>You might want to subscribe to Our RSS feed to be notified when SEOFox Theme is avilable for download.</p>
]]></content:encoded>
			<wfw:commentRss>http://juipo.com/free-tamplates/free-wordpress-themes/seofox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JuipoMagazine</title>
		<link>http://juipo.com/free-tamplates/free-wordpress-themes/juipomagazine/</link>
		<comments>http://juipo.com/free-tamplates/free-wordpress-themes/juipomagazine/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 05:00:31 +0000</pubDate>
		<dc:creator>JuipoDev</dc:creator>
		
		<category><![CDATA[Free WordPress Themes]]></category>

		<guid isPermaLink="false">http://juipo.com/free-tamplates/free-wordpress-themes/juipomagazine/</guid>
		<description><![CDATA[We are working on a new magazine style wordpress theme that will be like our main site. There will be at least two versions, Magazine style and one little more simpler with just one area at the top to display Featured post from Featured category. The second version will be for people that want magazine [...]]]></description>
			<content:encoded><![CDATA[<p>We are working on a new magazine style wordpress theme that will be like our main site. There will be at least two versions, Magazine style and one little more simpler with just one area at the top to display Featured post from Featured category. The second version will be for people that want magazine style look and feel but don&#8217;t want to mess with matching category IDs to display posts properly.</p>
<p>This will be the home page of JuipoMagazine where you&#8217;ll be able to download it. Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://juipo.com/free-tamplates/free-wordpress-themes/juipomagazine/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Updates on Browner1 Free Pligg Template</title>
		<link>http://juipo.com/news/updates-on-juipocom/</link>
		<comments>http://juipo.com/news/updates-on-juipocom/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 06:56:20 +0000</pubDate>
		<dc:creator>JuipoDev</dc:creator>
		
		<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://juipo.com/news/updates-on-juipocom/</guid>
		<description><![CDATA[Just a quick update on Browner1 free pligg template, we added a New Search Box and Minimum height in IE fix added.
Download New Browner Free Pligg Template.
]]></description>
			<content:encoded><![CDATA[<p>Just a quick update on Browner1 free pligg template, we added a New Search Box and Minimum height in IE fix added.</p>
<p>Download New <a href="http://juipo.com/free-tamplates/free-pligg-tamplates/browner/">Browner Free Pligg Template</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://juipo.com/news/updates-on-juipocom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pligg Duplicate Content Fix</title>
		<link>http://juipo.com/code-hacks/pligg-hacks/pligg-duplicate-content-fix/</link>
		<comments>http://juipo.com/code-hacks/pligg-hacks/pligg-duplicate-content-fix/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 07:59:42 +0000</pubDate>
		<dc:creator>JuipoDev</dc:creator>
		
		<category><![CDATA[Pligg Hacks]]></category>

		<category><![CDATA[dupe content]]></category>

		<category><![CDATA[pligg]]></category>

		<category><![CDATA[robots.txt]]></category>

		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://juipo.com/code-hacks/pligg-hacks/pligg-duplicate-content-fix/</guid>
		<description><![CDATA[Most websites powered by CMS (Joomla, Wordpress, etc.) have files and folders that are not relevant for search engines (like images or admin files) amd Pligg is no exception with story pages having several URL’s that get indexed by the search engines and it would be flagged as duplicate content. The most effective and easiest [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://juipo.com/wp-content/themes/branfordmagazine/images/pligg1sm.png" align="left" height="88" width="136" />Most websites powered by CMS (Joomla, Wordpress, etc.) have files and folders that are not relevant for search engines (like images or admin files) amd Pligg is no exception with story pages having several URL’s that get indexed by the search engines and it would be flagged as duplicate content. The most effective and easiest way to fix this is by adding a robots.txt file to your root folder.</p>
<p>The robots.txt file will tell the search engine robots what pages on your blog or website should be crawled and indexed and you really don’t want them to index your admin files because there is no relevant content there so creating a simple robots.txt file can actually improve your website&#8217;s crawlability and overall SEO.</p>
<p>Here&#8217;s an example of Dupe content from a pligg website :</p>
<p>http://buzz.seojr.com/InternetMarketing/Most-Profitable-Adsense-Keywords-List/<br />
http://buzz.seojr.com/story/title/Most-Profitable-Adsense-Keywords-List/</p>
<p>Both of those URLs  point to the same page and will be indexed by search engines and there goes the flag, so here is the fix.</p>
<p><strong>1. </strong>Open your NotePad.</p>
<p><strong>2.</strong> Copy the text below and paste it into the file.</p>
<p># All robots will spider the domain<br />
User-agent: *<br />
Disallow: /templates/<br />
Disallow: /3rdparty/<br />
Disallow: /libs/<br />
Disallow: /modules/<br />
Disallow: /plugins/<br />
Disallow: /internal/<br />
Disallow: /backup/<br />
Disallow: /thickbox/<br />
Disallow: /api/<br />
Disallow: /evb/<br />
Disallow: /avatars/<br />
Disallow: /admin_index.php<br />
Disallow: /admin<br />
Disallow: /story.php<br />
Disallow: /login.php<br />
Disallow: /user.php<br />
Disallow: /js/<br />
Disallow: /img/<br />
Disallow: /story/<br />
Disallow: /story/title/</p>
<p><strong>3.</strong> Save the file on your computer as robots.txt</p>
<p><strong>4.</strong> Now upload the newly created robots.txt file to you pligg rott directory overwriting the existing file if there is one already.There you have it, no more duplicate content.  Read more on <a href="http://seojr.com/improve-seo-robots-txt/" title="Improve SEO with robots.txt" target="_blank">Robots.txt and SEO</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://juipo.com/code-hacks/pligg-hacks/pligg-duplicate-content-fix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Browner - Free Pligg Template</title>
		<link>http://juipo.com/free-tamplates/free-pligg-tamplates/browner/</link>
		<comments>http://juipo.com/free-tamplates/free-pligg-tamplates/browner/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 08:30:21 +0000</pubDate>
		<dc:creator>JuipoDev</dc:creator>
		
		<category><![CDATA[Free Pligg Templates]]></category>

		<category><![CDATA[free pligg template]]></category>

		<category><![CDATA[pligg template]]></category>

		<guid isPermaLink="false">http://juipo.com/2008/03/03/new-pligg-template/</guid>
		<description><![CDATA[Finaly Our first Free Pligg Template is available for download. Browner1 has Web 2.0 feel and uses brown and white colors. It has been tested in IE6 and FireFox and with pligg v9.8.2.
This template has a custom links block in top left corner that is easily edited to add your own links without editing pligg [...]]]></description>
			<content:encoded><![CDATA[<p>Finaly Our first Free Pligg Template is available for download. Browner1 has <strong>Web 2.0</strong> feel and uses brown and white colors. It has been tested in IE6 and FireFox and with <strong>pligg v9.8.2</strong>.</p>
<p>This template has a custom links block in top left corner that is easily edited to add your own links without editing pligg code. We have added optional FeedBurner feed button but if you don&#8217;t use feedburner, you can easily convert back to original feed without messing with the code. This template also has changed Bookmark Pligg To FaceBook Bookmark URL and Image and added  StumbleUpon and Technorati Bookmark URLs and Images.</p>
<p><strong>Template Features:</strong></p>
<p>Browner1 features editable links block, image as a logo, SEO Friendly Page Titles Hack, <a href="http://juipo.com/code-hacks/pligg-hacks/pligg-duplicate-content-fix/" target="_blank">Duplicate Content fix</a>, Delete Discarded Stories, Changed Bookmark Pligg To FaceBook Bookmark URL and Image, Added  StumbleUpon and Technorati Bookmark URL and Image, Added FeedBurner feed button (optional). <strong>Minimum height in IE fix.</strong></p>
<p>Here is the image:<br />
<img src="http://juipo.com/images/pliggbrowner1sm.jpg" alt="Browner" height="196" width="300" /></p>
<p><strong><a href="http://buzz.juipo.com/" target="_blank">::Demo</a></strong></p>
<p><a href="http://juipo.com/download-manager.php?id=1" title="Download Browner1 Free Pligg Template" target="_blank"><strong>DOWNLOAD Browner1_v_9.8.zip</strong></a></p>
<p><strong>Installation:</strong></p>
<p>&#8212;&#8212;&#8211;<br />
1. upload whole browner1 folder to /templates/ folder to your pligg root folder.</p>
<p>2. Goto you administration section and set the template name to &#8220;browner1&#8243;.</p>
<p>3. Upload images from Avatars folder to Avatars folder in your Pligg installation.</p>
<p>4.clear your /templates_c and /cache folders.<br />
&#8212;&#8212;&#8212;</p>
<p>1.<strong>SEO friendly titles Fix</strong><br />
This is already coded in pligg.tpl template included in the download.</p>
<p>2.<strong>Pligg Duplicate Content fix</strong><br />
Pligg story pages have a few URL’s that can be indexed by the search engines and could amount to duplicate content so we have included a <a href="http://juipo.com/code-hacks/pligg-hacks/pligg-duplicate-content-fix/" target="_blank">Pligg robots.txt file</a> that will fix that.</p>
<p>Just upload robots.txt from Extras/SEO package/ folder to the root folder of your server (where your pligg is installed).</p>
<p>3. <strong>Custom Logo Image.</strong></p>
<p>To change the logo with your own, create your new logo and save it as logo.jpg and upload it to &#8230;templates/browner1/images/ folder on your server. Make sure the logo is 237px wide and 74px high (237&#215;74). Alternatively you can change the image type (jpg,gif,&#8230;) in main.css under #logo.</p>
<p>4.<strong>Delete Discarded stories.</strong>Our templates come with already coded link to delete discarded stories in dashboard. If your website is in main folder (like http://www.pligg.com) all you have to do is upload admin_delete_stories.php and admin_optimize_database.php from Extras/ to the root folder of your server (where your pligg is installed).</p>
<p>If Pligg is installed in a subfolder, (like http://www.pligg.com/news/) then use files from Extras/Subfolder package/ folder and upload admin_links_center.tpl to &#8230;templates/browner1/admin_templates/ folder on your server replacing the existing file and admin_delete_stories.php and admin_optimize_database.php to the root folder of your server (where your pligg is installed).<br />
(Thanks to fingerprn at http://forums.pligg.com/pligg-mods/10089-method-deleting-discarded-stories.html for this hack).</p>
<p>5.<strong>FeedBurner button Configuration:</strong></p>
<p>Custom template file will let you use Feedburner or regular feeds.</p>
<p>6.<strong>Protect tpl files</strong></p>
<p>When you install Pligg inside the /template folder you will see a file titled htaccess.default, rename this file to .htaccess to protect your templates directory from being browsed. It is also good idea to copy this file to all your template directories for example if you are using yget as your template place a copy of the .htaccess file within every folder of your pligg template.</p>
<p>This method will return a 403 Forbidden error for anyone that tries to browse your templates folders or open one of your .tpl files directly.</p>
<p>Custom Link block and Feedburner customization are explained in the Readme file included with the download.</p>
<p>Any issues, leave a comment bellow.</p>
<p><strong>UPDATE: New Search Box and Minimum height in IE fix added.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://juipo.com/free-tamplates/free-pligg-tamplates/browner/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Juipo free web design</title>
		<link>http://juipo.com/web-design/juipo-free-web-design/</link>
		<comments>http://juipo.com/web-design/juipo-free-web-design/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 05:43:19 +0000</pubDate>
		<dc:creator>JuipoDev</dc:creator>
		
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://juipo.com/2007/12/02/juipo-free-web-design/</guid>
		<description><![CDATA[Glad to announce that Juipo web design and free web templates is alive.
Very soon we&#8217;ll start uploading free templates for download.
]]></description>
			<content:encoded><![CDATA[<p>Glad to announce that Juipo web design and free web templates is alive.</p>
<p>Very soon we&#8217;ll start <noscript></noscript>uploading free templates for download.</p>
]]></content:encoded>
			<wfw:commentRss>http://juipo.com/web-design/juipo-free-web-design/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
