Woocommerce,在产品页面上删除价格
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Woocommerce,在产品页面上删除价格相关的知识,希望对你有一定的参考价值。
新年快乐:)
我想稍微调高价格和add2cart按钮,但是不知何故无法删除第二个价格...不确定是优先级还是主题使用它自己的价格。至少在主题方面,我在他们的文档中没有找到任何关于此的内容。
这是我所做的:
/* CART BUTTON */
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30);
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 12);
/* PRICE */
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_price', 30);
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_price', 8);
用它运作的推车。但不包含价格。
这是示例的链接:https://staging-lemanja.kinsta.cloud/produkt/paper-light-cape-seide/
任何想法?
谢谢!
答案
add_filter( 'woocommerce_variable_sale_price_html', 'mytheme_remove_prices', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'mytheme_remove_prices', 10, 2 );
add_filter( 'woocommerce_get_price_html', 'mytheme_remove_prices', 10, 2 );
function mytheme_remove_prices( $price, $product )
if ( ! is_admin() ) $price = '';
return $price;
另一答案
span.price
display: none !important;
以上是关于Woocommerce,在产品页面上删除价格的主要内容,如果未能解决你的问题,请参考以下文章
php [WooCommerce Core]删除WooCommerce页面上的面包屑(On Woo主题)
php [WooCommerce Core]删除WooCommerce页面上的面包屑(On Woo主题)