Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Ultimate › whithdrawal incoice feature
- This topic has 2 replies, 2 voices, and was last updated 5 years ago by
WCFM Forum.
- AuthorPosts
- January 7, 2020 at 6:51 pm #101263
SoWoS
ParticipantHello,
I want to show the bank charges on the withdrawal invoices, but these charges are part of the administrator commission:
Bank fees = 2.9% + 0.35 €
Commission fees = 10%
Administrator fees configured = bank fees + commission fees = 12.9% + 0.35 €
Here is the code added to whithdrawal-incoice.php:<tr class=”no-borders”>
<td style=”text-align:right;float:right;”><?php _e( ‘Frais bancaire’, ‘wc-frontend-manager’ ); ?></td>
<td style=”text-align:right;float:right;”><?php echo ‘-‘ . wc_price( ($item_total * 2.9 / 100 + 0.35), array( ‘currency’ => $pay_currency ) ); ?></td>
</tr>The problem is that when the vendor requests a withdrawal for several orders, the fixed commission is applied only once.
Is it possible to apply the fixed commission for each order of a withdrawal request?Example:
<tr class=”no-borders”>
<td style=”text-align:right;float:right;”><?php _e( ‘Frais bancaire’, ‘wc-frontend-manager’ ); ?></td>
<td style=”text-align:right;float:right;”><?php echo ‘-‘ . wc_price( ($item_total * 2.9 / 100 + (0.35 * number of orders), array( ‘currency’ => $pay_currency ) ); ?></td>
</tr>Thank you.
- January 12, 2020 at 7:35 pm #101777
SoWoS
ParticipantHi,
I did not get a response from you, neither on the forum nor on a previous subject of priority support … Is there a problem?
Thx
- February 6, 2020 at 10:37 pm #105920
WCFM Forum
MemberHI,
I am really sorry for delayed response.
Is it possible to apply the fixed commission for each order of a withdrawal request?
– Sorry, this is not possible. Commission generated during order processing. Withdrawal request generate later.
Commission always calculate for each order item.
Only withdrawal charge calculate on total withdrawal amount.
Well, as you are our premium user then may contact us from here – https://wclovers.com/premium-support/
Thank You
- AuthorPosts
- You must be logged in to reply to this topic.