- This topic has 27 replies, 4 voices, and was last updated 3 years, 7 months ago by
Tom.
-
AuthorPosts
-
September 21, 2018 at 4:33 am #682889
Mohit
Hey,
I wanted to know how can I remove date from google snippet? https://prnt.sc/kx0syu for your reference!Thanks
GP Premium 1.7.2September 21, 2018 at 6:18 am #682959David
StaffCustomer SupportHi there,
that looks like it is coming from a plugin. Are you using Yoast?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/September 21, 2018 at 4:31 pm #683410Mohit
Hey David,
Yes I am using yoast seo plugin but have disabled date from that a month ago but still getting the dates in google snippet!
Is there is a way to hide date from snippet?September 21, 2018 at 6:21 pm #683457Tom
Lead DeveloperLead DeveloperThat’s the microdata working. Would you like to remove the published/updated date microdata?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentSeptember 21, 2018 at 7:04 pm #683460Mohit
Hey Tom,
Just a quick question, if I remove the published date microdata will I be getting error in search console?
I just want to hide the date from the search snippet from the google result.
Thanks
September 21, 2018 at 7:28 pm #683468Isaac
Hey Mohit, you can easily do this by using the “WP Date Remover” plugin. I was using it on my site http://10bestranked.com but now I simply have my “Updated” date as I think Google loves this more (as you update your post it’ll change the date). I have someone custom code this for me. If you want, I can send you the code for it. I was using GeneratePress there, but now use it on another site.
September 21, 2018 at 8:45 pm #683485Mohit
Hi Isaac,
Even I am now looking to change published date to last updated as its good in the eyes of google, can You please tell me what changes did you do to achieve that and how are you keeping your post updated? Are you using some plugin or are you actually updated the posts as I can see you have plenty of revised posts!Thanks
September 22, 2018 at 9:25 am #683886Tom
Lead DeveloperLead DeveloperGoogle will likely be looking for a published date, so you might get an “error” in your search console if it doesn’t exist.
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentSeptember 22, 2018 at 3:01 pm #684025Mohit
Hi Tom,
If I don’t remove publish date to last updated then there won’t be any error, right? If then can you please tell me the code to change the published date to last updated? Just like: http://10bestranked.com/ Did?
PS: I am using Page hero to show date. My page url: http://www.techtechnik.comThanks
September 22, 2018 at 9:13 pm #684126Tom
Lead DeveloperLead DeveloperGive this a shot:
add_filter( 'generate_page_hero_post_date', function() { $time_string = '<time class="entry-date published" datetime="%1$s" itemprop="datePublished">%2$s</time>'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = '<time class="updated" datetime="%3$s" itemprop="dateModified">%4$s</time>'; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); return $time_string; } );
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentSeptember 22, 2018 at 11:19 pm #684146Mohit
Hey Tom,
Can you check if the class of date of the post is same in http://www.techtechnik.com/how-to-download-music-from-spotify-for-free/ as in the code that you shared. As it will take time for google to crawl and reflect the necessary changes.
Thanks
September 23, 2018 at 9:33 am #684444Tom
Lead DeveloperLead DeveloperLooks good to me. Right now it’s showing the published date, so I’m assuming the post hasn’t been updated.
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentSeptember 23, 2018 at 2:26 pm #684585Mohit
Hey,
But I have already applied the code that you shared!September 23, 2018 at 8:30 pm #684689Tom
Lead DeveloperLead DeveloperAnd what about it isn’t working? Has that post been updated?
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentSeptember 23, 2018 at 11:49 pm #684754Mohit
Nope, its not working and publish date goes missing when i update the article
-
AuthorPosts
- You must be logged in to reply to this topic.