0

I'm using Joomla, and as far as I can tell I have done everything right for my template, but can't get Module positions to work

I have the correct XML file setup I think and this is my HTML tag:

    <jdoc:include type="modules" name="topnav">

The page is X if you look at the page source it is rendering that tag - I would expect that to disappear, and to be replaced with the content I have told the Joomla backend to put there?

Very confused!

tim.baker
  • 3,109
  • 6
  • 27
  • 51

2 Answers2

3

Try this-

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

You are missing closing tag.

let me know if this does not work.

Irfan
  • 7,029
  • 3
  • 42
  • 57
  • 2
    This is correct. The regex to find the include tags is `##iU`. So a whitespace + closing slash is required. – Matteus Hemström Nov 03 '12 at 12:02
  • This is correct also you should enable that module for corresponding menus.then only it will appear in the correct pages – Jobin Nov 03 '12 at 13:20
0

How are they not working? Are the positions updating in admin, but not on the website? Or are they not updating in the admin page too? From what I remember of Joomla, you have to click on the 'save' icon once you've rearranged all your positions.

LairdPleng
  • 948
  • 3
  • 9
  • 28