Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+5 votes
748 views
in Q2A Core by

Here is what Google Webmaster Tools reported about microformats implementations on my Q2A website:

 

 

I beleive that this image is "self-explanatory".

I think this is helpful for site's SEO.

Please add this to future releases.

 

Q2A version: 1.6.1
by
it's not a seo issue because search engines don't use this anymore. but it's helpful to have them for sharing content on social sites. in a month I will release a new plugin that I developed to improve q2a seo and it covers this too, but you must wait till then.

1 Answer

+1 vote
by
edited by

Change in qa-app-users.php

LINE:463

.($favorited ? ' qa-user-favorited' : '').($microformats ? ' url nickname' : '').'">'.qa_html($handle).'</a>') : '';
 
CHANGE TO
 
.($favorited ? ' qa-user-favorited' : '').($microformats ? ' url nickname fn entry-title updated' : '').'">'.qa_html($handle).'</a>') : '';
Not perfect as it just adds the username to the fields but, it does make the errors go away.
 

 

...