Blaz K.
Forum Replies Created
-
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Plugin migration requestHi @kennnesbitt,
I really hoped to incldue migration tools in version 3.0.0.0, but I ran out of time. I’ll do my best to add them in version 3.1 if there is still interest.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Filter by CategoryHi @pesimist57,
In version 3 you can remove rating widget from posts in specific categories like this:
add_filter( 'rmp_display_rating_widget', 'blazzdev_show_rating_widget' ); function blazzdev_show_rating_widget() { if( in_category( 'uncategorized' ) ) { // category slug return false; } return true; }More about this in the documentation: https://blazzdev.com/documentation/rate-my-post-documentation/
Version 3 is stable and available for testing. Upgrade instructions are here: https://wordpress.org/support/topic/version-3-rate-my-post-3-is-now-available/
Regards,
Blaz@kappei15, I think this is an archive page. You should enable “Show ratings on archive pages” in the settings.
Regards,
BlazHappy to hear that!
Regards,
BlazHi @rp4rusty,
a user encountered a similar issue several months ago and if I remember correctly we tracked it down to a plugin for some specific custom post types. If you are using such a plugin, please let me know the name so I can test the compatibility.
As for disabling structured data there you can do something like this:
function blazzdev_structured_data( $structuredData ) { if ( get_post_type() == 'book' ) { return ''; } return $structuredData; } add_filter( 'rmp_structured_data', 'blazzdev_structured_data' );Remember to replace book with your custom post type π
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Function for showing starsHi Daniele,
in version 2.x the shortcode uses get_the_id() function and thus it display rating for the current post – you need to be in the loop for the shortcode to work. I don’t completely understand what you mean by “grid boxes post previews”? Nevertheless, I’m nearly done with version 3 which accepts id attribute in shortcodes and that should work also outside posts π
Regards,
BlazHi Daniele,
in version 2.x this is only possible if you within the loop. Nevertheless, version 3 comes with improved shortcodes and allows you to add results widget like this: [ratemypost-result id=”122″] – you can call the shortcode for whichever post you want. Version 3 will be available on GitHub for testing in a couple of days. If you are interested I can notify you, when it’s available.
Blaz
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Filter by CategoryI’ll add a filter there in one of the future versions π
Regards,
BlazHappy to hear, you solved the problem.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] work with cloudflare?Happy to hear, you solved the problem.
Regards,
BlazHi there,
those are optional fields and not strictly required. The plugin supports 14 structured data types and because including every optional field for these data types is quite some work, I decided it will be reserved for the premium version of the plugin. Nevertheless, if you have coding skills, you can adjust structured data to your need with the rmp_structured_data filter. More about this in the docs: https://blazzdev.com/documentation/rate-my-post-documentation/
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] help me pleaseHi there,
that is only possible if your website uses static page under Settings -> Reading Settings -> Your homepage displays. Thatβs because the ratings are saved in post meta and thus only post types (posts, pages and custom post types) can be rated. Archives unfortunately can’t be rated.
If your website uses static page for the front page, you can simply add the shortcode.
Regards,
Blaz- This reply was modified 6 years, 4 months ago by Blaz K..
That markup has an error. If rich snippets are still shown for this markup, they for sure won’t be for long. Nevertheless, if you want to use such markup you can do that with the rmp_structured_data filter as explained above.
Regards,
BlazForum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Excellent Plugin!Hi Pedro,
happy new year to you too! On the donate page there is also an option to donate via credit card. I think PayPal account is not required if you choose this option. Thanks for your support!
Blaz