Hi,
I am using google products plugin to feed facebook catalog. All works fine with only 1 issue.
As plugin do not support variants i need to get main product id.
Using this code gives id per product variant:
$ids = array();
foreach($this->order->products as $product){
$ids[]=$product->product_id;
}
echo implode(',',$ids);
How can i echo main product id?
facebook looks like this:
3 items purchased
content_ids: ["5226,5219,5224"]
5226 and 5224 are variants of same product.
I hope you see the issue.
Thanks