Google webmaster tools error Missing: updated

Posted in: Newspaper
Post count: 8

Hi tagdiv,

I checked my Google Webmaster Tools, and apparently I have errors I need to fix. The error I’m getting is “Missing: updated” and I think it’s on all my posts.

The errors started appearing on June 16th.

I’m not sure how to go about fixing this. I hope you can give me some advice!

My website is http://thetraveltype.com

Thanks,

—Tim

Post count: 3343

Hi,
You have that error because you have disabled the post date to be shown on posts. http://screencast.com/t/zzEuG6FAz1c6

Just go to Theme panel and enable the post date http://screencast.com/t/dLGieHVUTN and if you want to hide it without having trouble with Google Structured Data, you can hide it via CSS, add this in Theme Panel -> Custom CSS

.single .td-post-date {
display:none;
}

Thanks for the message!

Post count: 8

Thank you Marius, the CSS worked perfectly! The date is hidden on all posts.

It’s now showing on the blocks on the homepage. Do I need to use CSS to hide those as well?

Thank you for your help.

—Tim

Post count: 260

I recommend to hide date from google :-P. You can get more CTR and visits to your website if you dont show date on structured data. SEO Secret 😛

Post count: 7909

Hi,

If you want to hide the date also on modules please try this custom css – http://screencast.com/t/M8CJOpPZcM

.td_module_wrap .td-post-date {
display: none;
}

Thanks!

Post count: 8

Thank you Alin, it worked perfectly. And thanks Ing Geek for the tip!

Post count: 109

I am using:

.single .td-post-date {
display:none;
}
.td_module_wrap .td-post-date {
display: none;
}

But it leaves a line of space where the date was;

title
date
text

the code does this

title

text

How do i make that css look like this:

title
text

thank you

Post count: 555

I have this issue as well did not know this is what making me have those errors in google,thanks for the tip..

Post count: 7909

Hi,


@mboydnv
Do you have the views and comments on your post?
If you don’t have those active you ca try this custom css as the container is still there, only the individual elements are removed(author, date, views..) – http://screencast.com/t/eq3xXZns9XUhttp://screencast.com/t/kRNsPJ5f

.single .td-module-meta-info {
display: none;
}

Also for the modules – http://screencast.com/t/x5EkxarHpn

.td_module_wrap .td-module-meta-info {
display: none;
}

Thanks!

Post count: 109

Thanks Alin, that did the trick!

Post count: 20

Using all three codes…still need to eliminate dates from all grids.

Post count: 20

NVM..got it.

Viewing 12 posts - 1 through 12 (of 12 total)
You must be logged in to reply to this topic.