Blaz K.
Forum Replies Created
-
Rate my Post plugin doesn’t use the article schema type. Are you sure you are using Rate my Post plugin? If that’s correct please share link to your website, so I can check where the problem is.
Regards,
BlazHi Luke,
at the moment that’s unfortunately not possible. The results widget is loaded only if the post has already been rated.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Google Rich Results ChangedI’ll look into this, but I have very little time these days. Help each other here on the forum and share your implementations.
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Google Rich Results ChangedForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] GDPR complianceForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Hide after user gave ratingsee here: https://wordpress.org/support/topic/hide-ratemypost-output-when-user-already-gave-a-rating/
Regards,
BlazLuke try positioning it relative and then define top/bottom:
.rmp-results { position: relative; top: 20px; /* Change this */ }Regards,
BlazForum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] perfectThanks for the review!
Forum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Good but not perfectthe ajax call is asynchronous (i.e. non-blocking). Therefore, it doesnβt have any impact on user experience. The page is already loaded and functional while the data is retrieved from the server. If you scroll to the widget and refresh the page you can actually see that π
Regards,
BlazFor the first:
span#avg-rating { display: none; }and for the second:
.rmp-results { display: inline-block; }Blaz
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] SAVE MY SETTINGSIn this case it’s most likely that some kind of PHP error occurs while data is being saved. It’s hard to debug this without knowing the exact error. You should be able to find the error in your PHP error log.
Blaz
Alex, this feature uses the_title filter to insert the results automatically. Therefore, the results are tied to the title. You can style them to some point with CSS but for anything bigger I recommend building your own “results widget” with the help of developer’s features here: https://wordpress.org/support/topic/developers-developer-features/
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Google Rich Results ChangedHi @feedough,
complex-rating is not on Google’s list of supported schema types for rich snippets. I see that it works on the example above, but I guess they will remove its support or add it to the list sooner or later. Therefore, I’ll wait a bit to see what happens. Nevertheless, you can implement this type of structured data with the rmp_structured_data filter. See the first page of this topic.
Blaz
Hi Alex,
that is correct. You can remove stars from the main page like this:
function my_exclude_main( $content ) { if ( is_home() ) { return false; } else { return $content; } } add_filter( 'rmp_archive_results', 'my_exclude_main' );Blaz
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] SAVE MY SETTINGSHi @aposdim,
do you see any errors in php error log? Which version of WordPress are you using? When you press save settings what does it say instead of settings saved under the button?
Regards,
Blaz