viriato74
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: File hacked wp-includes\include.phpThanks
Forum: Plugins
In reply to: [Fullworks Firewall] ERROR LOGError log in cPanel with this plugin
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 v5.1.6 not work with reCaptcha v3Contact for 7
I use this Plugins, all them for block Spam
– WordPress Zero Spam
– HoneyPot 2 fields
– Invisible reCaptcha v3Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 v5.1.6 not work with reCaptcha v3I use a fantastic plugin, the best i try WordPress Zero Spam. All Spam attacks from my contact form blocked.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 v5.1.6 not work with reCaptcha v3ok, now.
I disable badge..grecaptcha-badge { visibility: hidden; opacity: 0; transition: linear opacity 1s; } .grecaptcha-badge.showgr { visibility: visible; opacity: 1; transition: linear opacity 1s; } <script> $(document).ready(function () { $( “input[type=text],input[type=email], textarea ” ).focus(function() { $(‘.grecaptcha-badge’).addClass(‘showgr’); }); }); </script>
I was using another code that blocked recaptcha from working
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Align Problem in Comment FormI change theme.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Align Problem in Comment FormYes, below checkbox.
Forum: Plugins
In reply to: [Yoast SEO] Page Speed Plugin Conflit with Yoast SEO Plugin in Admin areaYes.
Forum: Plugins
In reply to: [Calculated Fields Form] Form does not appearThanks.
Forum: Plugins
In reply to: [Calculated Fields Form] Form does not appearI think it already appears, cache problem. Can you confirm?
Forum: Plugins
In reply to: [Calculated Fields Form] Form does not appearI’ve tried this and the form does not appear.
Forum: Fixing WordPress
In reply to: Problem with DateTime – Plugin show other timeThe time showing up correctly in whole site, only incorrect in plugin.
The DateTime Plugin show this
$data['data'][] = array('name' => __('File', 'ulp'), 'value' => $file); $data['data'][] = array('name' => __('Created', 'ulp'), 'value' => date("d-m-Y H:i", $row['registered']));
- This reply was modified 6 years, 2 months ago by viriato74.
Forum: Plugins
In reply to: [Calculated Fields Form] Round and Sum ProblemThe field Tax in my site
(function(){ if(fieldname23 > 0) return ROUND(fieldname23*23.00)/100; if(fieldname25 > 0) return ROUND(fieldname25*23.00)/100; })();
Forum: Plugins
In reply to: [Calculated Fields Form] Round and Sum ProblemI use this
ROUND(fieldnameX*23.00)/100;