<?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>Beauty in Design &#187; Blog</title>
	<atom:link href="http://beautyindesign.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://beautyindesign.com</link>
	<description>training and tutorials for all things Joomla</description>
	<lastBuildDate>Sat, 27 Feb 2010 02:41:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ECWID Shopping Cart Joomla Extensions</title>
		<link>http://beautyindesign.com/blog/ecwid-shopping-cart-joomla-extensions/</link>
		<comments>http://beautyindesign.com/blog/ecwid-shopping-cart-joomla-extensions/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 01:59:28 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[ECWID]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[shopping cart]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=551</guid>
		<description><![CDATA[Recently I was introduced to a new hosted shopping cart solution called ECWID.  I played with it for about 10 minutes and really liked the idea behind it.  I was also surprised how fast it loaded the hosted cart.  I was able to whip out several extensions for Joomla that help integrate [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I was introduced to a new hosted shopping cart solution called <a title="ECWID" href="http://www.ecwid.com/" target="_blank">ECWID</a>.  I played with it for about 10 minutes and really liked the idea behind it.  I was also surprised how fast it loaded the hosted cart.  I was able to whip out several extensions for Joomla that help integrate the cart&#8230;<br />
<span id="more-551"></span></p>
<p><a href="http://screencast.com/t/ZmMyZDRiMD">Here&#8217;s a video of it in action</a></p>
<p>Keep in mind: The extensions come without support and might have a bug or two.  If someone would like to take the time and get it in a repository like Joomla Forge or Google Code let me know and I&#8217;ll post a link here.</p>
<h3>Download the extensions</h3>
<ul>
<li><a href="http://beautyindesign.com/downloads/jextensions/com_ecwid.zip">The main component (com_ecwid)</a></li>
<li><a href="http://beautyindesign.com/downloads/jextensions/mod_ecwid_categories.zip">Category menu module (mod_ecwid_categories)</a></li>
<li><a href="http://beautyindesign.com/downloads/jextensions/mod_ecwid_minicart.zip">Mini cart module (mod_ecwid_minicart)</a></li>
<li><a href="http://beautyindesign.com/downloads/jextensions/mod_ecwid_search.zip">Search module (mod_ecwid_search)</a></li>
</ul>
<h3>UPDATE</h3>
<p>The above extensions are now in an SVN repository on Google Code.  <a href="http://code.google.com/p/ecwid-joomla/">Check it out and contribute here!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/ecwid-shopping-cart-joomla-extensions/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Override Core jQuery Methods</title>
		<link>http://beautyindesign.com/blog/override-core-jquery-methods/</link>
		<comments>http://beautyindesign.com/blog/override-core-jquery-methods/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 19:41:24 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Extending]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=545</guid>
		<description><![CDATA[A recent conversation with some developers brought up a question I&#8217;d never contemplated before:  Can jQuery core methods be overridden?  Well, in short:  Easily, yes!
From perusing the web, it looks like there are several approaches to doing this.  Below is an example I wrote up quickly, to test out the concept.


jQuery.fn.extend({
// [...]]]></description>
			<content:encoded><![CDATA[<p>A recent conversation with some developers brought up a question I&#8217;d never contemplated before:  Can jQuery core methods be overridden?  Well, in short:  Easily, yes!</p>
<p>From perusing the web, it looks like there are several approaches to doing this.  Below is an example I wrote up quickly, to test out the concept.<br />
<span id="more-545"></span></p>
<pre name="code" class="javascript">
jQuery.fn.extend({
// Override the core hide() method
  hide : function() { alert('hide method overriden'); }
});</pre>
<p>And now to test it out:</p>
<pre name="code" class="javascript">
$('#test').click(function() {
     $(p).hide();
});</pre>
<p>When clicking on a link with an id=test, it will use my overridden method.  I know this isn&#8217;t a practical example, but does show how overriding jQuery core methods is possible!</p>
<p>Here&#8217;s another example (view the source): <a href="http://expressionindesign.com/files/jqueryOverride/jquery_override.html">http://expressionindesign.com/files/jqueryOverride/jquery_override.html</a></p>
<h4>Other References</h4>
<ul>
<li>A more complete <a href="http://www.bennadel.com/index.cfm?dax=blog:1624.view">example</a></li>
<li><a href="http://docs.jquery.com/Plugins/Authoring#Using_jQuery.extend_to_extend_jQuery_itself">jQuery Documentation Example</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/override-core-jquery-methods/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>An Open Response to &#8220;ONE System Real Estate&#8221;</title>
		<link>http://beautyindesign.com/blog/an-open-response-to-one-system-real-estate/</link>
		<comments>http://beautyindesign.com/blog/an-open-response-to-one-system-real-estate/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 12:39:12 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=530</guid>
		<description><![CDATA[I read a blog post yesterday that is a prime example of misunderstanding what Joomla is as a whole.  The website in question tried to up sell their proprietary real estate management system over Joomla.  Apart from the article being terribly misleading, the author himself and potentially the developers of the &#8220;ONE System Real Estate [...]]]></description>
			<content:encoded><![CDATA[<p>I read a blog post yesterday that is a prime example of misunderstanding what Joomla is as a whole.  The website in question tried to up sell their proprietary real estate management system over Joomla.  Apart from the article being terribly misleading, the author himself and potentially the developers of the &#8220;ONE System Real Estate System&#8221; from Boston Logic are leading people, clients, developers, real estate agents, etc. down a misinformed road.  (<a rel="nofollow" href="http://www.realestateseo1.com/joomla-isnt-for-real-estate">Read the post here</a>)</p>
<p><span id="more-530"></span></p>
<p>I&#8217;ve had experience in several real estate websites (one with over 5,000 properties and custom integration into their internal Access database and local MLS).  However, rather than write my thoughts and rebuttal to this company, I am going to let one of my friends, Doug Krum, respond.  He specifically deals with Joomla-based real estate websites.  Here&#8217;s his response:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Upon reading the following link, some items came to mind that weren&#8217;t covered. Keep in mind this comes with many years experience in real estate technology with close workings with top 100 real estate companies in the US.</p>
<p>&gt;&gt;Joomla is an open source content management platform. It was built to make building a generic website easier.</p>
<p>It would more accurate to say that Joomla is a php application used for a web site platform. With this in mind, Joomla is a starting point that can be taken into many directions as long as the right people are at the steering wheel. Since one of Joomla&#8217;s core values is EXTENSIBILITY this means a developer can add or develop plugins and extensions anyway he or she sees fit taking Joomla into a new direction never thought of before. This, in essence, is also an advantage to using open source software.</p>
<p>Since Joomla already has a correct MVC architecture in place, a developer can automatically strengthen the plugin by using the built-in security. The plugin can&#8217;t run unless called by Joomla. Many self-built content management systems (CMS) won&#8217;t have very many security features in place and will fail when it comes to security.</p>
<p>&gt;&gt;It was not built for real estate offices or agents.</p>
<p>Joomla wasn&#8217;t built specifically for real estate just as the IPHONE wasn&#8217;t built for real estate. Should we not use the IPHONE as well? In similar fashion, the IPHONE is a base communications platform that can be taken into many different directions by various industries, real estate, finance, sales, etc. depending on the APP that is loaded.</p>
<p>&gt;&gt;At Boston Logic, we’ve developed the ONE System Real Estate Website Platform, but I’m not going to write about that today.</p>
<p>You should talk about it as it&#8217;s your 12 hour work days that are at risk. Developing a platform is going to put all the changes, bugs, moves, adds back onto your own team. This isn&#8217;t to be taken lightly. Anyone who has been part of a development team knows the work-load that comes with the territory. The idea that any less than 3 full-time people working on a php application project and it&#8217;s going to be a success now and still be around in the future, isn&#8217;t a reality. Projects must move with technology. That movement must be done by real people. Those people cost money. Therefore any reliable, custom-built platform project is going to cost a significant amount.</p>
<p>Now as a customer or real estate office, why would I spend that amount of money, take the risk on an un-verified platform that is either in-secure, not well maintained, going to be bought out by another company or is simply going to disappear either through lack of support for the project or through advancements in technology? As a customer or real estate office, I&#8217;d be better off spending the money on a verified platform, that is known to be secure (with the right people), that is going to be well maintained now and in the future, that isn&#8217;t going to be bought out by anyone and isn&#8217;t going to disappear through a lack of support and will roll with advancements in technology. In fact, I&#8217;d be an inexperienced fool not to use a well supported project. History has more than shown that non-well supported projects die away.</p>
<p>Even more, your own blog is proof of evidence of this principle as it runs off Wordpress. What? You didn&#8217;t create your own? You didn&#8217;t trust a small company who developed their own blogging platform? Why not?</p>
<p>&gt;&gt;Before we invested the thousands of hours that we’ve put into building this system</p>
<p>And it still isn&#8217;t finished. Be prepared to invest many more thousands of hours for things you&#8217;ve missed, didn&#8217;t think about, didn&#8217;t prepare for, had no idea about and for items that aren&#8217;t in existence yet but will be 6 months from now. I really, really feel sorry for your team.</p>
<p>&gt;&gt;Joomla is not built to integrate with an MLS.</p>
<p>Nothing is built to integrate with an MLS. MLS systems are simply application projects (in essence no different than Joomla). Anything that is built to integrate is most likely done so by the MLS developers. Since, MLS systems aren&#8217;t unified across the US or anywhere else, it&#8217;s really irrelevant. As soon as you start dealing with two different MLS systems with two different sets of standards, all hope is lost on any type of easy integration. It must be done like all other integration, by hand.</p>
<p>&gt;&gt;Obviously, joomla doesn’t have a real estate lead management system for you to leverage.</p>
<p>And your team built a custom lead management system? If so, I really, really, really feel sorry for your team. Lead management systems (or CRM) is another project by itself. Every company has trouble figuring out how to integrate their CRM of choice (Tiger, Sugar, PeopleSoft, etc) with their site.</p>
<p>&gt;&gt;Joomla’s content management system is overcomplicated for real estate.</p>
<p>Any item that is powerful and customizable is going to be complicated. This is the nature of customization projects. A good aspect of Joomla exists in the fact that any developer can re-template the admin panel and limit what the end customer uses.</p>
<p>&gt;&gt;Joomla is relatively laborious to style. Our team has worked with Joomla plenty of times. It’s still a bear to make the pages all look good. If you think you’re saving money, think again.</p>
<p>I respectfully disagree. Once template for all pages isn&#8217;t laborious. One of the reasons Joomla has gained popularity is the styling ease of CSS. Possibly your team should brush up on Joomla styling (I can recommend some excellent people). This brings more to the point. If your team can&#8217;t style Joomla, how in the world do you really think you&#8217;re going to support a whole CMS (with CRM integrated)?</p>
<p>&gt;&gt;As a point of reference the last Joomla site that we worked on required about $75,000 in work to get to what the client wanted.</p>
<p>Show the site. This may be true but you fail to show what the site will do. What would it have cost without Joomla? My last pitch I got for a site was $300,000. That&#8217;s a $225,000 savings, if they are the same. Again, to be fair, we don&#8217;t know because you haven&#8217;t told us.</p>
<p>&gt;&gt;Joomla is hard to turn into an effective real estate website. Great real estate websites have lots of features that are not part of the Joomla platform.</p>
<p>And music is hard for everyone except musicians. Using Joomla as a platform for effective real estate websites is easy for a Joomlaian (Joomlaite?).</p>
<p>The big idea here is that the whole reason special item projects exists (Joomla, Drupal, Tiger, Sugar, Peoplesoft, Foxycart, Freshbooks, SAP) is because it&#8217;s been known that developing projects is difficult, costly and time-consuming. Rather than having the support put solely on your teams shoulders, it better to be part of a paying team that pulls resources together to produce a good product.</p>
<p>Think about it this way, who creates their own mapping solution anymore? Why would you when Gmaps, Ymaps, MSNmaps and MapQuest have all done the hard work. If you did build one, would it be any better than what&#8217;s already available? No. Simply choose one you like, integrate it and pay the respective cost.</p>
<p>Real Estate offices are complicated customers that have many complicated moving parts with massive amounts of information with laws that must be followed. Pulling this together has and will continue to be difficult.</p>
<p>Two types of projects exist; the projects that are built with separate blocks and the projects that are all in one solutions. AFAIK, effective and affordable all in one solutions don&#8217;t exist. They are very expensive and only somewhat effective. The projects built with separate blocks excel in some areas and not in others. Integration is a bear but if successful will excel past the alternative. I know of no other way. Joomla can be used a building block for an effective real estate web site.</p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/an-open-response-to-one-system-real-estate/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>New Joomla Webinars Coming!</title>
		<link>http://beautyindesign.com/blog/new-joomla-webinars-coming/</link>
		<comments>http://beautyindesign.com/blog/new-joomla-webinars-coming/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 13:03:51 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=523</guid>
		<description><![CDATA[You heard it right!  Now get training from the comfort of your own home / office with JoomlaTraining.com&#8217;s Joomla webinar series.  The new series is going to feature lots of great Joomla tutorials and more.  Attendees can interact with each other, ask questions, re-visit the recorded session, and more.
Check out two that are coming up:  [...]]]></description>
			<content:encoded><![CDATA[<p>You heard it right!  Now get training from the comfort of your own home / office with <a href="http://joomlatraining.com">JoomlaTraining.com</a>&#8217;s <a href="https://joomlatraining.webex.com">Joomla webinar</a> series.  The new series is going to feature lots of great Joomla tutorials and more.  Attendees can interact with each other, ask questions, re-visit the recorded session, and more.</p>
<p>Check out two that are coming up:  <a href="https://joomlatraining.webex.com">HTML to Joomla conversion</a> and <a href="https://joomlatraining.webex.com">Joomla SEO Essentials</a></p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/new-joomla-webinars-coming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Limited Offer:  SOLD OUT Get a custom design and/or Joomla template for a low price!</title>
		<link>http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/</link>
		<comments>http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/#comments</comments>
		<pubDate>Sat, 09 May 2009 20:57:14 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=471</guid>
		<description><![CDATA[
SOLD OUT&#8230;..
You heard right!  For the first five people to sign-up, they will get their choice of a custom design or a sliced, coded Joomla template from their design of choice (OR BOTH).  It&#8217;s a deal Marco nor I have ever offered to the community and now is the chance to jump in!
Two [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Special Web Design Package" src="http://beautyindesign.com/images/banners/special_may.jpg" alt="Special Web Design Package for Joomla!" width="540" height="300" /></p>
<h3>SOLD OUT&#8230;..</h3>
<p>You heard right!  For the <em>first five people to sign-up</em>, they will get their choice of a <strong>custom design</strong> or a <strong>sliced, coded Joomla template</strong> from their design of choice <em>(OR BOTH)</em>.  It&#8217;s a deal Marco nor I have ever offered to the community and now is the chance to jump in!</p>
<h3>Two Great Services for $500 each!</h3>
<p>Either one of the services is <em>$500</em> (that&#8217;s a <em>$400 discount off the normal prices</em>)!  So that means you can choose to have your Photoshop layout converted into a Joomla template for $500 or get a custom designed Photoshop layout for your site for $500 or get a whole new design and Joomla template ready to go for $1,000!</p>
<h3>Custom design for your website</h3>
<p>The custom design special offer has the following benefits:</p>
<ul>
<li>Personal interview from Marco to get your likes, dislikes, etc.</li>
<li>One design and one revision.</li>
<li>Deliverable is a design comp in Photoshop (PSD) format.</li>
</ul>
<h3>Sliced, coded Joomla template</h3>
<p>The sliced, Joomla template special offer has the following benefits:</p>
<ul>
<li>Converted graphic file (Must be a Photoshop file) to Valid XHTML/CSS Markup</li>
<li>Fast-loading and built with search engine friendly code</li>
<li>Fully compatible in browsers: IE6, IE7, Safari 3, Firefox 3</li>
<li>Deliverable is both an HTML and Joomla template</li>
</ul>
<h3>About the Designers</h3>
<p>Rick and Marco have worked together for a while, collaborating to make beautiful websites, here&#8217;s some more about them:</p>
<p><img style="float: left; margin: 0 10px 10px 0; border: solid 5px #ccc" title="rick" src="http://beautyindesign.com/wp-content/uploads/2009/05/rick.jpg" alt="rick" width="75" height="80" /><strong>Rick Blalock</strong><br />
Rick Blalock is a partner in the web design firm <a href="http://expressionindesign.com">Expression in Design</a> (XiD), located in Jupiter, Florida. (XiD) specializes in CMS consultancy and custom solutions for medium-size businesses. Rick&#8217;s passion is training clients with one-on-one session, as well as creating video tutorials, and just having fun helping others find their way through the Joomla! world. Rick also is the main contributor to this blog (BiD).</p>
<p><img style="float: left; margin: 0 10px 10px 0; border: solid 5px #ccc" title="marco" src="http://beautyindesign.com/wp-content/uploads/2009/05/marco.jpg" alt="marco" width="75" height="80" /><strong>Marco Suarez</strong><br />
Marco Suarez lives in the small, yet not too small, beautiful city of Greenville, SC. He is one of those creative people. Don&#8217;t ask him to solve a math problem because he is all right-brained. He is an experienced designer and a creative thinker that will take your site&#8217;s look and feel to the next level.  <a href="http://marcosuarez.com">Check out his blog.</a></p>
<p><strong>Some of Marco&#8217;s work:</strong><br />

<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/web5_03/' title='web5_03'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/web5_03-150x150.jpg" class="attachment-thumbnail" alt="" title="web5_03" /></a>
<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/web2_03/' title='web2_03'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/web2_03-150x150.jpg" class="attachment-thumbnail" alt="" title="web2_03" /></a>
<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/web1_03/' title='web1_03'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/web1_03-150x150.jpg" class="attachment-thumbnail" alt="" title="web1_03" /></a>
<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/print9_03/' title='print9_03'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/print9_03-150x150.jpg" class="attachment-thumbnail" alt="" title="print9_03" /></a>
<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/final2/' title='final2'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/final2-150x150.jpg" class="attachment-thumbnail" alt="" title="final2" /></a>
<a href='http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/attachment/1/' title='1'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/05/1-150x150.jpg" class="attachment-thumbnail" alt="" title="1" /></a>
</p>

		<div id="usermessage2a" class="cf_info "></div>
		<form enctype="multipart/form-data" action="/category/blog/feed/#usermessage2a" method="post" class="cform" id="cforms2form">
		<fieldset class="cf-fs1">
		<legend>Get the Special Offer...</legend>
		<ol class="cf-ol">
			<li id="li-2-2"><label id="label-2-2" for="cf2_field_2"><span>Your Name</span></label><input type="text" name="cf2_field_2" id="cf2_field_2" class="single fldrequired" value=""/><span class="reqtxt"></span></li>
			<li id="li-2-3"><label id="label-2-3" for="cf2_field_3"><span>Email (Paypal email)</span></label><input type="text" name="cf2_field_3" id="cf2_field_3" class="single fldemail fldrequired" value=""/><span class="emailreqtxt"></span></li>
			<li id="li-2-4" class="cf-box-title">Which service would you like?</li>
			<li id="li-2-4items" class="cf-box-group">
				<input type="checkbox" id="cf2_field_4-1" name="cf2_field_4[]" value="design"  class="cf-box-b" title="Which service would you like?"/><label id="label-2-41" for="cf2_field_4-1" class="cf-group-after"><span>Custom Design</span></label>
				<input type="checkbox" id="cf2_field_4-2" name="cf2_field_4[]" value="template"  class="cf-box-b" title="Which service would you like?"/><label id="label-2-42" for="cf2_field_4-2" class="cf-group-after"><span>Sliced, Joomla Template</span></label>
				<input type="checkbox" id="cf2_field_4-3" name="cf2_field_4[]" value="Both"  class="cf-box-b" title="Which service would you like?"/><label id="label-2-43" for="cf2_field_4-3" class="cf-group-after"><span>Both</span></label>
			</li>
			<li id="li-2-5"><label id="label-2-5" for="cf2_field_5"><span>Project Details</span></label><textarea cols="30" rows="8" name="cf2_field_5" id="cf2_field_5" class="area"></textarea></li>
		</ol>
		</fieldset>
		<fieldset class="cf_hidden">
			<legend>&nbsp;</legend>
			<input type="hidden" name="cf_working2" id="cf_working2" value="One%20moment%20please..."/>
			<input type="hidden" name="cf_failure2" id="cf_failure2" value="Please%20fill%20in%20all%20the%20required%20fields."/>
			<input type="hidden" name="cf_codeerr2" id="cf_codeerr2" value="Please%20double-check%20your%20verification%20code."/>
			<input type="hidden" name="cf_customerr2" id="cf_customerr2" value="yyycf2_field_3%24%23%24Please%20provide%20a%20valid%20email%20address%21%7C"/>
			<input type="hidden" name="cf_popup2" id="cf_popup2" value="nn"/>
		</fieldset>
		<p class="cf-sb"><input type="submit" name="sendbutton2" id="sendbutton2" class="sendbutton" value="Send" onclick="return cforms_validate('2', false)"/></p>
		</form>
		<p class="linklove" id="ll2"><a href="http://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/limited-offer-get-a-custom-design-andor-joomla-template-for-a-low-price/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Slide preview of upcoming session at the CMS Expo</title>
		<link>http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/</link>
		<comments>http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 19:32:00 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[cms expo]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[joomla training]]></category>
		<category><![CDATA[speaking]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=459</guid>
		<description><![CDATA[Here&#8217;s a sneak peak sampling of the slides for my upcoming sessions at the CMS Expo later this month.  I&#8217;m excited to be doing two presentations and thought I&#8217;d share what&#8217;s coming&#8230;
More info on the sessions:
http://www.cmsexpo.net/sessions/288-joomla-sitebuilder-1.html
http://www.cmsexpo.net/sessions/289-joomla-sitebuilder-2.html






]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a sneak peak sampling of the slides for my upcoming sessions at the CMS Expo later this month.  I&#8217;m excited to be doing two presentations and thought I&#8217;d share what&#8217;s coming&#8230;<strong><span id="more-459"></span></strong></p>
<p><strong>More info on the sessions:</strong></p>
<p><a href="http://www.cmsexpo.net/sessions/288-joomla-sitebuilder-1.html">http://www.cmsexpo.net/sessions/288-joomla-sitebuilder-1.html</a><br />
<a href="http://www.cmsexpo.net/sessions/289-joomla-sitebuilder-2.html">http://www.cmsexpo.net/sessions/289-joomla-sitebuilder-2.html</a></p>
<p><strong>
<a href='http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/attachment/picture-1-2/' title='picture-1'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/04/picture-1-150x150.png" class="attachment-thumbnail" alt="" title="picture-1" /></a>
<a href='http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/attachment/picture-3/' title='picture-3'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/04/picture-3-150x150.png" class="attachment-thumbnail" alt="" title="picture-3" /></a>
<a href='http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/attachment/picture-2-3/' title='picture-2'><img width="150" height="150" src="http://beautyindesign.com/wp-content/uploads/2009/04/picture-2-150x150.jpg" class="attachment-thumbnail" alt="" title="picture-2" /></a>
</p>
<p></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/slide-preview-of-upcoming-session-at-the-cms-expo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Interview about template class coming to Miami and Atlanta</title>
		<link>http://beautyindesign.com/blog/interview-about-template-class-coming-to-miami-and-atlanta/</link>
		<comments>http://beautyindesign.com/blog/interview-about-template-class-coming-to-miami-and-atlanta/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 19:18:08 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=452</guid>
		<description><![CDATA[Steve over at Alledia and JoomlaTraining.com was kind enough to interview me about the upcoming Joomla template classes coming up.  Thanks for the interview Steve!
See the interview here
I look forward to seeing some of you at the classes.  It will be a great time of learning and fun!


]]></description>
			<content:encoded><![CDATA[<p>Steve over at <a href="http://alledia.com">Alledia</a> and <a href="http://joomlatraining.com">JoomlaTraining.com</a> was kind enough to interview me about the upcoming <a href="http://www.joomlatraining.com/index.php?option=com_digistore&amp;controller=digistoreProducts&amp;task=list&amp;cid[]=3&amp;Itemid=102">Joomla template classes</a> coming up.  Thanks for the interview Steve!</p>
<p><a href="http://www.alledia.com/blog/interviews/template-design-class-interview-with-rick-blalock/">See the interview here</a></p>
<p>I look forward to seeing some of you at the classes.  It will be a great time of learning and fun!</p>
<p><span id="more-452"></span></p>
<p><a href="http://beautyindesign.com/wp-content/uploads/2009/04/allediainterview.jpg"><img class="alignleft size-full wp-image-454" title="Interview on upcoming Joomla template class." src="http://beautyindesign.com/wp-content/uploads/2009/04/allediainterview.jpg" alt="Interview on upcoming Joomla template class." width="540" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/interview-about-template-class-coming-to-miami-and-atlanta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing the Joomla User Group of South Florida</title>
		<link>http://beautyindesign.com/blog/announcing-the-joomla-user-group-of-south-florida/</link>
		<comments>http://beautyindesign.com/blog/announcing-the-joomla-user-group-of-south-florida/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 20:14:11 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[joomla user group]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=341</guid>
		<description><![CDATA[Great news for us South Floridians (or Floridiots as I have heard some &#8220;northerners&#8221; say)!  I, with some locals, are launching the Joomla User Group of South Florida.  I can&#8217;t wait to get this rolling as I love this type of thing.  Some goals include:

Provide a friendly place for all types of users to meet-up [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://beautyindesign.com/wp-content/uploads/2009/03/picture-1.jpg"><img class="size-medium wp-image-346 alignright" title="JUG Florida" src="http://beautyindesign.com/wp-content/uploads/2009/03/picture-1-300x237.jpg" alt="JUG Florida" width="300" height="237" /></a>Great news for us South Floridians (or Floridiots as I have heard some &#8220;northerners&#8221; say)!  I, with some locals, are launching the <a href="http://floridajoomla.com" target="_blank">Joomla User Group of South Florida</a>.  I can&#8217;t wait to get this rolling as I love this type of thing.  Some goals include:</p>
<ul>
<li>Provide a friendly place for all types of users to meet-up and collaborate</li>
<li>Create a community in South Florida and beyond that can offer opportunities, help, training, and more.</li>
<li>A central place for people to catch up on news regarding Joomla, web design, development, SEO, and more, in the South Florida region.</li>
<li>A place to get students (high-school and college) involved in web design and development.</li>
<li>A place to cultivate business opportunity and business enhancement.</li>
<li>To have a great time with fellow Joomla-ers&#8230;</li>
</ul>
<p><a title="South Florida Joomla User Group" href="http://floridajoomla.com/index.php?option=com_myblog&amp;Itemid=9" target="_blank">Read the full announcement&#8230;<br />
</a></p>
<p>Also, featured on the site is a <a href="http://floridajoomla.com/index.php?option=com_community&amp;view=frontpage&amp;Itemid=7">community</a> for others to join (yes, using the new JomSocial component&#8230;review article coming too).  So come on and join up!</p>
<p>Don&#8217;t forget to <a href="http://www.joomlatraining.com/index.php?option=com_digistore&amp;controller=digistoreProducts&amp;task=list&amp;cid[]=3&amp;Itemid=102" target="_blank">register</a> for the Joomla template classes I&#8217;m teaching in <a href="http://www.joomlatraining.com/miami-templates" target="_blank">Miami</a> and <a href="http://www.joomlatraining.com/atlanta-templates" target="_blank">Atlanta</a> this year!</p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/announcing-the-joomla-user-group-of-south-florida/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Joomla 1.5 Textmate Bundle &#8211; ALPHA release</title>
		<link>http://beautyindesign.com/blog/joomla-15-textmate-bundle-alpha-release/</link>
		<comments>http://beautyindesign.com/blog/joomla-15-textmate-bundle-alpha-release/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 20:04:49 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[joomla textmate bundle]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=302</guid>
		<description><![CDATA[Textmate is one of the best text editors for Mac, no question about it.  I have used it for several months now and can&#8217;t imagine my geek life without it.  Today I am releasing the ALPHA version of the Joomla Textmate Bundle (also compatible with e-texteditor for windows).   It features quick snippets for template building [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Textmate" href="http://macromates.com/" target="_blank">Textmate</a> is one of the best text editors for Mac, no question about it.  I have used it for several months now and can&#8217;t imagine my geek life without it.  Today I am releasing the ALPHA version of the Joomla Textmate Bundle (also compatible with <a href="http://www.e-texteditor.com/" target="_blank">e-texteditor</a> for windows).   It features quick snippets for template building and extension building (watch the video to see some of the shortcuts in action).</p>
<p><span id="more-302"></span></p>
<p><a href="http://beautyindesign.com/wp-content/uploads/2009/02/textmatejoomla.jpg"><a href="http://beautyindesign.com/wp-content/uploads/2009/02/thumb.jpg"><img class="alignnone size-full wp-image-322" title="textmatebundle1" src="http://beautyindesign.com/wp-content/uploads/2009/02/thumb.jpg" alt="textmatebundle1" width="540" height="300" /></a></a></p>
<p>Currently, the bundle has shortcuts and snippets for:</p>
<ul>
<li>Template module positions</li>
<li>Template XML structure</li>
<li>Miscellaneous template tags</li>
<li>Controller template, toolbar template, etc.</li>
<li>A few commonly used snippets from the JPATH, JTable, JFactory, and JRequest super-classes.</li>
</ul>
<p>My goal for the joomla textmate bundle is to encompass a large portion of Joomla&#8217;s framework in it (or at least the most commonly used portions).  I would love for someone to help out with it.  Currently it is hosted with <a href="http://code.google.com/p/joomla-textmate-bundle/" target="_blank">Google Code</a>, so go forth and <a title="Textmate for Joomla download" href="http://code.google.com/p/joomla-textmate-bundle/" target="_blank">download</a>!</p>
<p>Some great shortcuts include:</p>
<ul>
<li>Type <em>module</em> and hit TAB and you&#8217;ll get some module position options</li>
<li>Type <em>jhead</em> and hit TAB and you&#8217;ll get a leaned down HEAD section</li>
<li>Type <em>query</em> and hit TAB to form a database object and query</li>
<li>&#8230;much more.</li>
</ul>
<h3>Here&#8217;s a video showing off some of the features:</h3>
<p><a href="http://beautyindesign.com/blog/joomla-15-textmate-bundle-alpha-release/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/joomla-15-textmate-bundle-alpha-release/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>LIVE Joomla Template Training in Miami &amp; Atlanta</title>
		<link>http://beautyindesign.com/blog/live-joomla-template-training-in-miami/</link>
		<comments>http://beautyindesign.com/blog/live-joomla-template-training-in-miami/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 11:01:55 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[joomla class]]></category>
		<category><![CDATA[joomla training]]></category>

		<guid isPermaLink="false">http://beautyindesign.com/?p=285</guid>
		<description><![CDATA[Great news from BiD!  I will be teaching a Joomla template building class, in conjunction with JoomlaTraining.com, April 24th in Miami and June 18th in Atlanta.  The 7 hour class will cover everything you need to know from template tags to advanced techniques with template parameters and overrides.  To ensure good classroom interaction, the module [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-286" title="miami" src="http://beautyindesign.com/wp-content/uploads/2009/02/miami-300x200.jpg" alt="miami" width="300" height="200" />Great news from BiD!  I will be teaching a Joomla template building class, in conjunction with <a href="http://www.joomlatraining.com" target="_blank">JoomlaTraining.com</a>, April 24th in <a href="http://www.joomlatraining.com/miami-templates" target="_blank">Miami</a> and June 18th in <a href="http://www.joomlatraining.com/atlanta-templates" target="_blank">Atlanta</a>.  The 7 hour class will cover everything you need to know from template tags to advanced techniques with template parameters and overrides.  To ensure good classroom interaction, the module has limited occupancy so <a href="http://http://www.joomlatraining.com/" target="_blank">jump on board</a> soon!</p>
<h3><span id="more-285"></span>Suggested Class Outline</h3>
<p>You&#8217;ll learn how to design a Joomla template from scratch:</p>
<ul>
<li><strong>Part 1</strong>: Introduction to Joomla templates</li>
<li><strong>Part 2</strong>: Template tags, functions and conditions</li>
<li><strong>Part 3</strong>: Standard module chrome and other module parameters</li>
<li><strong>Part 4</strong>: Converting an existing design to Joomla</li>
<li><strong>Part 5</strong>: Template Parameters</li>
<li><strong>Part 6</strong>: Template Overrides</li>
<li><strong>Part 7</strong>: Advanced techniques, tip and tricks</li>
<li><strong>Part 8</strong>: Hands-on exercise</li>
</ul>
<h3>Additional Items Provides</h3>
<ul>
<li>Lunch and coffee / snacks throughout the day</li>
<li>6 months of free Joomla support after the class</li>
<li>A flash drive full of tutorials and best-of-breed Joomla components</li>
<li>Free membership to the alledia.com SEO Club. ($99 value)</li>
<li>Free copy of the Alledia.com Bolt Template. ($60 value)</li>
</ul>
<p>There are probably going to be several other items thrown in such as a free design / template (which will be the class project), Textmate bundle, and a few other ideas I&#8217;ll post a little later.</p>
<p>If you are looking for beginner/intermediate Joomla training or development training, there are other <a title="Joomla classes" href="http://www.joomlatraining.com/" target="_blank">great classes available </a>as well.</p>
<p>It&#8217;s really a great deal for $300 and seating is limited.  <a title="Joomla template ticket" href="http://www.joomlatraining.com/buy-tickets/list/digistoreProducts/Joomla%20Template%20Design%20Classes" target="_blank">Buy your ticket now!</a></p>
<p>Would you like to see something specifically covered in the class?  Make sure to leave a comment below!</p>
]]></content:encoded>
			<wfw:commentRss>http://beautyindesign.com/blog/live-joomla-template-training-in-miami/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
