Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author David Garcia Watkins

    (@dgwatkins)

    Checking the PHP manual I can see that lcfirst is only available since PHP 5.3
    https://php.net/lcfirst

    I have alerted the developers about this and it will be fixed for next release.

    As a workaround, you can add these lines to functions.php in your theme:

    if ( !function_exists( ‘lcfirst’ ) ) {
    function lcfirst( $str ) {
    $str[0] = strtolower($str[0]);
    return $str;
    }
    }

    Thread Starter vantonius

    (@vantonius)

    Thanks but now when i want to install it again on another site, it didnt want to create woocommerce page.
    Its just said that im missing page but theres no “Create Page” button

    Hi vantonius,

    I’m not sure if I understand your problem… If Woocommerce have already created your store pages, you should be able to find a warning in WPML>Woocommerce Multilingual telling you that there are some store pages missing in your secondary language (if you haven’t translated all of them yet) and a button to ‘Create missing store pages’. If you click that button, all store pages will be automatically translated.

    Is there anything missing in your case?

    Thanks,
    Bernat

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Fatal error’ is closed to new replies.