paulbeng Posted May 30, 2019 Share Posted May 30, 2019 Hi, How to get wholesale price from php function? I can get sale price w/o VAT from $prestaProduct->getPriceStatic($product_id, false); But how to get wholesale price w/o VAT? Thanks. Link to comment Share on other sites More sharing options...
tdsoft Posted May 31, 2019 Share Posted May 31, 2019 You can directly access property of product object ex: $p = new Product (1); echo $p->wholesale_price; 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now