Romel Indemne
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Hi, I just noticed when I disable the cache, it works. I guess I just have to exclude the page from WP Fastest Cache.
Forum: Plugins
In reply to: [Lazy Social Comments] Console error that says ‘onclick’ of nullI actually disabled the comments settings. By enabling comments fixed my issue.
Thanks! I was also getting the error!
I had the same issue. So I reverted back to the previouse version 2.0.7. Guess I we’ll have to wait for the update. 🙂
Forum: Plugins
In reply to: [Country & Phone Field Contact Form 7] Required Fields Not WorkingHi All, I noticed that the required on “phonetext” field is not properly working, by default it has a value of +1. Here’s my TEMPORARY fix:
Add the following code to your custom js file.
$('input.wpcf7-phonetext').val("");Or add this to your functions.php file
function remove_phonetext_value(){ ?> <script type="text/javascript"> (function($) { $(function() { $('input.wpcf7-phonetext').val(""); }); })(jQuery); </script> <?php } add_action('wp_footer', 'remove_phonetext_value');- This reply was modified 7 years ago by Romel Indemne.
- This reply was modified 7 years ago by Romel Indemne.
Same issue here. I also noticed when I clear the cache the error is gone.
Viewing 6 replies - 1 through 6 (of 6 total)