1. EnemyBorat
  2. Commercial Templates
  3. Thursday, 17 May 2012
  4.  Subscribe via email
Hey all, i am trying to remove the content block from the frontpage entirely. I only want the modules that i have assigned to the homepage to show up. I have no articles assigned to the homepage, yet I have that white strip going across the page where the content would go if I had content assigned. Any help on how to remove this would be greatly appreciated!! Thank you in advance! :)
Accepted Answer Pending Moderation
0
Votes
Undo
Hi EnemyBorat

Would you have a URL to an example of your frontpage?

Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
Thank you for your reply. The link is : http://simplicitdesignanddevelopment.com/joomla/
  1. more than a month ago
  2. Commercial Templates
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
Firstly set your default editor to 'CodeMirror' (Site -> Global Configuration -> Site -> Default Editor).

Create a Custom HTML module by navigating to Extensions -> Module Manager -> New -> Custom HTML

Add any title (disable title), set the position to 'footer' and add the following code to the 'Custom Output'..

<style type="text/css">
#content80, #content100 {
display: none;
}
</style>

You can then assign this module to any page where you don't want the content area to appear.

Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 3
Accepted Answer Pending Moderation
0
Votes
Undo
Is this specific to a template? I'm trying to do this with the Journal template and this isn't working
  1. more than a month ago
  2. Commercial Templates
  3. # 4
Accepted Answer Pending Moderation
0
Votes
Undo
I'm trying to add removing the content block from the frontpage as an option to my template. In templatedetails.xml I have added:

<field name="showfrontpagearticles" type="radio" label="Show Frontpage articles"
description="Set this value to 1 to show the frontpage, otherwise it will be hidden" default="1"
checked="checked"
class="btn-group">
<option value="0">HIDE</option>
<option value="1">SHOW</option>
</field>

Then in main.php I have replaced the <jdoc:include type="component" style="xhtml" /> line in main.php to this:

<?php $pageview = JRequest::getVar('view', '');
$jb_frontpage = $this->params->get('showfrontpagearticles'); ?>
<!-- Main content hide it on the frontpage -->
<div id="maincontent">
<jdoc:include type="component" style="xhtml" />
</div>
<?php } Elseif ($jbfrontpage="1";) { ?>
<div id="maincontent">
<jdoc:include type="component" style="xhtml" />
</div>
<?php } ; ?>

This is removing almost all the content (including a module in showcase). Any help?
  1. more than a month ago
  2. Commercial Templates
  3. # 5
Accepted Answer Pending Moderation
0
Votes
Undo
Hello

May I suggest the following article on this topic.. http://www.joomla51.com/tutorials/item/hiding-the-component-article-area-on-a-page

Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 6
Accepted Answer Pending Moderation
0
Votes
Undo
Aha, I had tried this before and it didn't work but I just tried moving this code from the bottom of my custom css to the top and now it works. Not sure why that would make a difference as no other code refers to #container_main. Ended up making it a lot more complicated than it needed to be! Oh well, thanks for the quick help!
  1. more than a month ago
  2. Commercial Templates
  3. # 7
Accepted Answer Pending Moderation
0
Votes
Undo
Great!... thank you for the update :)

Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 8
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!