HEX
Server: LiteSpeed
System: Linux server318.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User: joyfejor (3859)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/joyfejor/public_html/wp-content/themes/onepress/section-parts/section-contact.php
<?php
$onepress_contact_id            = get_theme_mod('onepress_contact_id', 'contact');
$onepress_contact_disable       = get_theme_mod('onepress_contact_disable') == 1 ? true : false;
$onepress_contact_title         = get_theme_mod('onepress_contact_title', esc_html__('Get in touch', 'onepress'));
$onepress_contact_subtitle      = get_theme_mod('onepress_contact_subtitle', esc_html__('Section subtitle', 'onepress'));
$onepress_contact_cf7           = get_theme_mod('onepress_contact_cf7');
$onepress_contact_cf7_disable   = get_theme_mod('onepress_contact_cf7_disable');
$onepress_contact_text          = get_theme_mod('onepress_contact_text');
$onepress_contact_address_title = get_theme_mod('onepress_contact_address_title');
$onepress_contact_address       = get_theme_mod('onepress_contact_address');
$onepress_contact_phone         = get_theme_mod('onepress_contact_phone');
$onepress_contact_email         = get_theme_mod('onepress_contact_email');
$onepress_contact_fax           = get_theme_mod('onepress_contact_fax');

if (onepress_is_selective_refresh()) {
	$onepress_contact_disable = false;
}

if ($onepress_contact_cf7 || $onepress_contact_text || $onepress_contact_address_title || $onepress_contact_phone || $onepress_contact_email || $onepress_contact_fax) {
	$desc = get_theme_mod('onepress_contact_desc');
?>
	<?php if (!$onepress_contact_disable) : ?>
		<?php if (!onepress_is_selective_refresh()) { ?>
			<section id="<?php if ($onepress_contact_id != '') {
								echo esc_attr($onepress_contact_id);
							}; ?>" <?php do_action('onepress_section_atts', 'counter'); ?> class="<?php echo esc_attr(apply_filters('onepress_section_class', 'section-contact section-padding  section-meta onepage-section', 'contact')); ?>">
			<?php } ?>
			<?php do_action('onepress_section_before_inner', 'contact'); ?>
			<div class="<?php echo esc_attr(apply_filters('onepress_section_container_class', 'container', 'contact')); ?>">
				<?php if ($onepress_contact_title || $onepress_contact_subtitle || $desc) { ?>
					<div class="section-title-area">
						<?php if ($onepress_contact_subtitle != '') {
							echo '<h5 class="section-subtitle">' . esc_html($onepress_contact_subtitle) . '</h5>';
						} ?>
						<?php if ($onepress_contact_title != '') {
							echo '<h2 class="section-title">' . esc_html($onepress_contact_title) . '</h2>';
						} ?>
						<?php if ($desc) {
							echo '<div class="section-desc">' . wp_kses_post(apply_filters('onepress_the_content', $desc)) . '</div>';
						} ?>
					</div>
				<?php } ?>
				<div class="row">
					<?php if ($onepress_contact_cf7_disable != '1') : ?>
						<?php if (isset($onepress_contact_cf7) && $onepress_contact_cf7 != '') { ?>
							<div class="contact-form col-sm-6 wow slideInUp">
								<?php echo do_shortcode(wp_kses_post($onepress_contact_cf7)); ?>
							</div>
						<?php } else { ?>
							<div class="contact-form col-sm-6 wow slideInUp">
								<br>
								<small>
									<i><?php printf(esc_html__('You can install %1$s plugin and go to Customizer &rarr; Section: Contact &rarr; Section Content to show a working contact form here.', 'onepress'), '<a href="' . esc_url('https://wordpress.org/plugins/pirate-forms/', 'onepress') . '" target="_blank">Contact Form 7</a>'); ?></i>
								</small>
							</div>
						<?php } ?>
					<?php endif; ?>

					<div class="col-sm-6 wow slideInUp">
						<?php
						if ($onepress_contact_text != '') {
							echo wp_kses_post(apply_filters('onepress_the_content', trim($onepress_contact_text)));
						}
						?>
						<br><br>
						<div class="address-box">

							<h3><?php if ($onepress_contact_address_title != '') {
									echo wp_kses_post($onepress_contact_address_title);
								} ?></h3>

							<?php

							if ($onepress_contact_address != '') : ?>
								<div class="address-contact">
									<span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-map-marker fa-stack-1x fa-inverse"></i></span>

									<div class="address-content"><?php echo wp_kses_post($onepress_contact_address); ?></div>
								</div>
							<?php endif; ?>

							<?php
							if ($onepress_contact_phone != '') :
								$phones = explode(',', $onepress_contact_phone);
								foreach ($phones as $phone) {
									$phone = trim($phone);
									if (!$phone) {
										continue;
									}
							?>
									<div class="address-contact">
										<span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-phone fa-stack-1x fa-inverse"></i></span>
										<div class="address-content"><?php echo wp_kses_post($phone); ?></div>
									</div>
							<?php }
							endif; ?>

							<?php

							if ($onepress_contact_email != '') :
								$emails = explode(',', $onepress_contact_email);
								foreach ($emails as $email) {
									$mail = trim($email);
									if (!$mail) {
										continue;
									}
							?>
									<div class="address-contact">
										<span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-envelope-o fa-stack-1x fa-inverse"></i></span>
										<div class="address-content"><a href="mailto:<?php echo esc_attr(antispambot($email)); ?>"><?php echo esc_html(antispambot($email)); ?></a></div>
									</div>
							<?php }
							endif; ?>

							<?php 
							if ($onepress_contact_fax != '') :
								$faxs = explode(',', $onepress_contact_fax);
								foreach ($faxs as $fax) {
									$fax = trim($fax);
									if (!$fax) {
										continue;
									}
							?>
									<div class="address-contact">
										<span class="fa-stack"><i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-fax fa-stack-1x fa-inverse"></i></span>
										<div class="address-content"><?php echo wp_kses_post($fax); ?></div>
									</div>
							<?php }
							endif; ?>
						</div>
					</div>
				</div>
			</div>
			<?php do_action('onepress_section_after_inner', 'contact'); ?>
			<?php if (!onepress_is_selective_refresh()) { ?>
			</section>
		<?php } ?>
<?php endif;
}