-
AuthorPosts
-
December 17, 2016 at 11:06 am #725673
Hallo,
es gab bereits ein Topic von mir zu dem Thema: https://kriesi.at/support/topic/veroffentlichungsdatum-datepublished-aus-den-google-suchergebnissen-entfernen/Leider hat das dann nicht funktioniert.
Ich habe noch ein weiteres Topic mit dem selben Problem gefunden:
https://kriesi.at/support/topic/datum-in-suchergebnissen-ausblenden/Das hat leider auch nicht funktioniert.
Meine derzeitigen Einträge in Quick CSS:
span.minor-meta {
display: none;
}div.slide-meta {
display: none;
}div.post_delimiter {
display: none;
}.widget li a {
font-size: 16px;
line-height: 28px;
}.big-preview.single-big {
display: none;
}.title_container .main-title a {
pointer-events: none;
}div .wp-caption {
border: none;
}time.date-container.minor-meta.updated {
display: none;
}Können Sie mir helfen? Die Zugangsdaten befinden sich zudem im Private Content, falls Ihnen das was hilft.
December 19, 2016 at 2:43 pm #726020Hey Eisi101,
wenn du das hier machst: https://kriesi.at/support/topic/veroffentlichungsdatum-datepublished-aus-den-google-suchergebnissen-entfernen/#post-716293 sollte es funktionieren, allerdings braucht Google eine Weile bis die Änderungen auch wirklich greifen. Soweit ich weiß kann man bei Google ein Re-Crawling beantragen.
Gruß,
AndyDecember 21, 2016 at 11:02 am #726967Hallo Andy,
ich denke nicht dass es funktioniert hat bei mir – da auch neue Beiträge sofort das Datum dabei haben in den Serps. Auch das Google Structured Data Testing Tool gibt das Datum mit aus…;(
Hast du noch weitere Ideen oder kannst Du Dicih mal in mein Backend einloggen?
LG AlexDecember 23, 2016 at 3:20 am #727778Hey!
I thought it was the date in the loop-index.php file but when I checked the markup of the page, I got a few open graph meta tags. I think this is where google get the date.
<meta property="article:published_time" content="2016-11-07T14:50:47+01:00" /> <meta property="article:modified_time" content="2016-11-13T18:23:17+01:00" /> <meta property="og:updated_time" content="2016-11-13T18:23:17+01:00" />
If you want to remove it, you need to disable Yoast’s open graph meta data for facebook.
// https://kb.yoast.com/kb/getting-open-graph-for-your-articles/
Regards,
IsmaelDecember 23, 2016 at 2:21 pm #727931Hello Ismael,
i disabled the yoast
s open graph meta data for facebook but unfortunately it doesn
t work.But – i found some lines in the helper-markup.php – i think i have to modify here something?
Can you take a look into this file??Thank you in advance – and Happy Christmas!
Alex
December 28, 2016 at 4:17 am #728344Hi,
i disabled the yoasts open graph meta data for facebook but unfortunately it doesnt work.
You have to wait for a few days, weeks or even months before google update the URL. This process takes a while so you have to be a little patient. Did you ask google to recrawl the url?
// https://support.google.com/webmasters/answer/6065812?hl=en
Happy holidays! :)
Best regards,
IsmaelJanuary 2, 2017 at 8:01 pm #728733Hi Ismael, i work as a SEO consultant and i know what you mean. But i think you are not right….because newly created posts should be affected immediately….and this is not unfortunatelly….
There have to be some other lines ;( Maybe here? helper-markup.php
Thank you, Alex
January 3, 2017 at 4:55 am #728825Hi,
Could you please provide a link to the newly created posts? Did you disable the open graph meta for facebook? The date from the open graph data is the same as the one in the SERPs. You will not find any “date” or “time” markup in the helper-markup.php file.
Best regards,
IsmaelJanuary 3, 2017 at 11:11 am #728912Hi Ismael,
yes i disabled the open graph meta for facebook. And you still find the schema.org date markups in the source code. (you find the lines in the private content)
Also the structured data testing tool from google find the markups…Maybe the option “Automated Schema.org HTML Markup” in the Enfold Child Theme settings could help?
best regards,
alex
January 4, 2017 at 6:27 am #729296Hi,
Thank you for the info and I’m sorry for the confusion. That info is actually added by the helper-markup.php file. Please add this in the functions.php file.
add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2); function avf_markup_helper_attributes_modified($attributes, $args) { if($args['context'] == 'entry_time') { unset($attributes['datetime']); } return $attributes; }
Best regards,
IsmaelJanuary 4, 2017 at 10:50 am #729346Hi Ismael,
i added this lines to the functions.php in the child theme …. unfortunately it does not work…..
You find the full code of my child theme function.php in the private content.Do you have another idea?
Thank you in advance,
Alex
January 5, 2017 at 4:50 am #729710Hi,
Did you check the markup again? The “datetime” attributes are gone. If this is not working, try to edit the includes helper-markup.php file, look for this block of codes then remove it.
if( !in_array('date', $exclude) ) { $output .= "<span class='av-structured-data' {$entry_time_markup}>{$post->post_date}</span>"; } if( !in_array('date_modified', $exclude) ) { $output .= "<span class='av-structured-data' {$date_markup}>{$post->post_modified}</span>"; }
Best regards,
IsmaelJanuary 5, 2017 at 10:29 am #729799Hi Ismael,
Did you check the markup again? The “datetime” attributes are gone.
But i still see those lines – and also the structured data testing find this lines
</span><span class=’av-structured-data’ itemprop=”author” itemscope=”itemscope” itemtype=”https://schema.org/Person” ><span itemprop=’name’>Redaktion</span></span><span class=’av-structured-data’ itemprop=”datePublished” >2016-12-21 15:49:56</span><span class=’av-structured-data’ itemprop=”dateModified” itemtype=”https://schema.org/dateModified” >2016-12-23 13:05:31</span><span class=’av-structured-data’ itemprop=”mainEntityOfPage” itemtype=”https://schema.org/mainEntityOfPage” ><span itemprop=’name’>Die Firmeninsolvenz – Folgen für die Arbeitnehmer</span></span></span></article><div class=’single-big’></div>
If i disable the “Automated Schema.org HTML Markup” in the Enfold Child Theme it works….but then all the other schema.org markups are gone as well…
Any Ideas?
January 7, 2017 at 7:34 am #730622Hi,
Please do the suggested modification above.
If this is not working, try to edit the includes helper-markup.php file, look for this block of codes then remove it.
if( !in_array('date', $exclude) ) { $output .= "<span class='av-structured-data' {$entry_time_markup}>{$post->post_date}</span>"; } if( !in_array('date_modified', $exclude) ) { $output .= "<span class='av-structured-data' {$date_markup}>{$post->post_modified}</span>"; }
Best regards,
IsmaelJanuary 7, 2017 at 6:24 pm #730732Hi Ismael,
i removed that lines in the helper-markup.php in the child theme…
There are still some lines regarding the date..?
Example:
case ‘entry_time’:$attributes[‘itemprop’] = ‘datePublished’;
$attributes[‘datetime’] = get_the_time(‘c’, $args[‘id’]);
break;January 9, 2017 at 10:33 pm #731317Do you have another idea? There must be some options to disable the schema.org markup for the date?
Thank you!
AlexJanuary 11, 2017 at 5:35 am #731842Hi,
Those will not be applied because we already remove the whole markup for the date attribute. Please check the html of the page again.
Best regards,
IsmaelJanuary 16, 2017 at 1:22 pm #734014Hi Ismael,
datepublished and date modified is still in the source code…..any other persons here have the same problems?
BR,
AlexJanuary 18, 2017 at 6:26 am #735131Hi,
Did you remove the code in the functions.php file?
add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2); function avf_markup_helper_attributes_modified($attributes, $args) { if($args['context'] == 'entry_time') { unset($attributes['datetime']); unset($attributes['itemprop'); } return $attributes; }
Yes, there are a few requests about this and same snippets that we provided here worked for them.
Best regards,
IsmaelJanuary 18, 2017 at 9:33 am #735203Hi Ismael,
no i didn`t remove this code from functions.php.
Should i remove that?
The thing is, that nothing of the provided worked for me in order to remove the schema.org markup for the published and the modified date…Thank you for your work!
AlexJanuary 22, 2017 at 10:01 am #736924Hi!
The theme contains a single file for the schema.org markup and that is the helper-markup.php file. If the suggestions are not working, maybe there’s another plugin or modification that is creating those info or markup. Please hire a freelance developer or contact our partner (Codeable) to investigate it further.
// http://kriesi.at/contact/customization
Regards,
IsmaelJanuary 23, 2017 at 9:52 am #737167Hello Ismael,
okay thank you!
Alex -
AuthorPosts
- You must be logged in to reply to this topic.