How to Block Names From Completing Your Form - Simple format

/** * Prevent certain names from the Simple format Name form field. * * @link https://wpforms.com/developers/how-to-block-names-from-completing-your-form/…

<10

Unhook Default Charitable Template Functions

In this example, we're going to remove the donor count from the campaign page, but you…

Add Field Placeholders

Add placeholder attributes to donation fields, removing the label field.

Make Single Field Required

Make a single field on the donation form required.

Customize Donation Stats

Customize the stats that are shown in the Donation Stats widget.

Set New User Role

Set the role of users who register through the Charitable registration form shortcode.

RT7 Official - Maintenance Mode

RT7 Official Maintenance Mode

<10

Allow SVG/JPEG/WEBP/ICO/AVIF Files Upload

Allows these filetypes to be uploaded to the media library

WP Simple Pay: Custom Webhook Handling Example

An example of handling the `coupon.updated` webhook event. For a full list of available events see:…

On Add to Cart Event in WooCommerce

Adds the cancellation event to stop the Browse Abandonment campaign for your push subscribers in the…

Save images as WEBP

/** * Convert Uploaded Images to WebP Format * * This snippet converts uploaded images (JPEG,…

Disable Wordpress image compression

// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…

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…

1 32 33 34 35 36 193