nolaflash
Forum Replies Created
-
@lukecavanagh – thank you for the reply. Didn’t get mail notification. My idea was that after click on submit that an interim message like Processing… could be displayed while file upload or any other process is running.
Ostensibly these folks are not uploading large files but a number of them either report the form never finishes submitting or that it never starts. Just trying to make it glaringly obvious if the gears are turning.
I solved the positioning of the ajax-loader.gif so that will help. Also moved [response] directly above submit button.
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Stock management?Thanks for the reply!
Forum: Plugins
In reply to: [Front End PM] Messages deleted by 4.1 update of FEPM?Thank you. Issue is resolved.
Forum: Plugins
In reply to: [Contact Form 7] Submit button not renderedOK, will do. Thank you.
Agreed. Found the bug report form after posting here. Have replied to emailed response from NGG.
Forum: Plugins
In reply to: [Contact Form 7] Debugging my wpcf7_validate_checkbox functionSeems like a link to https://contactform7.com/2015/03/28/custom-validation/ from the Tips section on https://contactform7.com/docs/ or from Additional Settings page would be a great idea!
Forum: Plugins
In reply to: [Contact Form 7] Debugging my wpcf7_validate_checkbox functionThis works!! Thank you for the link, the plugin, and the nice new OOP code. My Friday is better already! Small present sent via PayPal.
add_filter( 'wpcf7_validate_checkbox', 'care_account_valid', 20, 2 ); function care_account_valid( $result, $tag ) { $tag = new WPCF7_Shortcode( $tag ); if ( 'agree-to-conditions' == $tag->name ) { $new = isset( $_POST['new'] ) ? trim( $_POST['new'] ) : ''; if ( $new == 'Yes' && !isset($_POST['agree-to-terms'])) { $result->invalidate( $tag, "Please check the box to accept the Terms and Conditions." ); } } return $result; }
Forum: Plugins
In reply to: [Contact Form 7] Debugging my wpcf7_validate_checkbox functionThank you for the reply!
I meant to mention that I had tried checkbox without requiring it via * but found that when not required if I mailed a var_dump() of $result that agree-to-terms never showed up in the array at all when not required.
Anyway I will definitely read the link you sent right now.
The time you take helping us use your free and fantastic plugin is GREATLY appreciated!
OK, so after a little digging I found this is sufficient but it would be even better if I could latch on to an event from frontend.min.js that signified the calendar had finished rendering.
Is there an event for that?
Thanks!
<script type="text/javascript"> jQuery(document).ready(function(){ setTimeout(function() { jQuery("#eo-event-cat").val('csc'); jQuery(".eo-fullcalendar").fullCalendar("rerenderEvents"); }, 500); }); </script>
I think I’ll try to rig this up by leaving the headerRight list and removing category and add to the template a jQuery call to submit the form with the CSC index selected as long as the selectedIndex is at zero when the page loads.
??
Thank you for the response!
Forum: Plugins
In reply to: [WP Better Attachments] Arbitrary sortingVery sorry- you have done this and I somehow missed it.
Forum: Plugins
In reply to: [Contact Form 7] Find what file types were allowed with a file field?Thank you. I should have found that in my search. I would suggest the addition of csv, xls, and xlsx to the defaults.
Your time and this great plugin are appreciated!
Thanks
Thank you!