<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>iJoomla Blog &#187; Joomla</title>
	<atom:link href="http://www.ijoomla.com/blog/category/joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ijoomla.com/blog</link>
	<description>iJoomla Blog</description>
	<lastBuildDate>Thu, 09 Feb 2012 19:39:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Remove the Joomla meta name generator tag</title>
		<link>http://www.ijoomla.com/blog/remove-joomla-meta-name-generator-plugin/</link>
		<comments>http://www.ijoomla.com/blog/remove-joomla-meta-name-generator-plugin/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 16:39:10 +0000</pubDate>
		<dc:creator>Matt King</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[joomla 1.6]]></category>
		<category><![CDATA[joomla 1.7]]></category>
		<category><![CDATA[joomla 2.5]]></category>
		<category><![CDATA[meta]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=1233</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/remove-joomla-meta-name-generator-plugin/"><img align="right" hspace="5" width="90" height="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2012/02/joomla-generator1-100x100.png" class="imgtfe" alt="remove joomla meta generator" title="joomla-generator" /></a>Do you want to remove the meta tag &#8220;generator&#8221; from your Joomla site?  It&#8217;s very easy to do. In this post I will show you how to do it with a plugin, and also how to do it with a single line of code. Why do I want to remove it? Ideally you do not want large [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fremove-joomla-meta-name-generator-plugin%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright size-full wp-image-1240" title="joomla-generator" src="http://www.ijoomla.com/blog/wp-content/uploads/2012/02/joomla-generator1.png" alt="remove joomla meta generator" width="200 " height="200" /></p>
<p>Do you want to remove the meta tag &#8220;generator&#8221; from your Joomla site?  It&#8217;s very easy to do.<br />
<br style=”height:2em” /><br />
In this post I will show you how to do it with a plugin, and also how to do it with a single line of code.</p>
<p><span id="more-1233"></span></p>
<h3>Why do I want to remove it?</h3>
<p>Ideally you do not want large amonts of unnecessary code in your website.  You do not want to make it harder for Google and search engines to find what they need&#8211;you want to make it easier.  Now I understand, this one line of code isn&#8217;t exactly a ton of bloat, but it all adds up over time.  A bit of code here, an extra meta there, and all of a sudden you have a huge index file that takes ages to load.  Keep things tidy.</p>
<p><img class="aligncenter size-full wp-image-1249" title="remove-meta" src="http://www.ijoomla.com/blog/wp-content/uploads/2012/02/remove-meta.png" alt="remove meta generator" width="630" height="139" /><br />
<br style=”height:4em” /></p>
<h3>Give me a plugin.  Code scares me.</h3>
<p>By far the easiest way is to use the Joomla plugin <a href="http://extensions.joomla.org/extensions/site-management/seo-a-metadata/12556" target="_blank">ByeByeGenerator</a>.  Install the plugin, enable it, verify the meta tag is removed in the source code and you are done.  Not only is the method the easiest, it will work for any version of Joomla.  1.5, 1.6, 1.7 &amp; 2.5.  This method is also persistent, so if you change your templates a lot or do any updates, this plugin will always work and never get overridden.  But what if you are a purist?</p>
<p><img class="aligncenter size-full wp-image-1252" title="enabled-plugin" src="http://www.ijoomla.com/blog/wp-content/uploads/2012/02/enabled-plugin.png" alt="enabled joomla plugin" width="630" height="194" /><br />
<br style=”height:4em” /></p>
<h3>I don&#8217;t want another plugin, just tell me how to do it manually</h3>
<p>The method to removing the meta name generator tag for Joomla varies between versions.  On Joomla 2.5 you can simply add this code to your index.php file in your template.</p>
<p><code>JFactory::getDocument()-&gt;setGenerator('');</code></p>
<p>Put it just after the line //no direct access.  This method will vary greatly on what template you are using and from what company, so I cannot get too detailed.  For example YooThemes has a different template structure then RocketThemes.  You will have to noodle around a bit yourself in order to do this.  The main advantage of editing the template code instead of installing a plugin is less overhead.  The fewer plugins you have, the faster your site will be, and queries add up fast.<br />
<br style=”height:4em” /></p>
<h3>Conclusion</h3>
<p>This is one of the few cases I&#8217;d suggest using a plugin over editing code.  This plugin totally removes the meta name generator tag, installs in no time at all and get&#8217;s the job done.  I use this plugin personally for the Joomla sites I build.  I heartily recommend it.</p>
<p style="text-align: center;"><a href="http://seo.ijoomla.com"><img class="aligncenter size-full wp-image-1202" title="ijoomla-seo-products-learn-more" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/ijoomla-seo-products-banner.jpg" alt="joomla seo products" width="630" height=" " /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/remove-joomla-meta-name-generator-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla 2.5 &#8211; What to expect, &amp; how to upgrade Joomla 1.5 or 1.7</title>
		<link>http://www.ijoomla.com/blog/joomla-2-5-what-to-expect-how-to-upgrade-from-joomla-1-5-or-1-7/</link>
		<comments>http://www.ijoomla.com/blog/joomla-2-5-what-to-expect-how-to-upgrade-from-joomla-1-5-or-1-7/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 14:55:43 +0000</pubDate>
		<dc:creator>Matt King</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[joomla 1.5]]></category>
		<category><![CDATA[joomla 1.6]]></category>
		<category><![CDATA[joomla 2.5]]></category>
		<category><![CDATA[joomla 2.5 upgrade]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=1186</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/joomla-2-5-what-to-expect-how-to-upgrade-from-joomla-1-5-or-1-7/"><img align="right" hspace="5" width="90" height="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/joomla-2.5.0-beta-100x100.jpg" class="imgtfe" alt="joomla 2.5.0 beta is out" title="joomla-2.5.0-beta" /></a>The Joomla Project announced on December 22 the newest Beta version for our favorite CMS, Joomla 2.5.  This will be the second release since converting over to their new six month release cycle.  In this article I will outline what you can expect from this new version, how to upgrade to it, and why this [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fjoomla-2-5-what-to-expect-how-to-upgrade-from-joomla-1-5-or-1-7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright size-full wp-image-1195" title="joomla-2.5.0-beta" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/joomla-2.5.0-beta.jpg" alt="joomla 2.5.0 beta is out" width="200" height="200" />The Joomla Project <a href="http://www.joomla.org/announcements/release-news/5397-joomla-25-beta1-released.html" target="_blank">announced on December 22</a> the newest Beta version for our favorite CMS, <a href="http://joomlacode.org/gf/project/joomla/frs/?action=FrsReleaseBrowse&amp;frs_package_id=6198" target="_blank">Joomla 2.5</a>.  This will be the second release since converting over to their new six month release cycle.  In this article I will outline what you can expect from this new version, how to upgrade to it, and why this version matters to you.</p>
<p><span id="more-1186"></span></p>
<h2>What is the Joomla 2.5 Beta for?</h2>
<p>This beta is being released to allow the public to test and play with this new version.  Developers can install it and test their extensions to make sure they work.  Website administrators can download it and test the upgrade process from <strong>Joomla 1.7</strong> to <strong>Joomla 2.5.0</strong> on their development sites.<br />
It&#8217;s important to note that this version <strong>should not be used on a live or a production site</strong>.   Changes are still being made and running beta scripts such as this on a active site is poor form.  Test it, play with it, try and break it, but don&#8217;t use it for Grandmas new muffin website.</p>
<div id="attachment_1194" class="wp-caption aligncenter" style="width: 660px"><img class="size-full wp-image-1194" title="grandmas-joomla-2.5-muffins" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/grandmas-joomla-2.5-muffins.jpg" alt="joomla 2.5 beta is hot like muffins" width="650" height="274" /><p class="wp-caption-text">I like my muffins fresh out of SVN</p></div>
<h2>When will Joomla 2.5 come out of beta?</h2>
<p>The Joomla Project people have stated that it will go stable around January 10th, 2012.  New releases will come out every six months after that.  ex: 2.5.1, 2.5.2 and so on.  Of course these are not exact dates, remember Joomla is coded by volunteers.</p>
<h2>Will Upgrading from Joomla 1.7 to Joomla 2.5 be hard?</h2>
<p>Nope.  Remember back a few months ago when Joomla 1.7 was released and <a href="http://www.ijoomla.com/blog/what-is-new-in-joomla-1-7-vs-joomla-1-6/">we talked about it&#8217;s features</a>?   The most important new option was upgrades via the administration area.  You can safely upgrade from Joomla 1.7 to <strong>Joomla 2.5</strong> via a click of a button.  Obviously you should test this in your sandbox first and not on a live site, but it will drastically speed up your upgrade process.</p>
<h2>How can I upgrade Joomla 1.5 to Joomla 2.5?</h2>
<p>There is no upgrade path from J1.5 -&gt; J2.5.   You will have to <em>migrate</em>.  There are a variety of changes from J1.5 to newer versions including changes to tables and the ACL (access control list) so a migration is the only way.  If you are comfortable with migrating from different Joomla releases you probably have a system in place.   If not, you can <a href="http://extensions.joomla.org/extensions/migration-a-conversion/joomla-migration/11658" target="_blank">try out this extension</a>.  I personally have not tried it, but it seems pretty straightforward.  Take all the usual precautions and backup your databases and files before doing something like this.   Try it on your development site first and test the process before doing it on a live site.</p>
<h2>Will iJoomla extensions work on Joomla 2.5?</h2>
<p>We plan to keep up with the development and convert all the products that are 1.7 to 2.5.</p>
<h3>Have you installed Joomla 2.5 beta yourself?</h3>
<p>Let us know in the comments what your experiences have been and if you had any problems.  We would love to know what you think.</p>
<p style="text-align: center;"><a href="http://seo.ijoomla.com"><img class="aligncenter size-full wp-image-1202" title="ijoomla-seo-products-learn-more" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/ijoomla-seo-products-banner.jpg" alt="joomla seo products" width="650" height="132" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/joomla-2-5-what-to-expect-how-to-upgrade-from-joomla-1-5-or-1-7/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Social Ad Targeting Is Here!</title>
		<link>http://www.ijoomla.com/blog/social_targeting/</link>
		<comments>http://www.ijoomla.com/blog/social_targeting/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 01:59:31 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[iJoomla Extensions]]></category>
		<category><![CDATA[ad agency]]></category>
		<category><![CDATA[jomsocial]]></category>
		<category><![CDATA[social targeting]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=1208</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/social_targeting/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/adsocial1-300x141.png" class="imgtfe" alt="Joomla Social Ad Targeting with JomSocial &amp; Ad Agency" title="adsocial" /></a>We get lots of suggestions from our customers for features and Joomla enhancements that they’d like to see. We try to act on those suggestions whenever possible. We’ve now acted on the request that we see most often. We’ve integrated  JomSocial with Ad Agency! This revolutionary version of Ad Agency will help you take your [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fsocial_targeting%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_1224" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-1224" title="adsocial" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/adsocial1-300x141.png" alt="Joomla Social Ad Targeting with JomSocial &amp; Ad Agency" width="300" height="141" /><p class="wp-caption-text">Joomla Social Ad Targeting with JomSocial &amp; Ad Agency</p></div>
<p>We get lots of suggestions from our customers for features and Joomla enhancements that they’d like to see. We try to act on those suggestions whenever possible.</p>
<p>We’ve now acted on the request that we see most often.</p>
<p>We’ve integrated  <a href="http://adagency.ijoomla.com/social-targeting/" target="_blank">JomSocial with Ad Agency</a>!</p>
<p>This revolutionary version of Ad Agency will help you take your advertising program to the next level — guaranteed!</p>
<h2>Why JomSocial?</h2>
<p>Let&#8217;s face it, since <a href="http://www.jomsocial.com/" target="_blank">JomSocial</a> came out, other community components for Joomla have been put to shame! JomSocial is comprehensive, powerful and its developers keep adding cool new features all the time. When it comes to Joomla and Social, JomSocial is the best solution around.</p>
<h2>Target Any Ad Based on JomSocial Profile Info</h2>
<ul>
<li> Want to show your ads only to women?</li>
<li> Want to show your ads only to people with a college degree?</li>
<li> Want to show your ads only to women over 30 with a college degree?</li>
</ul>
<h2>Easy! Simple! Done.</h2>
<p>It’s called “Social Media Targeting.”</p>
<h2>What is Social Media Targeting ?</h2>
<p>Social Media Targeting lets you use all of the demographic data available on social media sites to shoot your ads directly to the people most likely to buy.</p>
<p>From Wikipedia:</p>
<div class="note">
<blockquote>
<p class="blockquote">Social Media Targeting is a method of optimizing social media advertising by using profile data to deliver advertisements directly to individual users. Social media targeting refers to the process of matching social network users to target groups that have been specified by the advertiser.</p>
</blockquote>
</div>
<h2>Video: Social Targeting With Jom Social and Ad Agency</h2>
<p><a href="http://www.ijoomla.com/blog/social_targeting/"><em>Click here to view the embedded video.</em></a></p>
<h2>If Facebook Does it, So Should You</h2>
<p>Ever notice how well the ads on <a href="http://facebook.com" target="_blank">Facebook</a> match your interests? It’s creepy… like Facebook can read your mind.</p>
<p>Actually, it can read<strong> your profile</strong>.</p>
<p>Everyone on Facebook has a profile, and that profile is packed with valuable information. It let advertisers be very specific about who sees their ads. Google has nothing that comes close.<a href="http://www.google.com/AdWords" target="_blank"> AdWords</a>? That’s <em>so</em> five years ago. <strong>Social ads are what it’s all about now</strong>. It’s the secret to successful advertising and it’s what’s made Mark Zuckerberg a very rich man.</p>
<h2>It’s Great for You Because:</h2>
<p>When you can convince your advertisers that they can target the very best leads, you’ll find it easier to sell your space and for a lot more money!</p>
<p>After all, would you rather pay $100 for 5,000 useless clicks or $200 for 200 clicks that might actually convert?</p>
<h2>
<div id="attachment_1214" class="wp-caption alignright" style="width: 260px"><img class="size-full wp-image-1214" title="Advertising cartoon" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/images.jpg" alt="Advertisers don’t have to throw their hard earned cash on people who aren’t likely to buy their products" width="250" height="201" /><p class="wp-caption-text">Advertisers don’t have to throw their hard earned cash on people who aren’t likely to buy their products</p></div>
<p>It’s Great for Advertisers Because:</h2>
<p>They don’t have to throw their hard earned cash on people who aren&#8217;t likely to buy their products. They can be as specific as they want with their ad and target ONLY the people who are the most likely to turn into paying customers.</p>
<p>For example, when I advertise iJoomla.com on Facebook, I only show my ads to people who mention “Joomla.” I don’t want to pay for people to click on my ad unless they are using Joomla and may become customers.</p>
<h2>Ad Targeting – The Secret of Your Advertising Program Success</h2>
<p>If you want to sell advertising packages on your website, you need to offer content-targeted advertising. It’s the only way to be sure you’re monetizing your website in the most effective way possible.</p>
<h2>Help Advertisers Choose You, Not Your Competition</h2>
<p>To persuade prospective advertisers to advertise on YOUR site and not on your competitors’ sites, you have to convince them that their money will be well-spent.</p>
<p>You have to make them believe that they will get back the maximum amount of revenue from their investment.</p>
<p>Here’s the advice your advertisers are likely reading online:</p>
<div class="note">
<blockquote>
<p class="blockquote"><em> There are lots of websites and outlets online which offer internet advertising, but you should hesitate to take up even the best offer if it doesn’t provide you with targeted advertising. You might well pay more for targeted traffic but that’s because it is worth far more to you in the long run.” -</em> Kontera.com</p>
</blockquote>
</div>
<p>As you can see, advertisers are being advised NOT to advertise on any site unless it allows them to target their ads — smart advice!</p>
<h2>
<div id="attachment_1216" class="wp-caption alignright" style="width: 204px"><img class="size-full wp-image-1216" title="advertising" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/advertising.jpg" alt="To persuade prospective advertisers to advertise on YOUR site and not on your competitors’ sites, you have to convince them that their money will be well-spent." width="194" height="260" /><p class="wp-caption-text">You have to convince advertisers that their money will be well-spent.</p></div>
<p>You Can Charge More for Targeted Ads!</h2>
<p>Targeted ads get more response than generic ads. We’ve seen it again and again, and that value translates into higher prices.</p>
<p><strong>You can charge 2-10 times more for targeted ads!</strong> Give your advertisers the ability to target their ads and your site will be much further down the road to serious financial success.</p>
<h2>Seamless and Effective Integration</h2>
<p>I know. You think integrating targeted ads is going to be a lot of work and the last thing you want is more work.</p>
<p>I get it. As an entrepreneur myself, I know you don’t want a bigger workload. So let me assure you that adding targeted ads is the easiest and most seamless integration you could ever hope for!</p>
<h2>How Does It work?</h2>
<h3>Select the profile questions to include in ad targeting.</h3>
<div class="wp-caption alignnone" style="width: 618px"><img title="JomSocial Targeting Settings" src="http://adagency.ijoomla.com/images/stories/adagency/jomsocial/jom_social_targeting1.gif" alt="JomSocial Targeting Settings" width="608" height="441" /><p class="wp-caption-text">Select which fields you&#39;d like to include in the social media targeting</p></div>
<h3>On the back-end, the admin can choose the ad’s targeting.</h3>
<div class="wp-caption alignnone" style="width: 486px"><img title="Adding Social Targeting to an ad on the backend" src="http://adagency.ijoomla.com/images/stories/adagency/jomsocial/jom_social_targeting2.gif" alt="Adding Social Targeting to an ad on the backend" width="476" height="540" /><p class="wp-caption-text">Adding Social Targeting to an ad on the backend</p></div>
<h3>And on the front-end, advertisers can now choose the ad targeting, too.</h3>
<div class="wp-caption alignnone" style="width: 618px"><img title="Advertisers can choose how to target the ad" src="http://adagency.ijoomla.com/images/stories/adagency/jomsocial/jom_social_targeting3.gif" alt="Advertisers can choose how to target the ad" width="608" height="457" /><p class="wp-caption-text">Advertisers can choose how to target the ad</p></div>
<div class="tip">This feature is not available for the Joomla 1.5 version!</div>
<div class="note">
<p><img class="size-thumbnail wp-image-1219 alignright" title="softwareboxtopview" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/12/softwareboxtopview-93x100.png" alt="iJoomla Ad Agency" width="93" height="100" /></p>
<p><a href="http://www.ijoomla.com/index.php?option=com_digistore&amp;view=digistorelicenses&amp;Itemid=42" target="_blank">Download the latest version of Ad Agency</a> and give social targeting a try. It&#8217;s very cool!</p>
<p><a href="http://www.ijoomla.com/index.php?option=com_digistore&amp;controller=digistoreProducts&amp;task=view&amp;pid=81&amp;cid=47&amp;Itemid=189" target="_blank">Don&#8217;t have Ad Agency? Buy it here &gt;&gt;</a></p>
</div>
<p>Do you have an online community? Will you be using this feature?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/social_targeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The easiest way to get paid subscriptions on your Joomla site!</title>
		<link>http://www.ijoomla.com/blog/mediapass/</link>
		<comments>http://www.ijoomla.com/blog/mediapass/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 14:37:19 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[iJoomla Extensions]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=1148</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/mediapass/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/09/mp_logo_full.gif" class="imgtfe" alt="MediaPass for Joomla!" title="mp_logo_full" /></a>Ever since the first days of iJoomla, right back when we came out with iJoomla Magazine, people have been asking me if we had a solution to enable paid subscriptions. We didn’t. I’d always hoped that someone else would come up with something and while a few extensions were created over the years to provide [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fmediapass%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_1150" class="wp-caption alignleft" style="width: 252px"><img class="size-full wp-image-1150 " title="mp_logo_full" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/09/mp_logo_full.gif" alt="MediaPass for Joomla!" width="242" height="47" /><p class="wp-caption-text">MediaPass for Joomla!</p></div>
<p>Ever since the first days of iJoomla, right back when we came out with <a href="http://magazine.ijoomla.com/" target="_blank">iJoomla Magazine</a>, people have been asking me if we had a solution to enable paid subscriptions. We didn’t. I’d always hoped that someone else would come up with something and while a few extensions were created over the years to provide a solution, I just couldn’t get excited about any of them.</p>
<p>A couple of months ago though, <a href="http://ijoomla.com/redirect/general/mediapass.htm" target="_blank">MediaPass</a> asked me to create a Joomla integration for their product. Their home page promises to add a subscription feature, just like the big publications use, <em><strong>within minutes</strong></em>. I was impressed! So I agreed, got to work, and… two months later, we have <a href="http://mediapass.ijoomla.com/" target="_blank">MediaPass for Joomla</a> — an easy subscription service for Joomla sites.</p>
<h2>Video: what is MediaPass for Joomla?</h2>
<p><a href="http://www.ijoomla.com/blog/mediapass/"><em>Click here to view the embedded video.</em></a></p>
<p><a href="http://ijoomla.com/redirect/general/mediapass.htm" target="_blank">MediaPass</a> take on all the tricky stuff. They handle the payments through their secure server and they deal with the customer service. All you have to do is install the extension we’ve created and <a href="http://mediapass.ijoomla.com/set-pricing/" target="_blank">choose your pricing plans</a>. You get a check each month with your profits. MediaPass keeps 35 percent of the subscription fee for doing all the processing work and you keep the remaining 65 percent. That’s a fair deal in my opinion considering all the work that they do.</p>
<p>I don’t know of any other solution that’s so easy to implement, especially with our <a href="http://mediapass.ijoomla.com" target="_blank">MediaPass for Joomla</a> extension. I certainly can’t think of one so full of great new features such as the ability to <a href="http://mediapass.ijoomla.com/automatically/" target="_blank">add MediaPass automatically to articles</a>.</p>
<h2>So how does it work?</h2>
<p>Once MediaPass is activated on the page, visitors are presented with the subscription box instead of the content. If they want to keep reading, they have to purchase a subscription. Very simple and very effective.</p>
<h2>You can show the subscription box in two ways:</h2>
<h3>In Page</h3>
<p>The subscription box appears right inside the page (<a href="http://joomla15.ijoomlademo.com/index.php?option=com_content&amp;view=article&amp;id=2727&amp;Itemid=934" target="_blank">view demo</a>)</p>
<h3>Page Overlay</h3>
<p>The subscription box covers the entire window (<a href="http://joomla15.ijoomlademo.com/index.php?option=com_content&amp;view=article&amp;id=2726&amp;Itemid=935" target="_blank">view demo</a>)</p>
<h2>Here are some of MediaPass’s main features:</h2>
<ul>
<li> <a href="http://mediapass.ijoomla.com/automatically/" target="_blank">Add MediaPass automatically</a> to articles of chosen categories.</li>
<li> Choose which part of the article will be covered by the subscription box. You can cover the entire article or only the text that comes after the “read more” tag.</li>
<li> <a href="http://mediapass.ijoomla.com/manually/" target="_blank">Add the MediaPass manually</a> to individual articles using tags.</li>
<li> <a href="http://mediapass.ijoomla.com/set-pricing/" target="_blank">Set the pricing</a> for the subscription plans through  <a href="http://mediapass.com/"> mediapass.com</a> .</li>
<li> <a href="http://mediapass.ijoomla.com/customize/" target="_blank">Customize your messaging and logo</a> on the subscription box, also through <a href="http://mediapass.com/"> mediapass.com</a> access.</li>
<li> <a href="http://mediapass.ijoomla.com/reporting/" target="_blank">View reports</a> on <a href="http://mediapass.com/"> mediapass.com</a> .</li>
</ul>
<p><strong>And it even works for video too! </strong></p>
<p>Create an instant teaser by showing the MediaPass subscription box after a few seconds of your video. To see the rest of the video, viewers have to pay for a subscription. Just add the MediaPass video code and decide how much of the film you need to show to land paid subscriptions. Easy!</p>
<p><a href="http://joomla15.ijoomlademo.com/index.php?option=com_content&amp;view=article&amp;id=2725&amp;Itemid=936" target="_blank">View the video overlay demo here &gt;&gt; </a></p>
<p>And the best feature of all? MediaPass for Joomla is FREE!</p>
<h2>Screen shots:</h2>
<div id="attachment_1152" class="wp-caption aligncenter" style="width: 396px"><img class="size-full wp-image-1152" title="replace" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/09/replace.gif" alt="The MediaPass subscription box will replace your content" width="386" height="490" /><p class="wp-caption-text">The MediaPass subscription box will replace your content</p></div>
<div id="attachment_1153" class="wp-caption aligncenter" style="width: 610px"><img class="size-large wp-image-1153" title="automatic" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/09/automatic-600x212.gif" alt="Choose which categories to include automatically" width="600" height="212" /><p class="wp-caption-text">Choose which categories to include automatically</p></div>
<div id="attachment_1151" class="wp-caption aligncenter" style="width: 610px"><img class="size-large wp-image-1151" title="settings" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/09/settings-600x398.gif" alt="MediaPass for Joomla! Settings" width="600" height="398" /><p class="wp-caption-text">MediaPass for Joomla! Settings</p></div>
<p style="text-align: center;"><a href="http://downloads.ijoomla.com/joomla-downloads/ijoomla-tools/free-extensions/mediapass-for-joomla"><img class="size-full wp-image-952 aligncenter" title="download_now" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/download_now.png" alt="Download MediaPass for Joomla now!" width="200" height="50" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/mediapass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find the module positions in Joomla 1.7</title>
		<link>http://www.ijoomla.com/blog/how-to-find-the-module-positions-in-joomla-1-7/</link>
		<comments>http://www.ijoomla.com/blog/how-to-find-the-module-positions-in-joomla-1-7/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 20:19:28 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=1142</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/how-to-find-the-module-positions-in-joomla-1-7/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/07/module_positions_joomla1.gif" class="imgtfe" alt="Place a link to the site preview with module positions right where the user selects a module position" title="module_positions_joomla" /></a>Knowing where your module positions are located is one of the most fundamental things you need to know when creating a site with Joomla 1.7, however, for some reason it’s not as easy to find as you would think. It was evident in the Joomla 1.7 usability testing I performed a few weeks ago. The [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fhow-to-find-the-module-positions-in-joomla-1-7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Knowing where your module positions are located is one of the most fundamental things you need to know when creating a site with Joomla 1.7, however, for some reason it’s not as easy to find as you would think. It was evident in the <a href="http://www.ijoomla.com/blog/joomla17-usability-testing/">Joomla 1.7 usability testing</a> I performed a few weeks ago. The tester simply couldn’t find it. Nor could I. I figured I would be able to do it on Joomla 1.7 relatively easily, but I had to hear about it from John Coonen from <a href="http://cmsexpo.net/" target="_blank">CMS Expo</a>.</p>
<p>It was not easy to figure out in Joomla 1.5 but at least it was available as a default value. On Joomla 1.7 you’d have to purposely activate this feature to even see it.</p>
<h2>Watch this video that explains how to find the module positions on Joomla 1.7:</h2>
<p><a href="http://www.ijoomla.com/blog/how-to-find-the-module-positions-in-joomla-1-7/"><em>Click here to view the embedded video.</em></a></p>
<h2>Or read this explanation:</h2>
<ul>
<li>Go to extensions-&gt; templates</li>
<li>Switch to templates tab</li>
<li>Click on Options button on top right</li>
<li>Choose &#8220;Enable&#8221; on the &#8220;Preview Module Position&#8221; field</li>
<li>Save</li>
</ul>
<p>Now you will see a preview link next to the template thumbnail.</p>
<h2>A simple solution:</h2>
<p>A simple solution to make things easier for everybody would be to add a preview link next to the &#8220;choose position&#8221; button, this way it is much easier to find.</p>
<div id="attachment_1107" class="wp-caption alignnone" style="width: 557px"><img class="size-full wp-image-1107" title="module_positions_joomla" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/07/module_positions_joomla1.gif" alt="Place a link to the site preview with module positions right where the user selects a module position" width="547" height="142" /><p class="wp-caption-text">Place a link to the site preview with module positions right where the user selects a module position</p></div>
<p>Did you bump into this issue? How did you find the solution?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/how-to-find-the-module-positions-in-joomla-1-7/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>The new Joomla versions roadmap</title>
		<link>http://www.ijoomla.com/blog/joomla-versions-roadmap/</link>
		<comments>http://www.ijoomla.com/blog/joomla-versions-roadmap/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 15:45:05 +0000</pubDate>
		<dc:creator>Matt King</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=1121</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/joomla-versions-roadmap/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/08/road01-300x193.jpg" class="imgtfe" alt="image showing the new joomla versions info" title="joomla roadmap" /></a>If you use Joomla you are no doubt confused about the direction that the Joomla versions are taking.  I admit, I work with Joomla daily and it has been confusing for even me to follow.  If you Google &#8220;Joomla roadmap&#8221; the first result is from 2007, and the rest of the results are just as topical. You [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fjoomla-versions-roadmap%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_1124" class="wp-caption alignright" style="width: 210px"><img class="size-medium wp-image-1124 " title="joomla roadmap" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/08/road01-300x193.jpg" alt="image showing the new joomla versions info" width="200" height=" " /><p class="wp-caption-text">The roadmap to Joomla bliss</p></div>
<p>If you use Joomla you are no doubt confused about the direction that the <strong>Joomla versions</strong> are taking.  I admit, I work with Joomla daily and it has been confusing for even me to follow.  If you Google &#8220;<strong>Joomla roadmap</strong>&#8221; the first result is from 2007, and the rest of the results are just as topical.</p>
<p>You won&#8217;t find much helpful info until you look for &#8220;<strong>Joomla versions</strong>&#8220;, and even then it&#8217;s not official info, it&#8217;s blog posts from other Joomla companies.  No matter, I&#8217;m happy to see Joomla is progressing in the right direction finally.</p>
<p>The <a title="joomla youtube channel" href="http://www.youtube.com/user/joomla" target="_blank">official Joomla channel</a> posted this video showing the detailed <strong>Joomla roadmap</strong> and explains the new <strong>Joomla versions</strong> in detail.</p>
<p><a href="http://www.ijoomla.com/blog/joomla-versions-roadmap/"><em>Click here to view the embedded video.</em></a></p>
<p>If you cannot watch the video, in a nutshell, Ron Severdia of the Production Leadership Team explains the versions and Sandy Ordonez asks various questions.</p>
<p>Joomla will go from 1.7 -&gt; 1.8 -&gt; 2.0.  Minor releases will be 2.1, 2.2, 2.3 and long term releases will end in .5.   So a long term release will be 2.5, 3.5, 4.5 for example.  These long term releases will be supported for 18 months.  Minor releases will not have new features, just bug and security fixes.  Long term releases will have bug and security fixes, as well as potentially new toys and changes.</p>
<p>The most important takeaway from this is to make sure you upgrade to Joomla 1.7 as soon as possible.   This will be the first version with one click updating from inside your administrator control panel.   In a <a title="Joomla 1.6 or Joomla 1.7?" href="http://www.ijoomla.com/blog/what-is-new-in-joomla-1-7-vs-joomla-1-6/" target="_self">previous blog post</a> I covered why you would want to upgrade soon.  All in all, it will make your life easier and upgrades a snap.</p>
<p>Are the new <strong>Joomla versions </strong>confusing to you?  Did this post help?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/joomla-versions-roadmap/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>What is new in Joomla 1.7 vs Joomla 1.6?</title>
		<link>http://www.ijoomla.com/blog/what-is-new-in-joomla-1-7-vs-joomla-1-6/</link>
		<comments>http://www.ijoomla.com/blog/what-is-new-in-joomla-1-7-vs-joomla-1-6/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 14:45:30 +0000</pubDate>
		<dc:creator>Matt King</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=1034</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/what-is-new-in-joomla-1-7-vs-joomla-1-6/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/07/joomla1-7-fridge-magnets-300x75.jpg" class="imgtfe" alt="new features in joomla 1.7 compared to joomla 1.6 " title="joomla1-7-fridge-magnets" /></a>The Joomla team  recently announced Joomla 1.7 is now stable for live sites.  This new version fixes a variety of issues with Joomla 1.6 as well as introduces the ability to upgrade to future versions from within the Administrator panel. No more uploading via FTP, hooray! This marks the first step towards a upgrade system that is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fwhat-is-new-in-joomla-1-7-vs-joomla-1-6%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_1035" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-1035" title="joomla1-7-fridge-magnets" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/07/joomla1-7-fridge-magnets-300x75.jpg" alt="new features in joomla 1.7 compared to joomla 1.6 " width="300" height="75" /><p class="wp-caption-text">Fridge Magnets!</p></div>
<p>The Joomla team  recently <a href="http://www.joomla.org/announcements/release-news/5380-joomla-170-released.html" target="_blank">announced Joomla 1.7</a> is now stable for live sites.  This new version fixes a variety of issues with Joomla 1.6 as well as introduces the ability to upgrade to future versions from within the Administrator panel.</p>
<blockquote><p>No more uploading via FTP, hooray!</p></blockquote>
<p>This marks the first step towards a upgrade system that is similar to WordPress, thus making your life as an administrator easier.  The Joomla 1.7 release does not bring a huge amount of changes, but it is a vital step in the right direction for Joomla and it&#8217;s new release schedule.  In this article I will cover what is new, if you need to upgrade, and why I used such an ugly graphic for this post.</p>
<h2>What are the newest and biggest features?</h2>
<ul>
<li><strong>One click upgrades</strong> &#8211; Starting from Joomla 1.6 you can upgrade your install by going to:  <em>Extensions -&gt; Extension Manager -&gt; Update -&gt; Find updates. </em></li>
<li><strong>Faster release cycles -</strong> Short term releases will be changing every six months and only supported for one month after the next release.</li>
<li><strong>Multi-Language improvements</strong> &#8211; Associate menu items to different languages.</li>
</ul>
<p>There are a variety of other minor changes that you can review on the official <a href="http://www.joomla.org/17" target="_blank">Joomla 1.7 page</a>.</p>
<div class="wp-caption aligncenter" style="width: 473px"><a href="http://www.joomla.org/17" target="_blank"><img title="one click upgrades for Joomla 1.7" src="http://www.ijoomla.com/images/screencaps/matt/2011-07-27_0814.png" alt="joomla upgrade to 1.7 easily" width="463" height="294" /></a><p class="wp-caption-text">Thank you Joomla</p></div>
<blockquote>
<h3>Do I really need to upgrade?</h3>
</blockquote>
<p>Depending on what version of Joomla your site(s) are on now, this may be the last time you have to do a &#8220;scary upgrade&#8221;.   Scary meaning doing it all via FTP and hoping you didn&#8217;t miss any upgrade instructions or caveats.  Upgrading is really easy since J1.6, so this shouldn&#8217;t be a huge deal.</p>
<p>It&#8217;s also important to note that Joomla 1.6 will go end of life in August 2011.   That means no more security updates or patches or fixes for vulnerabilities.  If your site get&#8217;s hacked 6 months from now due to some kid developing some obscure technique, you will only have yourself to blame&#8211;not Joomla.  Upgrade them sites!</p>
<blockquote>
<h3>I am on Joomla 1.5.  How do I do it?</h3>
</blockquote>
<p>There is no upgrade path from J1.5 to J1.6 or J1.7.   You will have to migrate.  There are a variety of changes from J1.5 to newer versions including changes to tables and the ACL (access control list) so a migration is the only way.  If you are comfortable with migrating from different Joomla releases you probably have a system in place.   If not, you can try out <a href="http://extensions.joomla.org/extensions/migration-a-conversion/joomla-migration/11658" target="_blank">this extension</a>.  I personally have not tried it, but it seems pretty straightforward.  Take all the usual precautions and backup your databases and files before doing something like this.   Try it on your development site first and test the process before doing it on a live site.</p>
<blockquote>
<h3><span style="font-weight: normal;">I am on Joomla 1.6.  How do I do it?</span></h3>
</blockquote>
<p>It&#8217;s easy peasy if you already made the leap to Joomla 1.6.   Just go to: <em>Extensions -&gt; Extension Manager -&gt; Update -&gt; Find updates.</em></p>
<blockquote>
<h3><span style="font-weight: normal;">What&#8217;s up with that ugly Joomla image you used in the beginning of the article?</span></h3>
</blockquote>
<p><img class="size-full wp-image-1035 alignleft" title="joomla1-7-fridge-magnets" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/07/joomla1-7-fridge-magnets.jpg" alt="new features in joomla 1.7 compared to joomla 1.6" width="400" height="100" /></p>
<p>Kids refrigerator magnets are cute, cheap and fun.  They also stick to anything metal.  Slapping some fridge magnets on a whiteboard or something metal or *gasp*, your actual fridge is a good way to nag yourself that this upgrade is very important and needs to be done soon.</p>
<blockquote>
<h3>Do I have to worry about extensions breaking?</h3>
</blockquote>
<p>As with any upgrade there is always the potential for things to break.  You should never do a upgrade or migration without some tested and proven way to revert back to a working site if it all goes pear shaped.   The changes from J1.6 to J1.7 are pretty minor, but ther are so many extensions that do so many things, it&#8217;s hard to make a blanket statement.</p>
<p>In regards to iJoomla products, we have fully converted <a href="http://adagency.ijoomla.com/" target="_self">iJoomla AdAgency</a>, <a href="http://seo.ijoomla.com/" target="_self">iJoomla SEO</a> and <a href="http://surveys.ijoomla.com/" target="_self">iJoomla Surveys</a> as of July 28th 2011.</p>
<h3>How about you?</h3>
<p>Do you have any tips or tricks I didn’t cover? Let us know in the comments, we would love to hear from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/what-is-new-in-joomla-1-7-vs-joomla-1-6/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Joomla 1.7 Usability Testing Report &#8211; Placing a module on the site</title>
		<link>http://www.ijoomla.com/blog/joomla17-usability-testing/</link>
		<comments>http://www.ijoomla.com/blog/joomla17-usability-testing/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 19:05:36 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=1097</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/joomla17-usability-testing/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/07/joomla.jpg" class="imgtfe" alt="Joomla" title="joomla" /></a>Giles Fabris of DiehardCustomers.com is a good friend, a business coach and a customer service guru. He&#8217;s also a new Joomla 1.5 user who has been working with the CMS for the past three months. He is a typical Joomla end-user: a business owner, not a developer. I had just one task for him: to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fjoomla17-usability-testing%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignright size-full wp-image-1098" title="joomla" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/07/joomla.jpg" alt="Joomla" width="146" height="100" />Giles Fabris of <a href="http://www.diehardcustomers.com/" target="_blank">DiehardCustomers.com</a> is a good friend, a business coach and a <a href="http://www.diehardcustomers.com/" target="_blank">customer service guru</a>. He&#8217;s also a new Joomla 1.5 user who has been working with the CMS for the past three months. He is a typical <a href="http://joomla.org" target="_blank">Joomla</a> end-user: a business owner, not a developer. I had just one task for him: to place a module on the left side of the template. I wanted to do <a href="http://usabilitytesting.tv" target="_blank">Usability Testing</a> with him to find out how easy (or hard) it is to accomplish such a basic task with Joomla 1.7.</p>
<h2>Here&#8217;s the usability testing video:</h2>
<p><a href="http://www.ijoomla.com/blog/joomla17-usability-testing/"><em>Click here to view the embedded video.</em></a></p>
<h2>Usability Testing Summary:</h2>
<ul>
<li> Giles can see that some module position names make some sense but they are not clear. He thinks that by clicking those modules he will see more detail about each position. He is surprised to find that the module position changes when he clicks.</li>
<li> I asked him how he can find the position that goes on the left.</li>
<li> He decides to open the Template Manager.</li>
<li> He is confused by the two stars on two different templates. He is not sure which is the default template and he doesn&#8217;t understand the difference between the &#8220;site&#8221; and &#8220;administrator&#8221; templates.</li>
<li> He opens the site default template but is confused because it doesn&#8217;t look like the old one. He can no longer find the the &#8220;preview&#8221; button and thinks that by clicking on the &#8220;view sites&#8221; he will see the positions.</li>
<li> He tries the admin template but that doesn&#8217;t help either.</li>
<li> He decides to click the Help button but he is still not sure what the default template is.</li>
<li> He tries to look at the template link, but only finds a page for information about the template.</li>
<li> At this point, Giles said he would call me for help.</li>
<li> He clicks the Help button again but doesn&#8217;t find it useful and says he is not expecting Joomla to be user-friendly.</li>
<li> At this point he would give it five minutes then seek help from a Joomla professional.</li>
</ul>
<h2>Recommendations:</h2>
<p>These issues are &#8220;low hanging fruits&#8221;: they&#8217;re obvious problems that are easy to fix.</p>
<ol>
<li>Show only site templates by default. Users will see only one star for the default template, just like Joomla 1.5</li>
<li>Bring back the site preview with the positions feature, and place a link to it right where the user selects a module position.
<div id="attachment_1107" class="wp-caption alignnone" style="width: 557px"><img class="size-full wp-image-1107" title="module_positions_joomla" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/07/module_positions_joomla1.gif" alt="Place a link to the site preview with module positions right where the user selects a module position" width="547" height="142" /><p class="wp-caption-text">Place a link to the site preview with module positions right where the user selects a module position</p></div></li>
<li>Show a video tutorial inside the Help window.</li>
</ol>
<p>I asked Giles to provide some last words about his usability experience. This is what he had to say:</p>
<p><p><a href="http://www.ijoomla.com/blog/joomla17-usability-testing/"><em>Click here to view the embedded video.</em></a></p>
<p>Making Joomla more user-friendly should not be hard. It requires taking a few weeks off development to focus on usability testing and fixing the UI. Ninety percent of the usability issues that I found are very easy to fix. I will be performing more usability testing for Joomla 1.7 and hopefully the Joomla team will implement some of the recommendations.</p>
<p>What is your usability experience with Joomla 1.6 and Joomla 1.7?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/joomla17-usability-testing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>5 ways to speed up Joomla &amp; make your site faster.</title>
		<link>http://www.ijoomla.com/blog/5-ways-to-speed-up-joomla/</link>
		<comments>http://www.ijoomla.com/blog/5-ways-to-speed-up-joomla/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 16:28:45 +0000</pubDate>
		<dc:creator>Matt King</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=965</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/5-ways-to-speed-up-joomla/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/joomla-speed.jpg" class="imgtfe" alt="speed up joomla image" title="joomla-speed" /></a>Why should I speed up Joomla? Google recently announced that it uses your Joomla loading speed as a deciding factor on where your page ranks in the SERPS, (search engine results). Site speed has generally been more of an after thought to most people, but now it needs to be front and center in your [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2F5-ways-to-speed-up-joomla%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h2>Why should I speed up Joomla?</h2>
<p>Google recently <a href="http://conversionroom.blogspot.com/2011/05/measure-page-load-time-with-site-speed.html" target="_blank">announced</a> that it uses your Joomla loading speed as a deciding factor on where your page ranks in the <a href="http://en.wikipedia.org/wiki/Search_engine_results_page" target="_blank">SERPS</a>, (search engine results).  Site speed has generally  been more of an after thought to most people, but now it needs to be front and center in your development cycle.  It&#8217;s pretty embarrassing having a terrific site, but having to wait 12 seconds for it to load.  In this article we will discuss how to measure your <strong>Joomla speed </strong>and 5 tips on how to make it faster.</p>
<h3>Measure your Joomla speed.  Get a baseline</h3>
<div id="attachment_968" class="wp-caption alignright" style="width: 260px"><img class="size-full wp-image-968 " title="joomla-speed" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/joomla-speed.jpg" alt="speed up joomla image" width="250" height="167" /><p class="wp-caption-text">Make Joomla as fast as a bullet</p></div>
<p>There are lot&#8217;s of tools to measure your <strong>Joomla speed</strong>.  Make sure you are consistent and use the same one throughout your testing.</p>
<ul>
<li>iJoomla now has a free module you can install in your Joomla site to instantly display your page load time.   <a href="http://downloads.ijoomla.com/joomla-downloads/ijoomla-tools/free-extensions/ijoomla-speed-check-module">You can grab it here</a>.   It is free for anybody and a quick an simple way to find out if <strong>Joomla is slow</strong>.</li>
<li>Another option is to add an additional line to your Google Analytics tracking code. You can find out more info about this <a href="http://www.google.com/support/analyticshelp/bin/answer.py?answer=1205784" target="_blank">here</a> if you are comfortable with making this change.</li>
<li>An option directly from Google is to use the <a href="http://pagespeed.googlelabs.com/" target="_blank">page speed testing tool</a>.   Be warned though, it will use a lot of technical terms.</li>
<li>Yet another option is to become familiar with the <a href="http://tools.pingdom.com/" target="_blank">tools</a> at Pingdom.com.   They are a terrific website monitoring company that can provide you with all sorts of info about your site.</li>
</ul>
<p>You may ask yourself, <em>&#8220;Well how fast should my site load?&#8221;</em> That&#8217;s a tough question to answer.   Everybody will be different.   If you use the Google pagespeed tool they will assign you a number.   Take that number.   Anywhere from 1-100, with 100 being the best.   Strive to get as close to 90+ as possible.</p>
<h3>1) Speed up Joomla by compressing your images better</h3>
<p>One of the easiest things to do is make sure your images are optimized for the web properly.  Avoid using huge, slow loading images.  Optimize the size of the images you wish to use in Adobe Fireworks for the highest compression, with the least image degradation.  Photoshop will work, but it is not the right tool for the job.  Fireworks just compresses better.   (<a href="http://webdesignerwall.com/general/fireworks-vs-photoshop-compression" target="_blank">Learn more</a> about why Fireworks is a better option for image compression. )<br />
Above all, never, <em>NEVER</em>, upload a 1200&#215;1200 pixel image, and resize it using html or css.  The huge full sized image will load, but just get resized on the fly by the server.  Multiply that by a 100 or so visitors and your server is overloaded and about to go offline and of course turn your <strong>Joomla speed</strong> to mush.</p>
<div id="attachment_975" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-975 " title="compress-joomla-images" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/compress-joomla-images.jpg" alt="image showing joomla speed" width="600" height="234" /><p class="wp-caption-text">Please make with the squishy-squishy for your images</p></div>
<h3>2) Extensions, scripts, bloat</h3>
<p>Joomla allows you to install an almost infinite amount of extensions and plugins and tools in seconds.  The problem is all of these have been developed by individuals who may not share the same coding practices as the Joomla core team.  One component might use jQuery 1.0 with is 19kb, one nifty gallery might use jQuery 1.5, but sends it to you uncompressed so it is 208kb, your forum might be using MooTools, (but not the one in Joomla) and thats another 180kb.   Then some other wiz-bang of an extension has some .js that is 248kb.   Before you know it you have 10 different types of frameworks being loaded on EACH PAGE LOAD.   That is huge code bloat and will bring your server to it&#8217;s knees, as well as make page load times incredibly slow.<br />
When installing a Joomla component you cannot always go for the fanciest or prettiest or nifty-ish, you need to factor in what javascript it uses as well.   If you are clever, you can do all the cool things you need, and load only a small amount of .js and save yourself loads of headaches.<br />
If anything, you need to decide if you really need that cool toy on your site, or if you simply put it there for eye candy.  Ideally, keep the amount of .js to five and under.   One is ideal.</p>
<div id="attachment_980" class="wp-caption aligncenter" style="width: 550px"><img class="size-full wp-image-980 " title="too-much-js" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/too-much-js.png" alt="if joomla is slow, this might be why" width="540" height="255" /><p class="wp-caption-text">ZOMG!  javascript overload!</p></div>
<h3>3) Compress, compress, compress</h3>
<p>In your Joomla configuration there is a setting called gzip compression.   If it is not enabled, click it and save it.  This will allow all the css and html to be compressed on the server and a much smaller packet of data get&#8217;s sent to your computer, and then uncompressed by your browser.  This might seem like a lot of work, but it will make pages load faster.<br />
(some webhosts have this enabled already on their servers.  If enabling this setting in Joomla breaks your site, the chances are good it is already being compressed and you can just change it back. It&#8217;s not possible to do multiple compressions with gzip.)</p>
<div id="attachment_983" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-983 " title="gzip-joomla" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/gzip-joomla.jpg" alt="compress using gzip for joomla" width="600" height="134" /><p class="wp-caption-text">zip-zip-zipity-zip it.</p></div>
<h3>4) Anybody got any extra cache?</h3>
<p>Caching can be enabled in your Joomla configuration.  It takes frequently accessed items and stores them so it can spit them out at you faster.  The upside, your pages load faster, the downside, your content is not always 100% fresh.   For most sites this is no huge deal, unless you are changing articles every 30 mts or so, and if you are you have other issues outside of the scope of this article.<br />
Save this tip for when your site is completed and ready to go live.  If you enable this while you are still building your site, you will wonder why changes to pages or image are not taking effect and drive yourself bonkers.</p>
<div id="attachment_988" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-988 " title="joomla-cache" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/joomla-cache.jpg" alt="speedup your joomla site with cache" width="600" height="128" /><p class="wp-caption-text">All the cache in the world.</p></div>
<h3>5) Does your webhost stink?</h3>
<p>An often overlooked issue with<strong> slow Joomla</strong> loading websites is a poor webhost.   Are you on a shared server?  If so you are sharing your internet connection with hundreds of other websites.  Where is your host located?  Are you located in Florida and your webhost is in California?  Did one of the sites on your shared host get hacked and use up tons of bandwidth?  These are all questions you need to ask yourself.   Is the 4.99 cheapie hosting really good enough when your page load times are in the double digits?  If you have a desire to be a big site, with lot&#8217;s of traffic, you need a VPS or a dedicated server.  Shared hosting is for n00bs.</p>
<div id="attachment_989" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-989 " title="crappy-server" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/06/crappy-server.jpg" alt="is is not a god web host" width="600" height="150" /><p class="wp-caption-text">hey, is the server offline?</p></div>
<h3>Summary</h3>
<p>By following some of these tips, not only will Google potentially rank you higher in their search engine, your visitors will have a much nicer experience.   Your dad/mom/sister/buddy/neighbor might not be bothered by waiting 10 seconds for your site to load, but the people on the web need it now, or they will take their business some place else.</p>
<h3>How about you?</h3>
<p>Do you have any tips or tricks I didn&#8217;t cover?  Let us know in the comments, we would love to hear from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/5-ways-to-speed-up-joomla/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adding Testimonials to your Joomla site</title>
		<link>http://www.ijoomla.com/blog/adding-testimonials-to-your-joomla-site/</link>
		<comments>http://www.ijoomla.com/blog/adding-testimonials-to-your-joomla-site/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 18:03:47 +0000</pubDate>
		<dc:creator>Merav Knafo</dc:creator>
				<category><![CDATA[Extensions Reviews]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.ijoomla.com/blog/?p=849</guid>
		<description><![CDATA[<a href="http://www.ijoomla.com/blog/adding-testimonials-to-your-joomla-site/"><img align="right" hspace="5" width="90" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/03/video_testimonial.png" class="imgtfe" alt="The best testimonials you can post are video testimonials" title="video_testimonial" /></a>Any site that sells products or services needs a testimonial page. Those personal accounts and recommendations give your site credibility and increase your ROI. The best testimonials you can post are video testimonials. If you host events or meet clients, take a video recorder with you, even if it’s just your iPhone or a Flip [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;padding-top:5px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.ijoomla.com%2Fblog%2Fadding-testimonials-to-your-joomla-site%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif&amp;source=ijoomla&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Any site that sells products or services needs a testimonial page. Those personal accounts and recommendations give your site credibility and increase your ROI.</p>
<div id="attachment_850" class="wp-caption alignright" style="width: 230px"><img class="size-full wp-image-850" title="video_testimonial" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/03/video_testimonial.png" alt="The best testimonials you can post are video testimonials" width="220" height="228" /><p class="wp-caption-text">The best testimonials you can post are video testimonials</p></div>
<p>The best testimonials you can post are video testimonials. If you host events or meet clients, take a video recorder with you, even if it’s just your iPhone or a <a href="http://www.theflip.com/en-us/" target="_blank">Flip cam</a>. Before your clients leave the event, ask them to speak about your product or service and record their comments. The clip doesn’t have to be perfect but try to find a quiet corner with a solid background that’s not too busy.</p>
<p>Post the recording on your <a href="http://www.theflip.com/en-us/" target="_blank">YouTube</a> channel and  be sure to give it a good title description, something like: “iJoomla Ad Agency Testimonial and Review.” The title will help people who are looking for testimonials about your product to find them.</p>
<p>Once your video testimonial is on YouTube, you can easily post it on your site. Because that testimonial is one of the most compelling arguments for selling your product, I recommend putting it in a module position <em><strong>above the fold</strong></em>.</p>
<h2>Adding a YouTube video testimonial to your Joomla site:</h2>
<p>There are many ways you can add a YouTube video your Joomla website. You can  download an install a <a href="http://www.corephp.com/joomla-products/youtube-module.html" target="_blank">Joomla YouTube video</a> from &#8216;corePHP&#8217;, this module costs $7. Another great option is to use a component called Jumi. <a href="http://edo.webmaster.am/jumi" target="_blank">Jumi</a> is a handy little extension that comes with a module that allows you to dump any code in it so you won’t risk your HTML editor stripping out important code.</p>
<h2>How to add a video testimonial using Jumi:</h2>
<ul>
<li> <a href="http://edo.webmaster.am/jumi" target="_blank">Download Jumi</a></li>
<li> Install Jumi</li>
<li> Go to Main Menu and unpublish the Jumi “hello world” menu item. (Jumi developers should really consider not overwriting our default menu item!)</li>
<li> Go to extensions -&gt; module manager</li>
<li> Filter with the word “Jumi”</li>
<li> Open the module and change the title to “Video testimonial”</li>
<li> Enter the video embed code on the right</li>
<li> Publish and save module</li>
<li> Depending on the module position you’ve chosen you may have to resize the YouTube video by changing the width and height inside the embed code</li>
</ul>
<p style="text-align: center;">
<div id="attachment_851" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-851   " title="jumi" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/03/jumi-300x229.png" alt="Jumi Backend" width="300" height="229" /><p class="wp-caption-text">Jumi allows you to dump any code into a module</p></div>
<p>So that’s how you can put a video testimonial on your site. But it’s much easier to get people to write a testimonial than to talk to a camera and you don’t always have access to your customers offline. If you can’t get a video testimonial, a written testimonial can work well too — ideally with a real full name, website URL and, most importantly, a <em><strong>photo</strong></em>. These give the testimonial much more credibility than text alone.</p>
<h1>Adding written testimonials to your Joomla site</h1>
<p>The simplest way to do this with core Joomla is:</p>
<ul>
<li> Create a new category called “testimonials”</li>
<li> Add articles with the testimonials to the category</li>
<li> Create a menu item to link to the list of testimonials in “category blog” style</li>
</ul>
<p>It’s a method that’s simple and it works, but it’s not great because there is no easy way to enter fields like name, website, and photo, etc.</p>
<h2>Adding testimonials using RSMonials extension</h2>
<p>Thankfully, there is a Joomla component  that does allow you to publish testimonials perfectly and even lets visitors submit their own. It&#8217;s called <a href="http://extensions.joomla.org/extensions/contacts-and-feedback/testimonials-a-suggestions/7590" target="_blank">RSMonials</a> and it&#8217;s free. A big thanks to Grace from the <a href="http://www.meetup.com/Joomla-Website-Meetup/" target="_blank">OC Joomla Meetup</a> where I gave a presentation a couple of weeks ago for introducing me to it!</p>
<p>I love this extension because it works beautifully and without any major bugs. It’s pretty basic but it does the work, and any Joomla beginner can use it without too much difficulty. It comes with a component, a module and a testimonial scroller. If you want your testimonials to show without scrolling, install the regular module. If you want them to scroll, you’ll need to install that module.</p>
<div id="attachment_852" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-852" title="rsmonials" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/03/rsmonials-300x54.png" alt="RSMonials" width="300" height="54" /><p class="wp-caption-text">RSMonials CPanel</p></div>
<p>Here’s how to get it up and running:</p>
<ul>
<li> <a href="http://www.rswebsols.com/downloads/rsmonials" target="_blank">Download RSmonial</a></li>
<li> Install the  component</li>
<li> Install the module or the scroller module</li>
<li> Create a new menu item and link it to RSmonials</li>
<li> Open the settings page and configure your testimonials (don’t forget to replace the admin email!)</li>
<li> Publish the scroller module</li>
</ul>
<div id="attachment_858" class="wp-caption alignright" style="width: 140px"><img class="size-medium wp-image-858" title="testimonials" src="http://www.ijoomla.com/blog/wp-content/uploads/2011/03/testimonials-130x300.gif" alt="" width="130" height="300" /><p class="wp-caption-text">Testimonial Page Created With RSMonials</p></div>
<p>A list of testimonials will appear on the testimonials page linked from your menu. The testimonials will be ordered by newest first and have a submit form at the bottom. Customers can send in their own testimonials and you can choose to auto-approve them.</p>
<p>You can easily make any changes to the styling and settings.</p>
<p>This is a great extension but it does come with a number of advantages and disadvantages:</p>
<h2>Pros:</h2>
<ul>
<li> Free.</li>
<li> Easy to install.</li>
<li> Works well.</li>
<li> Scrolling testimonials are very appealing.</li>
<li> Submit testimonial feature is very useful and even asks for a photo.</li>
</ul>
<h2>Cons:</h2>
<ul>
<li> No way to re-order the testimonials. However you can change the posting date if you want to have control over which testimonials show on top.</li>
<li> Many of the settings require me to type in “true” or “false” instead of choosing from a drop down menu.</li>
<li> No way to hide submit date.</li>
<li> When tested, I didn’t receive notification of a new testimonial.</li>
</ul>
<p>We have installed it on iJoomla Ad Agency and we’re very happy with it. You can see it here with a scrolling testimonial on the left:</p>
<p><a href="http://adagency.ijoomla.com/testimonials/"> http://adagency.ijoomla.com/testimonials/</a></p>
<p>Do you have a testimonial page on your Joomla site? If so, how did you create it?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ijoomla.com/blog/adding-testimonials-to-your-joomla-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

