Make Donor Address Required

Make all address fields required on donation pages.

Display Featured Image in Post List

Make featured image visible in post list and quick edit view for any kind of post…

Set AIOSEO Metabox Priority to Low

Set the AIOSEO metabox priority to low

10+

Remove Donation Form Fields

This example shows how to remove fields from the donation form.

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 Campaign Progress Bar Shortcode

Add a new shortcode to display the progress bar for a particular campaign.

display user name in a menu

/** * Show a user's display name/user name in a WordPress menu. * Once this code…

Change Default Post Type Name “aioseo-location”

This filter can be used to change the default post type name from “aioseo-location” to 'franchise-location'.

10+

How to Center a Form

This code centers the form using margin: 0 auto and sets a maximum width of 500px.

10+

Disable Template Editor

Disable access to modify or create templates from the Post Editor.

10+

Automatically Delete Woocommerce Images After Deleting a Product

Automatically Delete Woocommerce Images After Deleting a Product

Automatic CSS/JavaScript Cache Busting

Replace the `ver` query arg with the JavaScript/CSS file's last modified timestamp (WordPress CSS/JS Cache Busting)

Disable Inspector Tabs

Revert having a separate tab for block styles.

10+

Multi Step Donation Form

This snippet provides a foundation for converting the donation form into a multi-step donation form.

1 18 19 20 21 22 132