WooCommerce pay per photo upload [closed]

Don’t know about plugins, but if you develop it yourself, then the process might be to have a ‘buy now’ type button that people pay for, then, on completing the transaction, they are sent a special upload link with a query parameter in the URL that allows them to upload a file.

Your code would have to generate and store the special query parameter (random guid type of value), then (on loading that page) verify the parameter as being valid (and not being used before). On successful upload, the code would diasble (inactivate) that guid so it couldn’t be used again.

You will have to figure out how to use transaction processing on PayPal (or whatever payment provider) so that your ‘thanks for the order’ page would generate the stored guid/parameter.

Good luck!