Set a Custom Email Header
This snippet sets custom email headers to ensure you can control specific behaviors of your sent…
Remove Login Form
Remove the login prompt from being displayed before the donation form.
increase upload memory
upload_max_filesize = 256M post_max_size = 256M max_execution_time = 300 />
Auto Register Login Link
Replaces the login link included in the Auto Register email, which directs customers to log into…
Disable Update Emails
// Disable auto-update email notifications add_filter('auto_core_update_send_email', 'disable_auto_update_emails', 10, 4); function disable_auto_update_emails($send, $type, $core_update, $result) { if…
Remove Author Links
If you are disabling author archives on your site you will want to remove the author…
Hide the last item in the breadcrumb trail
This filter can be used to hide the last item in the breadcrumb trail.
Define the Mailgun Signing Key Constant
This snippet will allow you to define your Mailgun Signing Key constant inside your wp-config.php file…
WP Simple Pay: Create WordPress User After Payment
Creates a new WordPress user when a subscription is started or a one-time payment is made.
Automatically Delete Woocommerce Images After Deleting a Product
Automatically Delete Woocommerce Images After Deleting a Product
Change Fields On Donation Form
Example on how to change labels for fields on donation form.
Add Dropdown Field To Donation Form
Shows how to add a custom dropdown in a donation form (this example the select field…
Save images as WEBP
/** * Convert Uploaded Images to WebP Format * * This snippet converts uploaded images (JPEG,…
Disable email reports
This filter can be used to disable email reports.
display user name in a menu
/** * Show a user's display name/user name in a WordPress menu. * Once this code…