• Hello,

    For my website I do not want the customer to have to upload proof of payment as all order will have to be manually confirmed anyways.

    Is there a way to disable this requirement? Maybe you can make it an option in settings?

    I’ll look around in the plugin files and see if I can find a way to do this myself but I hope someone else may already know how.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello,

    I think the best would be to put a field to put the references of the receipt or download the receipt at least give the choice to the customer

    Thread Starter hotrock3

    (@hotrock3)

    Giving the customer an option or just requesting the transaction code might work for some people and is a good idea. I’m just trying to avoid making extra pointless work for the customers in this particular situation.

    I think I have found the section of .js that needs to be edited to get what I want. Still have to try it though.

    Good evening
    Have you found the solution.
    Can you share the solution

    • This reply was modified 3 years, 8 months ago by mmasolutions.
    Thread Starter hotrock3

    (@hotrock3)

    Hi, yes, I found a pretty dirty way of doing it. In woopro-front.js I found

    $.ajax({
                        url:kwajaxurl.ajaxurl,
                        type:'POST',
                        processData: false,
                        contentType: false,
                        data: ajaxData,
                        success: function( response )

    and put the below in both the if and else portions.

    $('.place-order button').removeClass('yape_peru');
    $('.popup-wrapper').hide();
    $('.place-order button').trigger('click');

    This tells the system to submit the order even if there is an error in the file check. This is not at all the proper way to do it but it works for what I need. Next, remove the first button and add the final order button in div class="first-step" at about line 40 using the below code

    <input type="submit" name="final_order" class="finalized_order btn_submit" value="<?php echo __( 'I have Sent Payment', 'payment-qr-woo' ); ?>">

    I could probably get rid of all of the second step code but I didn’t bother as it never shows up.

    • This reply was modified 3 years, 7 months ago by hotrock3.
    • This reply was modified 3 years, 7 months ago by hotrock3.

    Hi,
    Is it possible if I want to disable the screenshot upload, instead I want the customer to input a payment reference code.

    Hi
    what is normal is for the customer to enter the payment references, but I don’t know how to do it

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Option to disable screen shot requirement’ is closed to new replies.