Answers for "product attributes in woocomerce"

6

get product price woocommerce of specific id

$product = wc_get_product( $post_id );

$product->get_regular_price();
$product->get_sale_price();
$product->get_price();
Posted by: Guest on February-11-2021
3

is product page woocommerce

if( is_product() ) {
	// do something
} else {
 
}
Posted by: Guest on October-14-2021

Code answers related to "product attributes in woocomerce"

Browse Popular Code Answers by Language