Greg Robertson
Forum Replies Created
-
Thanks!
I made another change because the above code worked. Unfortunately I need all the signature fields set to Required.
The form now has both signature field set as Required and the first one does not work.
Here is the new code:
<!-- PAGE BREAK - START PAGE 6 --> <div id="page6"> <h2 class="form med-dk-blue-517">MEDICAL INFORMATION Cont...</h2> <p class="form-par">Please check below <span>to indicate if you have or have not had any of the following diseases or problems.</span></p> <p class="form-par">NOTE: <span>Both doctor and patient are encouraged to discuss any and all relevant patient health Issues prior to treatment.</span></p> <p class="form-sm">I certify that I have read and understand the above and that the information given on this form is accurate. I understand the importance of a truthful health history and that my dentist and his/her staff will rely on this information for treating me. I acknowledge that my questions, if any, about inquiries set forth above have been answered to my satisfaction. I will not hold my dentist, or any other member of his/her staff, responsible for any action they take or do not take because of errors or omissions that I may have made in the completion of this form.</p> <p class="form-par med-dk-blue-517">Please sign the form below. Thank you!</p> <div class="flex-container"> <div class="flex-item-left">[signature* signature-664 background:#f6f6f7 cols:270 rows:100]</div> </div> </div> <!-- end page6 --> [cf7mls_step cf7mls_step-1 "Next" ""] <!-- PAGE BREAK - START PAGE 6 --> <div id="page6"> <h2 class="form med-dk-blue-517">MEDICAL INFORMATION Cont...</h2> <p class="form-par">Please check below <span>to indicate if you have or have not had any of the following diseases or problems.</span></p> <p class="form-par">NOTE: <span>Both doctor and patient are encouraged to discuss any and all relevant patient health Issues prior to treatment.</span></p> <p class="form-sm">I certify that I have read and understand the above and that the information given on this form is accurate. I understand the importance of a truthful health history and that my dentist and his/her staff will rely on this information for treating me. I acknowledge that my questions, if any, about inquiries set forth above have been answered to my satisfaction. I will not hold my dentist, or any other member of his/her staff, responsible for any action they take or do not take because of errors or omissions that I may have made in the completion of this form.</p> <p class="form-par med-dk-blue-517">Please sign the form below. Thank you!</p> <div class="flex-container"> <div class="flex-item-left">[signature* signature-665 background:#f6f6f7 cols:270 rows:100]</div> </div> </div> <!-- end page6 --> [submit "Send"]
Sorry I made a mistake in writing my last message. I meant…
Note: The 1st signature field is NOT Required and the 2nd one IS Required.
Thanks! Here is my code:
<!-- PAGE BREAK - START PAGE 6 --> <div id="page6"> <h2 class="form med-dk-blue-517">MEDICAL INFORMATION Cont...</h2> <p class="form-par">Please check below <span>to indicate if you have or have not had any of the following diseases or problems.</span></p> <p class="form-par">NOTE: <span>Both doctor and patient are encouraged to discuss any and all relevant patient health Issues prior to treatment.</span></p> <p class="form-sm">I certify that I have read and understand the above and that the information given on this form is accurate. I understand the importance of a truthful health history and that my dentist and his/her staff will rely on this information for treating me. I acknowledge that my questions, if any, about inquiries set forth above have been answered to my satisfaction. I will not hold my dentist, or any other member of his/her staff, responsible for any action they take or do not take because of errors or omissions that I may have made in the completion of this form.</p> <p class="form-par med-dk-blue-517">Please sign the form below. Thank you!</p> <div class="flex-container"> <div class="flex-item-left">[signature signature-664 background:#f6f6f7 cols:270 rows:100]</div> </div> </div> <!-- end page6 --> [cf7mls_step cf7mls_step-1 "Next" ""] <!-- PAGE BREAK - START PAGE 6 --> <div id="page6"> <h2 class="form med-dk-blue-517">MEDICAL INFORMATION Cont...</h2> <p class="form-par">Please check below <span>to indicate if you have or have not had any of the following diseases or problems.</span></p> <p class="form-par">NOTE: <span>Both doctor and patient are encouraged to discuss any and all relevant patient health Issues prior to treatment.</span></p> <p class="form-sm">I certify that I have read and understand the above and that the information given on this form is accurate. I understand the importance of a truthful health history and that my dentist and his/her staff will rely on this information for treating me. I acknowledge that my questions, if any, about inquiries set forth above have been answered to my satisfaction. I will not hold my dentist, or any other member of his/her staff, responsible for any action they take or do not take because of errors or omissions that I may have made in the completion of this form.</p> <p class="form-par med-dk-blue-517">Please sign the form below. Thank you!</p> <div class="flex-container"> <div class="flex-item-left">[signature* signature-665 background:#f6f6f7 cols:270 rows:100]</div> </div> </div> <!-- end page6 --> [submit "Send"]
The form is now on a different page than the above link.
https://staging3.cocoabeachdentistry.com/cocoa-beach-dentistry-new-patient-form-2/Note: The 1st signature field is set to Required and the 2nd one is not.
Thanks, Greg
Forum: Plugins
In reply to: [CF7 to Webhook] Documentation to ZapierThanks Ya I got it working. Can you point me to the examples too? Maybe I can learn something new..
Forum: Plugins
In reply to: [CF7 to Webhook] Documentation to ZapierOk ya… I got it. Missed the whole screenshot section. LOL
Forum: Plugins
In reply to: [Yoast SEO] Google serp title does not match yoast SEO titleThank you for your reply! Greg
Thanks I’ll try that
Just to be thorough how do i find every js file my site is using?
and what about the scripts in the head that are not links, do i copy and paste the whole script into Exclude Files List?
thanks again
Thank you very much!
Thank you and yes i have a question. Please see this link for question:
https://www.ads-software.com/support/topic/minify-javascript-problem/
figured it out. Just had to change file permissions of the cache folder to 777
Thats a bit lighter.. Thanks! I’ll try it.
@shellbeezy – Thanks! Yes I tried writing some js like you suggested but was having trouble getting it to work. I’m sure I was simply doing it wrong, my JavaScript skills need some work. ??
I was able to do it with this function in my functions.php file in my child theme.
`function action_woocommerce_after_add_to_cart_button() {
if ( ! WC()->cart->is_empty() ) {
echo ‘<div class=”woocommerce-message krank-mesg” role=”alert”><a href=”./cart/” class=”button wc-forward”>VIEW CART</a> <p class”woo-fx-added”><span>The New Formula X Driver</span> has been added to your cart.</p></div>’;
} else {
}
};
add_action( ‘woocommerce_after_add_to_cart_button’,
‘action_woocommerce_after_add_to_cart_button’, 10, 0 );`- This reply was modified 6 years, 9 months ago by Greg Robertson.
Thanks