Setting the Default Address Scheme to International

This snippet is used to update the default behavior of the Address field in WPForms. This…

<10

Add Image Alt Text automatic

function add_alt_text_to_images( $html ) { // Check if the image has a title attribute if (…

Redirect To Referer After Login

After a user logs in, redirect them back to the page they were on right before…

Add Email Headers

Add headers to Charitable emails (for example CC/BCC headers).

Add Custom Campaign Field

This example shows how you can add a new campaign field to be displayed in Charitable…

Register New Donation Field

Adding a new field (in this example it is a National ID Number). Explains all the…

Add Field To Set Custom Page As Donation Page

Create a new campaign field allowing to select the page where donations are made.

Use Page Template For Campaigns

Instead of using the Post template for campaigns, use the Page template as a fallback.

Remove Gutenberg Block CSS

Remove Gutenberg Block Library CSS from loading on the frontend

Remove Google Fonts (non-Elementor)

function disable_google_fonts() { return false; } add_filter( 'print_google_fonts', 'disable_google_fonts' );

Auto Register Login Link

Replaces the login link included in the Auto Register email, which directs customers to log into…

Allow WebP Files Upload

The provided PHP code is intended to enable the upload of WebP image files in WordPress…

Remove users from WP-JSON

Increase your site's security by hiding usernames from WP-JSON, that are otherwise exposed to the public.

Custom Receipt Page

Redirect to custom receipt or another page after a donation is completed. Can be per campaign…

Increase the Number of Posts Imported Per Batch from SEOPress Plugin

This filter can be used to increase the default number of posts imported per batch from…

<10
1 27 28 29 30 31 159