woocommerce_coupon_code_generator_character_length

woocommerce_coupon_code_generator_character_length

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_coupon_code_generator_character_length') is found 1 times:

  • /includes/admin/class-wc-admin-assets.php line 344
    					'woocommerce_admin_meta_boxes_coupon',
    					array(
    						'generate_button_text' => esc_html__( 'Generate coupon code', 'woocommerce' ),
    						'characters'           => apply_filters( 'woocommerce_coupon_code_generator_characters', 'ABCDEFGHJKMNPQRSTUVWXYZ23456789' ),
    						'char_length'          => apply_filters( 'woocommerce_coupon_code_generator_character_length', 8 ),
    						'prefix'               => apply_filters( 'woocommerce_coupon_code_generator_prefix', '' ),
    						'suffix'               => apply_filters( 'woocommerce_coupon_code_generator_suffix', '' ),
    					)
    				);
    			}
    			/* phpcs: enable */