Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>If $module->position didn't work for you. $module->position may only work for joomla 1.7, 2.5 and + but i'm not sure. $module->position works in joomla 2.5.</p> <p>Otherwise you need to make a module.php function</p> <p>Check out the file</p> <p>/templates/you-template/html/modules.php</p> <p>For example you make your position the following in your template (for example index.php)</p> <pre><code>&lt;jdoc:include type="modules" name="header" style="includeposition" /&gt; </code></pre> <p>inside of /templates/you-template/html/modules.php</p> <p>You make a function like this :</p> <pre><code>&lt;?php function modChrome_includeposition($module, &amp;$params, &amp;$attribs){ //Set a value to $module-&gt;position $module-&gt;position='WHATEVER YOUWANT'; ?&gt; &lt;div class="moduletable &lt;?php echo $params-&gt;get('moduleclass_sfx').' '.$module-&gt;name; ?&gt;"&gt; &lt;?php if($module-&gt;showtitle){ ?&gt; &lt;div class="modtitle"&gt; &lt;div class="fleche"&gt; &lt;span&gt; &lt;?php echo $module-&gt;title; ?&gt; &lt;/span&gt; &lt;/div&gt; &lt;/div&gt; &lt;?php } ?&gt; &lt;div class="modcontent"&gt; &lt;?php echo $module-&gt;content; ?&gt; &lt;div class="clear"&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;?php } ?&gt; </code></pre> <p>make different functions names that sets different values if needed.</p> <p>the function name will match the syle you set:</p> <pre><code>modChrome_includeposition($module, &amp;$params, &amp;$attribs) </code></pre> <p>because</p> <pre><code>style="includeposition" </code></pre> <p>inside of your jdoc.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload