• I get these error messages when filling in the form if I am not logged in
    If I am logged in, I do not get these messages

    Notice: Trying to access array offset on value of type bool in /home/jnehegzp/data/www/ebps.org.uk/wp-content/plugins/vfb-pro/public/class-format-field.php on line 26

    Notice: Trying to access array offset on value of type bool in /home/jnehegzp/data/www/ebps.org.uk/wp-content/plugins/vfb-pro/public/class-akismet.php on line 128

    I think this is something to do with Google ReCaptcha V2

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter Andrew Leonard

    (@andrewleonard)

    I have debugged this issue and I have added this code to class-format-field.php

    
    public function format_field( $form_id, $field_id, $value ) {
    		$field = $this->get_field_settings( $field_id );
    +		if (false===$field){return $value;}
    		$type  = $field['field_type'];
    

    and to class-akismet.php

    
    public function set_vars( $field_id, $value ) {
    		$field = $this->get_field_settings( $field_id );
    +		if (false===$field){return;}
    		$type  = $field['field_type'];
    
Viewing 1 replies (of 1 total)

The topic ‘Error Messages’ is closed to new replies.