HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
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');
}
?>