Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #399750

    Hello I’m using now enfold and have some problems with the microformats in google webmaster They give errors with my homemade Types catogorie /havens/ and wrong places breadcrumb title and url Can you help

    #399890

    Hi Peter!

    What are the errors your getting? Paste them here or take a screenshot of them please.

    Best regards,
    Elliott

    #399901
    This reply has been marked as private.
    #400208

    HAllo Elliott,

    IS it so clear that I must share a link and screenshot online sites

    Peter

    #400566

    Hey!

    I’m not sure I understand entirely either and my dutch is a bit rusty…Do you have something on your site which is using the hentry microformat? If you want to provide us with screenshots you can upload them to for instance imgur.com or a public dropbox folder and then paste the links here.

    Cheers!
    Rikard

    #400590
    This reply has been marked as private.
    #400591
    This reply has been marked as private.
    #401019

    Hi!

    What happens when you change lines 485 – 490 in /enfold/framework/php/class-breadcrumb.php from this.

    foreach($trail as &$link)
    {
    	$link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link);
    	$link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link);
    	$link = '<span typeof="v:Breadcrumb">'.$link.'</span>';
    }
    

    To this.

    $i = 0;
    $len = count($trail);
    foreach($trail as &$link)
    {
    	$link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link);
    	$link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link);
    	if ( $i == $len - 1 ) { 
    		$link = '<span>'.$link.'</span>'; 
    	} else { 
    		$link = '<span typeof="v:Breadcrumb">'.$link.'</span>';
    	}
    	$i++;
    }
    

    Cheers!
    Elliott

    #401076

    Hi Elliot,

    The line was 473-478 but changed absolutely nothing.
    See the link below for a test

    You want de login for something to change?

    Regards Peter

    https://developers.google.com/structured-data/testing-tool/?url=http://windkracht5.nl/zeilboot-huren/

    #401414

    Hallo Elliott,

    Sorry did something wrong now works OK but is still one flaw visible site navagation element

    How can I fix that

    Thanks for solving the problem Peter

    #402109

    Hi!

    Can you post a screenshot of the flaw you are referring to?

    Best regards,
    Josue

    #402997
    This reply has been marked as private.
    #403602

    Hi!

    Not sure about that. It says the node is empty but it doesn’t look empty to me. Perhaps it’s a bug with the testing tool.

    Regardless it’s just a warning so you can ignore it.

    Regards,
    Elliott

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