Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
inc
/
options
/
Editing: error.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; use \Redux; $opt_name = Constants::$theme_options; Redux::setSection( $opt_name, array( 'title' => esc_html__( 'Error Page Settings', 'koncrete' ), 'id' => 'error_settings_section', 'heading' => '', 'icon' => 'el el-error-alt', 'fields' => array( array( 'id' => 'error_body_image', 'type' => 'media', 'title' => esc_html__( 'Error Body Banner Image', 'koncrete' ), 'default' => array( 'url'=> Helper::get_img( 'errorbanner.jpg' ) ), ), array( 'id' => 'error_image', 'type' => 'media', 'title' => esc_html__( 'Error Image', 'koncrete' ), 'default' => array( 'url'=> Helper::get_img( '404.png' ) ), ), array( 'id' => 'error_text', 'type' => 'text', 'title' => esc_html__( 'Error Text', 'koncrete' ), 'default' => esc_html__( "We can't find the page you're looking for", 'koncrete' ), ), array( 'id' => 'error_buttontext', 'type' => 'text', 'title' => esc_html__( 'Button Text', 'koncrete' ), 'default' => esc_html__( 'Go To Home Page', 'koncrete' ), ) ) ) );
Save
Cancel