HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-86-generic #87-Ubuntu SMP PREEMPT_DYNAMIC Mon Sep 22 18:03:36 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: /home/cga.org.uk/public_html-20250527134140/wp-content/themes/simpleshift/parts/header-banner.php
<?php if (is_front_page() && !is_paged())  { ?>
    <?php $section_bg=simpleshift_get_option('fp-banner-background-image');
    if (!empty($section_bg)) {
        $simpleshift_parallax="data-parallax='scroll' data-image-src='" . esc_url($section_bg) . "' style='background: rgba(0, 0, 0, 0.35);'";
        $parallax_active="parallax_active";
    } else {
        $simpleshift_parallax="data-parallax='scroll' data-image-src='" . get_template_directory_uri() . "/assets/images/preview/road.jpg' style='background: rgba(0, 0, 0, 0.35);'";
        $parallax_active="parallax_active";
    } ?>
    <?php if (simpleshift_get_option('fp-banner-toggle') == '1') { ?>
        <section class="ssbanner frontpage-banner <?php if(isset($parallax_active)){echo $parallax_active;} ?>" <?php if(isset($simpleshift_parallax)){echo $simpleshift_parallax;} ?>>
            <div class="container">
                <div class="banner-wrap" data-sr='wait 0.4s, scale up 25%'>
                    <?php if (simpleshift_get_option('fp-banner-title') != '') { ?>
                        <div class="banner-title titlefamily"><?php echo esc_html(simpleshift_get_option('fp-banner-title')); ?></div>
                    <?php } ?>
                    <?php if (simpleshift_get_option('fp-banner-sub-title') != '') { ?>
                        <div class="banner-sub-title titlefamily"><?php echo esc_html(simpleshift_get_option('fp-banner-sub-title')); ?></div>
                    <?php } ?>
                    <?php if (simpleshift_get_option('fp-banner-button-url') != '') { ?>
                        <div class="banner-link-button"><a href="<?php echo esc_url(simpleshift_get_option('fp-banner-button-url')); ?>"><?php echo esc_html(simpleshift_get_option('fp-banner-button-text')); ?></a></div>
                    <?php } ?>
                </div>      
            </div>    
        </section>  
    <?php } else { ?>  
        <?php $simpleshift_pp_toggle=trim(simpleshift_get_option('fp-pp-banner-toggle'));
        $p='';
        if (!empty($simpleshift_pp_toggle)){
            if ($simpleshift_pp_toggle=='post') {
                $p=intval(simpleshift_get_option('fp_pp_banner_posts'));
                $custom_args = array('posts_per_page' => 1, 'post__not_in' => get_option( 'sticky_posts' ), 'p' => $p);
            } else if ($simpleshift_pp_toggle=='page') {
                $p=intval(simpleshift_get_option('fp_pp_banner_page'));
                $custom_args = array('posts_per_page' => 1, 'page_id' => $p);
            }
        } else {
            $custom_args = array('posts_per_page' => 1, 'post__not_in' => get_option( 'sticky_posts' ));
        }
        $custom_query = new WP_Query( $custom_args );
        if ( $custom_query->have_posts() ) {
            while ( $custom_query->have_posts() ) {
                $custom_query->the_post(); 
                $sub_title=trim(simpleshift_get_option('fp-pp-banner-sub-title-override'));
                if (empty($sub_title)) {
                    $content = get_the_content();
                    $sub_title=wp_trim_words( $content , '5' );
                }
                if ( has_post_thumbnail() ) {
                    $thumb_id = get_post_thumbnail_id();
                    $thumb_url_array = wp_get_attachment_image_src($thumb_id);
                    $thumb_url = $thumb_url_array[0];
                    if (!empty($thumb_url)) {
                        $simpleshift_parallax="data-parallax='scroll' data-image-src='" . esc_url($thumb_url) . "' style='background: rgba(0, 0, 0, 0.35);'";
                        $parallax_active="parallax_active";
                    }
                } else {
                    $section_bg=simpleshift_get_option('fp-banner-background-image');
                    if (!empty($section_bg)) {
                        $simpleshift_parallax="data-parallax='scroll' data-image-src='" . esc_url($section_bg) . "' style='background: rgba(0, 0, 0, 0.35);'";
                        $parallax_active="parallax_active";
                    } else {
                        $simpleshift_parallax="data-parallax='scroll' data-image-src='" . get_template_directory_uri() . "/assets/images/preview/road.jpg' style='background: rgba(0, 0, 0, 0.35);'";
                        $parallax_active="parallax_active";
                    }
                }
                ?>
                <section class="frontpage-banner <?php if(isset($parallax_active)){echo $parallax_active;} ?>" <?php if(isset($simpleshift_parallax)){echo $simpleshift_parallax;} ?>>
                    <div class="container">
                        <div class="banner-wrap" data-sr='wait 0.9s, scale up 25%'>
                            <?php the_title('<div class="banner-title">','</div>'); ?>
                            <div class="banner-sub-title"><?php echo $sub_title; ?></div>
                            <div class="banner-link-button"><a class="btn-simpleshift" href="<?php the_permalink(); ?>"><?php _e('Learn More', 'simpleshift' ); ?></a></div>
                        </div>    
                    </div>    
                </section> 
            <?php  }      
        }
        wp_reset_postdata(); ?>
    <?php } ?> 
<?php } else { ?> 
    <?php
    if ( has_post_thumbnail() ) {
        $thumb_id = get_post_thumbnail_id();
        $thumb_url_array = wp_get_attachment_image_src($thumb_id, 'full');
        $thumb_url = $thumb_url_array[0];
        if (!empty($thumb_url)) {
            $simpleshift_parallax="data-parallax='scroll' data-image-src='" . esc_url($thumb_url) . "' style='background: rgba(0, 0, 0, 0.35);'";
            $parallax_active="parallax_active";
        } 
    } else {
        $section_bg=simpleshift_get_option('sub-banner-background-image');
        if (!empty($section_bg)) {
            $simpleshift_parallax="data-parallax='scroll' data-image-src='" . esc_url($section_bg) . "' style='background: rgba(0, 0, 0, 0.35);'";
            $parallax_active="parallax_active";
        } else {
            $simpleshift_parallax="data-parallax='scroll' data-image-src='" . get_template_directory_uri() . "/assets/images/preview/road.jpg' style='background: rgba(0, 0, 0, 0.35);'";
            $parallax_active="parallax_active";
        }
    }   
    ?>
        <section class="ssbanner subpage-banner <?php if(isset($parallax_active)){echo $parallax_active;} ?>"  <?php if(isset($simpleshift_parallax)){echo $simpleshift_parallax;} ?>>
            <div class="container">
                <div class="banner-wrap" data-sr='wait 0.4s, scale up 25%'>
                    <h1 class="banner-title titlefamily"><?php get_template_part( 'parts/title'); ?></h1>
                </div>    
            </div>    
        </section> 
<?php } ?>