I'm using the Product Vendors plugin for WooCommerce (https://woocommerce.com/products/product-vendors/).
I'm also creating a custom loop for a page builder module, which pulls products by ID.
Using the above, I'm able to pull the WC_Product data using:
$thisProduct = new WC_product($id);
From there, I can get the price/product image etc using
$image = $thisProduct->get_image();
$price = $thisProduct->get_price();
Does anyone know how I would be able to pull the Vendors name? I've one a var_dump on the full $thisProduct, and it doesn't contain the vendor name anywhere within.
Any help would be much appreciated!
Thanks guys.