Collins Agbonghama
Forum Replies Created
-
I have already switched to using EDD shorcode for our checkout.
I see you use EDD yourself. Replace [[download_checkout] with EDD checkout block on your checkout page and you will see WP Armour won’t work
I understand it is wrong, and this will be fixed in the next update. I only wanted to understand its effect on your website.
Thanks for reporting this.
Kindly let us know what issues you ran into.
> it doesn’t have a reminder/notice that informs the users that in order to leave a rating, they need to log in.
Add a paragraph at the end of your articles letting users know they need to be logged in to rate.
> Also, is there a way to show the feedback comments of the post in the frontend? Thank you.
Not at this time. The feedbacks are currently viewable by admins only.
The top-rated widget posts are ordered by their average rating and the total vote count.
Unfortunately, we currently have no setting to change this behaviour.
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Preloading on all postsNot out of the box. If you are a paid customer, open a ticket via https://feedbackwp.com/support/ and we can help come up with a code snippet that loads the CSS and script only on the pages you want it to load on.
This typically happen if your Google json key is not valid.
Login to google cloud console and redownload the json key then save again in the plugin.
Unfortunately, it is currently not possible.
If you are a paid customer, you can open a ticket via https://feedbackwp.com/support/ and we can develop a code snippet to achieve what you seek.
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);
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] tagUnfortunately, it is currently not possible to show tags/categories.
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] tagWhere? the top rated widget?
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Change the fontUnfortunately, our font is required for the rating widget display.
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Problems with rich snippetsThe error you got is from the schema markup added to your site by Schema Pro plugin.
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);
Please open a ticket via https://feedbackwp.com/support so we can look into this for you.