RSS
Home
Welcome, Guest
Please Login or Register.    Lost Password?

[TUTORIAL] How to see comment votes in listing
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: [TUTORIAL] How to see comment votes in listing
#1861
[TUTORIAL] How to see comment votes in listing 3 Years, 1 Month ago Karma: 1
To see votes in listing property, and remove the ajax votes make that:
open your list file php

find that code

Code:

<?php 
//print_r($this->MyVotes);
if($ShowVoteRating){
echo '<div style="width:100%; float:left;">';
echo '<div class="title_vote" ><a href="'.$link.'">'.$row->name.'</a></div>';
echo '<div  class="div_vote">';
if(!$user->guest){
if($this->MyVotes[$row->id]){
echo VoteHelper::ShowVotes($row->id,$this->MyVotes[$row->id]);
}else{
echo VoteHelper::ShowAddVote($row->id);
}
}else{
echo VoteHelper::ShowVotes($row->id,FALSE);
}
echo '</div>';
echo '</div>';
}else{
echo '<div style="width:100%; float:left;">';
echo '<div class="title_vote" ><a href="'.$link.'">'.$row->name.'</a></div>';
echo '</div>';
}
?>        



cut and paste that

Code:

<?php echo VoteHelper::ShowVotes($row->id,$this->MyVotes[$row->id]); ?>
yuri1982
www.com-property-template.com CUSTOM WORK FOR PROP
Platinum Boarder
Posts: 443
graphgraph
User Offline Click here to see the profile of this user
Gender: Male yuri-cristodaro yuri_cristodaro@hotmail.com Location: ITALIA Birthday: 12/14
The administrator has disabled public write access.
If you need custom work for your Property add new field, customize template, please contact me in MNS yuri_cristodaro@hotmail.com
And go to www.com-property-template.com
 
#3783
Re:[TUTORIAL] How to see comment votes in listing 2 Years, 10 Months ago Karma: 5
Where paste it men? i dont stand your tuto
the code that you said is the same that is in the if

I need see in list.php the same stars that are in details.php (reviews)

Thanks
TuteMdz
Gold Boarder
Posts: 170
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#3788
Re:[TUTORIAL] How to see comment votes in listing 2 Years, 10 Months ago Karma: 1
My friend, paste where you want!
Find a position to show and paste...is not same...check please before to write!
yuri1982
www.com-property-template.com CUSTOM WORK FOR PROP
Platinum Boarder
Posts: 443
graphgraph
User Offline Click here to see the profile of this user
Gender: Male yuri-cristodaro yuri_cristodaro@hotmail.com Location: ITALIA Birthday: 12/14
The administrator has disabled public write access.
If you need custom work for your Property add new field, customize template, please contact me in MNS yuri_cristodaro@hotmail.com
And go to www.com-property-template.com
 
#3818
Re:[TUTORIAL] How to see comment votes in listing 2 Years, 10 Months ago Karma: 5
Ok, now im going to see what happends...
TuteMdz
Gold Boarder
Posts: 170
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
Go to topPage: 1