- Web templates
- E-commerce Templates
- CMS & Blog Templates
- Facebook Templates
- Website Builders
Joomla 3.x. How to add module position
June 2, 2015
This tutorial is going to show you how to add module position in Joomla 3.x. template.
Joomla 3.x. How to add module position
You already know how to check available module positions of the template. In this tutorial we will show you how to add new module position:
-
Log into your Joomla admin panel. Navigate to Extensions > Template Manager > Templates > Theme#### Details and Files (where #### is a number):
Or connect to your server using FTP or hosting Cpanel. Open /templates/theme#### folder.
-
Edit index.php file. Open it in your admin panel or any text editor on your computer.
-
Locate the code used for position you would like your new module position to appear after.
-
Copy this code and paste it just after the php closing tag of the previous position. The code of your new position will look like the following:
<?php if ($this->countModules('your_new_position_title') && $hideByView == false && $hideByEdit == false): ?> <div id="your_new_position_title"> <jdoc:include type="modules" name="your_new_position_title" style="html5nosize" /> </div> ><?php endif; ?>
Replace your_new_position_title with your position name.
-
Now locate the templateDetails.xml file and add the module position here as well. File location is the same: Extensions > Template Manager > Templates > Theme#### Details and Files (where #### is a number) in your admin panel (or /templates/theme#### folder on your server).
-
Copy an entry of an existing position and rename it, like in the following example:
<positions> ... <position>top-a</position> <position>top-b</position> <position>top-c</position> <position>your_new_position_title</position> ... </positions>
Where your_new_position_title is your new module position.
Now log into your Joomla admin panel, navigate to Extensions > Module Manager page to add module to your new position. Click New:
Select module type. Enter module content and select your new position from Position drop down. Make sure module status is Published. Save the changes and check your site:
Feel free to check the detailed video tutorial below: