In Development
Joomla! 1.6 Templates - First Glance
In the upcoming Joomla! 1.6 release, templates take on a whole new shape. Probably the most exciting new feature of the template system for site owners will be the template styles. Now, when you use a template that has parameters for setting one of a multiple background, or overall color, or whatever, you can save that parameter configuration as a template style. So you could use the same template on multiple pages and have different styles without installing the same template several times. Another difference with Joomla! 1.6 templates from Joomla! 1.5 templates, is that you assign the pages to the template inside the Menu Manager for the link rather than from inside the Template Manager.

Last Updated (Sunday, 15 November 2009 06:33)
Linking Users to Contacts Automatically
Have you ever wanted to extend the Joomla! 1.5 User Registration form to also include those fields in the Contact form? So you can grab your user's address and phone number information at the registration period and have them available in your Contacts component?

| File |
|---|
Last Updated (Friday, 13 November 2009 08:49)
Removing the PostDateIcon in a Joomla! Template
PostHeaderIcons (in Artisteer Templates) for Joomla!
If you have a template (more than likely generated by Artisteer) and you want to remove the PostDateIcon (or PostAuthorIcon) from displaying, here's how to accomplish that task.
For whatever reason, the Artisteer templates apply the icons to the article date and author inside the html over-rides rather than through CSS (like they should).
You'll need to edit /html/com_content/all_sub_dirs/default.php (or blog_item.php etc.)
Find the line like:
<?php ob_start(); ?><?php echo JHTML::_('image.site', 'PostDateIcon.png', null, null, null, JText::_("PostDateIcon"), array('width' => '17', 'height' => '18')); ?> <?php echo JHTML::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2')); ?>
You need to remove the
<?php echo JHTML::_('image.site', 'PostDateIcon.png', null, null, null, JText::_("PostDateIcon"), array('width' => '17', 'height' => '18')); ?>
part.
Then you may need to go into your /template/your_template/css/style.css and adjust the article header css some:
/* begin PostIcons */
.PostHeaderIcons, .PostHeaderIcons a, .PostHeaderIcons a:link, .PostHeaderIcons a:visited, .PostHeaderIcons a:hover
{
font-family: Arial, Helvetica, Sans-Serif;
font-size: 11px;
color: #630F70;
}
Extensions: Module Featured Articles
Featured Articles
This module allows you to construct a list of articles by section, category, or article ID (similar to Latest News). It relies on the GD libraries, so make sure you have that configured in your web server's php if you want to use the image feature of this module.
You have the option to also display the list with a thumbnail of the first image in the article itself.
The module comes with 3 style displays defined already: joomla, style, style2.
| File |
|---|
Last Updated (Tuesday, 07 April 2009 14:31)
Joomla! Component to Un-Register
Though you never want your users to leave your site, it is nice to provide them a method to do so, if they should desire.
Here's a little component to allow a user to remove his account. After you install it, add a new menu link to it. Select the removeme link and make sure to set it to Registered if you don't want to bother guests with seeing it. Don't use the notuser type for a link. It's not meant to be assigned a menu link.
If you'd rather have your remove me function in a module, get the module and install it after the component.
You can download both the component and the module here after logging in.
| File |
|---|
Last Updated (Sunday, 05 April 2009 19:25)





