get_template( 'header_stickybar.tpl.php' ); ?>
parent->sections as $k => $section) {
if ( isset( $section['customizer_only'] ) && $section['customizer_only'] == true ) {
continue;
}
//$active = ( ( is_numeric($this->parent->current_tab) && $this->parent->current_tab == $k ) || ( !is_numeric($this->parent->current_tab) && $this->parent->current_tab === $k ) ) ? ' style="display: block;"' : '';
$section['class'] = isset( $section['class'] ) ? ' ' . $section['class'] : '';
echo '
';
//echo '
';
echo '
';
foreach ($section['tab'] as $subkey => $subsection) {
echo '
';
echo '
';
echo "hello ".$subkey;
do_settings_sections( $this->parent->args['opt_name'] . $k . '_tab_' . $subkey . '_section_group' );
echo "
";
echo "
";
}
echo "
";
} else {
*/
// Don't display in the
$display = true;
if ( isset( $_GET['page'] ) && $_GET['page'] == $this->parent->args['page_slug'] ) {
if ( isset( $section['panel'] ) && $section['panel'] == "false" ) {
$display = false;
}
}
if ( $display ) {
do_action( "redux/page/{$this->parent->args['opt_name']}/section/before", $section );
$this->output_section( $k );
do_action( "redux/page/{$this->parent->args['opt_name']}/section/after", $section );
}
//}
?>
';
}
/**
* action 'redux/page-after-sections-{opt_name}'
*
* @deprecated
*
* @param object $this ReduxFramework
*/
do_action( "redux/page-after-sections-{$this->parent->args['opt_name']}", $this ); // REMOVE LATER
/**
* action 'redux/page/{opt_name}/sections/after'
*
* @param object $this ReduxFramework
*/
do_action( "redux/page/{$this->parent->args['opt_name']}/sections/after", $this );
?>
get_template( 'footer.tpl.php' ); ?>