Ottieni il prezzo del prodotto woocommerce per id
1 risposta
- voti
-
- 2018-03-08
Èpossibile creare un oggettoprodotto utilizzando la seguentefunzione:
$product = wc_get_product( $post_id );
Dopodichépotrai accedere atuttii dati delprodotto.Tuttii metodi disponibilipossonoesseretrovati qui ,ma quelli cheti servono sono:
$product->get_regular_price(); $product->get_sale_price(); $product->get_price();
You can create a product object using the following function:
$product = wc_get_product( $post_id );
And after that you will be able to access to all product's data. All available methods can be found here, but the ones you need are:
$product->get_regular_price(); $product->get_sale_price(); $product->get_price();
-
grazieper la risposta.lo vedogià.controllando dinuovo.maper questo hobisogno di cambiare lamiafunzione shortcodein modo diverso.ho ragione?c'è comunque dafare all'interno delmio shortcodethanks for reply. i look that already. checking again. but for that i need to change my shortcode function different way. am i right ? is there anyway to do inside my shortcode
- 0
- 2018-03-08
- Accore LTD
-
Basta aggiungere "$product=wc_get_product ($post_id);" da qualcheparte sopra $pricee impostare "$price=$product->get_price ()".Just add `$product = wc_get_product( $post_id );` somewhere above $price and set `$price = $product->get_price()`.
- 1
- 2018-03-08
- Boris Kuzmanov
-
Questo habloccatoilmio localeThis crashed my local
- 1
- 2018-08-23
- Ashwani Shukla
Creo uno shortcodeper ottenereiltitolo,l'immaginee ilprezzo delprodotto.Ricevotuttii titoli,i linke leimmagini correttamentemanon ottengoilprezzo.mailproblema è
$price = get_the_price($post_id);
immagino che questafunzionenon sia correttaqualsiasiidea su come ottenereilprezzo ora.
Grazie