Register Multiple Donation Fields

Add multiple new fields to your donation form.

Set Default Donation Amount

Set the default donation amount for all campaigns.

Set Maximum Donation Amount

Set the maximum donation amount required.

Set Default Donation Amount Per Campaign

Customize the default donation amount on a per campaign basis.

Change Donor Count

Example where a donor count is changed for a specific campaign.

Remove Campaign Stats Loop

Remove the progress bar and funds raised from the campaigns grid/loop.

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.

Add Hours Currency

Add a custom currency called "Hours".

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…

1 11 12 13 14 15 29