Torann / json-ld

Extremely simple JSON-LD generator.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Product.php setIsSimilarToAttributes deletes "offers"

trebaxa opened this issue · comments

We have to modifiy this line:
$properties = array_filter($properties, 'strlen');

Because this line removes all arrays from product, which es added bei isSimilarTo property. For example: it removes "offers" , which is required for valid structured data.

Fix could be:
$properties= array_filter($properties, function($var) {
return !empty($var);
});