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…
Add Field To Set Custom Page As Donation Page
Create a new campaign field allowing to select the page where donations are made.
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…
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…
Add Campaign Creator Name Donation Export
In this example, the campaign creator's name is added to the Donations export, so it's easy…
Display Post and Page IDs in WordPress Columns
This PHP code enables you to display the IDs of posts and pages within WordPress columns.…
Remove users from WP-JSON
Increase your site's security by hiding usernames from WP-JSON, that are otherwise exposed to the public.
Change the Post ID Being Processed by AIOSEO
This snippet can be used to change the Post ID being processed by AIOSEO.
Redirect To Referer After Login
After a user logs in, redirect them back to the page they were on right before…
How to Change the Error Text for Failed Submissions
This code snippet changes the error text that shows to your visitors on failed submissions.