• Resolved danigomu

    (@danigomu)


    Hello,

    First of all, I want to thank you for your plugin; I have been using it for a long time, and I really like it.

    I’m writing because I can’t find a way to modify the ratings of a post/page. I remember being able to do this before from the “Rate My Post” metabox that used to be on the right side of the post/page editing screen, but now I can’t find that metabox.

    Could you please help me?

    Thank you very much.

Viewing 1 replies (of 1 total)
  • Plugin Author Collins Agbonghama

    (@collizo4sky)

    The metabox should show up when editing a post unless ofcourse you are dealing with a page or custom post type and in that case, use this code snippet

    add_filter('rmp_is_show_for_post_edit_screen', function($check, $post) {
                    if(isset($post->post_type) && $post->post_type == 'enter-custom-post-type-id-here') return true;
                    return $check;
    }, 10, 2);
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.