- Posts: 3
COMMUNITY FORUM
How to move Rate this item stars to top?
- Sara Samimian
-
Topic Author
- Offline
- New Member
Less
More
11 years 2 months ago - 11 years 2 months ago #125324
by Sara Samimian
How to move Rate this item stars to top? was created by Sara Samimian
Please Log in or Create an account to join the conversation.
- Geoffroy
-
- Offline
- New Member
Less
More
- Posts: 14
11 years 2 months ago #125325
by Geoffroy
Replied by Geoffroy on topic Re: How to move Rate this item stars to top?
in the com_k2/templates/.../item.php
you have the Item Rating block that you can move anywhere. That is when you override k2 template with your own.
you have the Item Rating block that you can move anywhere. That is when you override k2 template with your own.
Please Log in or Create an account to join the conversation.
- Sara Samimian
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 3
11 years 2 months ago - 11 years 2 months ago #125326
by Sara Samimian
Replied by Sara Samimian on topic Re: How to move Rate this item stars to top?
Please Log in or Create an account to join the conversation.
- Geoffroy
-
- Offline
- New Member
Less
More
- Posts: 14
11 years 2 months ago #125327
by Geoffroy
Replied by Geoffroy on topic Re: How to move Rate this item stars to top?
Well you can check you css to see if there is some position that could help, or add a
<div class="clr"></div> before and after the code.
<div class="clr"></div> before and after the code.
Please Log in or Create an account to join the conversation.
- Sara Samimian
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 3
11 years 2 months ago - 11 years 2 months ago #125328
by Sara Samimian
Replied by Sara Samimian on topic Re: How to move Rate this item stars to top?
Can any one do it for me please,
This is my item.php code:
This is my item.php code:
Log in or Create an account to join the conversation.
- Lefteris
-
- Offline
- Platinum Member
Less
More
- Posts: 8743
11 years 2 months ago #125329
by Lefteris
Replied by Lefteris on topic Re: How to move Rate this item stars to top?
@sarah
The code that generates the rating system is the following:
You can move it wherever you want inside item.php.
The code that generates the rating system is the following:
<?php if($this->item->params->get('itemRating')): ?>
<!-- Item Rating -->
<div class="itemRatingBlock">
<span><?php echo JText::_('K2_RATE_THIS_ITEM'); ?></span>
<div class="itemRatingForm">
<ul class="itemRatingList">
<li class="itemCurrentRating" id="itemCurrentRating<?php echo $this->item->id; ?>" style="width:<?php echo $this->item->votingPercentage; ?>%;"></li>
<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_1_STAR_OUT_OF_5'); ?>" class="one-star">1</a></li>
<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_2_STARS_OUT_OF_5'); ?>" class="two-stars">2</a></li>
<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_3_STARS_OUT_OF_5'); ?>" class="three-stars">3</a></li>
<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_4_STARS_OUT_OF_5'); ?>" class="four-stars">4</a></li>
<li><a href="#" data-id="<?php echo $this->item->id; ?>" title="<?php echo JText::_('K2_5_STARS_OUT_OF_5'); ?>" class="five-stars">5</a></li>
</ul>
<div id="itemRatingLog<?php echo $this->item->id; ?>" class="itemRatingLog"><?php echo $this->item->numOfvotes; ?></div>
<div class="clr"></div>
</div>
<div class="clr"></div>
</div>
<?php endif; ?>
You can move it wherever you want inside item.php.
Please Log in or Create an account to join the conversation.