bhbilbao
Forum Replies Created
-
Forum: Plugins
In reply to: [GD Star Rating] [Thumbs Mod] Shows The Thumbs Ratings With Different Colorsadd to the css:
.gdthumbtext strong { font-size: 33px; margin-left: 20px; } .verde{ color: #336600; } .rojo{ color: #cc3300; }
Forum: Plugins
In reply to: [GD Star Rating] How to display only individual user rating?The actual problem is that Thumbs and Stars makes the same thing in comments!
I suggest to modify the stars function(mod it!). Then you can echo the result in comments or on top of the article.
I think is better in comment because you see who is the person, his vote and his avatar.Forum: Plugins
In reply to: [GD Star Rating] How to display only individual user rating?The way Im telling you, in comments, we have the THUMBS to vote users. And the STARS that is the user rating for the article. (This is a vote that the user made himself and only one time).
The we can echo the vote of that specific user in his comment, or list all votes in top of the page.
Forum: Plugins
In reply to: [GD Star Rating] How to display only individual user rating?I know what you are looking for. There is a function that list the ratings of all users, but it takes the ratings of the commets loop, not the regular rating from the post loop.
For that I suggest not to modify the regular post fuctionality.
Modify the comment loop:
1. only the user can vote himself in comments(with stars, the thumbs remains same).
2 then, we echo the result from database.Forum: Plugins
In reply to: [GD Star Rating] How to display only individual user rating?@widecast, i dont know the way you are asking for.
The way I said before is to modift the functionality of this:
<?php wp_gdsr_render_comment() ?>
1. only the user can vote himself in comments.
2 then, we echo the result from database.Forum: Plugins
In reply to: [GD Star Rating] How to display only individual user rating?+1
I asked for that 3 threads before.
I think GD star rating works stupidily, too much options and code to make the same things.Forum: Plugins
In reply to: [GD Star Rating] Show user's rating instead of the overall rating+1
I will fix it in 1-2 days. I think there is a way, but loosing the overall rating. And the thumbs remains same in comments.Forum: Plugins
In reply to: [GD Star Rating] %IMAGE% in Default Standard Rating Results [SRR]Post Image
New tag %IMAGE% is added, and this tag will be replaced by the URL to the image from the post. There are 2 methods of getting this image. One is from the custom field and the other from the post content.
https://v1.gdstarrating.com/2009/04/21/widget-gd-star-rating-2/
https://www.ads-software.com/support/topic/plugin-gd-star-rating-post-thumbnails-in-widget?replies=4t2:
<img src="%IMAGE%" alt="%IMAGE%" width="38" height="38">
single.php:
<?php wp_gdsr_render_rating_results(array('template_id' => 90, 'rows' => 5, 'min_votes' => 2, 'image_from' => 'content')); ?>
Puting “content” it works, but it takes the first image of the post , not the post-thumbnail.
What the code to print the post thumb image?
post-thumbnails? thumbnail? spost-image? custom?nobody?