Sancoale Technologies
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Form not submitting after updating WordPress to 4.7.1Hi,
I have disabled all plugins except CF7 and retried submitting the form again, but the result is the same – loader animation keeps turning but nothing happens.
I have checked and confirm that the details are entered into the Contact Form Advanced DatabaseForum: Plugins
In reply to: [Contact Form 7] Form not submitting after updating WordPress to 4.7.1Hi, this does not appear to be a conflict with a plugin. I have not added any new plugins to the setup. The only thing is, I upgraded to WordPress 4.7.1
Will disable all plugins except CF7 and try again and report back to you.Forum: Plugins
In reply to: [Contact Form 7] 6 sites using contact form 7 are throwing errorsHi jmergener,
I seem to have the same issue. and this has started only after upgrading to WordPress 4.7.1
The author says it is due to a conflict with some other plugin.Forum: Fixing WordPress
In reply to: How to duplicate the Custom Menu in the footerThanks esmi and endrest, you people made my day. Just remember to replace the ‘Project Nav’ with your own Menu Name.
Forum: Fixing WordPress
In reply to: grab post/page url and pass it as a hidden field to a sidebar formWell waited a long time for the solution but didn’t get any.
Finally I got behind it and found out the solution myself.
Here’s the solution:Create a hidden field as shown below –
<input type="hidden" name="pageurl" id="URL" value="" />Then add the below displayed code at the end of the form code, but before the </form> tag –
<script> document.getElementById("URL").value=document.location.href; </script>That’s all to it.