• Hi.

    First ! thx for this great theme I love customize category color.

    I use a plugin to Rate my post (kk star rating).

    I can rate them when I open my post, but I cant see the stars on my home page.

    How can i see it ?

    thx

Viewing 1 replies (of 1 total)
  • Theme Author Richie KS

    (@rkcorp)

    homepage did not have the_content() for plugin filter. they use the_excerpt(). so thats why only single post will work. but try add this to functions.php

    function add_kk_rating_inpost() {
    if( !is_single() ) {
    add_action('bp_after_post_content','kk_star_ratings');
    }
    }
    add_action('wp_head','add_kk_rating_inpost');

    not sure if it work tho.

Viewing 1 replies (of 1 total)
  • The topic ‘Cant see the stars on my home page for rated post.’ is closed to new replies.