I disable microdata plugin but nothing change...except I lost a few css proprieties on my template
Picture in attached files.
I always use this ACL configuration and microdata plugin before and I had not this problem??
Edit :
I checked on the plugin and there is difference betwenn hikashop version
2.5.0
$product_page_parts[1] = preg_replace($pattern,$replacement,$product_page_parts[1],1);
$pattern='/class="hikashop_product_price_main"(.*)class="hikashop_product_price hikashop_product_price_0/msU';
$replacement='class="hikashop_product_price_main" $1 itemprop="price" class="hikashop_product_price hikashop_product_price_0';
$product_page_parts[1] = preg_replace($pattern,$replacement,$product_page_parts[1],1);
2.6.1
$product_page_parts[1] = preg_replace($pattern,$replacement,$product_page_parts[1],1);
$pattern='/class="hikashop_product_price_main"(.*)class="hikashop_product_price hikashop_product_price_0(.*)>(.*)<\/span>/msU';
preg_match($pattern, $product_page_parts[1] , $matches);
if(isset($matches[3])){
$mainPrice = str_replace(array(' ',$data->currency_symbol),'',preg_replace('/\((.*)\)/','',$matches[3]));
$replacement = 'class="hikashop_product_price_main" $1 class="hikashop_product_price hikashop_product_price_0$2><span itemprop="price" style="display: none;">'.$mainPrice.'</span>$3</span>';
$product_page_parts[1] = preg_replace($pattern,$replacement,$product_page_parts[1],1);
}
$3 ??