Written by James McDonald

May 19, 2020

From the above URL is this code. Just putting it here so I can find it again

<?php 
 
add_action('wpcf7_init', 'custom_code_generator');
 
function custom_code_generator(){
    wpcf7_add_form_tag('coupon_code', 'custom_code_handler');
}
 
function custom_code_handler($tag){
    $input_code_name = 'your_input';
 
    $charsList = '1234567890abcdefghijklmnopqrstuvwxyz';
 
    $randomString = '';
 
    //change the value of i to meet your requirements
    for ($i=0; $i < 10; i++){
        $randomString .= $charsList[rand(0, strlen($charsList))];
    }
 
    $finalCode = strtoupper($randomString);
 
    //create html and return
 
    $html = '<input type="hidden" name="'.$input_code_name.' "value=" '.$finalCode . ' " />';
 
    return $html;
 
}

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…