Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
inc
/
options
/
Editing: socials.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__( 'Contact & Socials', 'koncrete' ), 'id' => 'socials_section', 'heading' => '', 'icon' => 'el el-twitter', 'fields' => array( array( 'id' => 'phone', 'type' => 'text', 'title' => esc_html__( 'Phone', 'koncrete' ), 'default' => '+ 00 58000 0000', ), array( 'id' => 'office_time', 'type' => 'text', 'title' => esc_html__( 'Office Time', 'koncrete' ), 'default' => 'Sat- Mon : 09am - 10.00 am', ), array( 'id' => 'email', 'type' => 'text', 'title' => esc_html__( 'Email', 'koncrete' ), 'validate' => 'email', 'default' => 'koncrete@gmail.com', ), array( 'id' => 'phone_text', 'type' => 'text', 'title' => esc_html__( 'Phone Text', 'koncrete' ), 'default' => 'Phone', ), array( 'id' => 'office_time_text', 'type' => 'text', 'title' => esc_html__( 'Office Time Text', 'koncrete' ), 'default' => 'Opening Hours', ), array( 'id' => 'email_text', 'type' => 'text', 'title' => esc_html__( 'Email Text', 'koncrete' ), 'default' => 'Mail Us', ), array( 'id' => 'social_facebook', 'type' => 'text', 'title' => esc_html__( 'Facebook', 'koncrete' ), 'default' => 'https://facebook.com/', ), array( 'id' => 'social_twitter', 'type' => 'text', 'title' => esc_html__( 'Twitter', 'koncrete' ), 'default' => 'https://twitter.com/', ), array( 'id' => 'social_gplus', 'type' => 'text', 'title' => esc_html__( 'Google Plus', 'koncrete' ), 'default' => '', ), array( 'id' => 'social_linkedin', 'type' => 'text', 'title' => esc_html__( 'Linkedin', 'koncrete' ), 'default' => '', ), array( 'id' => 'social_youtube', 'type' => 'text', 'title' => esc_html__( 'Youtube', 'koncrete' ), 'default' => 'https://www.youtube.com/', ), array( 'id' => 'social_pinterest', 'type' => 'text', 'title' => esc_html__( 'Pinterest', 'koncrete' ), 'default' => 'https://www.pinterest.com/', ), array( 'id' => 'social_instagram', 'type' => 'text', 'title' => esc_html__( 'Instagram', 'koncrete' ), 'default' => 'https://www.instagram.com/', ), array( 'id' => 'social_skype', 'type' => 'text', 'title' => esc_html__( 'Skype', 'koncrete' ), 'default' => '', ), array( 'id' => 'social_rss', 'type' => 'text', 'title' => esc_html__( 'RSS', 'koncrete' ), 'default' => '', ), ) ) );
Save
Cancel