File: /mnt/data/dreamssalon-wp/wp-content/themes/dreamsalon/footer.php
<?php
if (in_array('redux-framework/redux-framework.php', apply_filters('active_plugins', get_option('active_plugins')))) {
$page_footer_style = 'default'; // Default fallback
if (is_page()) {
$page_footer_style = get_post_meta(get_the_ID(), '_footer_style', true) ?: 'default';
}
if ($page_footer_style === 'default') {
$page_footer_style = dreamsalon_fl_framework_getoptions('footer_style') ?: 'default';
}
switch ($page_footer_style) {
case 'style1':
get_template_part('templates/footer/footer', 'style-1');
break;
case 'style2':
get_template_part('templates/footer/footer', 'style-2');
break;
case 'style3':
get_template_part('templates/footer/footer', 'style-3');
break;
default:
get_template_part('templates/footer/footer', 'style-1');
break;
}
} else {
get_template_part('templates/footer/footer', 'default');
}
?>