| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/infrafs/www/wp-content/themes/trackstore/trackstore/framework/admin/options/page/ |
Upload File : |
<?php
if ( ! function_exists( 'trackstore_elated_page_options_map' ) ) {
function trackstore_elated_page_options_map() {
trackstore_elated_add_admin_page(
array(
'slug' => '_page_page',
'title' => esc_html__( 'Page', 'trackstore' ),
'icon' => 'fa fa-file-text-o'
)
);
/***************** Page Layout - begin **********************/
$panel_sidebar = trackstore_elated_add_admin_panel(
array(
'page' => '_page_page',
'name' => 'panel_sidebar',
'title' => esc_html__( 'Page Style', 'trackstore' )
)
);
trackstore_elated_add_admin_field(
array(
'name' => 'page_show_comments',
'type' => 'yesno',
'label' => esc_html__( 'Show Comments', 'trackstore' ),
'description' => esc_html__( 'Enabling this option will show comments on your page', 'trackstore' ),
'default_value' => 'yes',
'parent' => $panel_sidebar
)
);
/***************** Page Layout - end **********************/
/***************** Content Layout - begin **********************/
$panel_content = trackstore_elated_add_admin_panel(
array(
'page' => '_page_page',
'name' => 'panel_content',
'title' => esc_html__( 'Content Style', 'trackstore' )
)
);
trackstore_elated_add_admin_field(
array(
'type' => 'text',
'name' => 'content_top_padding',
'default_value' => '',
'label' => esc_html__( 'Content Top Padding for Template in Full Width', 'trackstore' ),
'description' => esc_html__( 'Enter top padding for content area for templates in full width. If you set this value then it\'s important to set also Content top padding for mobile header value', 'trackstore' ),
'args' => array(
'suffix' => 'px',
'col_width' => 3
),
'parent' => $panel_content
)
);
trackstore_elated_add_admin_field(
array(
'type' => 'text',
'name' => 'content_top_padding_in_grid',
'default_value' => '',
'label' => esc_html__( 'Content Top Padding for Templates in Grid', 'trackstore' ),
'description' => esc_html__( 'Enter top padding for content area for Templates in grid. If you set this value then it\'s important to set also Content top padding for mobile header value', 'trackstore' ),
'args' => array(
'suffix' => 'px',
'col_width' => 3
),
'parent' => $panel_content
)
);
trackstore_elated_add_admin_field(
array(
'type' => 'text',
'name' => 'content_top_padding_mobile',
'default_value' => '',
'label' => esc_html__( 'Content Top Padding for Mobile Header', 'trackstore' ),
'description' => esc_html__( 'Enter top padding for content area for Mobile Header', 'trackstore' ),
'args' => array(
'suffix' => 'px',
'col_width' => 3
),
'parent' => $panel_content
)
);
/***************** Content Layout - end **********************/
/***************** Additional Page Layout - start *****************/
do_action( 'trackstore_elated_additional_page_options_map' );
/***************** Additional Page Layout - end *****************/
}
add_action( 'trackstore_elated_options_map', 'trackstore_elated_page_options_map', 5);
}