Create New Module Position on Joomla or Mambo Site
By default, Joomla and Mambo provides several module position. But if you feel that is not enough, you could create more module position (custom module position) from Joomla or Mambo backend, and you could named it anything you like.
To create a new module position
- Login to the backend using administrator user id and password.
- Click on Site -> Template Manager -> Module Position.
- You'll see all module position that already exist on your Joomla or Mambo site.
- To create a new position, simply type the name of the position on the "Position" column, you could also add a description for it if you like.
- If you're done, click on the Save button.




How do that in joomla 1.5
I cannou find that menu in joomla 1.5.
Can you update the article for 1.5, please
Create new module position for joomla 1.5
Add the following code where you want to place your new position:
For Joomla! 1.0
<?php if (mosCountModules('custom')>0) { ?>
<?php mosLoadModules('custom',-2); ?>
<?php } ?>
For Joomla! 1.5
<?php if ($this->countModules('custom')) : ?>
<?php endif; ?>
Change the name (custom) to whatever you like. Then go to Module and add the name of the new position (custom in the example).
Then you publish whatever module you want in your new module position .
Post new comment