om-nextjs.js

import { useEffect } from 'react'; import { useRouter } from 'next/router'; const OptinMonsterEmbed = ()…

Number slider validation for single page forms

This snippet uses the wpforms_process_validate_number-slider action to check the slider value after submission.

<10

Custom Countries

Illustrates how to add a custom list of countries This list will be used anywhere EDD…

WP Simple Pay: Custom Decimal Separator

Changes the decimal separator from a . (period) to a , (comma).

Disable New User Notifications

Disable the new user notification email for both the admin and user

FES Registration Form Redirect

Set custom redirect URLs for those who just registered to become vendors.

Add Subscriber to Segment

This snippet helps you add the push subscriber to the segment as per the action defined.

Donation Form Email Check

If you need to do manual validation of an email when a donation is being submitted…

WPCode Snippet: MU-Plugins Sync Engine

/** * WPCode Snippet: MU-Plugins Sync Engine * Description: Synchronizes MU-Plugins FROM /wp-content/mu-plugins/ TO wpcode_snippets_sync CPT…

ismail daugherty PRO
<10

Yoast SEO

Integration with Yoast SEO with WC Vendors

Buy Now Button - Variation

add_filter( 'gettext', 'customizing_product_variation_message', 10, 3 ); function customizing_product_variation_message( $translated_text, $untranslated_text, $domain ) { if ($untranslated_text ==…

Carla Mawyin
<10

Remove Last Name at Checkout

Removes the Last Name field from the checkout page. Note: This worked with checkout shortcode only

Enable Full WP_Editor on Product Fields

add_filter( 'wcv_product_description_editor_settings', 'wcv_full_editor' ); add_filter( 'wcv_product_short_description_editor_settings', 'wcv_full_editor' ); function wcv_full_editor( $settings ){ $settings['teeny'] = false; return…

1 33 34 35 36 37 126