WooCommerce: Anzeigereihenfolge der Produktkurzbeschreibung und des Preises ändern
1 Antworten
- Stimmen
-
- 2015-10-27
Wenn Sie sich
woocommerce/templates/content-single-product.php
ansehen,werden Siefeststellen,dass die Produktübersichtmit Hooksmit unterschiedlichen Prioritätenerstellt wird.Hierist der relevante Abschnitt:
<?php /** * woocommerce_single_product_summary hook * * @hooked woocommerce_template_single_title - 5 * @hooked woocommerce_template_single_rating - 10 * @hooked woocommerce_template_single_price - 10 * @hooked woocommerce_template_single_excerpt - 20 * @hooked woocommerce_template_single_add_to_cart - 30 * @hooked woocommerce_template_single_meta - 40 * @hooked woocommerce_template_single_sharing - 50 */ do_action( 'woocommerce_single_product_summary' ); ?>
Der Preis hateine Priorität von 10,der Auszug hateine Priorität von 20. Um sie auszutauschen,ändern Sie die Prioritäten,indem Sie die Aktionenin der
functions.php
Ihres untergeordneten Themas ändern.So:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 10 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 20 );
If you look at
woocommerce/templates/content-single-product.php
you'll see that the product summary is constructed using hooks with different priorities.Here's the relevant section:
<?php /** * woocommerce_single_product_summary hook * * @hooked woocommerce_template_single_title - 5 * @hooked woocommerce_template_single_rating - 10 * @hooked woocommerce_template_single_price - 10 * @hooked woocommerce_template_single_excerpt - 20 * @hooked woocommerce_template_single_add_to_cart - 30 * @hooked woocommerce_template_single_meta - 40 * @hooked woocommerce_template_single_sharing - 50 */ do_action( 'woocommerce_single_product_summary' ); ?>
The price has a priority of 10, the excerpt has a priority of 20. To swap them around, change the priorities by modifying the actions in your child theme's
functions.php
.Like this:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 10 ); add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 20 );
-
Du ROCK!Dankefür dietolle Erklärung und Lösung :)You ROCK! Thanks for the awesome explanation and solution :)
- 6
- 2015-10-27
- Kane
Ichmöchte den Preis "$ 4.99 - $ 24.99" unter die Produktkurzbeschreibung "Ernsthaft. Trinken Sieeine Tasse davon ..."
verschiebenNSFW-Bild unten (Sprachefür Erwachsene)
Irgendwelche Ideen,wie dasgeht?Ich habebereitsein untergeordnetes Thema,bin mir abernicht sicher,welche WooCommerce-Datei überschrieben werdenmuss.