• Resolved jlop77

    (@jlop77)


    Hi,

    I need to disable by default the “Purchase Link” of all my downloads, but I do not want to disable one by one from the download page.

    Is there any way to do it?

    Most of my clients do not need said link.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Mihai Joldis

    (@misulicus)

    Hi @jlop77

    Try placing the code below in your theme’s functions.php and see if it works:

    add_action( 'plugins_loaded', function() {
        remove_action( 'edd_after_download_content', 'edd_append_purchase_link' );
    } );
    Thread Starter jlop77

    (@jlop77)

    Working

    thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘disable purchase link?’ is closed to new replies.