WooCommerce:製品の簡単な説明と価格の表示順序を変更します
1 回答
- 投票
-
- 2015-10-27
woocommerce/templates/content-single-product.php
を見ると、製品の概要がさまざまな優先度のフックを使用して作成されていることがわかります.関連するセクションは次のとおりです:
<?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' ); ?>
価格の優先度は10、抜粋の優先度は20です.それらを入れ替えるには、子テーマの
functions.php
のアクションを変更して優先度を変更します.このように:
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 );
-
あなたはロック!素晴らしい説明と解決策をありがとう:)You ROCK! Thanks for the awesome explanation and solution :)
- 6
- 2015-10-27
- Kane
価格「$ 4.99– $ 24.99」を、製品の簡単な説明「真剣に.これを1杯飲んでください...」の下に移動したいと思います.
以下のNSFW画像(成人向け)
これを行う方法について何かアイデアはありますか?すでに子テーマがありますが、どのWooCommerceファイルをオーバーライドする必要があるのかわかりません.