Viewing 1 replies (of 1 total)
  • Plugin Author Josh Kohlbach

    (@jkohlbach)

    Hi kdbrown,

    For premium support can you please lodge a support ticket via the following link: https://wholesalesuiteplugin.com/support

    We’ll definitely be able to help a lot quicker via there!

    We have an outstanding bug fix for the minimum quantity pre-filling issue. This should be fixed in the next major release in a few weeks time.

    Regarding RRP before the original price, there’s a couple of way you can do this:

    1. You can use a template override and just drop “RRP:” before the function call which retrieves the price.

    https://wholesalesuiteplugin.com/kb/how-to-override-order-form-templates/

    2. Or you could add this snippet of code to your functions.php which might be more reliable:

    function addRRPBeforeOrderFormPrice($priceHtml) {
    	return 'RRP: ' . $priceHtml;
    }
    
    add_filter('wwof_filter_product_item_price', 'addRRPBeforeOrderFormPrice', 10, 1);

    If you need further assistance, please lodge a support ticket and we will assist.

    Cheers,
    Josh

Viewing 1 replies (of 1 total)
  • The topic ‘Quantities and RRP before first price’ is closed to new replies.