The Google Developers Testing Tool is showing 1 warning (WPSideBar) and 1 error (WebPage).
You can check it here:
https://developers.google.com/structured-data/testing-tool?url=http%253A%252F%252Fkriesi.at%252Fthemes%252Fenfold%252Fblog%252F
Maybe there is something to fix
Hey gmmediadienste!
Thank you for using Enfold.
You can modify the helper-markup.php file inside the includes folder. Look for this code:
$attributes['itemprop'] = 'mainContentOfPage';
Replace it with:
if ( is_singular('post') || is_home() ) {
unset($attributes['itemprop']);
} else {
$attributes['itemprop'] = 'mainContentOfPage';
}
Cheers!
Ismael