• Resolved miguel

    (@miguelappstudio)


    congratulations for your work
    I have been using the premium version of Wholesale Prices for days and I would like to know if with this plugin I can get the following functions and take advantage of this offer (https://wholesalesuiteplugin.com/woocommerce-wholesale-prices-premium/)

    1- I need to have wholesale prices to make offers only to wholesalers, types of offers such as the following: If you buy more than 12 CHAIRS, there is a 10% discount. If you buy more than 15 TABLES there is a 7% discount

    Can we do this with Wholesale Prices?

    2 – I need to add taxes with a different value depending on the product and the role of the user. – For example, I need to add 4% tax to “CHAIRS” only for wholesale users and show it at checkout – For example, I need to add 10% tax to TABLES

    Can I achieve that with Wholesale Prices?

    3 – Can I add the price of taxes at the end of the purchase?

    4 – For normal users, or retail customers, the price should be shown with taxes added, but I would like to show the breakdown of taxes included in the products. – For example, for the retail customer a CHAIR has a value of $40, even if it is displayed in an online store. The chair has 10% but it is already included in the $40 But I would like that when making the payment they show me the tax breakdown, the taxes that this product has

    Can I do this with Wholesale Prices?

    5 – Can I add a text next to the prices according to the role of the user (PVP, PVM)?

    Sorry for asking so many questions, I just want to make sure that at least some of the needs I have are met by your Wholesale Prices plugin, since I like it and want to buy it, but I want to make sure and not waste your time

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Jeff Alvarez

    (@superlemon1998)

    Hi @miguelappstudio ,

    1 – We have a quantity-based discount where you can give wholesale customers better prices depending on the quantity bought. Learn more about it here: How to Implement Quantity Based Pricing for Wholesale in WooCommerce (wholesalesuiteplugin.com)

    2 – Woocommerce by default allows you to set custom tax or exclusive tax rates per individual product, our premium plugin allows you to set custom tax rates for wholesale customers. Learn more about it here: How To Apply A Different Tax Rate To Wholesale Customers – Wholesale Suite (wholesalesuiteplugin.com)

    3 – Yes, you can set how tax is displayed for wholesale customers. IE – on shop page exclude tax and on cart it shows the subtotal + tax

    4 – You can set how the tax is viewed on the shop pages. IE – include tax for retails customers, however for the tax breakdown we do not have that feature. It’s quite hard for me to give you further details as it’s quite a complex topic. I’ll link to their documentation/discussion here: https://www.ads-software.com/support/topic/tax-rate-settings-is-not-fetched-by-woocommerce-at-cart-and-checkout-pages/

    5 – It’s possible via this custom code:

    add_filter('wwp_filter_wholesale_price_title_text', 'wholesale_price_text', 10, 1);
    function wholesale_price_text($text)
    {
        global $wc_wholesale_prices;
    
        $user_wholesale_role = $wc_wholesale_prices->wwp_wholesale_roles->getUserWholesaleRole();
    
        if (!empty($user_wholesale_role)) {
    
            // To Switch wholesale price text depending on wholesale role
            switch ($user_wholesale_role[0]) {
                case 'wholesale_customer':
                    return 'Wholesale Price:';
    
                // Add more role keys
                case 'wholesale_bronze':
                    return 'Bronze Price:';
                case 'wholesale_gold':
                    return 'Gold Price';
            }
        }
    
        return $text;
    }

    Let me know if you have other questions.

    Cheers,
    Jeff

    • This reply was modified 1 year, 8 months ago by Jeff Alvarez.
    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    I want to buy the premium version, and I have any questions

    Great! But not here.

    For pro or commercial product support please contact the developer directly on their site. This includes any pre-sales topics as well.

    https://rymera.com.au/

    As the developer is aware, commercial products are not supported in these forums. I am sure they will have no problem supporting you there.

    @superlemon1998 If there is a better URL then please provide that and continue the pre-sales away from this site.

    Edit: Ah!

    I have been using the premium version of Wholesale Prices for days

    @superlemon1998 You cannot and must not support customers on this site again. Please stop doing that now. No one is allowed to do that and you can get into real trouble here if you continue that.

    Thread Starter miguel

    (@miguelappstudio)

    Hello.
    I think the only one to blame for this was me, dear friend @jdembowski

    Indeed, in the text of my question it says “I’ve been using the Premium version for a few days”.

    Of course I must say that I made a mistake in writing the query context, since I have never used the “Premium version”, I always use the free version of this plugin.

    I think that if you read my question carefully, it does not make sense that you are using the premium version and come to this forum to ask about the functions of the plugin, because like any other product, it has a support service for the paid version.

    As I say, it was my mistake and excuse my form of consultation.
    I assume full responsibility and accept any type of sanction

    I only have to apologize to @superlemon1998 because thanks to my query, I have led him to this very serious situation that @jdembowski points out.
    I’m sorry
    Greetings

    Plugin Author Josh Kohlbach

    (@jkohlbach)

    Thanks @jdembowski for the leniency, won’t happen again.

    @miguelappstudio to continue discussing please reach out via our premium support form here.

    Thread Starter miguel

    (@miguelappstudio)

    Thanks again @jkohlbach , I sent you a Ticket, I hope you can reply when you see it

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘I want to buy the premium version, and I have any questions’ is closed to new replies.