Hi Shufflehound team,
I believe you’re using “Desktop” as your view.
Please switch it to mobile, for example “iPhone X”
I’ve done it but there’s no impact on my sitemap, it still doesn’t contain any image
Ok let me try first
Oh the thing is I’m not using Impreza theme but Gillion theme with WP Bakery as my page builder.
Do I just need to change anything with “Impreza” here with “Gillion“? Please advise
<pre>/* Add impreza images to Yoast sitemap, since Yoast doesn't read impreza's Page
* Builder code - borrowed from (https://github.com/Yoast/wordpress-seo/issues/4808) */
function impreza_filter_wpseo_sitemap_urlimages($images, $post_id)
{
$post = get_post($post_id);
if (is_object($post)) {
$content = $post->post_content;
# Parse impreza Image modules
preg_match_all("/image=\"(\d+)\"/", $content, $impreza_images);
if(count($impreza_images) < 2){
return $images;
}
foreach ($impreza_images[1] as $impreza_image_id)
{
$attachment = wp_prepare_attachment_for_js( $impreza_image_id );
$images[] = array(
'src' => $attachment["url"],
'title' => $attachment["title"],
'alt' => $attachment["description"]
);
}
}
return $images;
}
add_filter('wpseo_sitemap_urlimages', 'impreza_filter_wpseo_sitemap_urlimages', 10, 2);</pre>
<pre>
Hi, the image error got fixed when I deactivate the Hummingbird plugin, so it’s all good now!
However, I’m still getting the “Clickable elements too close together” error for example on this post: https://dailyspin.id/esports/pubg-mobile/tinggalkan-bluehole-pubg-corporation-kini-bergabung-dengan-krafton
Hi,
I think it got updated successfully. Could you check if I updated the themes properly?
How do I get notified if there’s an update on Gillion automatically?
Also I found another issue since I updated.
The social media icon is missing. You can check it on my homepage sidebar widget https://dailyspin.id . Please check on the attachment on how it looks like.
Solution for this topic
Actually, we found out what the culprit is! We had a plugin that caused the x-robots-tag = NOFOLLOW.
So yesterday we installed a chrome add ons called “HTTP Header Spy”. Then we deactivate all plugins and activate them one by one. And we found out the culprit. It is this plugin https://wordpress.org/plugins/redirection.
We cleared delete the plugin, clear cache, and refresh. Voila! The x-robots-tag = NOFOLLOW is gone!
Hours later, Google began to index our images again!
Now it can show as a snippet in Google Discover!
Hi, I still haven’t resolved this issue. But I found out an interesting finding on my header.
There’s a NOFOLLOW on the x-robots-tag. You can try to see the header on this link example: https://dailyspin.id/esports/mobile-legends/hasil-playoffs-mpl-id-season-6-day-2-onic-esports-gugur
Is that supposed to be there? The NOFOLLOW? If not, how can we remove it?
I attach the screenshot of my header request & response here.
Hi Shufflehound team,
Thank you, I’ll update it to that version. In that case, would a new update notification be available on the wordpress admin? or would I need to download manually like that every time there’s an update?
Ok will post the questions on Yoast plugin support as well. Thanks for the tip.