bhbilbao
Forum Replies Created
-
Forum: Plugins
In reply to: [Ajaxy Instant Search] Load in footerThanks for your time desirelabs!
I will try it soon.
10Points for you. ;D
Forum: Plugins
In reply to: [GD Star Rating] [Thumbs Mod] Shows The Thumbs Ratings With Different ColorsGood work CAMEO172!
More clean and inside template.
I didnt thought on it because the templates dont support php code.Forum: Plugins
In reply to: [GD Star Rating] Buddypress Profile Integration+1
There is another plugin named “mycred my rank”.
But that functionality would be apreciated for the use of less scripts in wp.Forum: Plugins
In reply to: [GD Star Rating] [Thumbs Mod] Shows The Thumbs Ratings With Different Colorsfrom functions.php?
If you update the plugin, the code will be overwrite, but you only need to modify 1 line in:
wp-content\plugins\gd-star-rating\code\t2\render.php
line810Forum: Plugins
In reply to: [GD Star Rating] Editorials vote Multirating possible??but in the right sidebar of post creation page there is only “general options” not for each multirating table
In the post admin page must be a multirating table. You must configure it before.
1)Multirating of Post Admin page
https://wordpresspluginguide.com/wp-content/upload-data/gdsr-multiratings-review.jpg2) Create a second multirating and post it in the single.php post loop.
https://www.webmaisterpro.com/images/jreviews/_gd-star-rating-multi-sets-1338629147.png—
1<?php wp_gdsr_show_multi_review ( $multi_set_id = 0, $template_id = 0, $post_id = 0, $read_only = true, $stars_set = "oxygen", $stars_size = 20, $stars_set_ie6 = "oxygen_gif", $avg_stars_set = "oxygen", $avg_stars_size = 20, $avg_stars_set_ie6 = "oxygen_gif", $echo = true ) ?>
2.place the second multirating($multi_set_id = 2), after the wp-includes/comments-template.php
Forum: Plugins
In reply to: [GD Star Rating] Show user's rating instead of the overall rating??
THAT EXACTLY DOES “Show user’s rating instead of the overall rating”RATE: 7/10
comment_text()
Rating: *********Forum: Plugins
In reply to: [GD Star Rating] Editorials vote Multirating possible??my friend,
by default GD Star Pluging make thats and more.You can place 2 multirating tables in each post.
1 for the author. Closed & only read2 for the users OPEN.
Forum: Plugins
In reply to: [GD Star Rating] %IMAGE% in Default Standard Rating Results [SRR]There is a problem, plugin only takes the first content image.
To fix, I added the image to content and hidden it with this(more work but works):
<img class="size-medium wp-image-12880" alt="" src="../wp-content/uploads/2013/12/ps4box-300x168.jpg" width="0" height="0" />
Also the image needs widht and height in the T2 TEMPLATES:
<img class="thumbnail" src="%IMAGE%" alt="%IMAGE%" width="500" height="500" />
Forum: Plugins
In reply to: [GD Star Rating] Show user's rating instead of the overall ratingGD Star works awesome fine!
Look for
<?php comment_text(); ?>
replace with:
<?php if (defined("STARRATING_INSTALLED")) : ?> <div class="ratingtext" style="float: right"> <?php wp_gdsr_show_comment_review( $comment_id = 0, $zero_render = false, $use_default = false, $size = 12, $style = "soft", $echo = true ) ?> </div> <?php endif;?> <?php comment_text(); ?> <?php if (defined("STARRATING_INSTALLED")) : ?> <div class="ratingtext" style="float: right"> <?php wp_gdsr_render_comment() ?> </div> <?php endif;?>
Forum: Plugins
In reply to: [GD Star Rating] Editorials vote Multirating possible??in the admin panel of the post.
Multi rate the post.
And use the first option Standad Post Resume, giving a value. for example 8.9pointsFor the other last 4 use: Nobody can post.(hidden&closed)
Forum: Plugins
In reply to: [GD Star Rating] How to display only individual user rating?My apologies to the plugin′s author, Millan. The pluging works well.
I finally see the code that prints the particular vote.
In comment loop:<php wp_gdsr_show_comment_review($comment_id = 0, $zero_render = false, $size = 16, $style = "soft", $echo = true); ?>
And then, just before the submit button(comments-template.php):
<?php if (function_exists(wp_gdsr_new_comment_review)) { echo '<label>Your Rating</label>'; wp_gdsr_new_comment_review(); } ?>
I dont know why nobody helped me ??
Forum: Plugins
In reply to: [GD Star Rating] How to display only individual user rating?after
<h1><?php the_title(); ?></h1>
place this in top:<?php if (function_exists(wp_gdsr_new_comment_review)) { echo '<label>imdb Rating</label>'; wp_gdsr_new_comment_review(); ?> <form action="<?php echo site_url( '/wp-comments-post.php' ); ?>" method="post" id="<?php echo esc_attr( $args['id_form'] ); ?>"> <p class="form-submit"> <input name="submit" type="submit" id="<?php echo esc_attr( $args['id_submit'] ); ?>" value="IMDB RATING<?php echo esc_attr( $args['label_submit'] ); ?>" /> <?php comment_id_fields( $post_id ); ?> </p> <?php do_action( 'comment_form2', $post_id ); ?> </form> <?php } ?>
In comments-template.php line about 1500
function comment_form( $args = array(), $post_id = null ) { ..
You must create a new comment_form2 based in that code for the imdb button avoiding to introduce a comment.(Making a comment is a MUST, for that, I suggest an empty-hide comment only for the vote).Forum: Plugins
In reply to: [GD Star Rating] How to display only individual user rating?Now I am looking the code, and the first problem is that the user MUST make a comment in order to vote stars appear.
I think the way is to create a function code in top with empty stars that creates and empty(hidden) comment when the user vote in top.Tomorrow I will look for it.
Forum: Plugins
In reply to: [GD Star Rating] How to display only individual user rating?Yeah, i saw it. But is the same i said before. The users are who make the ratings, but in that page the vote system is on top of the page not in the comments.
I will look for it, give me some days.
Forum: Plugins
In reply to: [GD Star Rating] [Thumbs Mod] Shows The Thumbs Ratings With Different ColorsOr a better way in render.php, same line:
// $rating_text = '<div id="gdsr_thumb_text_'.$comment_id.'_c" class="gdt-size-'.$unit_width.($already_voted ? " voted" : "").($allow_vote ? "" : " inactive").' gdthumbtext">'.$rating_text.'</div>'; // if ($score > 0) { if ($votes_plus > $votes_minus) { $rating_text = '<div id="gdsr_thumb_text_'.$comment_id.'_c" class="text-center verde gdt-size-'.$unit_width.($already_voted ? " voted" : "").($allow_vote ? "" : " inactive").' gdthumbtext">'.$rating_text.'</div>'; // } elseif ($score < 0) { } elseif ($votes_plus < $votes_minus) { $rating_text = '<div id="gdsr_thumb_text_'.$comment_id.'_c" class="text-center rojo gdt-size-'.$unit_width.($already_voted ? " voted" : "").($allow_vote ? "" : " inactive").' gdthumbtext">'.$rating_text.'</div>'; } else { $rating_text = '<div id="gdsr_thumb_text_'.$comment_id.'_c" class="text-center gdt-size-'.$unit_width.($already_voted ? " voted" : "").($allow_vote ? "" : " inactive").' gdthumbtext"></div>'; }