insertcoinforjoy
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Phone Module] put space in mask?Hey Gabriel,
Made a temporary fix for this. I just explicitly declared the mask on the code itself.
This is located in contact-form-7-phone-mask-module/phone.php.
wp_localize_script( 'jquery-mask', '_wpcf7pm', array( 'id' => trim($id_att), 'mask' => "(999) 999-9999" /* $mask */, 'aMask' => $alternate_mask, 'reDo' => $re_do, 'reUndo' => $re_undo, ) );Forum: Plugins
In reply to: [Contact Form 7 Phone Module] put space in mask?bump. :0
Forum: Plugins
In reply to: [Contact Form 7 Phone Module] put space in mask?How’s the progress?
Forum: Plugins
In reply to: [Contact Form 7 Phone Module] put space in mask?Thanks. Looking forward to it.
Forum: Plugins
In reply to: [Contact Form 7 Phone Module] phone* doesn't work right.Updated to 2.0.1 and it is fixed. Thanks.
Forum: Plugins
In reply to: [Contact Form 7 Phone Module] phone* doesn't work right.Sorry if that wasn’t clear.
Here’s the scenario.Whenever I use phone*, the form seizes to submit and every other field prompts that it requires to be answered even though they’re not required or they’re already filled up.
All dropdown boxes are not required. But it prompts that it is.
I can’t send it at all.Forum: Plugins
In reply to: [LoginWP (Formerly Peter's Login Redirect)] Redirect if url is '?'I feel so dumb not trying things out.
I got it to work. Made a template then placed this before the header.
$current_user = wp_get_current_user();
$redirect_to = admin_url();
$redirect_url = redirect_wrapper( $redirect_to, ”, $current_user );
wp_redirect( $redirect_url );
die();this is in the peters-login-redirect/wplogin_redirect_control.php file.
Thanks again for this plugin. You saved me. lol.