# create a block in : "root-path\templates\t3\tpls\blocks" and named it positionname.php. the code like this below
<?php if ($this->countModules('name')) : ?>
<!-- my position -->
<div class="wrap t3-name <?php $this->_c('name') ?>">
<jdoc:include type="modules" name="<?php $this->_p('name') ?>" />
</div>
<!-- //my position -->
<?php endif ?>
# then "root-path\templates\t3\tpls\default.php" and add
<?php $this->loadBlock('name') ?>
# and then added
<positions><position>name</position></positions>
in "templateDetails.xml"The template manager show me it is running but when i published something there that's not working. Do i missed anything ?
Waiting for your positive reply.