【发布时间】:2020-08-12 18:03:26
【问题描述】:
我是 dokan 用户,在 dokan 中,您可以将运费设置为供应商或管理员。 主要是我想为供应商提供选择的可能性(所以所有的运费都由供应商承担)
- 统一运费
- 收集
- 免费送货
我想添加:(添加它不是问题)
- ADMIN 送货服务 ---> 费用必须由管理员而非供应商承担。
那么知道如何在我的收入中而不是向供应商收取管理员交付服务费吗?
'name' => 'shipping_fee_recipient',
'label' => __( 'Shipping Fee Recipient', 'dokan-lite' ),
'desc' => __( 'Who will be receiving the Shipping fees', 'dokan-lite' ),
'type' => 'select',
'options' => array( 'seller' => __( 'Vendor', 'dokan-lite' ), 'admin' => __( 'Admin', 'dokan-lite' ) ),
'default' => 'seller'
), ```
--> this is the function when i can choose admin or vendor "function file in dokan"
【问题讨论】:
-
您是否要求管理员设置运费而不是供应商?