Hey Pippin - installed latest commit, and now the purchase button form is automatically being outputted beneath the_content on a single download's page. It's not happening in the latest stable release, just the most recent commit. If I mark 'hide purchase button', it will be hidden.

It's supposed to be automatic and on by default.
Seems to only be automatic for me in the very latest commit. Is there any way I can set it off by default?
Did you have any thing in your theme that disabled (perhaps a remove_action) the buttons previously? I did change the hook that is used to add them.
Ah yeah, I have:
// remove the automatic purchase link
remove_filter('the_content', 'edd_append_purchase_link');
What do I need to use now to remove it?
Yep that's it! You will now want to use:
remove_action( 'edd_after_download_content', 'edd_append_purchase_link' );
Perfect - thank you.
Doesnt seem to be working for me?
Did it change again?
@ahansson89 Which part isn't working for you?
Dont worry, I worked around this and everything is great now.
However, I wasnt able to remove the action with this in a plugin:
remove_action( 'edd_after_download_content', 'edd_append_purchase_link' );
You probably couldn't remove it because your plugin was loaded before EDD. If you put the remove_action() inside of a function connected to init or plugins_loaded it should work.
Hello Pippin ! I don't know if you'll see this post (old topic)
But the hook is not up to date in the "edd-config.php" file from EDD Starter Theme : https://github.com/pippinsplugins/EDD-Starter-Theme/blob/master/includes/edd-config.php
Thanks for the heads up.
Hey Pipin!
The following works like a charm
remove_action( 'edd_after_download_content', 'edd_append_purchase_link' );