• Resolved Adam

    (@adamsassets)


    Hi,

    I really like this plugin, but I would like some assistance on how to setup a donation concept, rather than a product purchasing concept.

    My site will have a premium WordPress plugin as an incentive for people to donate to the development of the plugin. I want to set up the plugin in the way that a user will click donate, then it will go through PayPal, and once the donation process is complete, the donor to the plugin development project will receive their premium plugin (a.k.a. the incentive) as a thank you for their donation, through my site.

    I would also like to know how to set up a PayPal IPN, so that people who donated will receive their download link automatically.

    Sincerely,

    Adam

    https://www.ads-software.com/extend/plugins/easy-digital-downloads/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Pippin Williamson

    (@mordauk)

    Adam,

    The only thing you should need to do here is hook into the EDD PayPal data before it gets sent to PayPal and modify the API args to mark it as a donation.

    Are you familiar with hooks and filters?

    Thread Starter Adam

    (@adamsassets)

    Hi,

    I am somewhat familiar with hooks and filters, but if you could give me the full gist of thing, it would be greatly appreciated.

    Sincerely,

    Adam

    Plugin Contributor Pippin Williamson

    (@mordauk)

    This should work:

    function pw_edd_paypal_donate( $args, $purchase_data ) {
        $args['cmd'] = '_donations';
        return $args;
    }
    add_filter( 'edd_paypal_redirect_args', 'pw_edd_paypal_donate', 10, 2 );

    Hi Pippin,

    I am not so familiar in modifying plugins, could you guide me where I should put the code above?

    I need to redirect to donation option of paypal as well.

    Thanks

    Plugin Contributor Pippin Williamson

    (@mordauk)

    Easiest thing is to put it in a custom plugin, which you can create with Pluginception: https://www.ads-software.com/plugins/pluginception/

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How do I get DONATIONS for downloads, instead of purchases?’ is closed to new replies.