0
Welcome Guest! Login
0 items Join Now

Excluding code/scripts/components from pages

  • Re: Excluding code/scripts/components from pages

    Posted 16 years 8 months ago
    • You'd use

      <?php if ($Itemid=="1") : ?>
    • James Spencer / Developer & Support / Hull, UK
  • Re: Excluding code/scripts/components from pages

    Posted 16 years 8 months ago
    • i'm trying to disable mainbody on the frontpage, but where do I put this code in index.php?

      <?php if ($option != "com_frontpage") : ?>
      <?php mosMainbody(); ?>
      <?php endif; ?>

      -edit- ok I got it in the right place. but there is still the "Home" section showing. how do I get rid of this?
    • Last Edit: 16 years 8 months ago by Dale M Pombrio.
  • Re: Excluding code/scripts/components from pages

    Posted 16 years 8 months ago
    • Please elaborate on "Home Section"?
    • James Spencer / Developer & Support / Hull, UK
  • Re: Excluding code/scripts/components from pages

    Posted 16 years 8 months ago
  • Re: Excluding code/scripts/components from pages

    Posted 16 years 8 months ago
    • Hello,

      That looks like the pathway. You can turn it off in the template's index.php parameters.
  • Re: Excluding code/scripts/components from pages

    Posted 16 years 8 months ago
    • yea that worked...but...that sucks. the pathway is very useful on the other parts of the site. do I have any other options here?
  • Re: Excluding code/scripts/components from pages

    Posted 16 years 8 months ago
    • James,

      I am using Joomla 1.0.15 and tried adding these codes but that did not help: The box is still there- I tied changing templates to no avail.

      <?php if ($option!="com_frontpage") : ?>
      <?php mosMainbody(); ?>
      <?php endif; ?>
  • Re: Excluding code/scripts/components from pages

    Posted 16 years 7 months ago
    • It depends on the template, some templates have more code areas for the mainbody such as the component DIVs in Populus. In that case, you need to move the IF and ENDIF code to higher levels in the code.
    • James Spencer / Developer & Support / Hull, UK
  • Re: Excluding code/scripts/components from pages

    Posted 16 years 7 months ago
    • James,

      I sent you an e-mail. It still does not work. Maybe I doing something wrong-

      Many thanks for your support
  • Re: Excluding code/scripts/components from pages

    Posted 16 years 7 months ago
    • Well, you've just added
      &nbsp; &nbsp;  <?php if ($option!="com_frontpage") : ?>
      &nbsp; &nbsp; &nbsp;  <?php mosMainbody(); ?>
      &nbsp; &nbsp; &nbsp;  <?php endif; ?>

      That is not what you do. You are suppose to modify the instance of <?php mosMainbody(); ?> to the above code.

      For Populus, change
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <div id="component-top"><div><div></div></div></div>
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <div id="component"><div class="left"><div class="right">
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <div id="component-size">
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <?php mosMainbody(); ?>
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  </div></div></div>
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <div id="component-bottom"><div><div></div></div></div>

      To
      <?php if ($option!="com_frontpage") : ?> 
      <div id="component-top"><div><div></div></div></div>
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <div id="component"><div class="left"><div class="right">
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <div id="component-size">
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <?php mosMainbody(); ?>
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  </div></div></div>
      &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <div id="component-bottom"><div><div></div></div></div><?php endif; ?>
    • James Spencer / Developer & Support / Hull, UK

Time to create page: 0.076 seconds