• Resolved nswm

    (@nswm)


    Hi. Firstly, thanks for a great plugin. I use it via shortcode to add ratings to my posts. Recently, I am unable to see the Rate My Post settings to update or change ratings in the WordPress post editor and it is not showing under ‘Screen options’/’Screen elements’ so I can’t find a quick way to amend or update ratings. I have searched the support forum but can’t find any reference to this. Are you able to assist or provide any quick way to amend/update ratings for a specific post? Thanks if you can help

    • This topic was modified 2 months, 2 weeks ago by nswm.
Viewing 5 replies - 16 through 20 (of 20 total)
  • neildockar

    (@neildockar)

    Hi There,

    Also unable to edit an existing rating as the editor box is no longer appearing.

    Running the latest version (4.2.3) and adding the rating via shortcode [ratemypost-result]

    Also added via code snippets plugin the coding suggested above to fix the non appearance of the meta box – but nothing showing still.

    My site is https://www.payless4flowers.com

    Really appreciate some guidance / help

    Many thanks

    Neil

    Plugin Author Collins Agbonghama

    (@collizo4sky)

    Please open a ticket via https://feedbackwp.com/support so we can look into this for you.

    neildockar

    (@neildockar)

    Thanks for the quick reply – just submitted the ticket

    Plugin Author Collins Agbonghama

    (@collizo4sky)

    For the curious, you can display the metabox for modifying ratings in any custom post type edit screen using the code snippet below

    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);
    neildockar

    (@neildockar)

    Yes, this did it for me – I added via the code snippets plug in and used “product” as the post type since it was my standard woocommerce posts that needed editing.

Viewing 5 replies - 16 through 20 (of 20 total)
  • You must be logged in to reply to this topic.