When i save my settings, i get this Error:
Notice: Undefined index: id in l/wp-content/themes/mytheme/inc/ReduxCore/framework.php on line 3024
Can you replace line 3024 this:
if ( ! isset( $plugin_options[ $field['id'] ] ) || $plugin_options[ $field['id'] ] == '' )
With this:
if ( ! isset( $plugin_options[ $field['id'] ] ) || ( isset($plugin_options[ $field['id'] ] ) && $plugin_options[ $field['id'] ] == '') )
Thanks