Eric Daams
Forum Replies Created
-
You can remove fields with a simple bit of code. See https://github.com/Charitable/library/blob/master/donation-form/remove-donation-form-fields.php for an example of how to remove a field. Read the comments at the top for the keys to use with the other fields.
There are a couple ways to actually add this code to your site. See https://github.com/Charitable/library#how-to-use-the-code-snippets
Cheers,
EricHi Michael,
There are a few ways you can add this code. See https://github.com/Charitable/library#how-to-use-the-code-snippets
The easiest option is with the Code Snippets plugin 🙂
Cheers,
EricI responded to your email about this, but in case anyone else arrives here wondering the same thing, here’s a Gist that shows how to get this kind of information about campaigns:
https://gist.github.com/ericnicolaas/4806c696b6e91a4b05beb90b2a4bd74d
Cheers,
EricHi helentizbold,
To use Gift Aid, you need to purchase one of our plugin packages that include it: https://www.wpcharitable.com/extensions/charitable-gift-aid/
Cheers,
EricWe released version 1.4.7 a few days ago, and it’s all working nicely with WordPress 4.7.
Cheers,
EricHi Yudha,
I think you’ve found the answer to this already, but for others coming across this, changing whether a field is required can be done with a bit of code.
https://github.com/Charitable/library/blob/master/donation-form/make-donor-address-required.php is an example showing how to make certain fields required. If you wanted to make certain fields not required, you could change it to this:
$fields[ $key ][ 'required' ] = false;
Cheers,
EricSorry, realized I needed to provide more explanation. If you don’t have Code Snippets installed, install it: https://wordpress.org/plugins/code-snippets/
Next, create a snippet and add that one line of code above.
Save it, setting it up to run in the admin.
After reloading the page, the notice should be gone.
If the notice is gone, deactivate the code snippet.
Cheers,
EricSorry for missing this. I think you should be able to get rid of it like this:
delete_option( 'charitable_doing_upgrade' );
Thanks for the review Anna!
Cheers,
EricHi @clubafterlifeq,
You can customize the donation form with some code. Here are a couple snippets to point you in the right direction:
- Add a field – https://github.com/Charitable/library/blob/master/donation-form/collect-national-id-number.php
- Make fields required – https://github.com/Charitable/library/blob/master/donation-form/make-donor-address-required.php
See https://github.com/Charitable/library#how-to-use-the-code-snippets for information about how to implement these code snippets.
Regarding the payment methods, it’s not possible to customize that on a per-campaign basis at this stage.
Cheers,
EricHi Kenneth,
If you’ve set up the address as a required field in Authorize.Net, you can use the new sync tool in our Authorize.Net extension to make sure an address field is included in the donation form. Go to Charitable > Settings > Payment Gateways and edit the settings for Authorize.Net. Assuming you’re on the current version of the Authorize.Net extension (1.1.0), you should see a button to sync your required fields.
Cheers,
EricEDD Connect doesn’t have much of an impact on how Ambassadors work. If someone has an account on your site, whether it’s been created through EDD or Charitable, that will work for them to be able to create a fundraising campaign.
Cheers,
EricJust replied to your email about this, but I’ll leave my response here too in case it benefits others:
You can achieve what you want with a little bit of custom code. Here is a snippet of code you can use as a starting point: https://github.com/Charitable/library/blob/master/extensions/ambassadors/campaign-submission-form/add-description-field.php
You’ll need to change this line:
add_filter( 'charitable_campaign_submission_campaign_fields', 'ed_add_description_field_to_form' );
Change it to:
add_filter( 'charitable_credit_card_fields', 'ed_add_description_field_to_form' );
See https://github.com/Charitable/library#how-to-use-the-code-snippets for tips on how to add this to your site.
Cheers,
EricHi kellygree,
As bdbrown said, we can’t post our email address here. You can reach us via our support page at https://www.wpcharitable.com/support/
Cheers,
Eric