<?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> &#187; Joomla</title>
	<atom:link href="http://toolboxdigital.com/category/joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://toolboxdigital.com</link>
	<description></description>
	<lastBuildDate>Fri, 24 Feb 2012 15:53:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Are Template Clubs Losing The Plot?</title>
		<link>http://toolboxdigital.com/2011/01/are-template-clubs-losing-the-plot/</link>
		<comments>http://toolboxdigital.com/2011/01/are-template-clubs-losing-the-plot/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 16:30:31 +0000</pubDate>
		<dc:creator>Dan Luton</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://toolboxdigital.com/?p=751</guid>
		<description><![CDATA[My opinion on the growing trend amongst template clubs of adding too much "bloat" to templates, and why they should be carefully considered.]]></description>
			<content:encoded><![CDATA[<h4>I&#39;ve long been a fan of the cutting-edge design work produced by many of the top template clubs.</h4>
<p>Rich, unique designs are being published every month for keen club members to download and deploy for their own web projects, making it easy to get an amazing looking website up-and-running in relatively little time.</p>
<p>However, what I&#39;m not a fan of is the way many templates are built these days.</p>
<p><span id="more-751"></span></p>
<p><img alt="Downloading" class="alignnone size-full wp-image-752" src="http://toolboxdigital.com/wp-content/uploads/2011/01/downloading.jpg" title="Downloading" /></p>
<p>A good poke around under the hood is enough to make anyone who works with HTML/PHP/CSS frown at what&#39;s going on &#8211; yes, the code is normally nicely structured, but what is rendered in the browser needs to be carefully considered before using a commercial theme.</p>
<h3>Framework = More Work?</h3>
<p>The trend these days is to use a proprietary theme framework &#8211; these are produced by the clubs and normally the core is shared under a GPL license. All of the club template releases are built on this framework, which offers a bewildering amount of flexibility in layout and features. Often they come complete with an entire management system which is used to configure how everything works. This management can even stretch beyond the template and start managing core features of the CMS itself.</p>
<p>However, the learning curve tends to be steep, with the frameworks being massively complex in their implementation, and core changes to the code are far more difficult than they would be for a more traditionally constructed theme.</p>
<p>Many aspects of the layout can be adjusted within the theme&#39;s setup options, so in a lot of cases, code intervention isn&#39;t really needed &#8211; but what if you need to break free of the framework for something? You have to commit to learning how everything works within the framework, and often even small adjustments are hugely complex given the more rigid nature of the frameworks (which are normally based on a CSS grid system).</p>
<h3>More Features = Less Performance</h3>
<p>Ah, HTTP requests. A real hog of performance, and something you want to really keep to a minimum. By using clever techniques such as CSS sprites, JS and CSS combining, you can massively reduce the number of requests thus speeding things up &#8211; a win for your users, a win for your host, and a win for the performance of the site.</p>
<p>Now, I understand the requirement to separate elements up in order to give flexibility to a theme &#8211; but at what cost? Dozens of individual CSS and Javascript files cannot be a good thing.</p>
<p>Take a nice, lean CMS like WordPress for example. I recently was asked to investigate why the breadcrumb trail wasn&#39;t working (turns out the theme&#39;s breadcrumbs file was pretty much useless) and was horrified at the source output that I saw. Take a look at these stats:</p>
<p>section (a &#39;normal&#39; site would be around 20-100 lines) including:</p>
<ul class="bullet">
<li>233 lines of code for the <strong>&lt;head></strong> section (a ‘normal’ site would be around 20-100 lines) including:</li>
<li>46 lines of embedded CSS</li>
<li>16 separate CSS files</li>
<li>12 separate Javascript files</li>
<li>2 Javascript libraries</li>
<li>Almost 1400 lines of code for the home page</li>
</ul>
<p>Which all add up to the following:</p>
<ul class="bullet">
<li>308 total objects</li>
<li>287 images</li>
<li>300Kb of scripts</li>
<li>A 2,700Kb total page size</li>
</ul>
<p>Of course, I understand that sites will vary in content, plus there were a couple of extra plug-ins installed in this case &#8211; but a quick look at the relevant demo sites paints a pretty similar picture. When you consider that template clubs usually run on some pretty beefy server hardware, they can give a false impression of how the template might perform. Once deployed to a more common shared hosting platform, performance will undoubtedly suffer.</p>
<h3>What can we do about it?</h3>
<p>Template clubs and their projects are obviously a great way for novice developers and webmasters to get started, but many will be oblivious to what goes on under the surface of a theme, blinded by the fancy design and effects.</p>
<p>It&#39;s a shame in some ways, as the popularity of these clubs means that a high percentage of CMS websites will be using them, which could portray the whole platform in a negative light if the performance of a platform is judged on these sites.</p>
<p>My advice: take a look at what&#39;s going on under the hood when using a club template, you might be surprised at what you see. All those features aren&#39;t really free, and are costing you dearly in terms of performance. Also, to get some real stats on your site, run it through a performance checker like <a href="http://websiteoptimization.com/services/analyze/" target="_blank">http://websiteoptimization.com/services/analyze/</a> to see how your own projects perform.</p>
<p>Of course, not all theme providers can be tarred with the same brush &#8211; know of a club producing more streamlined templates without all the fluff? Let us know in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://toolboxdigital.com/2011/01/are-template-clubs-losing-the-plot/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Disabling Google Analytics for front-end Administrators in Joomla</title>
		<link>http://toolboxdigital.com/2010/03/disabling-google-analytics-for-front-end-administrators-in-joomla/</link>
		<comments>http://toolboxdigital.com/2010/03/disabling-google-analytics-for-front-end-administrators-in-joomla/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 10:26:29 +0000</pubDate>
		<dc:creator>Dan Luton</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://toolboxdigital.com/?p=610</guid>
		<description><![CDATA[Stop your Joomla site administrators from being tracked in Google Analytics with this simple snippet of code.]]></description>
			<content:encoded><![CDATA[<h4>A good question, raised by <a href="https://twitter.com/jackbremer/status/10015777644">Jack Bremer</a>, prompted the writing of this brief post in case it&#39;s of use to somebody else at some point (including myself).</h4>
<p>The GA plugin in WordPress has this option, which is great for larger sites with loads of front-end admins all working on the site &#8211; you don&#39;t want to be diluting your Analytics with all that noise.</p>
<p>So, how can the same be acheived in Joomla? Well, quite easily actually. Read on to find out how&#8230;</p>
<p><span id="more-610"></span></p>
<p><img alt="Google Analytics" class="alignnone size-full wp-image-627" src="http://toolboxdigital.com/wp-content/uploads/2010/03/ga-shot.jpg" title="Google Analytics" /></p>
<h3>Modify the Template</h3>
<p>For this to work we will need to make a simple logic change in the site&#39;s template index.php file, which you can find in template/your_template directory of your site. First we&#39;ll need to get the $user variable loaded into the template, so, near the top, add the following line of PHP:</p>
<pre class="brush:php">$user =&amp; JFactory::getUser();
</pre>
<p>This will load an array of variables into $user that we can use to determine who&#39;s currently logged-on to the front-end of your website. The particular value we&#39;re looking for is the User ID, contained in $user-&gt;gid (the current user&#39;s Group ID) &#8211; this value is zero (false) if a guest is browsing the site, but will be a specific figure depending on which group they are assigned to when logged-on.</p>
<h3>Add the logic code</h3>
<p>Next step is to locate your GA tracking code, which should be right at the bottom of your index.php file, just before the tag. We need to wrap this in some PHP test code to selectively load the tracking script based on the outcome of our condition, so first locate your tracking code which will look like this:</p>
<pre class="brush:javascript">&lt;script type=&quot;text/javascript&quot;&gt;
var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);
document.write(unescape(&quot;%3Cscript src=&#39;&quot; + gaJsHost + &quot;google-analytics.com/ga.js&#39; type=&#39;text/javascript&#39;%3E%3C/script%3E&quot;));

&lt;script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-12345678");
pageTracker._trackPageview();
} catch(err) {}&lt;/script>
</pre>
<p>Then add the PHP test to selectively load the scripts, which looks like this:</p>
<pre class="brush:php">&lt;?php if (!$user-&gt;gid == 25) : ?&gt;

&lt;script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
&lt;/script>
&lt;script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-12345678");
pageTracker._trackPageview();
} catch(err) {}&lt;/script>

&lt;?php endif; ?&gt;
</pre>
<p>This example above will disable the GA tracking code only for Super Administrators logged-on to the front end. You can add your own test conditions depending on your requirements, by using the list below as a reference for the group to test:</p>
<ul class="chev">
<li>18 &#8211; Registered</li>
<li>19 &#8211; Author</li>
<li>20 &#8211; Editor</li>
<li>21 &#8211; Publisher</li>
<li>23 &#8211; Manager</li>
<li>24 &#8211; Administrator</li>
<li>25 &#8211; Super Administrator</li>
</ul>
<p>&nbsp;</p>
<p><strong>Disable tracking for anyone who isn&#39;t a guest user (not logged-on):</strong></p>
<pre class="brush:php">if (!$user) :
</pre>
<p><strong>Disable tracking for all back-end users:</strong></p>
<pre class="brush:php">if (!$user == 23 || !$user == 24 || !$user == 25) :
</pre>
<p><strong>Disable tracking for all registered users:</strong></p>
<pre class="brush:php">if (!$user == 18) :
</pre>
<p>I&#39;m sure you get the gist!</p>
<p><strong>Got a better idea or know of a plugin that can do this for you? Please share it in the comments, we&#39;d love to hear your ideas!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://toolboxdigital.com/2010/03/disabling-google-analytics-for-front-end-administrators-in-joomla/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Advanced Techniques: The Joomla Parent Menu ItemID</title>
		<link>http://toolboxdigital.com/2010/03/advanced-techniques-the-joomla-parent-menu-itemid/</link>
		<comments>http://toolboxdigital.com/2010/03/advanced-techniques-the-joomla-parent-menu-itemid/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 22:50:56 +0000</pubDate>
		<dc:creator>Dan Luton</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://toolboxdigital.com/?p=411</guid>
		<description><![CDATA[Using Joomla's getMenu() function to apply top-level cascading styling for parent menus.]]></description>
			<content:encoded><![CDATA[<h4>Joomla&#39;s ItemID system offers a great way of customizing sites by giving the opportunity to style major parts of a template or page based on the menu links ItemID.</h4>
<p>Every menu link in a Joomla website has one; and they are unique to each and every link on your site.</p>
<p>But what if you need to style entire sections of a site based on a handful of top-level (parent) menu items?</p>
<p>This article explores the methodology of styling sub-level pages respective of their common parent menu links.</p>
<p><span id="more-411"></span></p>
<p><img alt="menusystem" class="alignnone size-full wp-image-487" src="http://toolboxdigital.com/wp-content/uploads/2010/01/menusystem.jpg" title="menusystem" /></p>
<h3>Method 1: Modifying the mod_breadcrumb Module Code</h3>
<p>The mod_breadcrumb module is native to Joomla, and by it&#39;s core function maintains a trail of menu link hierarchy leading to the current page. This code can be utilized in order to obtain the top-level menu&#39;s textual name (rather than an itemID number). This method expands the code further to reformat this text into a usable, readable format which can be used to style a page in an understandable way. It&#39;s more code-heavy than method 2, but provides an easier-to-understand output that works in exactly the same way.</p>
<p>Let&#39;s first examine the original code:</p>
<pre class="brush:php">defined(&#39;_JEXEC&#39;) or die(&#39;Restricted access&#39;);

class modBreadCrumbsHelper
{
	function getList(&amp;$params)
	{
		global $mainframe;

		// Get the PathWay object from the application
		$pathway =&amp; $mainframe-&gt;getPathway();
		$items   = $pathway-&gt;getPathWay();

		$count = count($items);
		for ($i = 0; $i &lt; $count; $i ++)
		{
			$items[$i]-&gt;name = stripslashes(htmlspecialchars($items[$i]-&gt;name));
			$items[$i]-&gt;link = JRoute::_($items[$i]-&gt;link);
		}

		if ($params-&gt;get(&#39;showHome&#39;, 1))
		{
			$item = new stdClass();
			$item-&gt;name = $params-&gt;get(&#39;homeText&#39;, JText::_(&#39;Home&#39;));
			$item-&gt;link = JURI::base();
			array_unshift($items, $item);
		}

		return $items;
	}

	function setSeparator($custom = null)
	{
		global $mainframe;

		$lang =&amp; JFactory::getLanguage();

		if ($custom == null) {
			if($lang-&gt;isRTL()){
				$_separator = JHTML::_(&#39;image.site&#39;, &#39;arrow_rtl.png&#39;);
			}
			else{
				$_separator = JHTML::_(&#39;image.site&#39;, &#39;arrow.png&#39;);
			}
		} else {
			$_separator = $custom;
		}
		return $_separator;
	}
}
</pre>
<p>We can immediately remove the second part of the code that sets the separator, since we don&#39;t need that. Also, since we only need to return the parent item&#39;s text, we don&#39;t need the loop in place. We shall also use the <em>Application Object</em> since<br />
	<strong>$global mainframe</strong> will be removed in Joomla 1.6, so:</p>
<pre class="brush:php">$global mainframe;
</pre>
<p>Becomes:</p>
<pre class="brush:php">$app = &amp;JFactory::getApplication();
</pre>
<p>Which gives us the completed code below:</p>
<pre class="brush:php">class getParentMenuTitle {
	function getList() {
		$getParent = &amp;JFactory::getApplication();
		// Get the PathWay object
		$pathway =&amp; $getParent-&gt;getPathway();
		$items = $pathway-&gt;getPathWay();
	return $items;
	}
}
$list = getParentMenuTitle::getList();
$count = count($list);
if ($count !== 0) :
	$parentmenu = $list[0]-&gt;name;
	$parentmenu = ereg_replace(&quot; &quot;, &quot;-&quot;, $parentmenu); // replace spaces with a dash
	$parentmenu = ereg_replace(&quot;[^+A-Za-z0-9-]&quot;, &quot;&quot;, $parentmenu); // strip special characters
	$parentmenu = strtolower($parentmenu); //set name to lowercase
else :
	$parentmenu = &quot;home&quot;; // Set parentmenu to &quot;home&quot; if there are no items
endif;
</pre>
<h3>How To Use The Code</h3>
<p>This block of code can be inserted directly into your active template&#39;s <strong>index.php</strong> file before the HTML is started. Remember to enclose the code block in PHP tags. Alternatively you can include it from an external file.</p>
<p>Once working in the template, you can apply the variable <strong>$parentmenu</strong> to a top-level container to initiate a CSS hook. Where you add this will depend on what you need to influence in the design, but the further up the hierarchy the more things you will be able to affect in the design &#8211; for example:</p>
<pre class="brush:php">&lt;body id=&quot;&lt;?php echo $parentmenu; ?&gt;&quot;&gt;
</pre>
<p>&#8230;will allow you to influence the design across the whole template, such as:</p>
<pre class="brush:css">body#menu-link-name a {color:red;}
</pre>
<p>&#8230;which will change all links on the page to red for that particular top-level menu link.</p>
<h3>Method 2: Using the Jsite Object</h3>
<p>This method is by far the simplist of the two methods, and unless you need a more human-readable format for the menu class/ids then it&#39;s by far the recommended method of the two. It uses the Jsite object to obtain the parent menu&#39;s ItemID and stores it in a variable which can then be applied to any class/id in the template:</p>
<pre class="brush:php">$parentmenu = JSite::getMenu()-&gt;getActive()-&gt;tree[0];
</pre>
<p>You can obtain the ItemID of any menu links in the pathway by altering the value of <strong>tree[0]</strong>.</p>
<h3>How To Use The Code</h3>
<p>Again, this code needs to be inserted into the template. The ItemID is stored in the <strong>$parentmenu</strong> variable, just as it was before, so you can use a similar method to above &#8211; but prefix the class/id with something or else you may have problems, for example:</p>
<pre class="brush:php">&lt;body id=&quot;menuID-&lt;?php echo $parentmenu; ?&gt;&quot;&gt;
</pre>
<h3>Why Would You Need To Use Method 1?</h3>
<p>The first method could be useful in instances where you (as the developer) might want to pass more control onto someone who is less technically-minded &#8211; the class/id names which are generated using this method are very easy to predict, whereas method 2 requires the administrator to lookup the itemID for each menu item that requires styling.</p>
<h3>Something to Share?</h3>
<p>Have an alternative technique, or have you used this (or something similar) on a site before? Please do share it in the comments.</p>
<p><span class="small">Many thanks to <a href="http://joomline.org/">Gergő Erdősi</a> and <a href="http://www.alltogetherasawhole.org">Amy Stephen</a> for the code presented in method 2 above.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://toolboxdigital.com/2010/03/advanced-techniques-the-joomla-parent-menu-itemid/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Advanced Techniques: Mass Settings Changes In Joomla!</title>
		<link>http://toolboxdigital.com/2010/01/advanced-techniques-mass-settings-changes-in-joomla/</link>
		<comments>http://toolboxdigital.com/2010/01/advanced-techniques-mass-settings-changes-in-joomla/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 10:21:08 +0000</pubDate>
		<dc:creator>Dan Luton</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://toolboxdigital.com/?p=461</guid>
		<description><![CDATA[This article describes how you can perform mass settings changes in Joomla using a simple MySQL query.]]></description>
			<content:encoded><![CDATA[<h4>Ever need to do a bulk settings change to an established site in Joomla? Perhaps you forgot to make the changes as you were building the site?</h4>
<p><span id="more-461"></span></p>
<p>We recently worked on a development which already had a complex hierarchy of menu links set-up on the system (approx. 200 links), but realised later in the development that the &quot;SSL Enabled&quot; flag in the menu settings needed to be set to the &quot;Off&quot; setting in order to force the majority of the site to run in non-SSL mode:</p>
<p><img alt="ssl-off" class="size-full" src="http://toolboxdigital.com/wp-content/uploads/2010/01/ssl-off.jpg" title="ssl-off" /></p>
<p>The obvious solution is to go through each menu item one at a time at set this manually &#8211; but there&#39;s a risk that some may be missed, and of course, the time it would take to do this to 200+ links would be considerable.</p>
<p>So, instead, we set about using simple find &amp; replace commands, we can run a query directly on the database to do this for us in one step. The query we will be using has this structure:</p>
<p><strong>NOTE: Please ensure you make a full backup of your database before proceeding &#8211; if there&#39;s a problem, you will easily be able to restore the database and try again.</strong></p>
<p>update <strong>TABLE_NAME</strong> set <strong>FIELD_NAME</strong> = replace(<strong>FIELD_NAME</strong>, &#39;string to find&#39;, &#39;new string&#39;)</p>
<p>Use a program such as <a href="http://http://www.phpmyadmin.net" target="_blank">PHPMyAdmin</a> to easily make edits to your database. Most hosting providers give easy access to this via your hosting control panel &#8211; this will allow you to find the table/field names and run the query easily.</p>
<p>So, in our case, it&#39;s fairly obvious we&#39;ll find the setting we need to adjust in the <strong>jos_menu</strong> table, so, browse the table, then click the edit icon to open up the contents of one of the rows:</p>
<p><img alt="phpmyadmin" class="size-full" src="http://toolboxdigital.com/wp-content/uploads/2010/01/phpmyadmin.jpg" title="phpmyadmin" /></p>
<p>You&#39;ll see I&#39;ve indicated the bit we need to change on the image above &#8211; it&#39;s in the field named <strong>params</strong>. So, we now know the name of the table, and the field that we need to modify. The text to search for (in this case) will be &quot;secure=0&quot; (so, any menu SSL settings that are set to &quot;ignore&quot;), and the setting we need to change to (like on the diagram) is &quot;secure=-1&quot; (&quot;Off). If you&#39;re in any doubt as to the setting that&#39;s needed, just change it in Joomla and view the string in PHPMyAdmin.</p>
<p>This now allows us to construct the final query that we will run on the database:</p>
<pre class="brush:sql">update jos_menu set params = replace(params, &#39;secure=0&#39;, &#39;secure=-1&#39;)
</pre>
<p>Simple, isn&#39;t it?</p>
<p>To run the query, simply click the &quot;SQL&quot; tab in PHPMyAdmin, paste your query into the box, and click go. Once it&#39;s run successfully, log into the Joomla administrator and check that everything was changed as expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://toolboxdigital.com/2010/01/advanced-techniques-mass-settings-changes-in-joomla/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Calling all Joomla! Developers&#8230;</title>
		<link>http://toolboxdigital.com/2009/10/calling-all-joomla-developers/</link>
		<comments>http://toolboxdigital.com/2009/10/calling-all-joomla-developers/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 14:37:16 +0000</pubDate>
		<dc:creator>Dan Luton</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://toolboxdigital.com/?p=403</guid>
		<description><![CDATA[A look at AllTogetherAsAWhole (ATAAW) - the unofficial Joomla developer community portal.]]></description>
			<content:encoded><![CDATA[<h4>The undisputed queen of <a href="http://www.joomla.org">Joomla</a>, <a href="http://twitter.com/amystephen">Amy Stephen</a>, has set up a new <strong>Ning</strong> social community group especially for<strong> Joomla! professionals and developers</strong>. In just over a month it&#39;s amassed over 400 members and is growing rapidly.</h4>
<p><span id="more-403"></span></p>
<p><img alt="AllTogetherAsAWhole" class="alignnone size-full wp-image-405" src="http://toolboxdigital.com/wp-content/uploads/2009/10/ataaw.jpg" title="AllTogetherAsAWhole" /></p>
<p><strong>&quot;We are an UNOFFICIAL Joomla! Developer and Site Builder Network for collaboration and involvement. This is a professionals network, please use the Joomla! Forums for support.&quot;</strong></p>
<p>The site already has the support and involvement from some of the top minds in the Joomlasphere, so is the place to be if you have something to offer or are involved with Joomla development in some way.</p>
<p>Sign up for your free account over at <a href="http://www.alltogetherasawhole.org/">AllTogetherAsAWhole</a> and be sure to <a href="http://www.alltogetherasawhole.org/profile/DanLuton">connect with us</a>. See you there!</p>
]]></content:encoded>
			<wfw:commentRss>http://toolboxdigital.com/2009/10/calling-all-joomla-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

