/home/blackyak/www/wordpress/wp-content/themes/travivu/includes/options/opts-trip-general.php
<?php
Redux::setSection( $opt_name, array(
'title' => esc_html__('Trip General', 'travivu'),
'desc' => '',
'icon' => 'el-icon-wrench',
'fields' => array(
array(
'id' => 'lt-rating-options',
'type' => 'info',
'raw' => '<h3 style="margin: 0;">' . esc_html__( 'Listing Rating Option', 'travivu' ) . '</h3>'
),
array(
'id' => 'lt_reviews',
'type' => 'multi_text',
'title' => esc_html__('Listing Review Item / Title[key]', 'travivu'),
'subtitle' => esc_html__('Example: Quality[quality], Format: Title[key]', 'travivu'),
'default' => array('Quality[quality]', 'Location[Location]', 'Services[services]', 'Pricing[price]')
),
array(
'id' => 'lt_review_allow_owner',
'type' => 'select',
'title' => esc_html__('Allow listing owner review', 'travivu'),
'desc' => esc_html__('Allow listing owners to review their own listings.', 'travivu'),
'options' => array(
'enable' => esc_html__('Enable', 'travivu'),
'disable' => esc_html__('Disable', 'travivu'),
),
'default' => 'enable'
),
array(
'id' => 'inc_exc_top',
'type' => 'button_set',
'title' => esc_html__('Enable/Disable Include/Exclude in Top content', 'travivu'),
'options' => array(
'yes' => esc_html__('Enable', 'travivu'),
'no' => esc_html__('Disable', 'travivu')
),
'default' => 'yes'
),
)
));