如何在WordPress(WooCommerce)中添加价格和简短描述之间的文本?

ix0qys7i  于 2023-02-11  发布在  WordPress
关注(0)|答案(1)|浏览(145)

我有下一个问题。我需要添加文本后的产品价格和简短说明之前。这段文字可以添加在简短说明的第一行像一个选项。文字,我想添加显示相同的价格没有3%的本身。
我把这段代码放在我当前主题的function.php中:

add_action('woocommerce_short_description','wire_price_3',11);
   function wire_price_3()
   {
        $product = wc_get_product();
    $product_price = $product->get_regular_price();
        $percent_3 = ($price_p *3)/100;
        $percet_price = $product_price - $percent_3;
    echo "<h1>Wire price: {$percet_price}</h1>";
    echo "\n";
   }

Everythring运行良好,但当我添加此代码时,我的结帐页面变得一团糟,并显示一些代码。
所以,我的问题是如何找到这个问题的解决方案?顺便说一句,我怎么才能让你的文本显示这个文本,例如在绿色。
谢谢你。

kqqjbcuj

kqqjbcuj1#

我已经改变你的代码,请尝试如果它工作正常

add_action( 'woocommerce_single_product_summary', 'mx_price_per_installments_w_fee', 30 );
function mx_price_per_installments_w_fee() {
    global $product;
    $price = (float) $product->get_price();
    $feeextended = (3/100) * $price;
    $price4extendedinstallments = $price - $feeextended;
   echo "
   <div id='installments-container'>
       <div id='installments-text'>
        <div class='bold'>Wire price: <span class='success'>". number_format($price4extendedinstallments, 2, ",", ".") ." €.</span></div>
       </div>
   </div>
   ";
}

相关问题