surveywp / kk-star-ratings

kk Star Ratings wordpress plugin
https://wordpress.org/plugins/kk-star-ratings
Other
118 stars 44 forks source link

How to enable kk star rating on bbPress topics #74

Closed shibaa987 closed 5 years ago

shibaa987 commented 5 years ago

I am running bbPress forum on my website. kk star rating does not appear on any bbpress forum topics.

Can anyone please let me know how can I enable kk star ratings on bbpress forum topics?

Here is a sample link: https://www.cyanogenmods.org/forums/topic/unlock-bootloader-android-phone-using-fastboot/

kamalkhan commented 5 years ago

Although bbpress is not supported, you may try using the following php code snippet in your bbpress topic theme/template file:

if (function_exists('kk_star_ratings')) {
    echo kk_star_ratings($id);
}

Where $id should be the id of the post/topic.

shibaa987 commented 5 years ago

I really appreciate your lighting fast response. :) You are awesome @kamalkhan

The star ratings are now enabled. You can check the above link. I have added the following code in template-parts/single-page.php file

if (function_exists('kk_star_ratings')) {
    echo kk_star_ratings($post->ID);
}

This might be helpful for someone looking to add kk star ratings on bbPress.