ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-15 02:50:18
Editing: general.php
Cancel
Save Changes
<?php $layout_query = array( 'post_type'=>'et_pb_layout', 'posts_per_page'=>-1, 'meta_query' => array( array( 'key' => '_et_pb_predefined_layout', 'compare' => 'NOT EXISTS') ) ); $dtb_layout_shortcode_val = dtb_get_option('dtb_layout_shortcode'); $dtb_svg_uploads_val = dtb_get_option('dtb_svg_uploads'); $dtb_hide_projects_val = dtb_get_option('dtb_hide_projects'); $dtb_scrollbar_val = dtb_get_option('dtb_scrollbar'); $dtb_social_enable_val = dtb_get_option('dtb_social_enable'); $dtb_social_links_val = dtb_get_option('dtb_social_links'); $dtb_social_move_val = dtb_get_option('dtb_modcustomize_social_move'); $dtb_social_target_val = dtb_get_option('dtb_social_target'); $dtb_instagram_url_val = dtb_get_option('dtb_instagram_url'); $dtb_youtube_url_val = dtb_get_option('dtb_youtube_url'); $dtb_linkedin_url_val = dtb_get_option('dtb_linkedin_url'); $dtb_pinterest_url_val = dtb_get_option('dtb_pinterest_url'); $dtb_tumblr_url_val = dtb_get_option('dtb_tumblr_url'); $dtb_flickr_url_val = dtb_get_option('dtb_flickr_url'); $dtb_dribble_url_val = dtb_get_option('dtb_dribble_url'); $dtb_vimeo_url_val = dtb_get_option('dtb_vimeo_url'); $dtb_skype_url_val = dtb_get_option('dtb_skype_url'); $dtb_custom_login_val = dtb_get_option('dtb_custom_login'); $dtb_login_link_type_val = dtb_get_option('dtb_login_link_type'); $dtb_login_link_type_val = !empty($dtb_login_link_type_val) ? $dtb_login_link_type_val : 'no_url'; $dtb_login_link_val = dtb_get_option('dtb_login_link'); $login_links = array( 'no_url' => array( 'name' => 'no_url', 'value' => 'Do not change the URL' ), 'home_url' => array( 'name' => 'home_url', 'value' => 'Use the website homepage URL' ), 'other_url' => array( 'name' => 'other_url', 'value' => 'Use a different URL:' ) ); ?> <div id="general" class="tool <?php echo $active_tab == 'general' ? 'tool-active' : ''; ?>"> <div class="toolbox trigger"> <div class="box-title"> <h3><?php _e('Divi Layouts Shortcode', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("This option enables the possibility to display any layout from the Divi Library as a shortcode. You can display modules inside other modules, widgets, etc.", "divi-toolbox"); ?></p></div> </div> <div class="box-content minibox"> <div class="checkbox"> <input name="dtb_layout_shortcode" type="checkbox" value="1" <?php checked( '1', $dtb_layout_shortcode_val ); ?> /> </div> </div> </div> <div class="hide"> <div class="toolbox first nopad"> <div class="box-title"> </div> <div class="box-content"> <div class="info"> <h4><?php _e('How to use the Shortcodes?', 'divi-toolbox'); ?></h4> <p> <?php echo __('1. Save any Module, Row or Section in the Divi Library.', 'divi-toolbox'); ?><br/> <?php echo __('2. Navigate to Divi → Divi Library.', 'divi-toolbox'); ?><br/> <?php echo __('3. Copy the shortcode you\'ll see on the Layouts list, eg.', 'divi-toolbox'); ?> <strong>[showlayout id=123]</strong><br/> <?php echo __('4. Paste the shortcode inside any module, widget or any other place on your website.', 'divi-toolbox'); ?> </p> </div> </div> </div> </div> <div class="toolbox trigger"> <div class="box-title"> <h3><?php _e('Customize Login Page', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php printf(esc_html__("Enable this option if you'd like to edit the standard login page appearance using %s", "divi-toolbox"), '<a href=' . admin_url( 'customize.php?et_customizer_option_set=theme&autofocus[section]=dtb_general&url=' ) . urlencode( wp_login_url() ) . ' target=_blank>' . __('Toolbox Customizer', 'divi-toolbox') . '</a>' ); ?></p></div> </div> <div class="box-content minibox"> <div class="checkbox"> <input name="dtb_custom_login" type="checkbox" value="1" <?php checked( '1', $dtb_custom_login_val ); ?> /> </div> </div> </div> <div class="hide"> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Login Logo URL', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("You can change the URL of the logo image link (the default is WordPress.org website).", "divi-toolbox"); ?></p></div> </div> <div class="box-content"> <div class="menu-wrap"> <?php foreach( $login_links as $login_link ) : ?> <div class="menu-item"> <input type="radio" name="dtb_login_link_type" value="<?php esc_attr_e( $login_link['name'], 'divi-toolbox' ); ?>" id="<?php esc_attr_e( $login_link['name'] ); ?>" <?php checked( $dtb_login_link_type_val, $login_link['name'] ); ?> class="customradio"/> <label for="<?php echo $login_link['name']; ?>"><?php echo $login_link['value']; ?></label> </div> <?php endforeach;?> </div> <input type="text" name="dtb_login_link" value="<?php echo $dtb_login_link_val;?>" placeholder="https://"/> </div> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Hide Projects', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("This options hides the Projects post type and corresponding page builder modules from the Dashboard view.", "divi-toolbox"); ?></p></div> </div> <div class="box-content minibox"> <div class="checkbox"> <input name="dtb_hide_projects" type="checkbox" value="1" <?php checked( '1', $dtb_hide_projects_val ); ?> /> </div> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Allow SVG File Type Uploads', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Add SVG support in the WordPress Media Library.", "divi-toolbox"); ?></p></div> </div> <div class="box-content minibox"> <div class="checkbox"> <input name="dtb_svg_uploads" type="checkbox" value="1" <?php checked( '1', $dtb_svg_uploads_val ); ?> /> </div> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Custom Browser Scrollbar', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enable this to change the default Scrollbar appearance. Works only in webkit-based browsers (eg. Chrome and Safari).", "divi-toolbox"); ?></p></div> </div> <div class="box-content minibox"> <div class="checkbox"> <input name="dtb_scrollbar" type="checkbox" value="1" <?php checked( '1', $dtb_scrollbar_val ); ?> /> </div> </div> </div> <h2 class="tool-section"><?php _e('Social Icons', 'divi-toolbox'); ?></h2> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Enable Custom Social Icons Style', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php printf(esc_html__("Enable this if you'd like to use the %s to edit social icons appearance", "divi-toolbox"), '<a href=' . admin_url( 'customize.php?autofocus[section]=dtb_social') . ' target=_blank>' . __('Toolbox Customizer', 'divi-toolbox') . '</a>' ); ?></p></div> </div> <div class="box-content minibox"> <div class="checkbox"> <input name="dtb_social_enable" type="checkbox" value="1" <?php checked( '1', $dtb_social_enable_val ); ?> /> </div> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Open Social Links in a New Tab', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enable this if you'd like to open Divi social links in new browser window (please note it won't work in the customizer preview).", "divi-toolbox"); ?></p></div> </div> <div class="box-content minibox"> <div class="checkbox"> <input name="dtb_social_target" type="checkbox" value="1" <?php checked( '1', $dtb_social_target_val ); ?> /> </div> </div> </div> <div class="toolbox trigger"> <div class="box-title"> <h3><?php _e('Add More Social Icons', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Add additional links to social networks (displayed in Divi header and footer).", "divi-toolbox"); ?></p></div> </div> <div class="box-content minibox"> <div class="checkbox"> <input name="dtb_social_links" type="checkbox" value="1" <?php checked( '1', $dtb_social_links_val ); ?> /> </div> </div> </div> <div class="hide social-tools"> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Instagram', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enter your URL to display the icon.", "divi-toolbox"); ?></p></div> </div> <div class="box-content"> <input type="text" name="dtb_instagram_url" value="<?php echo $dtb_instagram_url_val;?>"/> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Youtube', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enter your URL to display the icon.", "divi-toolbox"); ?></p></div> </div> <div class="box-content"> <input type="text" name="dtb_youtube_url" value="<?php echo $dtb_youtube_url_val;?>"/> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('LinkedIn', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enter your URL to display the icon.", "divi-toolbox"); ?></p></div> </div> <div class="box-content"> <input type="text" name="dtb_linkedin_url" value="<?php echo $dtb_linkedin_url_val;?>"/> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Pinterest', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enter your URL to display the icon.", "divi-toolbox"); ?></p></div> </div> <div class="box-content"> <input type="text" name="dtb_pinterest_url" value="<?php echo $dtb_pinterest_url_val;?>"/> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Tumblr', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enter your URL to display the icon.", "divi-toolbox"); ?></p></div> </div> <div class="box-content"> <input type="text" name="dtb_tumblr_url" value="<?php echo $dtb_tumblr_url_val;?>"/> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Flickr', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enter your URL to display the icon.", "divi-toolbox"); ?></p></div> </div> <div class="box-content"> <input type="text" name="dtb_flickr_url" value="<?php echo $dtb_flickr_url_val;?>"/> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Dribbble', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enter your URL to display the icon.", "divi-toolbox"); ?></p></div> </div> <div class="box-content"> <input type="text" name="dtb_dribble_url" value="<?php echo $dtb_dribble_url_val;?>"/> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Vimeo', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enter your URL to display the icon.", "divi-toolbox"); ?></p></div> </div> <div class="box-content"> <input type="text" name="dtb_vimeo_url" value="<?php echo $dtb_vimeo_url_val;?>"/> </div> </div> <div class="toolbox"> <div class="box-title"> <h3><?php _e('Skype', 'divi-toolbox'); ?></h3> <div class="box-descr"><p><?php _e("Enter your URL to display the icon.", "divi-toolbox"); ?></p></div> </div> <div class="box-content"> <input type="text" name="dtb_skype_url" value="<?php echo $dtb_skype_url_val;?>"/> </div> </div> </div> </div>
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete