/home/smartbloks/www/help.smartbloks.ai/wp-content/themes/docly/options/opt_404.php
<?php

Redux::set_section('docly_opt', array(
    'title'     => esc_html__( '404 Error Settings', 'docly' ),
    'id'        => '404_0pt',
    'icon'      => 'dashicons dashicons-info',
    'fields'    => array(
        array(
            'title'     => esc_html__( 'Title Text', 'docly' ),
            'id'        => 'error_heading',
            'type'      => 'text',
            'default'   => esc_html__( "Error. We can’t find the page you’re looking for.", 'docly' ),
        ),

        array(
            'title'     => esc_html__( 'Subtitle', 'docly' ),
            'id'        => 'error_subtitle',
            'type'      => 'textarea',
            'default'   => esc_html__( 'Sorry for the inconvenience. Go to our homepage or check out our latest collections for Fashion, Chair, Decoration...', 'docly' ),
        ),

        array(
            'title'     => esc_html__( 'Home Button Title', 'docly' ),
            'id'        => 'error_home_btn_label',
            'type'      => 'text',
            'default'   => esc_html__( 'Back to Home Page', 'docly' ),
        ),

        array(
            'id'          => 'btn_font_color',
            'type'        => 'color',
            'title'       => esc_html__( 'Button Text Color', 'docly' ),
            'output'      => array(
                'color' => '.error_area .action_btn',
            ),
        ),

        array(
            'id'          => 'btn_bg_color',
            'type'        => 'color',
            'title'       => esc_html__( 'Button Background Color', 'docly' ),
            'output'      => array(
                'background' => '.error_area .action_btn',
            ),
        ),

        array(
            'title'     => esc_html__( 'Background shape', 'docly' ),
            'subtitle'  => esc_html__( 'Upload here the default background shape image', 'docly' ),
            'id'        => 'error_bg_shape_image',
            'type'      => 'media',
            'compiler'  => true,
            'default'   => [
                'url' => DOCLY_DIR_IMG.'/404_bg.png'
            ]
        ),
    )
));