mcprime
Forum Replies Created
-
I have the same issue. I checked on a network packet after confirming Import each record as step.
This is the error
Warning: Undefined variable $data in /var/www/clients/client0/web8/web/wp-content/plugins/wp-ultimate-csv-importer/extensionModules/FeaturedMediaExtension.php on line 52I fixed it by removing the line that contain $data and adjusting the code below.
Forum: Themes and Templates
In reply to: [Hello Elementor] Strange Code on Functions.phpHey @r1k0 ,
Thanks a ton for the heads-up and the clear explanation!
I’ll go through the WordPress hacked site guide and reach out to my hosting provider to check the logs — hopefully I can pinpoint when
functions.phpwas edited. If I’ve got a clean backup from before that, I’ll restore it.Really appreciate you taking the time to help me out. 🙏
Cheers
- This reply was modified 8 months ago by mcprime.
Forum: Plugins
In reply to: [Country & Phone Field Contact Form 7] Default County SetupSame thing happened to me. I checked the API used for geolocation and the API response is limited.
So I changed the API url used for geolocation and adjusted variable used in the plugin file.
Here’s how to do it:
1. Go to Plugin editor and select Country & Phone Field Contact Form 7 plugin
2. Go to file /includes/include-js-css.php
3. Near line 138, comment the url and add new geolocation API url so it will be something like
//url: “https://reallyfreegeoip.org/json/”,
url: “https://freeipapi.com/api/json/”,
4. Near line 140 in success callback, add adjusting variable so it will be something like
success: function(response){
response.country_code = response.countryCode.toLowerCase();
5. Done. You can test againSo in this case we only change added two line of code total. Hope this helps
Forum: Plugins
In reply to: [WooCommerce] Woocommerce database crash out of memoryHi @seank123 thanks for the reply!
It’s using VM for staging site. How do you know it don’t have enough RAM? Is my RAM not enough for minimum specification for Woocommerce?