• Resolved geroroe

    (@geroroe)


    Hello,
    I just got a warning-message from google search Console:

    Invalid Object-Type for Field “Author”

    A little research brought me to a possible schema.org issue, wich states that the author-item should be declared as:

     "author": {
          "@type": "Person",
          "name": "John Doe"
        },
    

    That’s only a guess though.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Design Extreme

    (@designextreme)

    @geroroe Thanks for letting me know. It seems to have just appeared today. I’ll check and fix this tomorrow with a new update if needed.

    Hello,

    I just had the warning and replaced line 6249 in index.php as follow :

    To be replaced :

    'author' => ($a['author_name'] != NULL) ? $a['author_name'] : FALSE,

    Replaced by :

    'author' => array(
    
    	'@type' => 'Person',
    
    	'name' => ($a['author_name'] != NULL) ? $a['author_name'] : FALSE
    
    ),

    Tried it in rich result and it’s all green.

    Plugin Author Design Extreme

    (@designextreme)

    @rom174 Thanks! This was my exact plan for the next release.

    Thread Starter geroroe

    (@geroroe)

    Thanks for your quick response!

    Plugin Author Design Extreme

    (@designextreme)

    Please download version 3.42.

    And if you like the plugin, please leave a review. ??

    Thanks again for being so quick to spot this and offer a working solution.

    Hello there ??

    I’m getting the same error message, even with the version 3.42.

    I have checked the HTML in the browser and the code looks fine, but when letting know Google that my problem is corrected, Google starts a scan and indicates that there still 3 errors in the page (I’m displaying 3 reviews).

    What can I do to help you check what is happening?

    Thanks

    Plugin Author Design Extreme

    (@designextreme)

    @philos1964 It’s likely that your page output is cached to prior to the newly updated code. And, if there is another source of the Structured Data, it could be caused by this.

    Just to be sure, please check the preview of the Structured Data (that should be showing the valid version) in the Dashboard and clear the Page Cache.

    Thanks @designextreme!

    I did follow your suggestion, Google sent me a message to indicate the data validation is starting… I will keep you posted.

    Have a nice day ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Invalid Object-Type for Field “Author”’ is closed to new replies.