<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Effutio</title>
	
	<link>http://www.effutio.com</link>
	<description>One must avoid that wicked temptress, Laziness.</description>
	<lastBuildDate>Wed, 30 Jun 2010 20:37:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Effutio" /><feedburner:info uri="effutio" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Advanced Nested Comments on Wordpress Pages Issue Fix</title>
		<link>http://feedproxy.google.com/~r/Effutio/~3/Llqwv3nrys4/</link>
		<comments>http://www.effutio.com/wordpress/advanced-nested-comments-on-wordpress-pages-issue-fix/332/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 02:11:57 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hints and Tips]]></category>

		<guid isPermaLink="false">http://www.effutio.com/?p=332</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fadvanced-nested-comments-on-wordpress-pages-issue-fix%2F332%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fadvanced-nested-comments-on-wordpress-pages-issue-fix%2F332%2F&#38;source=The1Path&#38;style=normal&#38;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>OK so I used a technique I found here: http://www.problogdesign.com/wordpress/advanced-wordpress-comment-styles-and-tricks/ to setup advanced, nested comments for effutio.</p>
<p>It all works fantastically untill I used the same technique on another site which used more Pages than Posts. There are two parts to the problem that happened on this site.</p>
<p>Firstly the &#8220;Reply&#8221; link (allowing you to reply to a specific user&#8230;</p>

<ul><li><a href='http://www.effutio.com/wordpress/login-directly-from-a-page-in-wordpress-using-a-sidebar-login-form/34/' rel='bookmark' title='Permanent Link: Login directly from a page in Wordpress using a sidebar login form'>Login directly from a page in Wordpress using a sidebar login form</a></li>
<li><a href='http://www.effutio.com/wordpress/display-your-wordpress-posts-on-other-pages/54/' rel='bookmark' title='Permanent Link: Display your Wordpress posts on other pages'>Display your Wordpress posts on other pages</a></li>
<li><a href='http://www.effutio.com/wordpress/more-advanced-menu-only-logged-in-users-or-certain-users-can-see/88/' rel='bookmark' title='Permanent Link: More Advanced Menu only logged in users or certain users can see'>More Advanced Menu only logged in users or certain users can see</a></li>
<li><a href='http://www.effutio.com/wordpress/using-google-adsense-for-search-in-wordpress/167/' rel='bookmark' title='Permanent Link: Using Google Adsense for Search in Wordpress'>Using Google Adsense for Search in Wordpress</a></li>
<li><a href='http://www.effutio.com/wordpress/hide-wordpress-update-nag-without-a-plugin/278/' rel='bookmark' title='Permanent Link: Hide Wordpress Update Nag Without a Plugin'>Hide Wordpress Update Nag Without a Plugin</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fadvanced-nested-comments-on-wordpress-pages-issue-fix%2F332%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fadvanced-nested-comments-on-wordpress-pages-issue-fix%2F332%2F&amp;source=The1Path&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>OK so I used a technique I found here: http://www.problogdesign.com/wordpress/advanced-wordpress-comment-styles-and-tricks/ to setup advanced, nested comments for effutio.</p>
<p>It all works fantastically untill I used the same technique on another site which used more Pages than Posts. There are two parts to the problem that happened on this site.</p>
<p>Firstly the &#8220;Reply&#8221; link (allowing you to reply to a specific user comment) didnt work and once the first comment was made on the page the comment form would disappear!</p>
<p>The fix to these bugs are as foloows:</p>
<p>1. In your comments.php theme file replace:</p>
<pre class="brush:php">
<?php ( comments_open() ) : ?>
</pre>
<p>with this</p>
<pre class="brush:php">
<?php ( comments_open() OR is_page() ) : ?>
</pre>
<p>2. In wp-includes/comment-template.php at line 1012 change:</p>
<pre class="brush:php">
$comment = get_comment($comment);
$post = get_post($post);
</pre>
<p>to:</p>
<pre class="brush:php">
$comment = get_comment($comment);
$post = get_post($comment->comment_post_ID);
</pre>
<p>Upload the updated files and hey presto the comment form shows on pages with a comment and you can now use the &#8220;Reply&#8221; link to respond to specific comments. Ahhhhhh the world has been put right once again. Incase you are wondering no1 above fixes the comment form disappearance and no2 fixes the Reply link bug!! Enjoy!</p>
<span class="sfforumlink"><a href="http://www.effutio.com/forum/wordpress-bugs-issues-and-fixes/advanced-nested-comments-on-wordpress-pages-issue-fix/"><p><img src="http://www.effutio.com/wp-content/plugins/simple-forum/styles/icons/ash/bloglink.png" alt="" /> Join the forum discussion on this post</p>
</a></span>

<ul><li><a href='http://www.effutio.com/wordpress/login-directly-from-a-page-in-wordpress-using-a-sidebar-login-form/34/' rel='bookmark' title='Permanent Link: Login directly from a page in Wordpress using a sidebar login form'>Login directly from a page in Wordpress using a sidebar login form</a></li>
<li><a href='http://www.effutio.com/wordpress/display-your-wordpress-posts-on-other-pages/54/' rel='bookmark' title='Permanent Link: Display your Wordpress posts on other pages'>Display your Wordpress posts on other pages</a></li>
<li><a href='http://www.effutio.com/wordpress/more-advanced-menu-only-logged-in-users-or-certain-users-can-see/88/' rel='bookmark' title='Permanent Link: More Advanced Menu only logged in users or certain users can see'>More Advanced Menu only logged in users or certain users can see</a></li>
<li><a href='http://www.effutio.com/wordpress/using-google-adsense-for-search-in-wordpress/167/' rel='bookmark' title='Permanent Link: Using Google Adsense for Search in Wordpress'>Using Google Adsense for Search in Wordpress</a></li>
<li><a href='http://www.effutio.com/wordpress/hide-wordpress-update-nag-without-a-plugin/278/' rel='bookmark' title='Permanent Link: Hide Wordpress Update Nag Without a Plugin'>Hide Wordpress Update Nag Without a Plugin</a></li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/4_bOk4sbbBn7rs2CEUN0zxiq-1s/0/da"><img src="http://feedads.g.doubleclick.net/~a/4_bOk4sbbBn7rs2CEUN0zxiq-1s/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4_bOk4sbbBn7rs2CEUN0zxiq-1s/1/da"><img src="http://feedads.g.doubleclick.net/~a/4_bOk4sbbBn7rs2CEUN0zxiq-1s/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Effutio/~4/Llqwv3nrys4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.effutio.com/wordpress/advanced-nested-comments-on-wordpress-pages-issue-fix/332/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.effutio.com/wordpress/advanced-nested-comments-on-wordpress-pages-issue-fix/332/</feedburner:origLink></item>
		<item>
		<title>Custom Wordpress Loop Breaks Pagination</title>
		<link>http://feedproxy.google.com/~r/Effutio/~3/RwNSVq89IaY/</link>
		<comments>http://www.effutio.com/wordpress/custom-wordpress-loop-breaks-pagination/322/#comments</comments>
		<pubDate>Fri, 21 May 2010 00:28:36 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hints and Tips]]></category>
		<category><![CDATA[Wordpress Pagination]]></category>
		<category><![CDATA[Wordpress Tutorials]]></category>

		<guid isPermaLink="false">http://www.effutio.com/?p=322</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fcustom-wordpress-loop-breaks-pagination%2F322%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fcustom-wordpress-loop-breaks-pagination%2F322%2F&#38;source=The1Path&#38;style=normal&#38;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Holy smokes, well this took me around 2 hours to sort out so Im writing it all down so I can save people some time and remember it myself!!</p>
<p>Right OK if you are diving into WP you will undoubtably want to try some wonderful things with the loop, if like me to display posts from a certain category on&#8230;</p>

<ul><li><a href='http://www.effutio.com/wordpress/login-directly-from-a-page-in-wordpress-using-a-sidebar-login-form/34/' rel='bookmark' title='Permanent Link: Login directly from a page in Wordpress using a sidebar login form'>Login directly from a page in Wordpress using a sidebar login form</a></li>
<li><a href='http://www.effutio.com/wordpress/display-your-wordpress-posts-on-other-pages/54/' rel='bookmark' title='Permanent Link: Display your Wordpress posts on other pages'>Display your Wordpress posts on other pages</a></li>
<li><a href='http://www.effutio.com/wordpress/using-google-adsense-for-search-in-wordpress/167/' rel='bookmark' title='Permanent Link: Using Google Adsense for Search in Wordpress'>Using Google Adsense for Search in Wordpress</a></li>
<li><a href='http://www.effutio.com/web-design/page-templates-in-wordpress/191/' rel='bookmark' title='Permanent Link: Page Templates in Wordpress'>Page Templates in Wordpress</a></li>
<li><a href='http://www.effutio.com/web-design/using-multipledifferent-headers-sidebars-footers-and-comment-templates-in-wordpress/193/' rel='bookmark' title='Permanent Link: Using multiple/different headers, sidebars, footers and comment templates in Wordpress'>Using multiple/different headers, sidebars, footers and comment templates in Wordpress</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fcustom-wordpress-loop-breaks-pagination%2F322%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fcustom-wordpress-loop-breaks-pagination%2F322%2F&amp;source=The1Path&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Holy smokes, well this took me around 2 hours to sort out so Im writing it all down so I can save people some time and remember it myself!!</p>
<p>Right OK if you are diving into WP you will undoubtably want to try some wonderful things with the loop, if like me to display posts from a certain category on a page. Well its pretty easy to do but doing so breaks any pagination you may have i.e. WP-Pagenavi or posts_nav_link(). Whatever you are using it will not work if using a custom loop containing a query_posts() or $wp_query() function.</p>
<p>A lot of people will tell you it cant be done and just to use showposts to display all your posts or there is a few blogs out there sporting fixes which dont work&#8230;.I dont know if they ever have or if its using a different version or if I had missed something (as others said it worked for them but I tried lots of variations on the theme). Anyhoo I finally picked up on a couple of comments, I combined two ideas and hey presto it worked&#8230;.I couldnt believe it.</p>
<p>So here it is, this is what your loop should look like:</p>
<pre class="brush:php">
<?php wp_reset_query(); ?>
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $wp_query->query('cat=20&#038;paged='.$paged); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
....loop content
<?php endwhile; ?>
<?php else : ?>
....alternative content
<?php endif; ?>
<?php wp_reset_query(); ?>
</pre>
<p>This line is key and a few other fixes out there use it with query posts like this:<br />
$paged = (get_query_var(&#8216;paged&#8217;)) ? get_query_var(&#8216;paged&#8217;) : 1; query_posts(&#8216;cat=3&#038;showposts=12&#038;paged=&#8217;.$paged);</p>
<p>That didnt work for me and I picked up on a comment suggesting that wp_reset_query() wouldnt work with query_posts(), then I found another comment posting a different solution utlising wp_query->query(). Well it was 1am and I thought &#8216;ah well nothing to lose&#8217; and it worked. Well Im very relieved to have found a solution that works for me and I hope it save you time and works for you too.</p>
<p>Oh yeh and remember if you have adapted loops on other pages, always include wp_reset_query(); at the end of the loop on each page.</p>
<p>Share and Enjoy!</p>
<span class="sfforumlink"><a href="http://www.effutio.com/forum/wordpress-tutorials/custom-wordpress-loop-breaks-pagination/"><p><img src="http://www.effutio.com/wp-content/plugins/simple-forum/styles/icons/ash/bloglink.png" alt="" /> Join the forum discussion on this post</p>
</a></span>

<ul><li><a href='http://www.effutio.com/wordpress/login-directly-from-a-page-in-wordpress-using-a-sidebar-login-form/34/' rel='bookmark' title='Permanent Link: Login directly from a page in Wordpress using a sidebar login form'>Login directly from a page in Wordpress using a sidebar login form</a></li>
<li><a href='http://www.effutio.com/wordpress/display-your-wordpress-posts-on-other-pages/54/' rel='bookmark' title='Permanent Link: Display your Wordpress posts on other pages'>Display your Wordpress posts on other pages</a></li>
<li><a href='http://www.effutio.com/wordpress/using-google-adsense-for-search-in-wordpress/167/' rel='bookmark' title='Permanent Link: Using Google Adsense for Search in Wordpress'>Using Google Adsense for Search in Wordpress</a></li>
<li><a href='http://www.effutio.com/web-design/page-templates-in-wordpress/191/' rel='bookmark' title='Permanent Link: Page Templates in Wordpress'>Page Templates in Wordpress</a></li>
<li><a href='http://www.effutio.com/web-design/using-multipledifferent-headers-sidebars-footers-and-comment-templates-in-wordpress/193/' rel='bookmark' title='Permanent Link: Using multiple/different headers, sidebars, footers and comment templates in Wordpress'>Using multiple/different headers, sidebars, footers and comment templates in Wordpress</a></li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/i5nNDL3l3CejT2CuJBOk0C0NfmI/0/da"><img src="http://feedads.g.doubleclick.net/~a/i5nNDL3l3CejT2CuJBOk0C0NfmI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/i5nNDL3l3CejT2CuJBOk0C0NfmI/1/da"><img src="http://feedads.g.doubleclick.net/~a/i5nNDL3l3CejT2CuJBOk0C0NfmI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Effutio/~4/RwNSVq89IaY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.effutio.com/wordpress/custom-wordpress-loop-breaks-pagination/322/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.effutio.com/wordpress/custom-wordpress-loop-breaks-pagination/322/</feedburner:origLink></item>
		<item>
		<title>Banus Jeans; Designer Jeans for Men – Review</title>
		<link>http://feedproxy.google.com/~r/Effutio/~3/0iC1l30ujLo/</link>
		<comments>http://www.effutio.com/reviews/banus-jeans-designer-jeans-for-men-review/310/#comments</comments>
		<pubDate>Fri, 07 May 2010 14:22:32 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Product]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[mens jeans]]></category>

		<guid isPermaLink="false">http://www.effutio.com/?p=310</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fbanus-jeans-designer-jeans-for-men-review%2F310%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fbanus-jeans-designer-jeans-for-men-review%2F310%2F&#38;source=The1Path&#38;style=normal&#38;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Banus Jeans are a new fashion label with a range of <a href="http://www">mens luxury designer jeans</a>. I recently bought a pair of 801 Ronda orange label because I was sick of paying £20-£30 for jeans that fall apart in a month. Yes really a month!</p>
<p><a href="http://www.banusjeans.com"><img src="http://www.effutio.com/wp-content/uploads/logo2-300x115.png" alt="Banus Jeans - Mens Designer Jeans - Mens Fashion" title="Banus Jeans" width="300" height="115" class="alignright size-medium wp-image-315" /></a>I do have a tendancy to be very hard on my jeans, in the way&#8230;</p>

<ul><li><a href='http://www.effutio.com/web-design/bluehost-vs-justhost-vs-fasthosts-whos-the-top-host/13/' rel='bookmark' title='Permanent Link: Bluehost vs Justhost vs Fasthosts Review &#8211; Whos the top web host?'>Bluehost vs Justhost vs Fasthosts Review &#8211; Whos the top web host?</a></li>
<li><a href='http://www.effutio.com/reviews/new-pair-of-half-price-designer-glasses-from-lensway/93/' rel='bookmark' title='Permanent Link: New pair of half price designer glasses from Lensway!'>New pair of half price designer glasses from Lensway!</a></li>
<li><a href='http://www.effutio.com/chatter/ps3-slim-is-skinny-better/130/' rel='bookmark' title='Permanent Link: PS3 Slim Review &#8211; Is skinny better?'>PS3 Slim Review &#8211; Is skinny better?</a></li>
<li><a href='http://www.effutio.com/wordpress/noahs-classifieds-do-not-buy-it/234/' rel='bookmark' title='Permanent Link: Noahs Classifieds Review &#8211; DO NOT BUY IT'>Noahs Classifieds Review &#8211; DO NOT BUY IT</a></li>
<li><a href='http://www.effutio.com/reviews/blackberry-bold-9700-review/256/' rel='bookmark' title='Permanent Link: Blackberry Bold 9700 Review'>Blackberry Bold 9700 Review</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fbanus-jeans-designer-jeans-for-men-review%2F310%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fbanus-jeans-designer-jeans-for-men-review%2F310%2F&amp;source=The1Path&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Banus Jeans are a new fashion label with a range of <a href="http://www">mens luxury designer jeans</a>. I recently bought a pair of 801 Ronda orange label because I was sick of paying £20-£30 for jeans that fall apart in a month. Yes really a month!</p>
<p><a href="http://www.banusjeans.com"><img src="http://www.effutio.com/wp-content/uploads/logo2-300x115.png" alt="Banus Jeans - Mens Designer Jeans - Mens Fashion" title="Banus Jeans" width="300" height="115" class="alignright size-medium wp-image-315" /></a>I do have a tendancy to be very hard on my jeans, in the way that I wear them almost everyday! Yes I probably should wash them more but hey I dont feel like they get dirty except around the leg hem. Anyway basically I have around two pairs of jeans that I wear constantly, usually within a week the leg hem will disintegrate (you get that annoying raggidy bit at the back), then within 4-6 weeks the front fabric becomes worn and rips (I use a laptop constantly).</p>
<p>Looking at the Banus site and the quality of the jeans in their <a href="http://www.banusjeans.com/gallery">gallery</a> I thought Id spend a little bit extra on jeans that might last longer. Well it was a good move and worth the little extra cash as Ive had them around 6 weeks, worn them pretty much constantly and they remain in completely one piece!!</p>
<p>So if you are looking for an alternative luxury designer jean brand then give Banus a try! I think Im going to buy a more dressy jean next time&#8230;.Im leaning towards the 701 Montoro!!</p>
<p>Anyway so far so good, they are holding up to my brutal wearing regime and Im definitely going to buy some more!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-1-310">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.effutio.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=1&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.effutio.com/wp-content/gallery/ronda-orange/dsc01447.jpg" title=" " class="shutterset_set_1" >
								<img title="dsc01447" alt="dsc01447" src="http://www.effutio.com/wp-content/gallery/ronda-orange/thumbs/thumbs_dsc01447.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-2" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.effutio.com/wp-content/gallery/ronda-orange/dsc01450.jpg" title=" " class="shutterset_set_1" >
								<img title="dsc01450" alt="dsc01450" src="http://www.effutio.com/wp-content/gallery/ronda-orange/thumbs/thumbs_dsc01450.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-3" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.effutio.com/wp-content/gallery/ronda-orange/dsc01452.jpg" title=" " class="shutterset_set_1" >
								<img title="dsc01452" alt="dsc01452" src="http://www.effutio.com/wp-content/gallery/ronda-orange/thumbs/thumbs_dsc01452.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-4" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.effutio.com/wp-content/gallery/ronda-orange/dsc01454.jpg" title=" " class="shutterset_set_1" >
								<img title="dsc01454" alt="dsc01454" src="http://www.effutio.com/wp-content/gallery/ronda-orange/thumbs/thumbs_dsc01454.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-5" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.effutio.com/wp-content/gallery/ronda-orange/dsc01456.jpg" title=" " class="shutterset_set_1" >
								<img title="dsc01456" alt="dsc01456" src="http://www.effutio.com/wp-content/gallery/ronda-orange/thumbs/thumbs_dsc01456.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>




<ul><li><a href='http://www.effutio.com/web-design/bluehost-vs-justhost-vs-fasthosts-whos-the-top-host/13/' rel='bookmark' title='Permanent Link: Bluehost vs Justhost vs Fasthosts Review &#8211; Whos the top web host?'>Bluehost vs Justhost vs Fasthosts Review &#8211; Whos the top web host?</a></li>
<li><a href='http://www.effutio.com/reviews/new-pair-of-half-price-designer-glasses-from-lensway/93/' rel='bookmark' title='Permanent Link: New pair of half price designer glasses from Lensway!'>New pair of half price designer glasses from Lensway!</a></li>
<li><a href='http://www.effutio.com/chatter/ps3-slim-is-skinny-better/130/' rel='bookmark' title='Permanent Link: PS3 Slim Review &#8211; Is skinny better?'>PS3 Slim Review &#8211; Is skinny better?</a></li>
<li><a href='http://www.effutio.com/wordpress/noahs-classifieds-do-not-buy-it/234/' rel='bookmark' title='Permanent Link: Noahs Classifieds Review &#8211; DO NOT BUY IT'>Noahs Classifieds Review &#8211; DO NOT BUY IT</a></li>
<li><a href='http://www.effutio.com/reviews/blackberry-bold-9700-review/256/' rel='bookmark' title='Permanent Link: Blackberry Bold 9700 Review'>Blackberry Bold 9700 Review</a></li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/pUeBCrhde6s5aOONUUxeydrcjJs/0/da"><img src="http://feedads.g.doubleclick.net/~a/pUeBCrhde6s5aOONUUxeydrcjJs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/pUeBCrhde6s5aOONUUxeydrcjJs/1/da"><img src="http://feedads.g.doubleclick.net/~a/pUeBCrhde6s5aOONUUxeydrcjJs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Effutio/~4/0iC1l30ujLo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.effutio.com/reviews/banus-jeans-designer-jeans-for-men-review/310/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.effutio.com/reviews/banus-jeans-designer-jeans-for-men-review/310/</feedburner:origLink></item>
		<item>
		<title>Wordpress RSS Error – Blank Line Fix</title>
		<link>http://feedproxy.google.com/~r/Effutio/~3/in6DtkQNFqM/</link>
		<comments>http://www.effutio.com/wordpress/wordpress-rss-error-blank-line-fix/299/#comments</comments>
		<pubDate>Wed, 05 May 2010 13:50:10 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hints and Tips]]></category>

		<guid isPermaLink="false">http://www.effutio.com/?p=299</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fwordpress-rss-error-blank-line-fix%2F299%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fwordpress-rss-error-blank-line-fix%2F299%2F&#38;source=The1Path&#38;style=normal&#38;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Well for some reason or other sometimes your Wordpress feed will break, which I recently discovered here at effutio. This is normally down to a blank line (error will be on line 1 column 1 or some such) being inserted at the top of the xml file (feedburner especially doesnt like these blank lines)? This extra line could be caused&#8230;</p>

<ul><li><a href='http://www.effutio.com/wordpress/hide-wordpress-update-nag-without-a-plugin/278/' rel='bookmark' title='Permanent Link: Hide Wordpress Update Nag Without a Plugin'>Hide Wordpress Update Nag Without a Plugin</a></li>
<li><a href='http://www.effutio.com/wordpress/pre-installation-wordpress-checklist-top-5/3/' rel='bookmark' title='Permanent Link: Pre-installation Wordpress checklist'>Pre-installation Wordpress checklist</a></li>
<li><a href='http://www.effutio.com/wordpress/display-your-wordpress-posts-on-other-pages/54/' rel='bookmark' title='Permanent Link: Display your Wordpress posts on other pages'>Display your Wordpress posts on other pages</a></li>
<li><a href='http://www.effutio.com/web-design/page-templates-in-wordpress/191/' rel='bookmark' title='Permanent Link: Page Templates in Wordpress'>Page Templates in Wordpress</a></li>
<li><a href='http://www.effutio.com/web-design/using-multipledifferent-headers-sidebars-footers-and-comment-templates-in-wordpress/193/' rel='bookmark' title='Permanent Link: Using multiple/different headers, sidebars, footers and comment templates in Wordpress'>Using multiple/different headers, sidebars, footers and comment templates in Wordpress</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fwordpress-rss-error-blank-line-fix%2F299%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fwordpress-rss-error-blank-line-fix%2F299%2F&amp;source=The1Path&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Well for some reason or other sometimes your Wordpress feed will break, which I recently discovered here at effutio. This is normally down to a blank line (error will be on line 1 column 1 or some such) being inserted at the top of the xml file (feedburner especially doesnt like these blank lines)? This extra line could be caused by a plugin or something else, who knows and whos got the time to bloody look through everything to try and fix it. Not I.</p>
<p>Luckily there is a simple and effective fix (provided by www.Wejn.org) and here it is:</p>
<p>Download <a href="http://wejn.org/stuff/wejnswpwhitespacefix.php">this file</a></p>
<p>Put it in your Wordpress ROOT folder so the one with wp-config.php and wp-settings.php (DO NOT put it in your theme root folder!). Upload file to your server.</p>
<p>Then add this line to the index.php in Wordpress ROOT folder so it looks like this:</p>
<pre class="brush:php"><?php
/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */

/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
include("wejnswpwhitespacefix.php");
define('WP_USE_THEMES', true);

/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');
?></pre>
<p>Upload the updated index.php file and you now have a working RSS&#8230;..Awesome!</p>
<span class="sfforumlink"><a href="http://www.effutio.com/forum/wordpress-bugs-issues-and-fixes/wordpress-rss-error-blank-line-fix/"><p><img src="http://www.effutio.com/wp-content/plugins/simple-forum/styles/icons/ash/bloglink.png" alt="" /> Join the forum discussion on this post</p>
</a></span>

<ul><li><a href='http://www.effutio.com/wordpress/hide-wordpress-update-nag-without-a-plugin/278/' rel='bookmark' title='Permanent Link: Hide Wordpress Update Nag Without a Plugin'>Hide Wordpress Update Nag Without a Plugin</a></li>
<li><a href='http://www.effutio.com/wordpress/pre-installation-wordpress-checklist-top-5/3/' rel='bookmark' title='Permanent Link: Pre-installation Wordpress checklist'>Pre-installation Wordpress checklist</a></li>
<li><a href='http://www.effutio.com/wordpress/display-your-wordpress-posts-on-other-pages/54/' rel='bookmark' title='Permanent Link: Display your Wordpress posts on other pages'>Display your Wordpress posts on other pages</a></li>
<li><a href='http://www.effutio.com/web-design/page-templates-in-wordpress/191/' rel='bookmark' title='Permanent Link: Page Templates in Wordpress'>Page Templates in Wordpress</a></li>
<li><a href='http://www.effutio.com/web-design/using-multipledifferent-headers-sidebars-footers-and-comment-templates-in-wordpress/193/' rel='bookmark' title='Permanent Link: Using multiple/different headers, sidebars, footers and comment templates in Wordpress'>Using multiple/different headers, sidebars, footers and comment templates in Wordpress</a></li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/_mOwa24Z4rl6pwin_Yx0kIulvNI/0/da"><img src="http://feedads.g.doubleclick.net/~a/_mOwa24Z4rl6pwin_Yx0kIulvNI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/_mOwa24Z4rl6pwin_Yx0kIulvNI/1/da"><img src="http://feedads.g.doubleclick.net/~a/_mOwa24Z4rl6pwin_Yx0kIulvNI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Effutio/~4/in6DtkQNFqM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.effutio.com/wordpress/wordpress-rss-error-blank-line-fix/299/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.effutio.com/wordpress/wordpress-rss-error-blank-line-fix/299/</feedburner:origLink></item>
		<item>
		<title>Simple:Press Forum Review – Is it the best forum for WP?</title>
		<link>http://feedproxy.google.com/~r/Effutio/~3/LFi2c581Tyk/</link>
		<comments>http://www.effutio.com/wordpress/simplepress-forum-review-is-it-the-best-forum-for-wp/285/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 09:58:30 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Product]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[SimplePress Forum]]></category>
		<category><![CDATA[Wordpress Hints and Tips]]></category>

		<guid isPermaLink="false">http://www.effutio.com/?p=285</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fsimplepress-forum-review-is-it-the-best-forum-for-wp%2F285%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fsimplepress-forum-review-is-it-the-best-forum-for-wp%2F285%2F&#38;source=The1Path&#38;style=normal&#38;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://simple-press.com"><img src="http://www.effutio.com/wp-content/uploads/spflogo.png" alt="Simple Press Forum" title="spflogo" width="350" height="68" class="alignleft size-full wp-image-289" /></a></p>
<div style="clear:left">A lot of Wordpress website owners either need or want a forum. After all they can add another social interaction tool, its another place to put your content and place ads. So we are agreed that a forum is cool and adds extra dimensions to your WP site but there are a few options out there but one</div><p>&#8230;</p>

<ul><li><a href='http://www.effutio.com/wordpress/login-directly-from-a-page-in-wordpress-using-a-sidebar-login-form/34/' rel='bookmark' title='Permanent Link: Login directly from a page in Wordpress using a sidebar login form'>Login directly from a page in Wordpress using a sidebar login form</a></li>
<li><a href='http://www.effutio.com/wordpress/menu-only-logged-in-users-or-certain-users-can-see/50/' rel='bookmark' title='Permanent Link: Menu only logged in users or certain users can see'>Menu only logged in users or certain users can see</a></li>
<li><a href='http://www.effutio.com/wordpress/display-your-wordpress-posts-on-other-pages/54/' rel='bookmark' title='Permanent Link: Display your Wordpress posts on other pages'>Display your Wordpress posts on other pages</a></li>
<li><a href='http://www.effutio.com/wordpress/more-advanced-menu-only-logged-in-users-or-certain-users-can-see/88/' rel='bookmark' title='Permanent Link: More Advanced Menu only logged in users or certain users can see'>More Advanced Menu only logged in users or certain users can see</a></li>
<li><a href='http://www.effutio.com/web-design/page-templates-in-wordpress/191/' rel='bookmark' title='Permanent Link: Page Templates in Wordpress'>Page Templates in Wordpress</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fsimplepress-forum-review-is-it-the-best-forum-for-wp%2F285%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fsimplepress-forum-review-is-it-the-best-forum-for-wp%2F285%2F&amp;source=The1Path&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://simple-press.com"><img src="http://www.effutio.com/wp-content/uploads/spflogo.png" alt="Simple Press Forum" title="spflogo" width="350" height="68" class="alignleft size-full wp-image-289" /></a></p>
<div style="clear:left">A lot of Wordpress website owners either need or want a forum. After all they can add another social interaction tool, its another place to put your content and place ads. So we are agreed that a forum is cool and adds extra dimensions to your WP site but there are a few options out there but one for me stands out head and shoulders above the rest: SimplePress Forum (SPF).</p>
<p>SPF was born in 2006 after creator Andy Staines found existing forum plugins to be sub-standard and set about creating a simple yet effective forum plugin for his website. People started asking about it and for it and it was released as a plugin, from then on its gone from strength to strength with more features being added by request of SPF users.</p>
<p>I personally have been using SPF since 2008 and for me it is the most complete and feature rich forum plugin available today and Andy and Steve should be congratulated for all their hard work and unrivalled support (remember and donate too)!</p>
<p>SPF seemlessly integrates with Wordpress, meaning users need only log in once to the website. You can also write posts in the usual way in WP admin and create Forum topics using said post. Even the comments on the WP Post and SPF Topic can be integrated. Users can build a comprehensive profile with an Avatar (although for a small minority of people this could become an issue&#8230;Ive explained more below) and expect all the features that the dedicated Forum scripts deliver like phpBB and vBulletin.</p>
<p>Well all in all SPF for me is THE best forum plugin for WP and has unrivalled functionality and support; Andy, Steve and helpers really do a fantastic job. However as mentioned above Avatars could cause a slow down issue for a minority of SPF users. I discovered this when I changed servers for one of my sites running SPF. I asked in the SPF Support forum and both Andy and Steve have been extremely helpful in trying to solve this problem (the full support thread is <a href="http://simple-press.com/support-forum/simplepress-version-4-2/slow-topic-loading-yes-its-me-again/">here</a>). I also asked my server support guys and they said that the site is making loopback requests that are being blocked by the firewall???? Doi?</p>
<p>Andy eventually got me to try switching of the forums Avatar display. This resulted in my 10+ post topics to load in 4-5secs compared with the 35secs they were taking!! Of course I was thrilled to have a quick forum again but I had lost functionality which I like and users like; its a personal identifier which can portray a little about you or simply puts a face to a name.</p>
<p>So I kept annoying Steve and Andy over on the SPF support forum and they have been very patient and keen to solve the issue even if it is for a small minority of users!! So we tested varying sequences of Avatar calls and for me the tests revealed that the SPF Default Avatars and ther Uploaded Avatars seemed to be causing the slow down for some reason (which is still a mystery).</p>
<p>Andy then directed me to here: /library/sf-common-display/php and the function is sf_render_avatar() which is where the Avatar code is. I noticed the two case statements which seemed to be causing my slow down shared this variable: SFAVATARURL. After a number of bumbling tests I actually found something that worked!! It now displays the offending Avatars and does it quickly&#8230;.so here it is; in Case 2 I changed line 257 from this:</p>
<pre class="brush:php">$url = SFAVATARURL.$avfile;</pre>
<p>to this:</p>
<pre class="brush:php">$url = "www.mywebsite.com/wp-content/forum-avatars/".$avfile;</pre>
<p>And in Case 3 I changed line 284 from this:</p>
<pre class="brush:php">$url = SFAVATARURL.$image;</pre>
<p>to this:</p>
<pre class="brush:php">$url = "www.mywebsite.com/wp-content/forum-avatars/".$image;</pre>
<p>Im still trying to work out exactly why this works for me and so are Andy and Steve, if we can determine why this is working then Im sure they will release a bug fix with this included. However I would be really interested in knowing if this fix works for others suffering a topic load slow down!! Then Steve, Andy and I will know its not just me and my server being weird!!</p>
<p>So I hope this helps the few SPF users which may be experiencing slow topic loading and hopefully a bug fix can be intergrated into the next release of SPF. Please if this does help you report back here and let me know as it will be a big help!!</p>
<p>Below are my forum avatar settings just incase you need these too:<br />
<div id="attachment_295" class="wp-caption aligncenter" style="width: 510px"><img src="http://www.effutio.com/wp-content/uploads/avsettings.jpg" alt="Avatar Settings" title="Avatar Settings" width="500" height="221" class="size-full wp-image-295" /><p class="wp-caption-text">My forums avatar settings found in Forum->Profiles->Avatars</p></div></div>
<span class="sfforumlink"><a href="http://www.effutio.com/forum/wordpress-bugs-issues-and-fixes/simplepress-forum-review-is-it-the-best-forum-for-wp/"><p><img src="http://www.effutio.com/wp-content/plugins/simple-forum/styles/icons/ash/bloglink.png" alt="" /> Join the forum discussion on this post</p>
</a></span>

<ul><li><a href='http://www.effutio.com/wordpress/login-directly-from-a-page-in-wordpress-using-a-sidebar-login-form/34/' rel='bookmark' title='Permanent Link: Login directly from a page in Wordpress using a sidebar login form'>Login directly from a page in Wordpress using a sidebar login form</a></li>
<li><a href='http://www.effutio.com/wordpress/menu-only-logged-in-users-or-certain-users-can-see/50/' rel='bookmark' title='Permanent Link: Menu only logged in users or certain users can see'>Menu only logged in users or certain users can see</a></li>
<li><a href='http://www.effutio.com/wordpress/display-your-wordpress-posts-on-other-pages/54/' rel='bookmark' title='Permanent Link: Display your Wordpress posts on other pages'>Display your Wordpress posts on other pages</a></li>
<li><a href='http://www.effutio.com/wordpress/more-advanced-menu-only-logged-in-users-or-certain-users-can-see/88/' rel='bookmark' title='Permanent Link: More Advanced Menu only logged in users or certain users can see'>More Advanced Menu only logged in users or certain users can see</a></li>
<li><a href='http://www.effutio.com/web-design/page-templates-in-wordpress/191/' rel='bookmark' title='Permanent Link: Page Templates in Wordpress'>Page Templates in Wordpress</a></li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/Yl1iR7JcNV0YUal83FIZxwj9QJk/0/da"><img src="http://feedads.g.doubleclick.net/~a/Yl1iR7JcNV0YUal83FIZxwj9QJk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Yl1iR7JcNV0YUal83FIZxwj9QJk/1/da"><img src="http://feedads.g.doubleclick.net/~a/Yl1iR7JcNV0YUal83FIZxwj9QJk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Effutio/~4/LFi2c581Tyk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.effutio.com/wordpress/simplepress-forum-review-is-it-the-best-forum-for-wp/285/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.effutio.com/wordpress/simplepress-forum-review-is-it-the-best-forum-for-wp/285/</feedburner:origLink></item>
		<item>
		<title>Hide Wordpress Update Nag Without a Plugin</title>
		<link>http://feedproxy.google.com/~r/Effutio/~3/7RLqw58I1Cc/</link>
		<comments>http://www.effutio.com/wordpress/hide-wordpress-update-nag-without-a-plugin/278/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 17:48:07 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hints and Tips]]></category>
		<category><![CDATA[Wordpress Nag]]></category>
		<category><![CDATA[Wordpress Tutorials]]></category>

		<guid isPermaLink="false">http://www.effutio.com/?p=278</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fhide-wordpress-update-nag-without-a-plugin%2F278%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fhide-wordpress-update-nag-without-a-plugin%2F278%2F&#38;source=The1Path&#38;style=normal&#38;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Yes the annoying update/upgrade notice that appears at the top of the admin screen can be a bit annoying. It can also be quite dangerous. DANGEROUS you say&#8230;how so?</p>
<p>Well if you have designed a CMS for a client using wordpress and added extra things even its its simple things like changing the admin images or the memory usage. All&#8230;</p>

<ul><li><a href='http://www.effutio.com/wordpress/pre-installation-wordpress-checklist-top-5/3/' rel='bookmark' title='Permanent Link: Pre-installation Wordpress checklist'>Pre-installation Wordpress checklist</a></li>
<li><a href='http://www.effutio.com/wordpress/login-directly-from-a-page-in-wordpress-using-a-sidebar-login-form/34/' rel='bookmark' title='Permanent Link: Login directly from a page in Wordpress using a sidebar login form'>Login directly from a page in Wordpress using a sidebar login form</a></li>
<li><a href='http://www.effutio.com/web-design/page-templates-in-wordpress/191/' rel='bookmark' title='Permanent Link: Page Templates in Wordpress'>Page Templates in Wordpress</a></li>
<li><a href='http://www.effutio.com/web-design/using-multipledifferent-headers-sidebars-footers-and-comment-templates-in-wordpress/193/' rel='bookmark' title='Permanent Link: Using multiple/different headers, sidebars, footers and comment templates in Wordpress'>Using multiple/different headers, sidebars, footers and comment templates in Wordpress</a></li>
<li><a href='http://www.effutio.com/wordpress/wordpress-rss-error-blank-line-fix/299/' rel='bookmark' title='Permanent Link: Wordpress RSS Error &#8211; Blank Line Fix'>Wordpress RSS Error &#8211; Blank Line Fix</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fhide-wordpress-update-nag-without-a-plugin%2F278%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fhide-wordpress-update-nag-without-a-plugin%2F278%2F&amp;source=The1Path&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Yes the annoying update/upgrade notice that appears at the top of the admin screen can be a bit annoying. It can also be quite dangerous. DANGEROUS you say&#8230;how so?</p>
<p>Well if you have designed a CMS for a client using wordpress and added extra things even its its simple things like changing the admin images or the memory usage. All will be wiped when the client upgrades and their precious site suddenly looks different or doesnt work at all.</p>
<p>Taking the top update nag isnt the only way to update via the admin panel of course buts its the most obvious one.</p>
<p>So lets get rid of it:</p>
<p>First open: wp-admin/includes/update.php</p>
<p>Scroll to line 135 (if file is in original condition)</p>
<p>Find this line:</p>
<pre class="brush:php">add_action( 'admin_notices', 'update_nag', 3 );</pre>
<p>And simply comment it out like thus:</p>
<pre class="brush:php">/* add_action( 'admin_notices', 'update_nag', 3 ); */</pre>
<p> or
<pre class="brush:php">// add_action( 'admin_notices', 'update_nag', 3 );</pre>
<p>Both will work, once uploaded hey presto no more top update nag. Nag nag nag&#8230;your not my Mum Wordpress!!</p>


<ul><li><a href='http://www.effutio.com/wordpress/pre-installation-wordpress-checklist-top-5/3/' rel='bookmark' title='Permanent Link: Pre-installation Wordpress checklist'>Pre-installation Wordpress checklist</a></li>
<li><a href='http://www.effutio.com/wordpress/login-directly-from-a-page-in-wordpress-using-a-sidebar-login-form/34/' rel='bookmark' title='Permanent Link: Login directly from a page in Wordpress using a sidebar login form'>Login directly from a page in Wordpress using a sidebar login form</a></li>
<li><a href='http://www.effutio.com/web-design/page-templates-in-wordpress/191/' rel='bookmark' title='Permanent Link: Page Templates in Wordpress'>Page Templates in Wordpress</a></li>
<li><a href='http://www.effutio.com/web-design/using-multipledifferent-headers-sidebars-footers-and-comment-templates-in-wordpress/193/' rel='bookmark' title='Permanent Link: Using multiple/different headers, sidebars, footers and comment templates in Wordpress'>Using multiple/different headers, sidebars, footers and comment templates in Wordpress</a></li>
<li><a href='http://www.effutio.com/wordpress/wordpress-rss-error-blank-line-fix/299/' rel='bookmark' title='Permanent Link: Wordpress RSS Error &#8211; Blank Line Fix'>Wordpress RSS Error &#8211; Blank Line Fix</a></li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/7bYLyrgsLf1mSXVDcqp4sbHMNw8/0/da"><img src="http://feedads.g.doubleclick.net/~a/7bYLyrgsLf1mSXVDcqp4sbHMNw8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7bYLyrgsLf1mSXVDcqp4sbHMNw8/1/da"><img src="http://feedads.g.doubleclick.net/~a/7bYLyrgsLf1mSXVDcqp4sbHMNw8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Effutio/~4/7RLqw58I1Cc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.effutio.com/wordpress/hide-wordpress-update-nag-without-a-plugin/278/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.effutio.com/wordpress/hide-wordpress-update-nag-without-a-plugin/278/</feedburner:origLink></item>
		<item>
		<title>Blackberry Bold 9700 Review</title>
		<link>http://feedproxy.google.com/~r/Effutio/~3/PwSUSey1ka0/</link>
		<comments>http://www.effutio.com/reviews/blackberry-bold-9700-review/256/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 11:46:14 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Product]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Blackberry App]]></category>
		<category><![CDATA[Blackberry Bold 9700]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.effutio.com/reviews/blackberry-bold-9700-review/</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fblackberry-bold-9700-review%2F256%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fblackberry-bold-9700-review%2F256%2F&#38;source=The1Path&#38;style=normal&#38;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright size-medium wp-image-261" title="BlackBerry_Bold_9700" src="http://www.effutio.com/wp-content/uploads/BlackBerry_Bold_9700-729941-300x260.jpg" alt="" width="194" height="169" />The Blackberry Bold 9700 is a fantastic little phone! It really is and as a test I&#8217;m actually writing this review on my new 9700 on a bumpy bus to Dundee.</p>
<p>So what can I tell you about it? Well let&#8217;s start with the look and feel of the thing. The combination of polished black, chrome and the tactile leathery&#8230;</p>

<ul><li><a href='http://www.effutio.com/web-design/bluehost-vs-justhost-vs-fasthosts-whos-the-top-host/13/' rel='bookmark' title='Permanent Link: Bluehost vs Justhost vs Fasthosts Review &#8211; Whos the top web host?'>Bluehost vs Justhost vs Fasthosts Review &#8211; Whos the top web host?</a></li>
<li><a href='http://www.effutio.com/chatter/creditsafe-marketsafe-unethical-companies-that-should-be-avoided/116/' rel='bookmark' title='Permanent Link: Creditsafe, Marketsafe; Unethical Companies That Should Be Avoided'>Creditsafe, Marketsafe; Unethical Companies That Should Be Avoided</a></li>
<li><a href='http://www.effutio.com/chatter/ps3-slim-is-skinny-better/130/' rel='bookmark' title='Permanent Link: PS3 Slim Review &#8211; Is skinny better?'>PS3 Slim Review &#8211; Is skinny better?</a></li>
<li><a href='http://www.effutio.com/wordpress/noahs-classifieds-do-not-buy-it/234/' rel='bookmark' title='Permanent Link: Noahs Classifieds Review &#8211; DO NOT BUY IT'>Noahs Classifieds Review &#8211; DO NOT BUY IT</a></li>
<li><a href='http://www.effutio.com/wordpress/simplepress-forum-review-is-it-the-best-forum-for-wp/285/' rel='bookmark' title='Permanent Link: Simple:Press Forum Review &#8211; Is it the best forum for WP?'>Simple:Press Forum Review &#8211; Is it the best forum for WP?</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fblackberry-bold-9700-review%2F256%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fblackberry-bold-9700-review%2F256%2F&amp;source=The1Path&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright size-medium wp-image-261" title="BlackBerry_Bold_9700" src="http://www.effutio.com/wp-content/uploads/BlackBerry_Bold_9700-729941-300x260.jpg" alt="" width="194" height="169" />The Blackberry Bold 9700 is a fantastic little phone! It really is and as a test I&#8217;m actually writing this review on my new 9700 on a bumpy bus to Dundee.</p>
<p>So what can I tell you about it? Well let&#8217;s start with the look and feel of the thing. The combination of polished black, chrome and the tactile leathery finish on the back give the 9700 a sleek, sexy and professional business look. The leather feel back also helps grip when typing on the dinky full qwerty keyboard.</p>
<p>Its definitely the most stylish looking business orientated smart phone I&#8217;ve seen.</p>
<p>And it really is smart and works for your business. Setting up your emails is super easy and they come through immediately! Not only that but a multitude of email attatchments can be downloaded and opened, even microsoft office documents.</p>
<p><img class="alignright size-medium wp-image-259" title="wordpress-beta-blackberry-screenshot" src="http://www.effutio.com/wp-content/uploads/wordpress-beta-blackberry-screenshot-225x300.png" alt="" width="225" height="300" />Of course its all about the apps these days and there is plenty useful apps to choose from. Ubertwitter is one of mine and of course the Wordpress app allowing me to write this review on the bus. Totally awesome! I love how easy it is to update my websites on the move.</p>
<p>Aside from the powerful business functions the 9700 boasts the usual features like mp3 playback and a 3.2 megapixel camera. One of the best featurews for me though and a real iphone beater is the use of SD card memory, allowing me to expand and swap my memory cards, something the iphone won&#8217;t let you do!</p>
<p>In conclusion I love the new BB Bold. The design and proportions are just right, it helps me make money and I can run various aspects of my business on the move and of course look good doing it.</p>
<p>I think its an iphone beater!!!</p>
<p>What are your thoughts?</p>


<ul><li><a href='http://www.effutio.com/web-design/bluehost-vs-justhost-vs-fasthosts-whos-the-top-host/13/' rel='bookmark' title='Permanent Link: Bluehost vs Justhost vs Fasthosts Review &#8211; Whos the top web host?'>Bluehost vs Justhost vs Fasthosts Review &#8211; Whos the top web host?</a></li>
<li><a href='http://www.effutio.com/chatter/creditsafe-marketsafe-unethical-companies-that-should-be-avoided/116/' rel='bookmark' title='Permanent Link: Creditsafe, Marketsafe; Unethical Companies That Should Be Avoided'>Creditsafe, Marketsafe; Unethical Companies That Should Be Avoided</a></li>
<li><a href='http://www.effutio.com/chatter/ps3-slim-is-skinny-better/130/' rel='bookmark' title='Permanent Link: PS3 Slim Review &#8211; Is skinny better?'>PS3 Slim Review &#8211; Is skinny better?</a></li>
<li><a href='http://www.effutio.com/wordpress/noahs-classifieds-do-not-buy-it/234/' rel='bookmark' title='Permanent Link: Noahs Classifieds Review &#8211; DO NOT BUY IT'>Noahs Classifieds Review &#8211; DO NOT BUY IT</a></li>
<li><a href='http://www.effutio.com/wordpress/simplepress-forum-review-is-it-the-best-forum-for-wp/285/' rel='bookmark' title='Permanent Link: Simple:Press Forum Review &#8211; Is it the best forum for WP?'>Simple:Press Forum Review &#8211; Is it the best forum for WP?</a></li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/IMCqEw2u1LfH2XYWDwoxmZzonUs/0/da"><img src="http://feedads.g.doubleclick.net/~a/IMCqEw2u1LfH2XYWDwoxmZzonUs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/IMCqEw2u1LfH2XYWDwoxmZzonUs/1/da"><img src="http://feedads.g.doubleclick.net/~a/IMCqEw2u1LfH2XYWDwoxmZzonUs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Effutio/~4/PwSUSey1ka0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.effutio.com/reviews/blackberry-bold-9700-review/256/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.effutio.com/reviews/blackberry-bold-9700-review/256/</feedburner:origLink></item>
		<item>
		<title>Ultimate Forex Secrets Seminar – Review</title>
		<link>http://feedproxy.google.com/~r/Effutio/~3/yhQ3pMAiNNk/</link>
		<comments>http://www.effutio.com/reviews/ultimate-forex-secrets-seminar-review/253/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 09:19:51 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Product]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Forex]]></category>
		<category><![CDATA[Knowledge to Action Ltd]]></category>
		<category><![CDATA[Seminar]]></category>
		<category><![CDATA[Trading]]></category>

		<guid isPermaLink="false">http://www.effutio.com/?p=253</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fultimate-forex-secrets-seminar-review%2F253%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fultimate-forex-secrets-seminar-review%2F253%2F&#38;source=The1Path&#38;style=normal&#38;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Just yesterday my bestest buddy and I ventured down to Edinburgh Grosvenor Hilton Hotel where Knowledge to Action Ltd where holding a free seminar.</p>
<p>Their website found here: http://www.knowledgetoaction.co.uk is how shall I put it a bit spamy looking. You know the type a one page hash of sales jargon and impressive figures that are too good to be true.&#8230;</p>


No related posts.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fultimate-forex-secrets-seminar-review%2F253%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Freviews%2Fultimate-forex-secrets-seminar-review%2F253%2F&amp;source=The1Path&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p>Just yesterday my bestest buddy and I ventured down to Edinburgh Grosvenor Hilton Hotel where Knowledge to Action Ltd where holding a free seminar.</p>
<p>Their website found here: http://www.knowledgetoaction.co.uk is how shall I put it a bit spamy looking. You know the type a one page hash of sales jargon and impressive figures that are too good to be true.</p>
<p>However it was my friend who found it and I hadnt seen the website until today. Anyway it was free and I thought what the hell it sounds quite interesting.</p>
<p>So the speaker talked for over 2 hours and to be honest didnt really give to much away&#8230;&#8230;obviously! It was basically an extended sales pitch and drive to recruit people on their intensive course where you are taught Greg Secker&#8217;s proven strategies by experts. Fair dos I spose.</p>
<p>There was some quite interesting info in there though and it definitely wetted my apetite to investigate the Forex market more. I dont think I will be joining Knowledge to Actions course costing £2000 though, plus you have to get down to London which is even more expense! No, I think I would much rather invest that £2K in the market and have a bash once Ive read up on the basics a bit more. This of course was frowned upon by the speaker who informed us all that the money was well spent on the course as you will lose your first £2k if you dont know what you are doing.</p>
<p>I wondered about his and Im sure a lot of the successful traders today didnt take their course or any other. My friend has a degree in economics and we are both fairly intelligent and we picked up some good tips from the seminar, we will do a lot more reading and maybe do some investing this summer, funds permitting.</p>
<p>The types of investment can vary and I still dont fully understand some of them as the seminar just touched upon them briefly. Some require a bit more initial capital and others can be utilised with a smaller budget.</p>
<p>All in all if you are interested in starting to invest in Forex then dont be afraid of going to this free seminar, it does have some useful tips if you can cut through the bull and sales pitch.</p>
<p>All I would say is look out for the contradictions, one minute its easy to make money with this system and its so simple, next the speaker cant complicate things by telling you any of the &#8220;secrets&#8221; now! Hum, oh well make your own mind up.</p>


<p>No related posts.</p>
<p><a href="http://feedads.g.doubleclick.net/~a/4LjYpi_4X2jCwCEHez507RtCrCc/0/da"><img src="http://feedads.g.doubleclick.net/~a/4LjYpi_4X2jCwCEHez507RtCrCc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4LjYpi_4X2jCwCEHez507RtCrCc/1/da"><img src="http://feedads.g.doubleclick.net/~a/4LjYpi_4X2jCwCEHez507RtCrCc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Effutio/~4/yhQ3pMAiNNk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.effutio.com/reviews/ultimate-forex-secrets-seminar-review/253/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.effutio.com/reviews/ultimate-forex-secrets-seminar-review/253/</feedburner:origLink></item>
		<item>
		<title>Opencart v1.4.0 – It just gets better and better</title>
		<link>http://feedproxy.google.com/~r/Effutio/~3/rcGpS59kp0U/</link>
		<comments>http://www.effutio.com/web-design/opencart-v1-4-0-it-just-gets-better-and-better/247/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 12:12:47 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Opencart]]></category>
		<category><![CDATA[Product]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Ecommerce]]></category>
		<category><![CDATA[Shopping Cart]]></category>

		<guid isPermaLink="false">http://www.effutio.com/oipencart/opencart-v1-4-0-it-just-gets-better-and-better/</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fweb-design%2Fopencart-v1-4-0-it-just-gets-better-and-better%2F247%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fweb-design%2Fopencart-v1-4-0-it-just-gets-better-and-better%2F247%2F&#38;source=The1Path&#38;style=normal&#38;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://www.effutio.com/wp-content/uploads/opencart1.png" alt="" title="Opencart" width="279" height="75" class="alignright size-full wp-image-250" />Opencart v1.4.0 has been released and is available to download <a href="http://opencart.googlecode.com/files/opencart_v1.4.0.zip">here</a>.</p>
<p>First off lets review the <a href="http://demo.opencart.com/">store front</a>. This continues to improve and has definitely done so with this new release, it is probably now the prettiest cart out of the box! For those without the skills or time to change the template it offers a good look&#8230;</p>

<ul><li><a href='http://www.effutio.com/web-design/password-box-different-size-from-text-box-in-ie/90/' rel='bookmark' title='Permanent Link: Password box different size from text box in IE'>Password box different size from text box in IE</a></li>
<li><a href='http://www.effutio.com/web-design/opencart-possibly-the-best-open-source-shopping-cart-software/181/' rel='bookmark' title='Permanent Link: Opencart &#8211; Possibly the best open source shopping cart software!'>Opencart &#8211; Possibly the best open source shopping cart software!</a></li>
<li><a href='http://www.effutio.com/web-design/page-templates-in-wordpress/191/' rel='bookmark' title='Permanent Link: Page Templates in Wordpress'>Page Templates in Wordpress</a></li>
<li><a href='http://www.effutio.com/web-design/using-multipledifferent-headers-sidebars-footers-and-comment-templates-in-wordpress/193/' rel='bookmark' title='Permanent Link: Using multiple/different headers, sidebars, footers and comment templates in Wordpress'>Using multiple/different headers, sidebars, footers and comment templates in Wordpress</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fweb-design%2Fopencart-v1-4-0-it-just-gets-better-and-better%2F247%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fweb-design%2Fopencart-v1-4-0-it-just-gets-better-and-better%2F247%2F&amp;source=The1Path&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://www.effutio.com/wp-content/uploads/opencart1.png" alt="" title="Opencart" width="279" height="75" class="alignright size-full wp-image-250" />Opencart v1.4.0 has been released and is available to download <a href="http://opencart.googlecode.com/files/opencart_v1.4.0.zip">here</a>.</p>
<p>First off lets review the <a href="http://demo.opencart.com/">store front</a>. This continues to improve and has definitely done so with this new release, it is probably now the prettiest cart out of the box! For those without the skills or time to change the template it offers a good look to simply start selling&#8230;it hardly needs any setting up and is simply thebest option for any online selling noobs out there. It does however give a wealth of functionality and flexibility for the more expert user but i digress. Being a &#8216;designer&#8217; (perhaps not a very good one) the overall look is a bit young and cartoony for me, I dont like all the little icons and never have, these are easy to get rid of if you want to however. On the plus side the new drop down boxes for currency and language are cool and a nice improvement. Overall its very neat and tidy; a great platform to sell from.</p>
<p>OK lets review the <a href="http://demo.opencart.com/admin">admin side</a> (user: demo password: demo). This is the area that has seen the most change. It now spans your screen instead of being fixed width and has a much more professional look. The menu bar is very nice with its see through dropdown list although it sometime does take a few mouse hovers to get the dropdown to actually drop (I noticed this in previous versions too and may be an Internet Explorer thing). The functionality has been improved and my quick whiz through the admin screens shows me a higher level of control to the administrator and the improved layout makes it so much easier and intuitive to work with. The admin really is a marked improvement from the previous version and as usual has great out of the box functionality, with Google Base, Sitemap and Talk all ready to blast off! Oh yeh and there is a neat new advanced search feature, plus the initial search allows users to search via category&#8230;..awesome!!</p>
<p>Code and database wise Im not sure what has changed as yet, I havent had a chance to delve that deeply, however as far as Ive seen people have upgraded and reuploaded their database without any problems.</p>
<p>I think Opencart is fantastic and will be huge like Magento (eventually). The one area that has to be improved upon to capture more users is the upgrade/module system. If there could be a more Wordpress-like automatic upgrade of core files, database and modules that would just be incredible and Im sure Opencart would take over the world and become a leader in its field! For now though Im just happy to be a small part of it and shall contribute anyway I can. As should you, if you download this free software why not contribute something to the cause, donate some money, write a review, link to the site and moan at your host to setup an auto install feature for Opencart.</p>
<p>Please let me know what you think of the new Opencart v1.4.0 below:</p>


<ul><li><a href='http://www.effutio.com/web-design/password-box-different-size-from-text-box-in-ie/90/' rel='bookmark' title='Permanent Link: Password box different size from text box in IE'>Password box different size from text box in IE</a></li>
<li><a href='http://www.effutio.com/web-design/opencart-possibly-the-best-open-source-shopping-cart-software/181/' rel='bookmark' title='Permanent Link: Opencart &#8211; Possibly the best open source shopping cart software!'>Opencart &#8211; Possibly the best open source shopping cart software!</a></li>
<li><a href='http://www.effutio.com/web-design/page-templates-in-wordpress/191/' rel='bookmark' title='Permanent Link: Page Templates in Wordpress'>Page Templates in Wordpress</a></li>
<li><a href='http://www.effutio.com/web-design/using-multipledifferent-headers-sidebars-footers-and-comment-templates-in-wordpress/193/' rel='bookmark' title='Permanent Link: Using multiple/different headers, sidebars, footers and comment templates in Wordpress'>Using multiple/different headers, sidebars, footers and comment templates in Wordpress</a></li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/-XfIF_it_Z_yVdpvQ9Z39PCrr-s/0/da"><img src="http://feedads.g.doubleclick.net/~a/-XfIF_it_Z_yVdpvQ9Z39PCrr-s/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-XfIF_it_Z_yVdpvQ9Z39PCrr-s/1/da"><img src="http://feedads.g.doubleclick.net/~a/-XfIF_it_Z_yVdpvQ9Z39PCrr-s/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Effutio/~4/rcGpS59kp0U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.effutio.com/web-design/opencart-v1-4-0-it-just-gets-better-and-better/247/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.effutio.com/web-design/opencart-v1-4-0-it-just-gets-better-and-better/247/</feedburner:origLink></item>
		<item>
		<title>Noahs Classifieds Review – DO NOT BUY IT</title>
		<link>http://feedproxy.google.com/~r/Effutio/~3/h2c2weDhbgU/</link>
		<comments>http://www.effutio.com/wordpress/noahs-classifieds-do-not-buy-it/234/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 23:19:56 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Chatter]]></category>
		<category><![CDATA[Product]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hints and Tips]]></category>

		<guid isPermaLink="false">http://www.effutio.com/?p=234</guid>
		<description><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fnoahs-classifieds-do-not-buy-it%2F234%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fnoahs-classifieds-do-not-buy-it%2F234%2F&#38;source=The1Path&#38;style=normal&#38;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright size-full wp-image-237" title="noahs classifieds logo" src="http://www.effutio.com/wp-content/uploads/headpic.gif" alt="noahs classifieds logo" width="272" height="56" />I decided to start a classified ads website for my local area a few months ago. I searched Google for a couple of days and couldnt find software that was quite right.</p>
<p>I found Noah&#8217;s Classifieds and although I was not totally sold buy their website and demo of the software, I did find the recent feature of a bridge&#8230;</p>

<ul><li><a href='http://www.effutio.com/wordpress/pre-installation-wordpress-checklist-top-5/3/' rel='bookmark' title='Permanent Link: Pre-installation Wordpress checklist'>Pre-installation Wordpress checklist</a></li>
<li><a href='http://www.effutio.com/chatter/ps3-slim-is-skinny-better/130/' rel='bookmark' title='Permanent Link: PS3 Slim Review &#8211; Is skinny better?'>PS3 Slim Review &#8211; Is skinny better?</a></li>
<li><a href='http://www.effutio.com/wordpress/the-path-hosting-launch/164/' rel='bookmark' title='Permanent Link: The Path Hosting Launch'>The Path Hosting Launch</a></li>
<li><a href='http://www.effutio.com/reviews/blackberry-bold-9700-review/256/' rel='bookmark' title='Permanent Link: Blackberry Bold 9700 Review'>Blackberry Bold 9700 Review</a></li>
<li><a href='http://www.effutio.com/wordpress/simplepress-forum-review-is-it-the-best-forum-for-wp/285/' rel='bookmark' title='Permanent Link: Simple:Press Forum Review &#8211; Is it the best forum for WP?'>Simple:Press Forum Review &#8211; Is it the best forum for WP?</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fnoahs-classifieds-do-not-buy-it%2F234%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.effutio.com%2Fwordpress%2Fnoahs-classifieds-do-not-buy-it%2F234%2F&amp;source=The1Path&amp;style=normal&amp;service=TinyURL.com" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright size-full wp-image-237" title="noahs classifieds logo" src="http://www.effutio.com/wp-content/uploads/headpic.gif" alt="noahs classifieds logo" width="272" height="56" />I decided to start a classified ads website for my local area a few months ago. I searched Google for a couple of days and couldnt find software that was quite right.</p>
<p>I found Noah&#8217;s Classifieds and although I was not totally sold buy their website and demo of the software, I did find the recent feature of a bridge to Wordpress very interesting and useful. So having found nothing better I decided to purchase the latest E-Commerce SEO version at $199.95 and the Wordpress Noah Premium Widgets at $49.95 (I believe the actual bridge is free).</p>
<p>So having just spent $249.90 I was eager to get started. The email arrived from Steve (the owner) with the script and plugins etc, it also contained a link to a video guide for installation.</p>
<p>I watched the installation and carried it out without to much bother. So I had a Wordpress installation with a Noah installation in a sub folder. I then initialised the premium widgets/plugins and the bridge. I then set about getting used to Noah (as Im pretty good with Wordpress I thought I would leave that until last), this I found was no easy feat. The admin is poorly laid out, illogical and clunky. The code is also not the best Ive seen, a lot of use of tables and inline styling. It also feels like it hasnt been built from scratch, more like its been adapted from something else.</p>
<p>Anyway having fiddled around with it a bit I decided to make a start on my Wordpress theme. Upon trying to log into the Wordpress admin area I found I couldnt. It threw an error and gave me no access. I asked Steve for help and he couldnt understand my problem and why I was having difficulties and told me to simply start again. Install Wordpress then Noah then initialise the bridge. I did this and it seemed to work until I tested out the functionality of the bridge and widgets.</p>
<p>The bridge hardly functioned at all; I created an account in Wordpress and tried to login to Noah with those details&#8230;.it didnt work. I also found out from another Noah user that the bridge only works one way! So it only works if users register through Wordpress&#8230;well it didnt even do that for me, but even so releasing the bridge in this state seems like its only half done.</p>
<p>So obviously I looked to Steve for support and found none, he simply replied &#8220;nobody else seems to have these problems&#8221;. Which is obviously a lie as there is numerous people unhappy with the software and Steve&#8217;s lack of support, he replies to your emails quick enough if you are interested in buying Noah but as soon as you hit any problems you will be lucky to get a reply!</p>
<p>After countless attempts to get it working, contacting Steve (to get no reply) and visits to the &#8216;cleverly&#8217; called Norum which is the owners forum (which also uses a horrible forum script, thats slow, clanky and looks rubbish) that is rather sparsely populated and you will need to wait for a reply if you get one at all. Steve also doesnt support his product through the forum, he lets other Noah customers do the work for him.</p>
<p>It got to the point where I was so annoyed with everything I asked for a refund, to which Steve replied with an email basically saying that nobody else had any of my issues and that other noobs to the software manage fine and so its my fault. Doing his usual and not addressing the issue raised. I pushed the matter further and now receive no feedback whatsoever.</p>
<p>I thought I would check the terms and conditions on the Noah website and found these two lines:</p>
<p>&#8220;REFUNDS: Payments made to Noahsclassifieds.org are final and shall NOT be refunded under any circumstance.&#8221;</p>
<p>&#8220;REFUNDS: Payments made to Noahsclassifieds.org are final and shall NOT be refunded under any circumstance. Unless you elect for a 30-day Money Back Trial Period.&#8221;</p>
<p>I dont remember an option for a 30-day money back trial period when I made the purchase&#8230;.funny that!</p>
<p>I suppose its my own fault. If you look at the Noah website, the checkout system, the forum. Non are particularly good and well designed so why would the classifieds script be any different. I hope by writing this review that people looking to purchase a classified script will avoid Noah like the plague and realise the lack of support should you run in to difficulties.</p>
<p>Im currently looking into other options and think I found a good alternative which I will write a review on when I have tested it. Still Im angry that I have wasted over £150 on rubbish that I no longer want to use and have no hope of getting a refund for.</p>
<p>UPDATE: I have found a really good out of the box classifieds software called ikiclassifieds. Its very easy to setup and has excellent admin customisation options. It also boasts excellent adsense and banner ad integration. You can set top ads (featured ads) and homepage placement ads payable via Paypal. Overall the site is excellent with phpBB included. I havent customised the code too much as I havent felt the need to, everything is almost perfect straight out the box&#8230;a highly recommended bit of software. Support is slightly slow (think the time difference effects it) but so far so good, they have answered all my comments etc. I also think its quite new so cant wait for updates!</p>
<p>UPDATE: Please read all the comment before purchasing iki. There may be a better option for you like using Wordpress and a custom theme like Classipress or Classifieds Theme.</p>
<span class="sfforumlink"><a href="http://www.effutio.com/forum/web-rants/noahs-classifieds-do-not-buy-it/"><p><img src="http://www.effutio.com/wp-content/plugins/simple-forum/styles/icons/ash/bloglink.png" alt="" /> Join the forum discussion on this post</p>
</a></span>

<ul><li><a href='http://www.effutio.com/wordpress/pre-installation-wordpress-checklist-top-5/3/' rel='bookmark' title='Permanent Link: Pre-installation Wordpress checklist'>Pre-installation Wordpress checklist</a></li>
<li><a href='http://www.effutio.com/chatter/ps3-slim-is-skinny-better/130/' rel='bookmark' title='Permanent Link: PS3 Slim Review &#8211; Is skinny better?'>PS3 Slim Review &#8211; Is skinny better?</a></li>
<li><a href='http://www.effutio.com/wordpress/the-path-hosting-launch/164/' rel='bookmark' title='Permanent Link: The Path Hosting Launch'>The Path Hosting Launch</a></li>
<li><a href='http://www.effutio.com/reviews/blackberry-bold-9700-review/256/' rel='bookmark' title='Permanent Link: Blackberry Bold 9700 Review'>Blackberry Bold 9700 Review</a></li>
<li><a href='http://www.effutio.com/wordpress/simplepress-forum-review-is-it-the-best-forum-for-wp/285/' rel='bookmark' title='Permanent Link: Simple:Press Forum Review &#8211; Is it the best forum for WP?'>Simple:Press Forum Review &#8211; Is it the best forum for WP?</a></li>
</ul>
<p><a href="http://feedads.g.doubleclick.net/~a/Jl3O1iEJd3t0kDpspIRY6lAfvdU/0/da"><img src="http://feedads.g.doubleclick.net/~a/Jl3O1iEJd3t0kDpspIRY6lAfvdU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Jl3O1iEJd3t0kDpspIRY6lAfvdU/1/da"><img src="http://feedads.g.doubleclick.net/~a/Jl3O1iEJd3t0kDpspIRY6lAfvdU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Effutio/~4/h2c2weDhbgU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.effutio.com/wordpress/noahs-classifieds-do-not-buy-it/234/feed/</wfw:commentRss>
		<slash:comments>88</slash:comments>
		<feedburner:origLink>http://www.effutio.com/wordpress/noahs-classifieds-do-not-buy-it/234/</feedburner:origLink></item>
	</channel>
</rss><!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
