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.9.7.1

apply_filters('woocommerce_coupon_code_generator_character_length') is found 1 times:

  • /includes/admin/class-wc-admin-assets.php line 348
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
            '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 */