WooCommerce: Comment éditer le get_price_html
2 réponses
- votes
-
- 2013-01-27
Lesfichiers Coreet Pluginne doiventjamais êtremodifiés directement,cartoutemise àjourpourrait écraser vosmodifications. Si vous regardez dans la source WooCommerce laméthode
get_price_html
,ilexiste un certainnombre de filtres disponiblespourmodifier la sortie de lafonction.Voir
add_filter
dans Codexpourplus d'informations sur l'ajout defiltres àapply_filters
appels.De
get_price_html
dansclass-wc-product
:return apply_filters('woocommerce_get_price_html', $price, $this);
Alorspour ajouter votreproprefiltre:
add_filter( 'woocommerce_get_price_html', 'wpa83367_price_html', 100, 2 ); function wpa83367_price_html( $price, $product ){ return 'Was:' . str_replace( '<ins>', ' Now:<ins>', $price ); }
Core and plugin files should never be edited directly, as any updates could overwrite your changes. If you look in WooCommerce source at the
get_price_html
method, there are a number of filters available to modify the output of the function.See
add_filter
in Codex for more info on adding filters toapply_filters
calls.From
get_price_html
inclass-wc-product
:return apply_filters('woocommerce_get_price_html', $price, $this);
So to add your own filter:
add_filter( 'woocommerce_get_price_html', 'wpa83367_price_html', 100, 2 ); function wpa83367_price_html( $price, $product ){ return 'Was:' . str_replace( '<ins>', ' Now:<ins>', $price ); }
-
Mercipour la réponse,aufaitpourquoi lorsqueje supprime le contenu de lafonctionprincipale,il renvoietoujours la sortie comme d'habitudeThanks for the answer, by the way why when I delete the contents of the main function it still returns the output as normal
- 0
- 2013-01-27
- Lucky Luke
-
Donc,disons s'il y aeu une venteet que celame rapporte `
2 ££ 1 `,commentpuis-je changer celaen `Était:2 £Maintenant: 1 £ `avec unfiltre?So lets say if there was a sale on and it returns me `£2£1`, how can i change that into `Was:£2Now:£1` with a filter?- 1
- 2013-01-27
- Lucky Luke
-
pas sûr,pastropfamilier avec WooCommerce,peut-être qu'une autre classe l'étend.voir lamodification ci-dessuspour votre deuxième question.not sure, not too familiar with WooCommerce, perhaps another class extends it. see edit above for your second question.
- 0
- 2013-01-27
- Milo
-
Brill,;),une aideprécieuseBrill, ;), great help
- 0
- 2013-01-27
- Lucky Luke
-
J'essaie de savoir ce qui sepasse dans lefiltrepar défaut `woocommerce_get_price_html`pour` $price`.Dansmon site,woocommerce affiche 0 $pour lesproduitsgratuits au lieu de `Gratuit! 'I am trying to know that what happening in default `woocommerce_get_price_html` filter for `$price`. In my site,woocommerce shows 0$ for free products instead `Free!`
- 0
- 2016-12-07
- SKMohammadi
-
Quelfichier a cettefonction?Jene trouvepas lefichier.MerciWhich file has that function? I can't find the file. Thanks
- 0
- 2020-06-19
- Si8
-
- 2014-01-03
function wpa83368_price_html( $price,$product ){ // return $product->price; if ( $product->price > 0 ) { if ( $product->price && isset( $product->regular_price ) ) { $from = $product->regular_price; $to = $product->price; return '<div class="old-colt"><del>'. ( ( is_numeric( $from ) ) ? woocommerce_price( $from ) : $from ) .' Retail </del> | </div><div class="live-colst">'.( ( is_numeric( $to ) ) ? woocommerce_price( $to ) : $to ) .'Our Price</div>'; } else { $to = $product->price; return '<div class="live-colst">' . ( ( is_numeric( $to ) ) ? woocommerce_price( $to ) : $to ) . 'Our Price</div>'; } } else { return '<div class="live-colst">0 Our Price</div>'; } }
function wpa83368_price_html( $price,$product ){ // return $product->price; if ( $product->price > 0 ) { if ( $product->price && isset( $product->regular_price ) ) { $from = $product->regular_price; $to = $product->price; return '<div class="old-colt"><del>'. ( ( is_numeric( $from ) ) ? woocommerce_price( $from ) : $from ) .' Retail </del> | </div><div class="live-colst">'.( ( is_numeric( $to ) ) ? woocommerce_price( $to ) : $to ) .'Our Price</div>'; } else { $to = $product->price; return '<div class="live-colst">' . ( ( is_numeric( $to ) ) ? woocommerce_price( $to ) : $to ) . 'Our Price</div>'; } } else { return '<div class="live-colst">0 Our Price</div>'; } }
-
Même si votre codepeutfonctionner (etje n'ai aucune raison depenser que cen'estpas le cas),il s'agit d'un site de questions/réponses,pas d'un référentiel de code,il vaut doncmieuxpartager l'expertiseet les connaissancesexpliquant votre code,au lieu de simplement écrire du code sansexplicationni de commentairesen ligne ...Even if your code can work (and I have no reason to think it doesn't) this is a Q/A site, not a code repository so it's better share expertice and knowledge explaining your code, instead of just write code with no explaination nor inline comments...
- 6
- 2014-01-03
- gmazzap
-
le code utilise également despropriétés d'objet quine sontpasbonnes.the code also uses object properties which is not good.
- 0
- 2018-05-08
- Svetoslav Marinov
J'essaie demodifier la valeur duprix d'un seulproduit.
Dans
single-product/price.php
,il y a un appel demodèle à$product->get_price_html
.Commentpuis-jemodifier cettefonction/méthodepour changer lafaçon dont le HTMLestprésenté?Pour lemoment,même sije supprimetout le contenu de lafonction située dans
class-wc-product
,il affichetoujoursmiraculeusement?Quelqu'un saitpourquoi?