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…

Meraki Open Source Licenses

Until today I assumed that Meraki was built in-house with only closed source software. But having a look at the...

VEEAM FAILS

If you have Veeam backup failing with the Updating BCD failed with Cannot update SafeBoot flag and SentinelOne is...