在产品图片下显示产品价格

时间:2017-01-24 06:48:56

标签: php wordpress woocommerce product hook-woocommerce

在WooCommerce中,我想在图像下显示产品价格。我在 functions.php 中使用了一些代码,但是没有工作,我们将不胜感激任何帮助。感谢

add_action( 'woocommerce_product_thumbnails','woocommerce_single_variation',30 );

enter image description here

1 个答案:

答案 0 :(得分:2)

为此你需要:

删除 woocommerce_template_single_price 钩子中的 woocommerce_single_product_summary

/**
 * 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
 */

将其添加到 woocommerce_before_single_product_summary 钩子中:

/**
 * woocommerce_before_single_product_summary hook.
 *
 * @hooked woocommerce_show_product_sale_flash - 10
 * @hooked woocommerce_show_product_images - 20
 */

所以你的代码将是:

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
add_action( 'woocommerce_product_thumbnails','woocommerce_template_single_price', 30 );

此代码位于活动子主题(或主题)的function.php文件中或任何插件文件中。

此代码经过测试并有效。