VISIT AND LIKE OUR PAGE ON FACEBOOK
TAKE A LOOK AT OUR TWEETS ON TWITTER
SUBSCRIBE TO THE JOOMFREAK RSS FEED
VISIT OUR CHANNEL ON YOUTUBE

Account Details

Change your name, email, password or permanently delete your account. Change settings

We offer several ways you can get support from our experts: Support ForumKnowledgebaseNewsletter

Your Forum Posts

No posts to display.

Welcome, Guest
Username Password: Remember me
  • Page:
  • 1

TOPIC: k2 item

k2 item 09 Jul 2015 19:41 #7034

Hello.
I`m trying to make the right position modules appears in the k2 iten page.The right position apears in category pages but when i enter in a item the right position looks do not exist. Why?
What should i do?

Thanks,from Brasil!
Leonardo

  • Posts:11
  • dgleon
  • Fresh Boarder
  • OFFLINE
  • Karma: 0

Re: k2 item 10 Jul 2015 02:50 #7035

Edit templates/jf_taman/index.php, find and modify:
 
if($view == 'item' || !$this->countModules('right')) {
$mainClass = 'jf-grid-12';
} else {
$mainClass = 'jf-grid-9';
}
 

to:
 
if(!$this->countModules('right')) {
$mainClass = 'jf-grid-12';
} else {
$mainClass = 'jf-grid-9';
}
 

 
<?php if($this->countModules('right') && $view != 'item') : ?>
<div id="jf-sidebar" class="jf-grid-3">
...
</div>
<?php endif; ?>
 

to:
 
<?php if($this->countModules('right')) : ?>
<div id="jf-sidebar" class="jf-grid-3">
...
</div>
<?php endif; ?>
 


joomfreak

  • Posts:2940
  • isupport
  • Moderator
  • OFFLINE
  • Karma: 0

Re: k2 item 10 Jul 2015 14:02 #7041

thank you!

  • Posts:11
  • dgleon
  • Fresh Boarder
  • OFFLINE
  • Karma: 0
  • Page:
  • 1
Time to create page: 0.76 seconds
Friday 19 April 2024

joomfreak is not affiliated with or endorsed by the Joomla Project or Open Source Matters.
The Joomla logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.