2014-11-22 51 views
1

我不知道如何使用WooCommerce插件在我的WordPress WebShop中定製我的定價。WordPress的價格/千克/件

我想有: 第一個12€/公斤 B條3€/件 C條12€/科利

這怎麼可能嗎?

迎接 維姆

回答

1

您可以在您的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