Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #794242

    I see many people posting about this and I didn’t want to get lost in the shuffle.

    Please help

    Fatal error: Can’t use function return value in write context in /home4/ab7261/public_html/wp-content/themes/enfold/framework/php/class-form-generator.php on line 435

    #794258

    Hi,

    The issue has been reported, there will be a fix soon. For now, you can go to this file wp-content/themes/enfold/framework/php/class-form-generator.php on line 435 via FTP and comment out this code

    
    
    				if( ! empty( trim( $element['label'] ) ) )
    				{
    					$placeholder_text = $element['label'];
    				}
    				if( ! empty( $element['check'] ) )
    				{
    					$extra = "*";
    				}
    

    Thank you for your patience and sorry for the inconvenience.
    Best regards,
    Victoria

    #794261

    Im sorry but I don’t know what you mean by “comment out this code”. Do you mean “remove it” or change it?

    #794267

    Hi jbergmeier,

    Put // in front of all these lines for comments. But for now try like this:

    
    if( ! empty( $element['label'] ) )
    {
    	$placeholder_text = $element['label'];
    }
    if( ! empty( $element['check'] ) )
    {
    $extra = "*";
    }
    

    Best regards,
    Victoria

    #794274

    //Thank you.
    //Fixed it thanks to you.
    //Learned something new today.
    //:)

    #794598

    Hi,

    Glad that Victoria helped you :) Thanks for using Enfold :)

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Fatal Error 435’ is closed to new replies.