Rate and comment please, not just rating?
Hi,
we do not have an extension for that but you can enable the default comments on advert details pages and install a plugin like
– WP Post Rating https://ww.wp.xz.cn/plugins/wp-post-comment-rating/
– Awesome WP Comment Rating https://ww.wp.xz.cn/plugins/awesome-wp-comment-rating/
that adds the star rating to the comments.
This plugin works very well with my site https://ww.wp.xz.cn/plugins/rate-my-post/
The plugin has extensive documentation at https://blazzdev.com/documentation/rate-my-post-documentation/
To add the rating in ads use this in theme function.php file
/* ------------------------------------------------------------------------- *
* Display RATE MY POST PLUGIN [ratemypost-result] shortcode in single adverts page
/* ------------------------------------------------------------------------- */
add_filter( "adverts_tpl_single_top", function( $post_id ) {
echo do_shortcode( "[ratemypost-result]" );
}, 50 );
/* ------------------------------------------------------------------------- *
* Display RATE MY POST PLUGIN [ratemypost] shortcode in single adverts page
/* ------------------------------------------------------------------------- */
add_filter( "adverts_tpl_single_bottom", function( $post_id ) {
echo do_shortcode( "[ratemypost]" );
}, 10 );
-
This reply was modified 4 years, 7 months ago by
teeboy4real.
Hi,
ok great, i am glad you have it resolved and thanks for the feedback, i think other users will find this thread useful in the future.