Title: Problem with Commissions WCFM
Last modified: May 22, 2020

---

# Problem with Commissions WCFM

 *  Resolved [atilax2020](https://wordpress.org/support/users/atilax2020/)
 * (@atilax2020)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/)
 * Hi,
 * I have a WCFM webpage. The commissions of admin are:
 * Commision = X % of order without taxes ( order + shipping)
 * Total commision = commission + taxes of commission ( 21% of commission )
 * The shipping is always a price fixed for the total of order ( 5€, 4€…) + 21% 
   of taxes
 * When i have a order without shipping or shipping=0 all is perfect.
 * But when i have a shipping with cost the commissions are bad.
 * Here is my commission settings: [https://ibb.co/kByyQ8m](https://ibb.co/kByyQ8m)
 * Order without shipping: [https://ibb.co/6rcY1vQ](https://ibb.co/6rcY1vQ)
 * Order with shipping: [https://ibb.co/svxGgz2](https://ibb.co/svxGgz2)
 * In the first case ( without shipping ) the commission is:
 * 24,91 * (10/100) ( commission %) + 2,491 * (21/100) (taxes of commission 21%)
   = 3,01
 * In the second case ( with shipping 5€ fix + 21% taxes of shipping), the commission
   must be:
 * (24,91 + 5) * (10/100) ( commission %) + commission % * (21/100) (taxes of commission
   21%)
 * 2,991 + 2,991 * (21/100)
 * 2,991 + 0,628 = 3,619
 * Any idea???
 * Any solution???
 * Thanks

Viewing 13 replies - 1 through 13 (of 13 total)

 *  Plugin Author [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * (@wclovers)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-12880759)
 * Hi,
 * > (24,91 + 5) * (10/100) ( commission %) + commission % * (21/100) (taxes of 
   > commission 21%)
 * – Well, WCFM does not apply commission rule on Shipping and Tax cost, those are
   either goes to Admin or Vendor. Look commission has those options – [https://ibb.co/kByyQ8m](https://ibb.co/kByyQ8m)
 * But if you want apply commission rule on shipping cost that’s also possible. 
   You have to add this line to your site –
 *     ```
       add_filter( 'wcfmmp_is_allow_commission_on_tax', '__return_true' );
       add_filter( 'wcfmmp_is_allow_commission_on_shipping', '__return_true' );
       ```
   
 * Add custom code(s) to your child theme’s functions.php
    In case you do not have
   child theme then add those using this plugin – https://wordpress.org/plugins/
   code-snippets/
 * Thank You
 *  Thread Starter [atilax2020](https://wordpress.org/support/users/atilax2020/)
 * (@atilax2020)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-12881785)
 * If i have comission of the order ( without taxes) excluding shipping ???
 * Because it runs ok if shipping is free shipping or local pickup.
 * But if shipping has cost, the commission is bad.
 * i don’t know what calcs is doing.
 * I only need the same with shipping cost and without shipping or free shipping:
 * % commission + % taxes of commission
 * example:
 * subtotal = 120
    comission % = 10 taxes of commision = 21
 * Commission = 120 * (10/100) = 12
    Tax of Commision = 12 * (21/100) = 2,52 Total
   Commision = 12 + 2,52 = 14,52
 * If the order has shipping with cost, the commision should be the same. But it’s
   not…
 * i don’t know why. But i need it.
 * Thanks
 *  Plugin Author [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * (@wclovers)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-12891636)
 * Create an order with same product and shipping cost, show me screenshot for that.
   I have to check what commission it’s generating for you.
 * Between, where you have added those lines?
 *  Thread Starter [atilax2020](https://wordpress.org/support/users/atilax2020/)
 * (@atilax2020)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-12892359)
 * Hi,
 * I added your lines in functions.php in my theme child.
 * I put here the screenshots of the orders. One order without shipping ( local 
   pickup ). Here the commission is perfect. And one order with the same products,
   but with shipping cost ( 5€+tax of shipping(21%) ). And here the commissions 
   is bad.
 * The configuration: [https://ibb.co/5F13B36](https://ibb.co/5F13B36)
 * Commission = 10%
    taxes of commission = 21%
 * Order without shipping or shipping cost = 0 : [https://ibb.co/HKcMC9d](https://ibb.co/HKcMC9d)
 * Order with shipping with cost ( 5€ + 21% taxes ): [https://ibb.co/HzqnmmM](https://ibb.co/HzqnmmM)
 * Thank you very much
 *  Thread Starter [atilax2020](https://wordpress.org/support/users/atilax2020/)
 * (@atilax2020)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-12893448)
 * Sorry the last post is bad
 * Here is the good tests.
 * My configuration is: [https://ibb.co/5F13B36](https://ibb.co/5F13B36)
 * Here is my orders with the same products. I did 2 cases.
 * 1-. In the functions.php of my child theme i added:
 * add_filter( ‘wcfmmp_is_allow_commission_on_tax’, ‘__return_true’ );
    add_filter(‘
   wcfmmp_is_allow_commission_on_shipping’, ‘__return_true’ );
 * I have 2 orders. One without shipping ( local pickup ) and one with shipping 
   with cost ( 5€ + taxes (21%))
 * Order without shipping ( Local Pickup ): [https://ibb.co/GxKZ3cf](https://ibb.co/GxKZ3cf)
 * Order with shipping ( 5€+taxes): [https://ibb.co/RgSWY9n](https://ibb.co/RgSWY9n)
 * This orders commisions are BAD.
 * 2-. In the functions.php of my child theme i added:
 * add_filter( ‘wcfmmp_is_allow_commission_on_tax’, ‘__return_false’ );
    add_filter(‘
   wcfmmp_is_allow_commission_on_shipping’, ‘__return_false’ );
 * I have 2 orders. One without shipping ( local pickup ) and one with shipping 
   with cost ( 5€ + taxes (21%))
 * Order without shipping ( Local Pickup ): [https://ibb.co/Tt7J27J](https://ibb.co/Tt7J27J)
 * Order with shipping ( 5€+taxes): [https://ibb.co/8xmf2T9](https://ibb.co/8xmf2T9)
 * —————————————————————————–
 * Only the order without shipping in case 2 is OK.
 * —————————————————————————–
 * The calc correct is:
 * Commission % = 10%
 * Tax of commission = 21%
 * subtotal = 34,45
 * commission = 34,45 * (10/100) = 3,45
 * Commission tax = 3,45 * (21/100) = 0,723
 * Total Commission = 3,45 + 0,723 = 4,17
 * —————————————————————————-
 * I need the orders without shipping and with shipping are the same, like the calc.
 * Thank you very much 😉
 *  Plugin Author [WC Lovers](https://wordpress.org/support/users/wclovers/)
 * (@wclovers)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-12908903)
 * Hi,
 * > The calc correct is:
   > Commission % = 10%
   > Tax of commission = 21%
   > subtotal = 34,45
   > commission = 34,45 * (10/100) = 3,45
   > Commission tax = 3,45 * (21/100) = 0,723
   > Total Commission = 3,45 + 0,723 = 4,17
 *  – Show me such breakdown for an order with shipping.
 * Thank You
 *  [danesmarc](https://wordpress.org/support/users/danesmarc/)
 * (@danesmarc)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-12909333)
 * Buenas, yo tengo el mismo problema, pero, no necesito aplicar sobre envió.
    osea
   quier aplicar mi comisión sobre el precio base y mi impuesto sobre mi comisión!
   esto como se puede resolver? con un código? Espero que me puedan ayudar, saludos
   y gracias
 *  Thread Starter [atilax2020](https://wordpress.org/support/users/atilax2020/)
 * (@atilax2020)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-12909430)
 * I think i did it. I change code in the core of WCFM. I am going to do some tests
   to see if really works fine.
 * danesmarc, where are you from???
 * Creo que lo he resuelto. Tocando código… Voy a a hacer unas pruebas haber si 
   realmente funciona.
 * danesmarc de donde eres???
 *  [danesmarc](https://wordpress.org/support/users/danesmarc/)
 * (@danesmarc)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-12909491)
 * Hola atilax2020 de España.
    Nose como funciona muy bien todo esto, soy bastante
   nuevo en el tema. Yo quiero hacer justo esto que esta super bies explicado, pero
   nose como!
 * Comisión% = 10%
 * Impuesto de comisión = 21%
 * subtotal = 34,45
 * comisión = 34,45 * (10/100) = 3,45
 * Impuesto de comisión = 3,45 * (21/100) = 0,723
 * Comisión total = 3,45 + 0,723 = 4,17
 * Si me pueden ayudar os lo agradecere muchsimo
    Saludos
 *  [danesmarc](https://wordpress.org/support/users/danesmarc/)
 * (@danesmarc)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-12910343)
 * Ok gracias, me he creado una cuenta en el canal de Telegram he puesto el enlace
   pero no se que tengo que hacer ahora!?
 *  [bebewazza](https://wordpress.org/support/users/bebewazza/)
 * (@bebewazza)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-13594444)
 * [@atilax2020](https://wordpress.org/support/users/atilax2020/) hey did you fix
   this ? facing the same problem here!
 *  [sectionsix](https://wordpress.org/support/users/sectionsix/)
 * (@sectionsix)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-13639576)
 * [@atilax2020](https://wordpress.org/support/users/atilax2020/) [@bebewazza](https://wordpress.org/support/users/bebewazza/)
   [@danesmarc](https://wordpress.org/support/users/danesmarc/)
 * Hi all – did any of you find a fix? We’re going a bit crazy over here trying 
   to get this working!
 *  [kenza15](https://wordpress.org/support/users/kenza15/)
 * (@kenza15)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-14146738)
 * hello ,
    i need to display to seller payout / vendor earning at the moment the
   seller list his product and define the selling price ( before submitting ) a 
   dynamique calculated field should display the seller earning on this product.
   Can i have some help here please

Viewing 13 replies - 1 through 13 (of 13 total)

The topic ‘Problem with Commissions WCFM’ is closed to new replies.

 * ![](https://ps.w.org/wc-multivendor-marketplace/assets/icon-256x256.gif?rev=2611991)
 * [WCFM Marketplace - Multivendor Marketplace for WooCommerce](https://wordpress.org/plugins/wc-multivendor-marketplace/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wc-multivendor-marketplace/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wc-multivendor-marketplace/)
 * [Active Topics](https://wordpress.org/support/plugin/wc-multivendor-marketplace/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wc-multivendor-marketplace/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wc-multivendor-marketplace/reviews/)

 * 13 replies
 * 6 participants
 * Last reply from: [kenza15](https://wordpress.org/support/users/kenza15/)
 * Last activity: [5 years, 2 months ago](https://wordpress.org/support/topic/problem-with-commissions-wcfm/#post-14146738)
 * Status: resolved