Viewing 22 posts - 1 through 22 (of 22 total)
  • Author
    Posts
  • #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.

    #726020

    Hey 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ß,
    Andy

    #726967

    Hallo 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 Alex

    #727778

    Hey!

    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,
    Ismael

    #727931

    Hello Ismael,

    i disabled the yoasts open graph meta data for facebook but unfortunately it doesnt 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

    #728344

    Hi,

    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,
    Ismael

    #728733

    Hi 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

    #728825

    Hi,

    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,
    Ismael

    #728912

    Hi 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

    #729296

    Hi,

    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,
    Ismael

    #729346

    Hi 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

    #729710

    Hi,

    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,
    Ismael

    #729799

    Hi 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&#8221; ><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&#8221; >2016-12-23 13:05:31</span><span class=’av-structured-data’ itemprop=”mainEntityOfPage” itemtype=”https://schema.org/mainEntityOfPage&#8221; ><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?

    #730622

    Hi,

    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,
    Ismael

    #730732

    Hi 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;

    #731317

    Do you have another idea? There must be some options to disable the schema.org markup for the date?

    Thank you!
    Alex

    #731842

    Hi,

    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,
    Ismael

    #734014

    Hi Ismael,

    datepublished and date modified is still in the source code…..any other persons here have the same problems?

    BR,
    Alex

    #735131

    Hi,

    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,
    Ismael

    #735203

    Hi 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!
    Alex

    #736924

    Hi!

    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,
    Ismael

    #737167

    Hello Ismael,

    okay thank you!
    Alex

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