Related Items Extended not showing
- Posted by Rick (5) Offline
- Posted by TemplatePlazza (5310) Offline
Hi, sorry for delay in responding due to weekend offline.
Btw it looks like the user-3 module position is not available in the detail page.
When I access this page www.rickinghamphotography.co.uk/site/ you can see a module with title :
TEST MODULE BY TEMPLATE PLAZZA
but when you open the detail page :
www.rickinghamphotography.co.uk/site/ind...-eurocopter-puma-hc2
the module dissappeared
10 years 6 months ago #8
by TemplatePlazza
Btw it looks like the user-3 module position is not available in the detail page.
When I access this page www.rickinghamphotography.co.uk/site/ you can see a module with title :
TEST MODULE BY TEMPLATE PLAZZA
but when you open the detail page :
www.rickinghamphotography.co.uk/site/ind...-eurocopter-puma-hc2
the module dissappeared
Please Log in or Create an account to join the conversation.
- Posted by Rick (5) Offline
Thanks, I see now.
So what would I need to change to enable it to display on articles only?
I have found this bit in templates index.php:
Would this be the right bit to edit?
10 years 5 months ago #9
by Rick
So what would I need to change to enable it to display on articles only?
I have found this bit in templates index.php:
<?php if($this->countModules('user-3') && ($opt_content != 'article') && $Edit != 'edit' && $option!='com_search'): ?>
<div class="pad_left">
<div class="wrapper">
<jdoc:include type="modules" name="user-3" style="xhtml" />
</div>
</div>
<?php endif; ?>
Would this be the right bit to edit?
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline
I'm not really sure what $opt_content value is, but you can try to change that to
10 years 5 months ago #10
by TemplatePlazza
<?php if($this->countModules('user-3') && ($opt_content == 'article') && $Edit != 'edit' && $option!='com_search'): ?>
<div class="pad_left">
<div class="wrapper">
<jdoc:include type="modules" name="user-3" style="xhtml" />
</div>
</div>
<?php endif; ?>
Please Log in or Create an account to join the conversation.