­

How to get user group id in Joomla 2.5.x

Thursday, August 30, 2012
How to get user group id in Joomla 2.5.x? This tutorial will explain you how to get user group id in Joomla 2.5 Step 1 : Create a function in factory.php (root_folder/libraries/joomla/factory.php) public static function group_id($id = null) { if (is_null($id)) { $instance = self::getSession()->get('user'); if (!($instance instanceof JUser)) { $instance = JUser::getInstance(); } } else { $current = self::getSession()->get('user'); if ($current->id !=...

Read More...

Suggest Joomla topic to discuss

Wednesday, August 29, 2012
Hi All, Do you have a topic to discuss related to Joomla? Joomla related topic like - Joomla Core Issues - Joomla Programming - Tutorials - Joomla Security - Joomla Extensions. - Joomla Version Upgrade. Feel free to give us some topic suggestions you may have. ...

Read More...

JOOMLA! 3.0 ALPHA-2 RELEASED

Wednesday, August 29, 2012
The Joomla Project is pleased to announce the availability of Joomla 3.0 Alpha 2 for download. This alpha release is intended primarily for extension developers to test their extensions. More information is available on the Development Site. Don’t use it on production I know this has been said over and over, but please don’t use an alpha on a production site. This release serves two...

Read More...

Pagination in Joomla Component

Wednesday, August 29, 2012
This tutorial from tutsforu will guide you to create pagination in Joomla 2.5.x frontend component. Please check the below URL for more info http://www.tutsforu.com/pagination-in-joomla-component.html Comment if you find any issues. ...

Read More...