Disable the space key with the special CSS class
This code snippet disables the space key. When a user presses the space key in these…
Change Country Field To Hidden
Change the Country field in the donation form to a hidden field with a hard-coded default…
Remove HealthAndBeautyBusiness Schema
This snippet removes HealthAndBeautyBusiness Schema
Create List of Child Pages
To show a list of Child pages on the Parent Page
Change Custom Amount Field Label
Filter the custom amount field description.
WP Simple Pay: Add Custom CSS Classes to the Payment Button
"Payment Button" refers to the button that launches an On-site Overlay or Stripe Checkout Payment Form.
Allow Other WordPress Roles to View Email Logs
This snippet will allow you to manage the capabilities of roles allowed to view the site's…
Set Header Menu as "Custom"
If you are using a custom menu plugin for your header menu you can define your…
Set New User Role
Set the role of users who register through the Charitable registration form shortcode.
Add Custom Field From Donation Form On The Receipt Page
This is an example of how to show a field data someone entered in their donation…
VIsual Campaign Builder: Add HTML Tags To Display In The HTML/CODE Block
By design, Charitable allows only certain HTML to be displayed in the HTML/CODE Block of the…
Change the Email Summary Email Address
This snippet will allow you to specify who the email summaries should be delivered to. On…
Applying Custom Map Styles to the Map Field
This code snippet will use your custom map style in WPForms Map field.
Add Picture Field To Donation Form
A picture field is added to the donation form, allowing donors to upload an image as…
Disable Wordpress image compression
// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…