Hi @ericdaams
Thanks for the response, well I need to set up the minimum amount to 0, Why? well there is a pdf download so my client wants to ask for a donation but he wants the possibility to set the donation to 0 and download the pdf for free, the donation is optional
I have added the following lines of code to the end of the theme function.php file
/**
* Allow people to "donate" $0.
*/
add_filter( 'charitable_minimum_donation_amount', function() {
return 0;
});
/**
* You need to specifically enable $0 donations.
*/
add_filter( 'charitable_permit_0_donation', '__return_true' );
I have tried to add 0 to the suggested donation amount but doesn’t work also I have tried to submit the personalized amount to 0 and doesn’t work either.