CHARITABLE_DEBUG mode

This code snippet will define the `CHARITABLE_DEBUG` constant as `true`. See https://www.wpcharitable.com/documentation/charitable-debug-mode/.

Register Podcast Meta Fields

Automatically adds the 'Key Concepts', 'Referenced in this Episode', and 'Companion Post Link' input fields to…

Craig Carroll
<10

Load all Customizer "Additional CSS" in Block Editor

The CSS added to the frontend via the Customizer does not get added to the block…

WP Simple Pay: Set a Per-Form Custom Amount Programmatically

Adjust a single payment form's custom amount value programatically.

Maintain+ Footer Credit

jQuery("footer").append(" Site managed by Maintain+ ")

Note Orders

add_filter( 'manage_edit-shop_order_columns', 'custom_shop_order_column', 90 ); function custom_shop_order_column( $columns ) { $ordered_columns = array(); foreach( $columns as…

Include Subscriptions in API

Include EDD Subscription payments in the /edd-api/sales endpoint

Custom Social Share Email Body

Can be used to modify the default email body (content) when a user clicks the social…

Defining Outlook Mailer Constants

This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…

WP Simple Pay: Change Custom Amount Field Input Type

Changes the `type` attribute on the `input` tag. This helps some mobile keyboards have a better…

WP Simple Pay: BuddyBoss Preview Compatibility

Provides BuddyBoss preview function compatibility

1 39 40 41 42 43 129