Hello,
The available positions are located in the templates/your_template_name/index.php file inside your Joomla directory.
You can create a custom position by adding required modules into this file.
For example, if you create a position named "testing", you should add the following code into the index.php file where the module will be displayed:
Quote:
<?php if ($this->countModules('testing')) : ?>
<div>
<jdoc:include type="modules" name="testing" style="xhtml" />
</div>
<?php endif; ?>
|
Once you have added the code to file, go to the Module manager, edit the module you want to display into this position and type manually custom into the "Position" field.
Then check your website to see the new module position.