如何在 Woocommerce 缺货产品文本下方添加单个产品的 Woocommerce 产品价格

我有一个 woocommerce 产品页面,其中仅显示可用性“缺货”消息。如何在该文本下方显示带有货币的格式化价格?

我想我需要插入以下内容

<p class="price"><span class="woocommerce-Price-amount amount">(PRODUCT PRICE) &nbsp;<span class="woocommerce-Price-currencySymbol">€</span></span></p>

但我不知道怎么办

所有简单的产品都会发生这种情况。作为设置,库存管理被禁用。不知道为什么不显示价格。我试图禁用一些可能与此相关的插件。就像 wooocommerce 附加组件或停产的产品插件。我使用 wp-火箭。产品链接可能对您有帮助

https://bestfamily.gr/product/steelseries-headset-arctis-pro-wireless-bt/


一只甜甜圈
浏览 137回答 1
1回答

胡子哥哥

你应该可以使用类似的东西<?phpglobal $product;$price = $product->get_price();<p class="price"><span class="woocommerce-Price-amount amount"><?php echo $price; ?> &nbsp;<span class="woocommerce-Price-currencySymbol">€</span></span></p>您必须将其放入自定义模板中。如果您不使用,则可以使用挂钩将其显示在“添加到购物车”按钮下方,但据我所知,没有任何一种“库存状态后”挂钩。add_action( 'woocommerce_after_add_to_cart_button', 'add_price_below_button' );function add_price_below_button() {&nbsp; &nbsp; global $product;&nbsp; &nbsp; $price = $product->get_price();&nbsp; &nbsp; echo '<p class="price"><span class="woocommerce-Price-amount amount">' . $price . ' &nbsp;<span class="woocommerce-Price-currencySymbol">€</span></span></p>';}如果您只想在产品缺货时显示价格:add_action( 'woocommerce_after_add_to_cart_button', 'add_price_below_button' );function add_price_below_button() {&nbsp; &nbsp; global $product;&nbsp; &nbsp; if ( $product->get_stock_quantity() <= 0 ) {&nbsp; &nbsp; &nbsp; &nbsp; $price = $product->get_price();&nbsp; &nbsp; &nbsp; &nbsp; echo '<p class="price"><span class="woocommerce-Price-amount amount">' . $price . ' &nbsp;<span class="woocommerce-Price-currencySymbol">€</span></span></p>';&nbsp; &nbsp; }}另请注意,如果欧元是您的默认货币,那么您应该可以使用get_woocommerce_currency_symbol()它来显示它。
打开App,查看更多内容
随时随地看视频慕课网APP