karamba
Forum Replies Created
-
Sorry, my fault. The source of 3d model was empty (lost during migration). I’m restored the path and now everything is fine, thank you.
https://prnt.sc/DxBAN590sGqI – screenshot
Thank you for the fast response, I’m downgraded to the PHP 8.1 and upgraded to new version of the plugin. Now no errors but purple square displayed instead of the model.
- This reply was modified 8 months, 4 weeks ago by karamba.
By the way some of them (.png) are “not attached”…
- This reply was modified 3 years, 6 months ago by karamba.
Forum: Plugins
In reply to: [Yoast SEO] Missing field “priceValidUntil” (optional)This trick doesn’t help either
add_filter( 'wpseo_schema_product', 'gbol_reset_price_valid_until' ); function gbol_reset_price_valid_until( $data ) { global $product; if ( ! empty( $data['offers'] ) ) { foreach ( $data['offers'] as $key => $offer ) { if ( ! isset( $offer['priceValidUntil'] ) ) { $data['offers'][$key]['priceValidUntil'] = date( 'Y-12-31', time() + YEAR_IN_SECONDS ); } } } return $data; }
Forum: Plugins
In reply to: [WP YouTube Lyte] Getting Google Search Console video errorHi, could you check my page too please?
https://www.borboletabag.com/information/foundation/
I have the same 2 symptoms (load thumbnails locally enabled).When I tested page (https://search.google.com/test/rich-results?id=aPo5hstRB8PtjRRQW2MS7w) I saw a few errors (I’m using [helpie_faq group_id=’2350’/] shortcode to display FAQ).
But when I testing FAQ group directly, all looks fine
https://www.borboletabag.com/helpie_faq_group/vegan-bags-faq/
Why?Forum: Plugins
In reply to: [Yoast SEO] Missing field “priceValidUntil” (optional)RankMath have a following temp solution:
/** * Filter to modify Rank Math product schema data * Replace $schema_type with schema name like article, review, etc. * @param array $entity Snippet Data * @return array */ add_filter( "rank_math/snippet/rich_snippet_product_entity", function( $entity ) { $entity['offers']['priceValidUntil'] = '2050-01-01'; return $entity; });
How to do the same with Yoast?..
Yes, ALMOST all images are .webp but Google Page Speed can not recognize it and it lowers my rating because of this.
if these pictures were displayed correctly, I would have a green score
When I checked it at the Google Page Speed, results are different every time
https://www.linlin.in.th/coffee-beans/african/ethiopia-sidamo-g2/ (now it webp but Google Page Speed said “Serve images in modern formats”)
If I will check it tomorrow, it can be fully compatible for Google. Next day – “serve…” again.
The question is – why my results are not stable? Is it cache issue?.. (WP Rocket)Also, at the same time some product pages are satisfied Google (webp), some – not (how come)? – same server state, same cache but different output.
Oh no… Some product pictures are still png (not webp), why?
https://www.linlin.in.th/coffee-grinders/electric/sd-921l-l-beans-digital/Hmm. Now images showed as .webp
Its a miracle…Forum: Plugins
In reply to: [WP YouTube Lyte] Search Console Video Meta Data errorsTurned off schema and no errors anymore. Thanks