Keyword

Bewertung auch bei tag.php

  • Franz Heine
  • Franz Heine's Avatar Topic Author
  • Offline
  • Premium Member
More
11 years 4 months ago #122016 by Franz Heine
Bewertung auch bei tag.php was created by Franz Heine
Hallo,

das Rating /Bewertung funktioniert in der kategorie und item Ansicht. Aber wird nicht bei der tag.php angezeigt.

Welchen Code muss ich einfügen, damit das Rating auch beim tag.php angezeigt wird.

Danke vorweg

fred

Please Log in or Create an account to join the conversation.

  • Franz Heine
  • Franz Heine's Avatar Topic Author
  • Offline
  • Premium Member
More
11 years 4 months ago #122017 by Franz Heine
Replied by Franz Heine on topic Re: Bewertung auch bei tag.php
Ich habe jetzt eine Teillösung gefunden:

<?php if($item->params->get('catItemRating')): ?>
<!-- Item Rating -->
<div class="catItemRatingBlock">
<span><?php echo JText::_('K2_RATE_THIS_ITEM'); ?></span>
<div class="itemRatingForm">
<ul class="itemRatingList">
<li class="itemCurrentRating" id="itemCurrentRating<?php echo $item->id; ?>" style="width:<?php echo $item->votingPercentage; ?>%;"></li>
<li><a href="#" rel="<?php echo $item->id; ?>" title="<?php echo JText::_('K2_1_STAR_OUT_OF_5'); ?>" class="one-star">1</a></li>
<li><a href="#" rel="<?php echo $item->id; ?>" title="<?php echo JText::_('K2_2_STARS_OUT_OF_5'); ?>" class="two-stars">2</a></li>
<li><a href="#" rel="<?php echo $item->id; ?>" title="<?php echo JText::_('K2_3_STARS_OUT_OF_5'); ?>" class="three-stars">3</a></li>
<li><a href="#" rel="<?php echo $item->id; ?>" title="<?php echo JText::_('K2_4_STARS_OUT_OF_5'); ?>" class="four-stars">4</a></li>
<li><a href="#" rel="<?php echo $item->id; ?>" title="<?php echo JText::_('K2_5_STARS_OUT_OF_5'); ?>" class="five-stars">5</a></li>
</ul>
<div id="itemRatingLog<?php echo $item->id; ?>" class="itemRatingLog"><?php echo $item->numOfvotes; ?></div>
<div class="clr"></div>
</div>
<div class="clr"></div>
</div>
<?php endif; ?>




Ich kann die Artikel nun bewerten, leider verschwinden diese wieder beim Refresh. Hat jemand einen Tipp wo das Problem liegt.

Ich habe den Code von der category_item.php kopiert. Jedoch musste ich $this->item->params->get in $item->params->get ändern.

Das $this scheint in der tag.php nicht zu funktionieren

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum