<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.7.3" -->
<rss version="2.0">
	<channel>
		<title>Blog entries tagged Joomla</title>
		<description>Blog entries tagged Joomla</description>
		<link>http://lab11.com</link>
		<lastBuildDate>Sat, 18 May 2013 16:09:05 +0100</lastBuildDate>
        <generator>FeedCreator 1.7.3</generator>
		<item>
			<title>How to Submit Additional Images in Virtuemart</title>
			<link>http://lab11.com/blogs/How-to-Submit-Additional-Images-in-Virtuemart.html</link>
			<description>&lt;p&gt;Adding a singe image to a product is easy. Adding additional images can be confusing.&lt;br /&gt;&lt;br /&gt;To add additional images to a product, find your product in the Product list in the backend of your website.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/virtuemartMedia.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;In the &amp;quot;Media&amp;quot; column, you will see a small icon. Click this icon. On the next page, you will be able to add more images to the product. You can also add other types of media suchRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Fri, 07 Aug 2009 06:00:00 +0100</pubDate>
		<category>Joomla</category>
 <category>Components</category>
		</item>
		<item>
			<title>Joomla 1.5 Custom Breadcrumbs</title>
			<link>http://lab11.com/blogs/Joomla-1.5-Custom-Breadcrumbs.html</link>
			<description>&lt;p&gt;Joomla seems to have everything figured out — Breadcrumb support is no exception.&lt;/p&gt;&lt;br/&gt;&lt;p&gt;Recently we were writing some custom component for a client and needed to handle the breadcrumbs in a special way that Joomla couldn't manage automatically.&lt;/p&gt;&lt;br/&gt;&lt;p&gt;As a simplified example, imagine we redirect a user to a component that isn't attached to a menu. We would expect the breadcrumbs to simply output &quot;Home&quot; and provide a link back to the index of the site.&lt;/p&gt;&lt;br/&gt;Home &lt;br/&gt;&lt;p&gt;(Notice: Home is not a Read More...</description>
			<author>Garrett Bluma</author>
			<pubDate>Thu, 09 Jul 2009 06:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>PHP</category>
 <category>Joomla</category>
 <category>Components</category>
		</item>
		<item>
			<title>Joomla 1.5 Database Functions</title>
			<link>http://lab11.com/blogs/Joomla-1.5-Database-Functions.html</link>
			<description>&lt;p&gt;Sometimes it may be hard to know how to best use Joomla's database class. Here are just a few of the most used database functions.&lt;br /&gt;&lt;br /&gt;In Joomla 1.5, include the following line of code inside your php:&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $database&amp;nbsp; =&amp;amp; JFactory::getDBO();&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;Use the $loadObject function when you want to retrieve one row from the database. For example:&lt;br /&gt;&lt;br /&gt;$database-&amp;gt;setQuery(&amp;quot;SELECT * FROM jos_comprofiler WHERE idRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 30 Jun 2009 06:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>PHP</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>Embedding Videos in Joomla Content </title>
			<link>http://lab11.com/blogs/Embedding-Videos-in-Joomla-Content-.html</link>
			<description>&lt;p&gt;Embedding videos inside your Joomla content is easy. There are several Joomla plugins that make it a snap.&lt;br /&gt;&lt;br /&gt;The plugin I would suggest is called the AllVideos (by JoomlaWorks), and can be downloaded for free at www.joomla.org.&lt;br /&gt;&lt;br /&gt;Once you have installed the plugin, you will need to enable it by going to the &quot;Plugin Manager&quot; in the backend of your Joomla site (/administrator).&lt;br /&gt;&lt;br /&gt;Below are some of the plugins features:&lt;/p&gt;&lt;br/&gt;&lt;p&gt; 1. Dozens of video providers supported, Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 19 May 2009 06:00:00 +0100</pubDate>
		<category>Plugins</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>Modifying Page Title, Keywords and Description</title>
			<link>http://lab11.com/blogs/Modifying-Page-Title-Keywords-and-Description.html</link>
			<description>&lt;p&gt;Modifying the page title, keywords and description for a page created by a component&amp;nbsp; in Joomla is very simple.&lt;br /&gt;&lt;br /&gt;Inside your component, add the following:&lt;/p&gt;&lt;p&gt;&amp;lt;?php&lt;br /&gt;global $mainframe;&lt;br /&gt;$mainframe-&amp;gt;SetPageTitle(&amp;quot;Some Page Title&amp;quot;);&lt;br /&gt;$mainframe-&amp;gt;appendMetaTag( &amp;quot;description&amp;quot;, &amp;quot;Some Description.&amp;quot;); &lt;br /&gt;$mainframe-&amp;gt;appendMetaTag( &amp;quot;keywords&amp;quot;, &amp;quot;keyword1, keyword2&amp;quot;);&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;It is that simple.&lt;/Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Mon, 11 May 2009 06:00:00 +0100</pubDate>
		<category>SEO</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>Changing Page Title and Meta Info in Joomla</title>
			<link>http://lab11.com/blogs/Changing-Page-Title-and-Meta-Info-in-Joomla.html</link>
			<description>&lt;p&gt;Changing the Page Title and the Meta Tags (keywords and description) in a Joomla Component is simple (this does not apply to articles or the home page of your site).&lt;br /&gt;&lt;br /&gt;The first step is to include the following line of code inside php tags: &lt;/p&gt;&lt;p&gt;global $mainframe;&lt;br /&gt;&lt;br /&gt;Then simply use the following functions to change the Page Title, Meta Keywords and the Meta Description:&lt;br /&gt;&lt;br /&gt;$mainframe-&amp;gt;SetPageTitle(&amp;quot;Some Page Title&amp;quot;);&lt;br /&gt;$mainframe-&amp;gt;appendMetaTag( Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Mon, 30 Mar 2009 06:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>Joomla</category>
 <category>Components</category>
		</item>
		<item>
			<title>Turn on Caching to Speed Up Your Joomla Site</title>
			<link>http://lab11.com/blogs/Turn-on-Caching-to-Speed-Up-Joomla-Site.html</link>
			<description>&lt;p&gt;There is a simple and effective way to help speed up your Joomla site. It is called &quot;caching&quot;. When you use the caching feature, Joomla creates a static file (or cache), of your web pages. This means that your website can use this cached file instead of making redundant database calls each time someone goes to a page. This in turn saves time and speeds up your site. &lt;/p&gt;&lt;p&gt; Log into the back of your Joomla site (/administrator)  to turn caching on. Go to &quot;Global Configuration&quot; as seen below.&lt;Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Fri, 27 Feb 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>Writing a Joomla 1.5 Content Plugin</title>
			<link>http://lab11.com/blogs/Joomla-1.5-Content-Plugin.html</link>
			<description>&lt;p&gt;This article will show you how to build a quick plugin to replace some text in an article before it get's displayed to the user.&lt;/p&gt;&lt;br/&gt;Intro&lt;br/&gt;&lt;p&gt;Lately I've been writing a number of content plugins for Joomla. They're pretty simple, but basically it allows you to transform the content at a number of points in Joomla's process of editing, saving, and displaying of that content. In theory you could use it to do anything but it's common to replace text and/or add special content into the articlesRead More...</description>
			<author>Garrett Bluma</author>
			<pubDate>Wed, 18 Feb 2009 07:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>Plugins</category>
 <category>PHP</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>Creating a Joomla Menu Item</title>
			<link>http://lab11.com/blogs/Creating-a-Joomla-Menu-Item.html</link>
			<description>&lt;p&gt;Creating a new menu item in Joomla is extremely easy. Joomla uses these menu items to create a menu of links as seen below.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/twmeier/menu.jpg&quot; alt=&quot;menu&quot; width=&quot;419&quot; height=&quot;118&quot; /&gt;&lt;/p&gt;&lt;p&gt;These links typically lead to an article. Assuming you already have the article created, click on the menu you would like to add to from the &amp;quot;Menus&amp;quot; drop down.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/twmeier/menus.jpg&quot; altRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 17 Feb 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>How to add pages in Joomla</title>
			<link>http://lab11.com/blogs/How-to-add-pages-in-Joomla.html</link>
			<description>&lt;p&gt;The first step in adding a page in Joomla is to understand how Joomla displays pages. To display page, Joomla uses what it calls articles. Articles can be assigned to an infinite number of pages. &lt;br /&gt;&lt;br /&gt;To create new articles, you must first sign in to the backend of you website:&lt;br /&gt;http://your_domain_name.com/administrator           &lt;/p&gt;&lt;p class=&quot;style79&quot; align=&quot;center&quot;&gt;&lt;img src=&quot;https://www.dmcomputerservice.com/tutorials/joomla1.5/images/image1.jpg&quot; border=&quot;0&quot; alt=&quot;Joomla 1.5 admin Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Mon, 09 Feb 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>Joomla 1.5 Custom Parameter Type (WYSIWYG)</title>
			<link>http://lab11.com/blogs/Joomla-1.5-Custom-Parameter-Type-WYSIWYG-.html</link>
			<description>&lt;p&gt;&lt;img style=&quot;margin: 5px; float: right&quot; src=&quot;http://lab11.com/images/stories/lab11/gbluma/joomla.png&quot; alt=&quot;joomla&quot; width=&quot;110&quot; height=&quot;110&quot; /&gt;Joomla has made module development a piece of cake. If you want a section of your module to display a poll or banner it's really easy. Likewise Joomla has made it easy to edit the content in those modules with module parameters.&lt;/p&gt;&lt;br/&gt;&lt;p&gt;... But one thing you haven't been able to do is edit those parameters in a WYSIWYG textarea... until now...&lt;/p&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Read More...</description>
			<author>Garrett Bluma</author>
			<pubDate>Mon, 02 Feb 2009 07:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>Joomla's Global Check-in Feature</title>
			<link>http://lab11.com/blogs/Joomlas-Global-Check-in-Feature.html</link>
			<description>&lt;p&gt;When a user is editing a content item, module, menu item etc., Joomla &amp;quot;locks&amp;quot; this item to other users. This insures that changes can not be made by different users at the same time. Below is a picture of what another user would see in the backend if he were to try to also edit the setting of the &amp;quot;Who's Online&amp;quot; module.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/twmeier/locked.jpg&quot; alt=&quot;locked&quot; width=&quot;293&quot; height=&quot;186&quot; /&gt;&lt;/p&gt;&lt;p&gt;If the user who is editing theRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Wed, 28 Jan 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>Joomla 1.5 Popups</title>
			<link>http://lab11.com/blogs/Joomla-1.5-Popups.html</link>
			<description>&lt;p&gt;Joomla 1.5 has a great pop up class which will dim the webpage and popup a smaller page over top of it. In order to use this feature, you must include the following in your code, or you could also place it inside your template between the  tags.&lt;/p&gt; &lt;p&gt;JHTML::_('behavior.modal');&lt;/p&gt; &lt;p&gt;Then put in a link with the information you want similar to the one below:&lt;/p&gt; &lt;img src=&quot;http://lab11.com/images/stories/lab11/twmeier/popupcode.jpg&quot; alt=&quot;popupcode&quot; width=&quot;632&quot; height=&quot;101&quot; /&gt;&lt;br /&gt;&lt;br /&gt;If yRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Wed, 21 Jan 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>Joomla HTTPS Redirect Plugin (Beta)</title>
			<link>http://lab11.com/blogs/Joomla-HTTPS-Redirect-Plugin-Beta-.html</link>
			<description>&lt;img style=&quot;float: right&quot; src=&quot;http://lab11.com/images/stories/lab11/gbluma/ssl.jpg&quot; alt=&quot;&quot; /&gt; &lt;p&gt;The HTTPS Redirect Plugin redirects a visitor to the same page under HTTPS.&lt;br /&gt;&lt;br /&gt;When a user requests a url over HTTP (e.g. http://example.com/secure/stuff/ ) Joomla will handle the redirection to the appropriate HTTPS page (e.g. https://example.com/secure/stuff/ )&lt;/p&gt;&lt;p&gt;&lt;br /&gt;This plugin allows the administrator to force users into HTTPS protocol under Joomla. Actually, the full extent of theRead More...</description>
			<author>Garrett Bluma</author>
			<pubDate>Tue, 20 Jan 2009 07:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>Using Joomla's Media Manager</title>
			<link>http://lab11.com/blogs/Using-Joomlas-Media-Manager.html</link>
			<description>&lt;p&gt;There are times when you may need to upload an images, pdf or any other type of file to your site. Luckily, Joomla has a built in tool for uploading your files. This tool is called the Media Manager.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;To get to the Media Manager, login to the backend of your site (/administrator) and click &amp;quot;Media Manager&amp;quot; from the &amp;quot;Site&amp;quot; drop down menu.&lt;/p&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/mediamanager.jpg&quot; border=&quot;0&quot; alt=&quot;&quot; width=&quot;543&quot; height=&quot;380&quot; /&gt; &lt;p&gt;&amp;nbRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 13 Jan 2009 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>How to remove the front-end edit button in Virtuemart</title>
			<link>http://lab11.com/blogs/How-to-remove-the-front-end-edit-button-in-Virtuemart.html</link>
			<description>&lt;p&gt;There are times when you may not want the ability to edit a Virtuemart product from the front end. This may be due to a poorly designed template that just doesn't work well with this feature.&lt;br /&gt;&lt;br /&gt;To remove the edit button from the product detail page, you will need to open the following file:&lt;br /&gt;&lt;br /&gt;/administrator/components/com_virtuemart/html/shop.product_details.php&lt;/p&gt;&lt;p&gt;&lt;br /&gt;Starting on Liine 240, it should read:&lt;/p&gt;&lt;p&gt;// Show an &amp;quot;Edit PRODUCT&amp;quot;-Link&lt;br /&gt;if ($perm-&amp;Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 06 Jan 2009 07:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>How to enable SEF Urls in Joomla</title>
			<link>http://lab11.com/blogs/How-to-enable-SEF-Urls-in-Joomla.html</link>
			<description>&lt;p&gt;In order to use Joomla's built in SEF Urls feature, you must first enable it. To do so, go to the backend of the site (/administrator) and go to the &amp;quot;Site&amp;quot; tab and select &amp;quot;Global Configuration.&amp;quot;&lt;br /&gt;&lt;br /&gt;On that page you will see the following:&lt;br /&gt;&lt;img src=&quot;http://lab11.com/images/stories/lab11/modrewrite.jpg&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;Set the &amp;quot;Search Engine Friendly URLs&amp;quot; to Yes and the &amp;quot;Use Apache mod_rewrite&amp;quot; to Yes.&lt;br /&gt;&lt;br /&gt;You will next needRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Wed, 31 Dec 2008 07:00:00 +0100</pubDate>
		<category>SEO</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>Editing Content in the Joomla CMS</title>
			<link>http://lab11.com/blogs/Editing-Content-in-the-Joomla-CMS.html</link>
			<description>&lt;p&gt;Editing content in Joomla is extremely easy. You can edit content from the front end of the website, or you can edit content from the backend of the website.&lt;br /&gt;&lt;br /&gt;To edit content from the front end of the website you must first be logged in. It is important to note that you must be logged into the front end of the site in order to edit from the front end.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;In order to log into the front end of your site, you must go here:&lt;br /&gt;index.php?option=com_user&amp;amp;view=login&lt;br /&gt;ThiRead More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 23 Dec 2008 07:00:00 +0100</pubDate>
		<category>Joomla</category>
		</item>
		<item>
			<title>Write an Advanced Joomla 1.5 Authentication Plugin (Part 2)</title>
			<link>http://lab11.com/blogs/Write-an-Advanced-Joomla-1.5-Authentication-Plugin-Part-2-.html</link>
			<description>&lt;p&gt;In my previous article Write an Advanced Joomla 1.5 Authentication Plugin I went over how to integrate Joomla with an alternate login system (i.e. legacy code from a previous project)&lt;/p&gt; &lt;p&gt;This is good, but we don't need to stop here. We can improve the authentication plugin by attaching session data from our legacy system and essentially merge our legacy session with our joomla session.&lt;/p&gt; &lt;p&gt;For example if we have a database table for session data with the following fields:&lt;/p&gt;  session_Read More...</description>
			<author>Garrett Bluma</author>
			<pubDate>Thu, 18 Dec 2008 07:00:00 +0100</pubDate>
		<category>Programming</category>
 <category>Plugins</category>
 <category>Joomla</category>
		</item>
		<item>
			<title>Creating Search Engine Friendly URLs in Joomla</title>
			<link>http://lab11.com/blogs/Creating-Search-Engine-Friendly-URLs.html</link>
			<description>&lt;p&gt;As mentioned in my last blog, Joomla uses dynamic URLs. These URLs contain characters for passing information to the current web page. These URLs can be long and complicated and may not be indexed by many of the major search engines. The following URL is an example of a dynamic URL:&lt;/p&gt; http://www.lab11.com/index.php?option=com_content&amp;amp;task=view&amp;amp;id=12&amp;amp;Itemid=32&lt;p&gt;A search engine friendly (SEF) URL is a URL that is more readable and is lacking the characters that designate it as a Read More...</description>
			<author>Trevor M.</author>
			<pubDate>Tue, 16 Dec 2008 07:00:00 +0100</pubDate>
		<category>SEO</category>
 <category>Joomla</category>
		</item>
	</channel>
</rss>
