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 !=...
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. ...
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...
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. ...