🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-05 22:35:27 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
staging.eliteewallet.com
/
wp-content
/
themes
/
avas
📍 /home/eliteewa/staging.eliteewallet.com/wp-content/themes/avas
🔄 Refresh
✏️
Editing: single-service.php
Writable
<?php /** * * @package tx * @author theme-x * @link https://theme-x.org/ * * ==================================== * Single Service * ==================================== */ get_header(); $brochure_title = get_post_meta(get_the_ID(), 'brochure_title', true); $brochure_desc = get_post_meta(get_the_ID(), 'brochure_desc', true); $brochure_img_id = get_post_meta(get_the_ID(), 'brochure_img', true); $brochure_img_url = wp_get_attachment_image_src( $brochure_img_id, 'tx-ms-size' ); $brochure_img_name = basename( get_attached_file( $brochure_img_id ) ); $brochure_image = ( !empty($brochure_img_url[0]) ) ? $brochure_img_url[0] : null; $brochure_file_id = get_post_meta(get_the_ID(), 'brochure_file', true); $brochure_file = wp_get_attachment_url($brochure_file_id); $form_shortcode = do_shortcode(get_post_meta(get_the_ID(), 'form_shortcode', true)); ?> <div class="container space-content"> <div class="row"> <?php if (have_posts()): while (have_posts()): the_post(); ?> <div class="col-lg-12 col-sm-12 service-image"> <?php if (has_post_thumbnail()) : ?> <?php the_post_thumbnail('tx-xl-thumb'); ?> <?php endif; ?> </div> <div class="col-lg-8 col-sm-12"> <div class="service-content"> <?php the_content(); ?> </div> <?php if ( tx_is_enabled('service-comments') ) : if (comments_open() || get_comments_number()) : comments_template(); endif; endif; ?> <!-- comments section --> </div> <?php wp_reset_postdata(); ?> <?php endwhile; ?> <?php endif; ?><!-- End left part --> <div id="secondary" class="widget-area col-lg-4 col-md-6 col-sm-12" role="complementary"> <?php if(!empty($brochure_title) || !empty($brochure_desc) || !empty($brochure_image) || !empty($brochure_file) || !empty($form_shortcode) ) : ?> <div class="widget"> <?php if ( !empty($brochure_title) ) : ?> <h3 class="widget-title"><?php echo esc_html($brochure_title); ?></h3> <?php endif; ?> <?php if ( !empty($brochure_desc) ) : ?> <p class="service-brochure-desc"><?php echo esc_html($brochure_desc); ?></p> <?php endif; ?> <?php if(!empty($brochure_image)) : ?> <div class="brochure-img"> <img src="<?php echo esc_attr($brochure_image); ?>" alt="<?php echo esc_attr($brochure_img_name); ?>" /> </div> <?php endif; ?> <?php if (!empty($brochure_file)) : ?> <div class="brochure-file"> <a class="btn-brochure" href="<?php echo esc_url($brochure_file); ?>" target="_blank"><i class="bi bi-file-earmark"></i> <?php esc_html_e('Download File', 'avas'); ?></a> </div> <?php endif; ?> <div class="rtl-space-20"></div> <?php if(!empty($form_shortcode)) : ?> <div><?php echo wp_sprintf($form_shortcode); ?></div> <?php endif; ?> </div><!-- widget end --> <?php endif; ?> <?php if (is_active_sidebar('sidebar-services')) : dynamic_sidebar('sidebar-services'); ?> <?php endif; ?> </div> <!-- /#secondary --> </div> </div> <?php get_footer(); ?>
💾 Save Changes
❌ Cancel