bambicruz
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Shortcode with Attributes in EmailBuzztone, sorry but your answer is incorrect. I am able to insert a regular shortcode into the body of the email (See https://www.ads-software.com/support/topic/custom-shortcode-in-emails?replies=8)
However, I am unable to do so with a shortcode that has Attributes (e.g. [custom_text show=’Daytime greeting’] )
Anyone else has any advice?
Forum: Plugins
In reply to: [Contact Form 7] Clear placeholders on submitI deactivated all other plugins but the issue still remains…
Forum: Plugins
In reply to: [Contact Form 7] Clear placeholders on submitForum: Plugins
In reply to: [Contact Form 7] Clear placeholders on submitDoesnt work for me. if I leave the following field empty, the email I receive will include “Your name here” where the value of [your-name] would have been:
[text your-name placeholder "Your name here"]
It works only if the field has been filled with another value, which doesnt solve my problem
Thanks
Forum: Plugins
In reply to: [Contact Form 7] Multiple submit buttons in one formThanks! Now the remaining issue is that I’m trying to apply a conditional redirect (based on which button is clicked). I’ve used the following but it doesnt work (it always redirects to google.com because it assumes the value of the first “your-submit”, which is always “Yes”:
on_sent_ok: “var submitbtn = $(‘.wpcf7 input[name=your-submit]’).val();if (submitbtn==’No’) {location.replace(‘https://www.google.com’)} else { location.replace(‘https://www.bing.com’) } ;”
Any way around this?
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Line and Tag within the CanvasThanks, so as far as the line / static text. Where can I put it? I tried to insert the following in the “signature.php” file, but I only see the text for the second it takes to load the page, after that it just disappears:
$html = sprintf( '<div class="wpcf7-form-control-signature-global-wrap" data-field-id="%1$s"> <div class="wpcf7-form-control-signature-wrap" style="width:%5$spx;height:%6$spx;"> <div class="wpcf7-form-control-signature-body"> <canvas id="%8$s" class="%9$s"><script type="text/javascript"> var canvas = document.getElementById("%8$s"); var ctx = canvas.getContext("2d"); ctx.font = "30px Arial"; ctx.fillText("Hello World",10,50); </script></canvas> <input id="wpcf7_%4$s_clear" type="button" value="%7$s" class="fdvo-app-sign-clear"/> </div> </div> </div> <span class="wpcf7-form-control-wrap wpcf7-form-control-signature-input-wrap %1$s"> <input %2$s id="wpcf7_input_%1$s"/>%3$s </span> ', sanitize_html_class( $tag->name ), $atts, $validation_error, $tag->name, $width, $height, __( 'Clear', 'wpcf7-signature' ), $canvas_id, $canvas_class ); return $html;
Thanks again!
Forum: Plugins
In reply to: [Contact Form 7] Anything in between on_submit and is_sent_okHi there, how did you get Dropzone to work in CF7?
Forum: Plugins
In reply to: [Contact Form 7] Update logged in user fieldsFor those interested in a solution. It’s right here!
https://www.mootpoint.org/blog/wordpress-contact-form-7-user-registration/
Forum: Plugins
In reply to: [Contact Form 7] Update logged in user fieldsThanks Davmerit, However I was looking for the following:
-Users can update their info using CF7 (not just see it)
-Would this work for meta custom fields too?Thanks again for your help, it’s really appreciated!
Forum: Plugins
In reply to: [Contact Form 7] CF7 and DropzoneJSAnyone?
Forum: Plugins
In reply to: [Contact Form 7] Create Quiz / QuestionnaireThanks Davmerit. No this should not be visible to the user (email or otherwise)
Forum: Plugins
In reply to: [Contact Form 7] Redirect URL with Checkbox / Dropdown valueAnyone?
I actually tried that and it doesnt seem to work in email:
In step 1 the field is : [first-name]
In step 2 I included : [form first-name]I tried submitting step 1 and proceeding to step 2 multiple time but in the email it just shows [form first-name] and not the value of [first-name] submitted in step 1 (though if I just include it in the step 2 form, it does show the inputs from Step 1)
Why is it not working for email?
Forum: Plugins
In reply to: [Contact Form 7] Insert form tag into Redirection URLQuestion though, is there a way to pass the value of a checkbox / dropdown ? it seems to always go as “underfined”…
Forum: Plugins
In reply to: [Contact Form 7] Insert form tag into Redirection URLThat works, thanks!