Google Ads
Google Ads
Order WPCode snippets by title in the admin
Make the default order of WPCode snippets in the admin by title ascending.
How to Automatically Submit a Form with a Field Choice
/** * Trigger submit from checkbox click * * @link https://wpforms.com/developers/how-to-automatically-submit-a-form-with-a-field-choice/ */ function wpf_dev_automatic_submit_form( ) {…
How to Add Address Field Validation For Authorize.net
/** * Add address validation for Authorize.net address fields * * @link https://wpforms.com/developers/how-to-add-address-field-validation-for-authorize-net/ */ function wpf_dev_authorize_address_validation(…
Keep me Logged In
Changes your Cookie expiration to one year so you don't have to keep logging so often.
Google AdSense code
AdSense code
Google AD
Google AD Snippet
Using Conditional Logic to Change Date Picker Locale
This snippet works with the WPML plugin and only apply date picker locale changes when the…
Disable emails on free purchases
If the purchase was for a free product, don't send any emails.
Show current day, month, year in various formats
Return the current date and parts of current date in various formats
Add Field To Set Custom Page As Donation Page
Create a new campaign field allowing to select the page where donations are made.
user menu for logged in and logged out users
function my_wp_nav_menu_args( $args = '' ) { if( is_user_logged_in() ) { $args['menu'] = 'logged-in'; } else…
WP Simple Pay: Use Custom Field Value as Stripe Payment Description
Use the value of a custom field as the description for the Stripe payment record.
How to Link Your Conversational Form Logo
This code snippet will make the logo clickable in a WPForms Conversational Form.