gpt4 book ai didi

wordpress - 按数量和重量在 WooCommerce 中设置产品价格

转载 作者:行者123 更新时间:2023-12-04 18:05:45 37 4
gpt4 key购买 nike

我找不到如何使用 WooCommerce 插件在我的 WordPress 网上商店中自定义我的定价。

我想要:

  • A条12欧元/公斤
  • B条3欧元/件
  • C 条 12€/colli

请问这怎么可能?

问候 Vim

最佳答案

你可以在你的 functions.php 中添加它

// Filter on cart price
add_filter( 'woocommerce_cart_product_price' , 'custom_price', 10, 2);
// Filter on product page
add_filter( 'woocommerce_get_price_html' , 'custom_price', 10, 2);

function custom_price( $price, WC_Product $product ){

// You can store the unit as custom fields
$unit = get_post_meta( $product->id, 'unit', true );

// Then concatenate with the price
$price .= $unit;

return $price;
}

然后你必须在每个产品上添加一个自定义字段: Custom Fields

关于wordpress - 按数量和重量在 WooCommerce 中设置产品价格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27075233/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com