Blaz K.
Forum Replies Created
-
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Dotted starsI’m glad to hear you managed to solve the problem and thanks for sharing the procedure.
Regards,
BlazHi @suzyweb,
Uncaught TypeError: $rating_stars.raty can’t come from Rate my Post plugin because there is no such object in Rate my Post. Cookies is not defined could be from Rate my Post but I’m surprised that the error appears in the administration panel. Rate my Post includes this script only in the frontend. Nevertheless, I don’t have any experience with Divi Builder and since it’s not an open source software I also can’t test the compatibility. After deactivation the plugin and it’s data are completely removed if you select that in the options. I’m sorry I can’t give you a more helpful reply 🙂
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Google Rich Results Changed@john12john, I can’t see Rate my Post plugin on your website. Are you sure you are using Rate my Post?
Regards,
BlazForum: Reviews
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] ParabensThanks for the review @pdpi 🙂
HI @malferov,
it’s a good idea, but I’m a bit short on time at the moment 🙂 I wrote it down and I’ll add it in one of the future updates 🙂
Blaz
Alex, it’s possible by using the rmp_structured_data filter. Check out the event example here: https://wordpress.org/support/topic/google-rich-results-changed/ and adjust the output to match the product schema (JSON LD). See examples here: https://jsonld.com/product/
Blaz
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Wrong Order in AMP Modethis is probably a CSS issue. Did you follow the guide here and add the necessary CSS: https://wordpress.org/support/topic/beta-amp-compatibility-in-version-2-3-0/
Blaz
Hi @zumich,
did you make any changes to the website in this period? Plugin-wise nothing has changed so it’s a bit hard to debug. Maybe some kind of minify/caching plugin could be the reason?
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Google Rich Results ChangedHi @pierreto,
I think you are forgetting the essential: Article or blog post markup will not show rich snippets anymore 😉 Do read the announcement from Google: https://webmasters.googleblog.com/2019/09/making-review-rich-results-more-helpful.html
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Google Rich Results Changed@lukasluke, @antongorlin and others, you can make different schema types for different posts via the rmp_schema_type filter. Now, there are many ways how to do this, but maybe the easiest is this one:
You create a custom field in posts that require different schema type than the one declared in the options. Here is a guide on how to create a new custom field: https://www.namehero.com/startup/how-to-use-custom-fields-in-gutenberg-screenshots-example/
The custom field’s name should be my_schema_type and the value should be one of the following: Product, Book, Course, CreativeWorkSeason, CreativeWorkSeries, Episode, Game, LocalBusiness, MediaObject, Movie, MusicPlaylist, MusicRecording, Organization, Recipe.
Then the following should go in your functions.php:
function my_dynamic_schema( $schemaType ) { $schema = get_post_meta( get_the_id(), 'my_schema_type', true ); if( $schema ) { return $schema; } return $schemaType; } add_filter( 'rmp_schema_type', 'my_dynamic_schema' );Then if you need a different schema than the one in the options, you just create a custom field my_schema_type with the schema value in the post editor and that’s it.
It’s not the simplest implementation but it works 🙂 I’m planning to redesign this as soon as I get some free time.Regards,
Blaz- This reply was modified 6 years, 8 months ago by Blaz K..
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Google Rich Results Changed@santacruze the old js file is still cached somewhere so you need to clear cache. Besides from the website cache also clear your browser cache and any caching system used by your hosting provider (some use such systems and typically you can purge cache in cpanel).
Regards,
BlazForum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Google Rich Results Changed@lukasluke, I don’t completely understand. You just need to update the plugin to version 2.9.2 and choose the structured data type in the options. Above are examples, how to programmatically modify the structured data if necessary.
- This reply was modified 6 years, 8 months ago by Blaz K..
Forum: Plugins
In reply to: [Rate My Post - Star Rating Plugin by FeedbackWP] Stars on homepage postsAdded in version 2.9.2. Show results on archive pages has to be enabled 🙂
Regards,
Blaz