Reputation: 53851
Very simple question. I've written a module for joomla, But how do I get it to display on content pages? Every tutorial seems to gloss over this very simple issue. I can see it in the module manager and it installs properly.
Please Help!
Edit clarification
Upvotes: 0
Views: 4200
Reputation: 1057
(This for Joomla 1.5 and might be different for other versions of Joomla)
In the Module manager, open(Edit) your module.
The above steps should display your module on every page in the front end.
If does not you most properly need to fix bugs in your module.
Upvotes: 1
Reputation: 1357
Since it's on your Module Manager page, make sure that it's enabled and that it's set to the appropriate access level (i.e. Public if you want it to be showed for everyone, Registered for registered users, etc.) Edit those settings as necessary.
Then check the module's position setting -- that will correspond to a position as defined in your template with the code (where in this example "xyz" is the name of your position):
<jdoc:include type="modules" name="xyz" />
See also this page and this one for guides.
Upvotes: 1