wilfredw92
Forum Replies Created
-
Hi Patrick,
It works! Thanks Patrick.
Hi Adam,
The following field group names still remain unchanged on the submission data. Kindly check my .php codes below.
<?php // set upper-case display on front add_action( 'wp_footer', 'forminator_uppercase_text_style', 99 ); function forminator_uppercase_text_style() { ?> <style> .forminator-field-text input, .forminator-field-name input { text-transform:uppercase; } </style> <?php } // convert for submission add_filter( 'forminator_field_text_sanitize', 'forminator_uppercase_text_submit', 11, 2 ); function forminator_uppercase_text_submit( $data, $field ) { if ( ( $field['type'] == "text" ) || ( $field['type'] == "name" ) ) { $data = strtoupper( $data ); } return $data; }
Thanks
Hi Adam,
Maybe my name field is not a general text input field? Name field shows {name-1} instead of {text-1}.
Btw, here is the link for the form export code: https://pastebin.com/7r5i2fwF
Thanks
Hi Adam,
Thanks for the help. However, the following field group names remain unchanged in uppercase on the submission data.
Ok. I figured it out to install it. But, it seems doesn’t work for field group repeat, only works on 1st field group.
Forum: Fixing WordPress
In reply to: How to fix wordpress create wp posts ID 0This is the latest error log:
[03-Aug-2018 08:00:22 UTC] PHP Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘redirection_function’ not found or invalid function name in /home/michaels/public_html/v6/wp-includes/class-wp-hook.php on line 286
[03-Aug-2018 08:00:22 UTC] PHP Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘insert_image_src_rel_in_head’ not found or invalid function name in /home/michaels/public_html/v6/wp-includes/class-wp-hook.php on line 286Forum: Plugins
In reply to: [WP Fastest Cache] Showing as logged in after logoutNo. I tried before, but it did not work.
o0o Fuck! Gimme a lanjiao answer! pui!
Sir. What I want is disable the dropdown option function, not remove/hide or replace to a text box.
My products sell to all countries not just 1 country. I want a solution that can disable the dropdown option.