Title: Payment setting
Last modified: December 27, 2017

---

# Payment setting

 *  Resolved [kklo](https://wordpress.org/support/users/kklo/)
 * (@kklo)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/)
 * Hi,
 * I have two types of users; Customer and VIP
 * The payment setting for Customer is correct, via paypal
 * I want no VIP payment to appear.
 * How to do this setup?
 * Thanks

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

 *  [dougaitken](https://wordpress.org/support/users/dougaitken/)
 * (@dougaitken)
 * Automattic Happiness Engineer
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9818086)
 * Hi [@kklo](https://wordpress.org/support/users/kklo/)
 * > I want no VIP payment to appear.
 * Are you looking to have all products “free” for the VIP role, or remove payment
   entirely?
 * For different pricing, you could try the [Dynamic Pricing](https://www.woocommerce.com/products/dynamic-pricing/)
   extension, and for removing the payment option for VIP, I suggest the [Conditional Shipping and Payments](https://www.woocommerce.com/products/woocommerce-conditional-shipping-and-payments/)
   extension.
 * Thanks,
 *  Thread Starter [kklo](https://wordpress.org/support/users/kklo/)
 * (@kklo)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9818124)
 * Do they work in woocommerce?
 *  [dougaitken](https://wordpress.org/support/users/dougaitken/)
 * (@dougaitken)
 * Automattic Happiness Engineer
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9818163)
 * Hi [@kklo](https://wordpress.org/support/users/kklo/)
 * Yes – You are posting in the WooCommerce support forum so all advice is related
   to that.
 * As mention in this thread ([https://wordpress.org/support/topic/plugins-130/](https://wordpress.org/support/topic/plugins-130/))
   please only post a question related to the specific plugin.
 * Thanks,
 *  Thread Starter [kklo](https://wordpress.org/support/users/kklo/)
 * (@kklo)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9818831)
 * Hi, dougaitken
 * Is it possible to use “Conditional Shipping and Payments” for user groups?
    Ex.
   Group of users “Customer” the payments are normal through Paypal. Group of VIP
   users there are no payments, they are free products.
 * Thanks
 *  Thread Starter [kklo](https://wordpress.org/support/users/kklo/)
 * (@kklo)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9819898)
 * Or
 * I tried to disable the payment per user in WooCommerce that I found on the internet
   this code, it is more practical:
 *     ```
       function cwp_cash_delivery_disable_cliente( $available_gateways ) {
             global $woocommerce;
   
             if ( isset( $available_gateways['paypal'] ) && current_user_can('Cliente') ) {
                   unset( $available_gateways['paypal'] );
             }
   
             return $available_gateways;
       }
       add_filter( 'woocommerce_available_payment_gateways', 'cwp_cash_delivery_disable_cliente' );
       ```
   
 * but it’s not working.
 * Can someone help me?
 * thank you
 *  Thread Starter [kklo](https://wordpress.org/support/users/kklo/)
 * (@kklo)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9828608)
 * Is it possible to create different forms of payment depending on the type of 
   user?
 *  [dougaitken](https://wordpress.org/support/users/dougaitken/)
 * (@dougaitken)
 * Automattic Happiness Engineer
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9835183)
 * Hi [@kklo](https://wordpress.org/support/users/kklo/)
 * > Is it possible to create different forms of payment depending on the type of
   user?
 * Absolutely, you can read more about this in the documentation – [https://docs.woocommerce.com/document/woocommerce-conditional-shipping-and-payments/](https://docs.woocommerce.com/document/woocommerce-conditional-shipping-and-payments/)
 *  Thread Starter [kklo](https://wordpress.org/support/users/kklo/)
 * (@kklo)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9835299)
 * Thanks, dougaitken
 * I read the doc, but the restrictions and conditioning are only for products, 
   countries, transportation, etc, but I have not found any examples of payment 
   restrictions by type of users
 * It has gateway for payments, but aimed at limiting values, bank transfer, etc.
 * Ex. Imagine you have a physical store (site), which sells to customers (customer)
   directly through paypal. OK.
 * Now I have other types of customers (vips), are external sellers and visit many
   physical stores and place their orders directly in the physical store (site).
 * These sellers do not pay for the products, they simply place the orders.
 * If you have a physical clothing store, you will surely have external salespeople
   to sell the clothes from the physical store to the company, industries, etc. 
   These vendors place their orders in the store that works, which would be physical
   store, to arrange the orders. The payments will be sent later to the client of
   the external seller.
 * I do not know if I explained it well, because the translation is done through
   Google ..
 * For this I have to have two types of users, one with paypal payment and another
   free.
 * Can you do something like this through woocommerce? Via hocks or plugins? Any
   help will be welcome.
 *  Thread Starter [kklo](https://wordpress.org/support/users/kklo/)
 * (@kklo)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9839887)
 * Some help?
 *  [Joel Williams](https://wordpress.org/support/users/joelwills/)
 * (@joelwills)
 * Automattic Happiness Engineer
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9845228)
 * Hi there!
 * > I read the doc, but the restrictions and conditioning are only for products,
   > countries, transportation, etc, but I have not found any examples of payment
   > restrictions by type of users
 * You can restrict payment method based on user role as mentioned here:
 * [https://docs.woocommerce.com/document/woocommerce-conditional-shipping-and-payments/#section-8](https://docs.woocommerce.com/document/woocommerce-conditional-shipping-and-payments/#section-8)
 * That way you can provide a “free” payment gateway of your choice (like cash on
   bank transfer) and hide it for those customer roles you don’t want to see it,
   so it only shows up to other customer role (VIP).
 * You can then create another rule that hides the other payment method for the 
   VIP role, so they only see the free option. Each role sees different payment 
   methods.
 * Products will see have prices for VIPs, they just wouldn’t have to pay anything.
   If you want to remove prices, Dynamic Pricing like Doug mentions can do that.
 * Hope that helps!
 *  Thread Starter [kklo](https://wordpress.org/support/users/kklo/)
 * (@kklo)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9845402)
 * Hi,
 * My e-commerce uses a theme as its basis, the theme is Themeforest Traveler. Do
   not use woocommerce. This theme uses the woocommerce plugin to finalize purchases
   and use of payments and generates the order.
 * I using the described way, will generate an order in woocommerce without payment?
 *  [Joel Williams](https://wordpress.org/support/users/joelwills/)
 * (@joelwills)
 * Automattic Happiness Engineer
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9845504)
 * You should speak to your theme author if the theme using WooCommerce in a different
   way to intended.
 * However an order will always appear in WooCommerce if someone goes through the
   checkout and received the order confirmation/received page even if the order 
   amount is $0.
 *  Thread Starter [kklo](https://wordpress.org/support/users/kklo/)
 * (@kklo)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9845824)
 * Is there any demo to see the plugin functionality quoted?
 * My concern is to buy the plugin and not meet my needs
 *  [Joel Williams](https://wordpress.org/support/users/joelwills/)
 * (@joelwills)
 * Automattic Happiness Engineer
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9845947)
 * While we don’t have trial versions or a demo (yet), all extensions on WooCommerce.
   com have a 30 day no questions asked refund policy so you can try them to see
   if they work for you. Just contact us via live chat or ticket through your WooCommerce
   account anytime within 30 days to get a refund.
 *  Thread Starter [kklo](https://wordpress.org/support/users/kklo/)
 * (@kklo)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9848349)
 * Thanks

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

The topic ‘Payment setting’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

 * 15 replies
 * 3 participants
 * Last reply from: [kklo](https://wordpress.org/support/users/kklo/)
 * Last activity: [8 years, 4 months ago](https://wordpress.org/support/topic/payment-setting-2/#post-9848349)
 * Status: resolved