Coupon code and title max length
Hello all,
Does anyone know how to limit the number of characters in the coupon code in Clipper? I have modified the look and feel of the theme, and as a result the maximum length of the code that fits on a normal mobile screen is 15 characters.
Also I need a code for the maximum length in characters for the title of a coupon that is posted. I have a code that works for Classipress, but when I replace cp_ with clpr_ it does not work.
The code I have is:
// set max limit to 70 characters for title field
function custom_title_maxlength( $args, $result, $post ) {
$args['maxlength'] = 20;
return $args;
}
add_filter( 'cp_formbuilder_post_title', 'custom_title_maxlength', 10, 3 );
Thanks,
Frank