Krupal Kumar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upload images to media library problemIt’s may be possible wrong folder permission else have you configured wrong upload path in admin menu setting > media
Forum: Networking WordPress
In reply to: Uploaded images not showing on WP 4.3 subdomain multisiteIt’s may be possible wrong folder permission else have you configured wrong upload path in admin menu setting > media
Forum: Plugins
In reply to: [Contact Form 7] Failed to send your message.Thank you Takayuki Miyoshi
Forum: Plugins
In reply to: [Contact Form 7] Jquery ui confirmation dialog box in CF7Set two button in CF7 form default submit button and our button
<!-- Default CF7 submit button --> <input class="wpcf7-form-control wpcf7-submit" value="Send" id="submit_after_confirm" style="display:none;" type="submit" /> <!-- Our submit button --> <input value="submit" id="confirmation_before_submit" type="button" />
on click our submit button show jquery ui dialog box if user click ok fire js click trigger else close dialog box
$("#confirmation_before_submit").click(function(){ var msg = "Are you sure delete this record."; $('<div id="dvConfirmModal"></div>').appendTo('body').html("<p>"+msg+"</p>") .dialog({ modal: true, title: 'Confirmation', zIndex: 10000, autoOpen: true, width: 'auto', resizable: false, draggable: false, buttons: { Ok: function(){ $(this).dialog('close'); $( "input#submit_after_confirm" ).trigger( "click" ); }, Cancel: function(){ $(this).dialog("close"); } }, close: function(event, ui) { $(this).remove(); } }); });
Oooh… tray to solve error best of luck.
if are you solve this error so plz. tell me what is errortray without template i think some issue in your template
i have used same your code in my site just change template.If are you used two form in one page so plz. used like this
[theme-my-login default_action=”login”]
[theme-my-login default_action=”register”]
and trust me it’s working perfect i have already implement in my site
Don’t used two login form in one page
in my case we are run theme-my-login widget in side bar on login page.after remove widget on login page my issue solve it.
Actually i have user theme my login widget
widget provide me three option in
Default Action
– login
– register
– lost password
i have select login option in default action but error as it ishelp me if any idea.