lapoguidi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Restore procedure blocked access to siteHi jmm28260,
could you explain what you changed inside the wp-config.php file?
I have the same problem, but I’m not able to solve.
Thank you very much!Forum: Plugins
In reply to: [Contact Form 7 Datepicker] setting date picker required doesn't workHi, I experienced the same problem, but I solved changing few rows of code in Contact Form 7 Datepicker plugin, using CF7 author informations in Contact Form 7 v4.1 beta pages.
After I save a backup copy of the original code, in /wp-content/plugins/contact-form-7-datepicker/modules/datetime.php I changed starting from line 124:
if ('datetime*' == $type && empty($value)) { $result['valid'] = false; $result['reason'][$name] = wpcf7_get_message('invalid_required'); } if (! empty($value) && ! self::is_valid_date($value)) { $result['valid'] = false; $result['reason'][$name] = wpcf7_get_message('invalid_datetime'); }
in that way:
if ('datetime*' == $type && empty($value)) { $result['valid'] = false; $result['reason'] = array($name => wpcf7_get_message('invalid_required')); } if (! empty($value) && ! self::is_valid_date($value)) { $result['valid'] = false; $result['reason'] = array($name => wpcf7_get_message('invalid_datetime')); }
Then I changed also date.php (from line 119) and time.php (from line 119) files in that similar way.
I hope this helps, also if it’s not a perfect solution because change the original code, anyway I’ll wait for plugin author to update this great plugin.
Forum: Plugins
In reply to: [Easy Digital Downloads - Free Download] I've updated this for EDD 1.9.9Hi Rescue Themes,
I tried it and it seems to work fine: at least in my case, links for free to download files never answer with a 403.
Thank you very much!Forum: Plugins
In reply to: [Easy Digital Downloads - Free Download] Download Link does not workHi hsnyc,
did you solved the problem?
EDD v1.9.9.2 and EDDF v0.2.0 didn’t works together.
Somebody can help us?
Thank youForum: Plugins
In reply to: [Autoptimize] Autoptimize remove inline CSS from head tagThanks Frank,
I solved adding a single quote at the end and at the beginning of the font name.
Thank you very much!Lapo
Forum: Plugins
In reply to: [Autoptimize] Autoptimize remove inline CSS from head tagPlease forget the question I wrote before… The inline CSS is transposed inside the result cached php file, the problem is that I’m using Source Sans Pro font and the minifier remove the spaces so the name is SourceSansPro so not recognized ??
Cause found, Now I need to solve the problem hehe
Suggestions appreciatedLapo