Remove Stats Summary Block From Specific Campaign

Hide the campaign summary stats from a few specific campaign, using the campaign IDs.

Change Campaign Finished Notice

Change the notice shown for campaigns when they are finished.

Change Campaign Rewrite To Not Use With Front

Customizes the definition of the campaign post type, setting the with_front option to false.

Remove Stats Summary Block

Remove the campaign summary block (funds raised, number of donors, etc).

Remove Donation Columns

Remove columns from the Donations export.

Format Date

Change the date format of the "Date of Donation" column in the Donations export.

Change Currency Format By Locale

This snippet below shows how to change the currency format for each language.

WPForms: display a form under the confirmation message with or without user entered field values.

add_action( 'wpforms_frontend_output_success', static function ( $form_data, $fields, $entry_id ) { unset( $_GET['wpforms_return'], $_POST['wpforms']['id'] ); // If…

WPForms: new smart tag - Current Date/Time

It's a localized date/time in this format: Y-m-d H:i:s

WPForms: new smart tag - Current Unix Time

Using wp_date() function to output a Unix time where the smart tag is used.

WPForms: add field description in notification HTML and plain text emails

With this snippet, you can add a field description in notification emails that are sent to…

WPForms: add several new smart tags for newly submitted CPT: ID, title and URL.

Mainly useful when the Post Submissions addon is used. Several new smart tags are registered to…

WP Mail SMTP: specify an exact AuthType to connect to a Server.

Some SMTP servers require a very specific AuthType to connect to them in order to send…

WPForms: swap price and option value for payment fields

This snippet makes the option label "$40.00 - Second Choice" instead of "Second Choice - $40.00"…

WPForms: add BCC email header to notification emails

Check the snippet code to apply to all/some form only, plus you will need to modify…

1 12 13 14 15 16 29