• Resolved kklo

    (@kklo)


    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

    (@dougaitken)

    Automattic Happiness Engineer

    Hi @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 extension, and for removing the payment option for VIP, I suggest the Conditional Shipping and Payments extension.

    Thanks,

    Thread Starter kklo

    (@kklo)

    Do they work in woocommerce?

    dougaitken

    (@dougaitken)

    Automattic Happiness Engineer

    Hi @kklo

    Yes – You are posting in the WooCommerce support forum so all advice is related to that.

    As mention in this thread (https://www.ads-software.com/support/topic/plugins-130/) please only post a question related to the specific plugin.

    Thanks,

    Thread Starter kklo

    (@kklo)

    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

    (@kklo)

    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

    (@kklo)

    Is it possible to create different forms of payment depending on the type of user?

    dougaitken

    (@dougaitken)

    Automattic Happiness Engineer

    Hi @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/

    Thread Starter kklo

    (@kklo)

    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

    (@kklo)

    Some help?

    Joel Williams

    (@joelwills)

    Automattic Happiness Engineer

    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

    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

    (@kklo)

    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

    (@joelwills)

    Automattic Happiness Engineer

    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

    (@kklo)

    Is there any demo to see the plugin functionality quoted?

    My concern is to buy the plugin and not meet my needs

    Joel Williams

    (@joelwills)

    Automattic Happiness Engineer

    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

    (@kklo)

    Thanks

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Payment setting’ is closed to new replies.