Blaz K.
Forum Replies Created
-
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Ignore low ratingHi,
that’s unfortunately not possible.
Regards,
BlazHi guys,
I checked structured data types with Googleβs structured data testing tool and I didn’t see any errors there. Maybe a glitch in GSC? Which structured data types are you using?
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Seting not savedit’s hard to debug this with so little information. You should check PHP error log or alternatively follow the steps listed here. Also make sure you are running WordPress version higher than 4.7.
I guess your issued appeared after the update? If that’s the case clear cache. I had several requests for help like this and the problem was always in cached resources from version 2. Make sure to clear all cache: WP plugins, CDN, hosting provider’s cache if used etc.
Blaz
Hi @revivalz71,
I have a tutorial about how to add SoftwareApplication schema in the documentation: https://blazzdev.com/documentation/rate-my-post-documentation/#filters. In the PRO version it will be possible to add it without coding. I’m glad you like the plugin.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] About structured dataHi @cheonmu,
this can be easily done with rmp_structured_data filter.
function blazzdev_structured_data( $structuredData ) { if( (rmp_get_avg_rating() * 10 ) < 30) { return ''; } return $structuredData; } add_filter( 'rmp_structured_data', 'blazzdev_structured_data' );Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Breaking Admin PanelForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Feedback not submitting@badarmor, regarding the nonce, no extra function should be required. But you do need to ensure that page cache is emptied every 24 hours. I’m not so familiar with W3 cache plugin, so it’s probably best to ask on their support forum how to ensure that.
@dominic2020, we fixed via email π
Forum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Excellent!Thank you @vaizdyla! π
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Feedback not submittingHi guys,
version 3 has pretty good error handling, so it’s important to let me know what message you get after trying to submit feedback. In @dominic2020 case, the token doesn’t get saved to database but we haven’t yet been able to figure out what’s the reason. We are, however, in touch and investigating.
@badarmor in your case it could be invalid nonce as the error is not consistent. You will get invalid nonce error if you have page cache expiry set to more than 24 hours. In this case the plugin will reject feedback and votes after 24 hours of last cache release until the cache is cleared again. So, check you cache settings and make sure cache is cleared at least every 24 hours. Also check the error log and let me know if you see anything related to the plugin.
Regards,
BlazForum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Bien, pero hay un detalle…Hi @consultorhost,
thanks for your review. If you share link to the website with me I can check it out.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Not Working after updateHi @jan135,
you should first figure out which caching plugin is installed on your website and then find the “clear cache button” π Just look under plugins for anything that has cache in name.
Blaz
Hi @goldstrikn,
to show ratings on the latest posts page you can enable “Show ratings on archive pages” in the settings. This embed stars, vote count and average rating information next to the title. Embedding a rating widget there is a bit more complicated as it depends on your theme. You should find which file is handling that page in your theme and then embed the rating widget like this:
<?php echo do_shortcode('[ratemypost]'); ?>Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Invalid nonceHi @converted,
invalid nonce message indicates that the nonce submitted with the rating was not valid. This typically happens if you cache your pages for more than 24 hours as WordPress nonces are valid for 24 hours. Check you cache settings and make sure that cache gets cleared at least every 24 hours.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Not Working after updateAh I see, in version 3.0.0 stars are not highlighted/colored if “do not show average rating” is enabled. I think this pretty logic, as if you don’t want to show average rating by text, you most likely also don’t want to show it by stars. So, the best thing would be to disable “do not show average rating” feature. If you want to remove the average rating and vote count text you can create a custom template. More about this in documentation.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Not Working after update