Dario Corbelli
Forum Replies Created
-
Forum: Plugins
In reply to: [AWD Weight/Country Shipping for WooCommerce] donot workIt works like a charme for me. Are you sure you’ve modified the right lines of code?
Forum: Plugins
In reply to: [AWD Weight/Country Shipping for WooCommerce] donot workYou need replace every instance of $this->settings[‘opt-name’] with $this->get_option(‘opt-name’) in the shipping-awd.php file.
For example, on line 55 you must replace
$this->enabled = $this->settings['enabled'];
with
$this->enabled = $this->get_option('enabled');Replace every instance and the plugin will work again.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] JS Error when submit formI’ve tried to create another form and it retrieve the same error.
I see that if i alert the “data” variable (in script.js) when not all of the fields of the form are filled it works! but if all is filled it shows this error!
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] JS Error when submit formi’ve disabled every plugin but it still doesn’t work 🙁
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] JS Error when submit formi’ve updated both wordpress and contact form plugin to the newest version and it still doesn’t work for me…
where should i put that code?
Forum: Hacks
In reply to: make extra columns in user.php sortableI’ve the same problem and i’ve noticed that the ‘request’ filter isn’t applied for the users’ list! It’s only called for posts and pages.
Still looking for solutions.