$item['free_gift'], 'fgc_quantity' => $item['fgc_quantity'], ) ); } return $cart_item_data; } /** * Changes the price on the gift item to be zero. * Hooked to the filter 'pllwc_translate_cart_item'. * * @since 1.4 * * @param array $item Cart item. * @return array */ public function translate_cart_item( $item ) { return empty( $item['data'] ) ? $item : WC_Free_Gift_Coupons::add_cart_item( $item ); } }