parockinger
Forum Replies Created
-
Forum: Plugins
In reply to: [Site Reviews] ARIA IDs are not unique (PageSpeedInsights)Hello, can someone please help us here? Thanks
Forum: Plugins
In reply to: [Site Reviews] ARIA IDs are not unique (PageSpeedInsights)div.glsr-form-wrap > form.glsr-review-form > div.glsr-field > input#site-reviews-64468727- <input class=”glsr-input glsr-input-text” id=”site-reviews-64468727-” name=”site-reviews[64468727]” type=”text” value=””></input>div.glsr-form-wrap > form.glsr-review-form > div.glsr-field > input#site-reviews-64468727- <input class=”glsr-input glsr-input-text” id=”site-reviews-64468727-” name=”site-reviews[64468727]” type=”text” value=””></input>
Google says, that is critical: https://dequeuniversity.com/rules/axe/4.7/duplicate-id-aria
Forum: Plugins
In reply to: [Site Reviews] ARIA IDs are not unique (PageSpeedInsights)Here the right link from GooglePageSpeedInsights: https://pagespeed.web.dev/analysis/https-www-schlanke-rezepte-de-rezepte-gemuese-rosenkohlauflauf/w8xleinf21?hl=DE&form_factor=mobile
Forum: Plugins
In reply to: [Site Reviews] add the correct time zone (WordPress)In our WordPress settings, the time zone is UTC+2, but it is drawn without “+2”. In other words: I just made a comment at 1:08 p.m. and it is also displayed correctly in the backend. However, as soon as I click on “Release comment”, it is published on the post page at 11:08 am. That’s not correct?
Forum: Plugins
In reply to: [Site Reviews] Import Rate my Post to Site ReviewThanks very much. so we do it.
many many thanks. this is how it works 🙂Forum: Plugins
In reply to: [Site Reviews] Connect Site Review to Rank Mathmany many thanks! now it works – great 🙂
Forum: Plugins
In reply to: [Site Reviews] Connect Site Review to Rank Mathor this possibility? here is the following code for wordpress from rank math: add_filter('rank_math/snippet/rich_snippet_product_entity', function ($entity) { $score = get_post_meta(get_the_ID(), 'users_rating', true); // Replace with your rating post meta. $count = get_post_meta(get_the_ID(), 'users_rating_count', true); // Replace with your rating count post meta. $entity['aggregateRating'] = array( '@type' Â Â Â => 'aggregateRating', 'ratingValue' => $score, 'ratingCount' => $count, ); return $entity; }); could this be adapted to the site review plugin? can you help me with the appropriate functions?Forum: Plugins
In reply to: [Site Reviews] Connect Site Review to Rank MathI saw that there was a similar topic before with products and woocommerce.(https://ww.wp.xz.cn/support/topic/aggregaterating-schema-doesnt-worki/) For us it’s recipes. Something like this was used here:
Could this help us?
**
* Filter to change the Rank Math schema data for Product.
* @param array $entity
* @return array
*/
add_filter(‘rank_math/snippet/rich_snippet_product_entity’, function ($entity) {
$entity[‘@id’] = get_permalink().’#product’;
return $entity;
});
Forum: Plugins
In reply to: [Site Reviews] Connect Site Review to Rank Mathit is drawn in our code validation, but not adopted by rank math. In other words, if I run the test for rich search results (https://search.google.com/test/rich-results?hl=de) over it, the rating is missing.
Forum: Plugins
In reply to: [Site Reviews] Connect Site Review to Rank Mathdid it work for you when you tested it with our site?
Forum: Plugins
In reply to: [Site Reviews] Connect Site Review to Rank Mathsomething can’t be right. we get the feedback: Field “aggregateRating” is missing
Forum: Plugins
In reply to: [Site Reviews] Connect Site Review to Rank MathUnfortunately I could not upload the pictures
Forum: Plugins
In reply to: [Site Reviews] Connect Site Review to Rank MathI cleared the WP Rocket Cache.
Forum: Plugins
In reply to: [Site Reviews] Connect Site Review to Rank Mathadd_filter(‘site-reviews/schema/LocalBusiness’, function ($schema) {
$schema[‘address’] = [
‘@type’ => ‘PostalAddress’,
‘streetAddress’ => ‘123 Main St’,
‘addressLocality’ => ‘City’,
‘addressRegion’ => ‘State’,
‘postalCode’ => ‘Zip’,
];
  return $schema;
–> What do we have to write here for “recipes” instead of “local business”?