Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • lapoguidi

    (@lapoguidi)

    Hi 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!

    lapoguidi

    (@lapoguidi)

    Hi, 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.

    lapoguidi

    (@lapoguidi)

    Hi 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!

    lapoguidi

    (@lapoguidi)

    Hi 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 you

    Thread Starter lapoguidi

    (@lapoguidi)

    Thanks Frank,
    I solved adding a single quote at the end and at the beginning of the font name.
    Thank you very much!

    Lapo

    Thread Starter lapoguidi

    (@lapoguidi)

    Please 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 appreciated

    Lapo

Viewing 6 replies - 1 through 6 (of 6 total)