'switch', 'settings' => 'show_errpage_banner', 'label' => esc_html__( 'Show Error Banner', 'borax' ), 'section' => 'error_section', 'default' => true, 'choices' => array( true => esc_html__( 'Enable', 'borax' ), false => esc_html__( 'Disable', 'borax' ), ), ); $fields[] = array( 'type' => 'image', 'settings' => 'error_banner_img', 'label' => esc_html__( 'Error Banner Image', 'borax' ), 'section' => 'error_section', 'default' => BORAX_IMAGES . '/404.png', 'required' => array( array( 'setting' => 'show_error_banner', 'operator' => '==', 'value' => 1, ) ), ); $fields[]= array( 'type' => 'text', 'settings' => 'error_banner_title', 'label' => esc_html__( 'Error Banner Title', 'borax' ), 'section' => 'error_section', 'transport' => 'postMessage', 'js_vars' => array( array( 'element' => '.inner-banner-content .inner-banner-title', 'function' => 'html' ), ), 'default' => '404', 'required' => array( array( 'setting' => 'show_error_banner', 'operator' => '==', 'value' => 1, ) ), ); $fields[]= array( 'type' => 'text', 'settings' => 'error_title', 'label' => esc_html__( 'Error Title', 'borax' ), 'section' => 'error_section', 'default' => 'Error Page', ); $fields[]= array( 'type' => 'text', 'settings' => 'error_subtitle', 'label' => esc_html__( 'Error Subtitle', 'borax' ), 'section' => 'error_section', 'default' => 'Either Something went wrong or the page doesn\'t exist anymore', ); $fields[]= array( 'type' => 'textarea', 'settings' => 'error_content', 'label' => esc_html__( 'Error Subtitle', 'borax' ), 'section' => 'error_section', 'default' => 'We are Sorry! Not content in this page. Either Something went wrong or the page doesn\'t exist anymore', ); $fields[]= array( 'type' => 'text', 'settings' => 'back_to_home_label', 'label' => esc_html__( 'Back to home button label', 'borax' ), 'section' => 'error_section', 'default' => 'Back to Home', );