Hi. I love your plugin. It really work perfect!
But its possible to explain how can I add a 2nd criteria that can be ratted?
ex: service and price
Thanks
Frederico
]]>A client wanted to display the Star rating on the listed reviews, not just the name and review excerpt but the full review and the star rating as well. So I came up with a fix that accomplishes this, it does loose the individual review display page but it’s not needed as each listing is now complete.
Copy the parent theme’s archive.php file to the child theme’s directory. Now edit the archive.php file in the child theme folder adding the following code. Note the comment lines // about placement within the theme.
//theme_before_content
<?php
//custom reviews display for Cosmick Star Rating plugin
if(is_archive( 'reviews' )) {
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
$args = array(
'post_type' => 'reviews',
'posts_per_page' => 5,
'paged' => $paged );
$REVIEW_QUERY = new WP_Query( $args );
if ($REVIEW_QUERY->have_posts()) :
while ($REVIEW_QUERY->have_posts()) :
$REVIEW_QUERY->the_post();
?>
<div class="review-container">
<div class="review-heading">
<h3 class="review-title"><?php the_title(); ?></h3>
</div>
<div class="review-body">
<p><?php the_content(); ?></p>
<hr align="center" width="50%" color="#136986" />
<p>?</p>
</div>
</div>
<?php
endwhile;
endif;
?>
<div class="prev-next">
<?php posts_nav_link( ' ? previous page', 'next page ?' );
?>
</div>
<?php
csr_add_rating();
wp_reset_postdata();
}else{
//theme_content
}
?>
//theme_after_content
Hope this helps someone else ??
]]>Hello everybody!
Is it necessary to translate the plugin if the displayed text should be in another language than englisch?
]]>I can’t find the instructions page or the template page. Could you point me in the right direction? My domain is skypeamerica.com
]]>Is there any way to change the sort order of the widget or set the widget to use certain reviews only?
]]>Hi there,
I am very pleased with your plugin. Thank you for the great job! I have a question:
I ask for reviews at this page: https://szuppi.hu/vendegkonyv/ Below this form, I would like to display all the archive reviews with stars, just like in the widget at the bottom of my site. Is there a way to do that?
Thank you: Katalin
]]>I’m wanted to test the plugin. The form doesn’t go the way it should, no stars can be given, dont know why ? please help.
https://www.reparatiewasmachinevaatwasser.nl/bedankt/
kind regards.
]]>I’ve added the rating form, the review page but I’m stuck on Showing the Aggregate Rating. The directions say:
Aggregate Rating
Place <?php csr_get_overall_rating(); ?> in your templates for getting aggregate rating.
I don’t know php nor do I know where to “Place” this in my template or how.
Can anyone help.
Here’s the two pages I’d like to add it to:
https://www.vegan-bites.com/ above the feedback form
https://www.vegan-bites.com/reviews/ at the top of my review page.
Thank you.
]]>I really like your “Leave Us Your Testimonial” but I have it on a dark green background and the black text doesn’t show up well. How can I change the color of the text and the actual text content?
Thank you.
Debe
I’ve installed your plugin on WP4.1.1 and set up a page with a review form (using the shortcode)
On submitting the form, the title and star rating are saved, but not the text comments content. If I access this from the Admin side, the comments are blank (also true on the database by myphpadmin. If I fill in comments from the admin side, they get saved to the database and displayed.
Help?
]]>