json-ld icon indicating copy to clipboard operation
json-ld copied to clipboard

Product.php setIsSimilarToAttributes deletes "offers"

Open trebaxa opened this issue 5 years ago • 0 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); });

trebaxa avatar Jun 16 '20 14:06 trebaxa