WP ALL导入自定义快速附件

时间:2019-08-08 06:57:43

标签: wordpress woocommerce wpallimport

我正在尝试创建一个插件来计算我的产品价格

我花了几天时间解决这个问题,找不到任何东西

所以我正在寻求建议

$my_addon->add_field( '_cost_price', 'Cost Price', 'text' );

$my_addon->add_field( '_rpbffwcmarkup1', 'Product Cost Price mark up1', 'text');

$my_addon->add_field( '_rpbffwcmarkup2', 'Product Cost Price Mark up2', 'text' );

function markup($price) {
    $markup1 =  $_POST['_rpbffwcmarkup1']; // get the contents of the field
    $markup2 =  $_POST['_rpbffwcmarkup2'];// get the contents of the field
    $$price =  $_POST['_cost_price']; // get the cost price
    return ($price*$markup1)*$markup2; // return the formula to wp all import "woocommerce" in the regular price field
}

检查页面的源代码时,它显示_rpbffwcmarkup1

<input type="text" name="wcdpue-addon[_rpbffwcmarkup1]" id="wcdpue-addon_rpbffwcmarkup1" value="1.5" style="width:100%;">

我在点击附加组件的预览价格时出现错误,而是显示为“ 0”

代替价格或运行导入时

我认为它不返回值

0 个答案:

没有答案