/** * Customize email field properties. * * @link https://wpforms.com/developers/how-to-change-sublabels-for-the-email-field/ * * For support, please visit: https://www.facebook.com/groups/wpformsvip */ function wpf_dev_email_field_properties( $properties, $field, $form_data ) { // Change the text for the sublabel $properties[ ‘inputs’ ][ ‘primary’ ][ ‘sublabel’ ][ ‘value’…Continue reading
/** * Customize Stripe credit card field properties. * * @link https://wpforms.com/developers/how-to-change-sublabels-for-the-credit-card-field * * For support, please visit: https://www.facebook.com/groups/wpformsvip */ function wpf_dev_creditcard_field_properties( $properties, $field, $form_data ) { // Change sub-label text on the Card Number field $properties[ ‘inputs’ ][ ‘number’…Continue reading
/** * Shortcode that displays the number of completed entries for a form. * * Usage: [wpforms_entry_total form_id=”X”] – X is the form ID. * * @link https://wpforms.com/developers/display-entry-submissions-count-for-a-specific-form/ */ function wpf_dev_form_entry_total( $atts ) { $args = shortcode_atts( array( ‘form_id’ =>…Continue reading
/** * Disable the email address suggestion. * * @link https://wpforms.com/developers/how-to-disable-the-email-suggestion-on-the-email-form-field/ * * For support, please visit: https://www.facebook.com/groups/wpformsvip */ add_filter( ‘wpforms_mailcheck_enabled’, ‘__return_false’ );Continue reading
/** * WPForms Add new address field scheme (Canada) * * @link https://wpforms.com/developers/create-additional-schemes-for-the-address-field/ * * For support, please visit: https://www.facebook.com/groups/wpformsvip */ function wpf_dev_new_address_scheme( $schemes ) { $schemes[ ‘canada’ ] = array( ‘label’ => ‘Canada’, ‘address1_label’ => ‘Address Line 1’, ‘address2_label’…Continue reading
add_action( ‘woocommerce_product_options_advanced’, ‘add_is_hidden_for_anonymous_field’ ); function add_is_hidden_for_anonymous_field() { $args = array( ‘id’ => ‘is_hidden_for_anonymous’, ‘label’ => ‘Hide products for non-authorize users’, ); woocommerce_wp_checkbox( $args ); } add_action( ‘woocommerce_process_product_meta’, ‘save_is_hidden_for_anonymous_field’ ); function save_is_hidden_for_anonymous_field( $post_id ) { $product = wc_get_product( $post_id ); $value…Continue reading
This boost will be completed inContinue reading
/** * @link https://library.wpcode.com/snippet/924r645g/ */ add_filter( ‘simpay_get_customer_args_from_payment_form_request’, /** * @param array $customer_args Arguments for Customer. * @param \SimplePay\Core\Abstracts\Form $form Form instance. * @param array $deprecated Empty array. * @param array $form_values Values of named fields in the payment form. *…Continue reading
//* Add Excerpt support to Pages in Genesis add_post_type_support( ‘page’, ‘excerpt’ );Continue reading