Hello!
How to add your Module Pozition to Joomla, in TemplateToaster. It's on the already published site in CMS on hosting.
I added to the file:
templateDetails.xml
<positions>
<position>MyMod001</position>
...
</position>
index.php
<?php
if( $this->countModules('MyMod001')):
?>
<div class="mk_bottomcolumn_widget_container">
<div class="contentbottomcolumn1">
<?php
$showcolumn= $this->countModules('MyMod001');
?>
<?php if($showcolumn): ?>
<div class="cell5 col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="bottomcolumn5">
<jdoc:include type="modules" name="MyMod001" />
</div>
</div>
<?php else: ?>
<div class="cell5 col-lg-12 col-md-12 col-sm-12 col-xs-12" style="background-color:transparent;">
</div>
<?php endif; ?>
What other file do I need to edit to make the module work correctly?
Incorrect module header and other uncritical errors.