whithdrawal incoice feature

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 2 reply threads
  • Author
    Posts
    • #101263
      SoWoS
      Participant

      Hello,
      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.

    • #101777
      SoWoS
      Participant

      Hi,

      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

    • #105920
      WCFM Forum
      Keymaster

      HI,

      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

Viewing 2 reply threads
  • You must be logged in to reply to this topic.