Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to add a new module position in Joomla 2.5?

i want to add a new module position but i don't know how to do that

share|improve this question

1 Answer

up vote 1 down vote accepted

To add new module position in your template, you need to add position in the templatedetails.xml and then in your index.php add that position where you want to show your module.

And after that in module manager select that position you have added for that module and check it.

For example:

templatedetails.xml

<position>newposition</position>

index.php

<jdoc:include type="modules" name="newposition"   />

For more details you can check this link.

How do you add a new module position?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.