如何删除或重新定位添加到购物车消息

时间:2016-05-11 08:17:23

标签: wordpress woocommerce

我正在尝试重新定位Woocommerce消息

  

“X产品”已添加到您的购物车中。

但没有成功。我试过像这样的钩子

remove_action( 'woocommerce_before_single_product', 'wc_print_notices', 10 );
add_action( 'woocommerce_before_single_product_summary', 'wc_print_notices', 10 );

以上根本不起作用。

任何建议都将受到赞赏。

修改

我还尝试直接在底部某处的content-single-product.php文件中调用模板标记

<?php wc_print_notices(); ?>

仍未在所需位置显示消息。

<div class="summary entry-summary">

<?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' );
?>

</div><!-- .summary -->

<php wc_print_notices();?>

1 个答案:

答案 0 :(得分:0)

要删除它,你可以用CSS隐藏它:

.woocommerce-message, .woocommerce-info { display:none; }

或重新定位:

//Remove Message:
remove_action( 'woocommerce_before_single_product', 'woocommerce_show_messages' );

//Show message call this function where you want the message displayed
woocommerce_show_messages();