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/truelysell-wp-demo/wp-content/themes/truelysell/template-parts/template-dashboard.php
<?php

/**
 * Template Name: Dashboard Page
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages
 * and that other 'pages' on your WordPress site will use a
 * different template.
 *
 * @package Truelysell
 */

 if (!is_user_logged_in()) {

	$errors = array();

	if (isset($_REQUEST['login'])) {
		$error_codes = explode(',', $_REQUEST['login']);

		foreach ($error_codes as $code) {
			switch ($code) {
				case 'empty_username':
					$errors[] = esc_html__('You do have an email address, right?', 'truelysell');
					break;
				case 'empty_password':
					$errors[] =  esc_html__('You need to enter a password to login.', 'truelysell');
					break;
				case 'username_exists':
					$errors[] =  esc_html__('This username already exists.', 'truelysell');
					break;
				case 'authentication_failed':
				case 'invalid_username':
					$errors[] =  esc_html__(
						"We don't have any users with that email address. Maybe you used a different one when signing up?",
						'truelysell'
					);
					break;

					case 'invalid_email':
						$errors[] =  esc_html__("Please check email or username correct?",'truelysell');
						break;

					

				case 'incorrect_password':
					$err = __(
						"The password you entered wasn't quite right.",
						'truelysell'
					);
					$errors[] =  sprintf($err, wp_lostpassword_url());
					break;
				default:
					break;
			}
		}
	}
	// Retrieve possible errors from request parameters
	if (isset($_REQUEST['register-errors'])) {
		$error_codes = explode(',', $_REQUEST['register-errors']);

		foreach ($error_codes as $error_code) {

			switch ($error_code) {
				case 'email':
					$errors[] = esc_html__('The email address you entered is not valid.', 'truelysell');
					break;
				case 'email_exists':
					$errors[] = esc_html__('An account exists with this email address.', 'truelysell');
					break;
				case 'closed':
					$errors[] = esc_html__('Registering new users is currently not allowed.', 'truelysell');
					break;
				case 'captcha-no':
					$errors[] = esc_html__('Please check reCAPTCHA checbox to register.', 'truelysell');
					break;
				case 'username_exists':
					$errors[] =  esc_html__('This username already exists.', 'truelysell');
					break;
				case 'captcha-fail':
					$errors[] = esc_html__("You're a bot, aren't you?.", 'truelysell');
					break;
				case 'policy-fail':
					$errors[] = esc_html__("Please accept the Privacy Policy to register account.", 'truelysell');
					break;
				case 'terms-fail':
					$errors[] = esc_html__("Please accept the Terms and Conditions to register account.", 'truelysell');
					break;
				case 'first_name':
					$errors[] = esc_html__("Please provide your first name", 'truelysell');
					break;
				case 'last_name':
					$errors[] = esc_html__("Please provide your last name", 'truelysell');
					break;
				case 'empty_user_login':
					$errors[] = esc_html__("Please provide your user login", 'truelysell');
					break;
				case 'password-no':
					$errors[] = esc_html("You have forgot about password.", 'truelysell', 'truelysell');
					break;
				case 'incorrect_password':
					$err = __(
						"The password you entered wasn't quite right. ",
						'truelysell'
					);
					$errors[] =  sprintf($err, wp_lostpassword_url());
					break;
				default:
					break;
			}
		}
	}
	get_header();

	$page_top = get_post_meta($post->ID, 'truelysell_page_top', TRUE);

	switch ($page_top) {
		case 'titlebar':
			get_template_part('template-parts/header', 'titlebar');
			break;

		case 'parallax':
			get_template_part('template-parts/header', 'parallax');
			break;

		case 'off':

			break;

		default:
			get_template_part('template-parts/header', 'titlebar');
			break;
	}

	$layout = get_post_meta($post->ID, 'truelysell_page_layout', true);
	if (empty($layout)) {
		$layout = 'right-sidebar';
	}
	$class  = ($layout != "full-width") ? "col-lg-9 col-md-8 padding-right-30" : "col-md-12"; ?>
	<div class="content">
	<div class="container <?php echo esc_attr($layout); ?>">

		<div class="row">
		<div class="col-md-12 col-lg-12">
			<div class="login-wrap">
 					<?php if (count($errors) > 0) : ?>
						<?php foreach ($errors  as $error) : ?>
							<div class="alert alert-danger">
								<p><?php echo esc_html($error);  ?></p>
								<a class="close"></a>
							</div>
						<?php endforeach; ?>
					<?php endif; ?>
					<?php if (isset($_REQUEST['registered'])) : ?>
						<div class="badge text-bg-success closeable">
							<p>
								<?php
							
									printf(
										esc_html__('You have successfully registered to %s.', 'truelysell'),
										'<strong>' . get_bloginfo('name') . '</strong>'
									);
								
								?>
							</p>
						</div>
					<?php endif; ?>
					</div>
	</div>
	</div>
	<div class="clearfix"></div>
     <?php do_action('truelysell_login_form');	 ?>
 </div>
 </div>
		
<?php
	get_footer();
} else { //is logged
	$current_user = wp_get_current_user();
	$user_id = get_current_user_id();
	$roles = $current_user->roles;
	$role = array_shift($roles);

	if (!empty($current_user->user_firstname)) {
		$name = $current_user->user_firstname;
	} else {
		$name =  $current_user->display_name;
	}
 
  if (in_array($role, array('administrator', 'admin', 'owner', 'seller', 'staff')))  { 
 	get_header('provider');
	
   } else {
 	get_header();
   }

	

?>
<?php
if (in_array($role, array('administrator', 'admin', 'owner', 'seller', 'staff')))  {  ?>
<div class="page-wrapper">
   <div class="content container-fluid">
 		<div class="row justify-content-center">
 			<!-- Content
			================================================== -->
			<?php
			$current_user = wp_get_current_user();
			$roles = $current_user->roles;
			$role = array_shift($roles);
			if (!empty($current_user->user_firstname)) {
				$name = $current_user->user_firstname;
			} else {
				$name =  $current_user->display_name;
			}
			?>
			<div class="col-xxl-12 col-lg-12" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
			<!-- Titlebar -->
			<?php
			if (truelysell_is_payout_active()) {
				$is_payout_email_added = esc_attr(get_user_meta(get_current_user_id(), 'truelysell_paypal_payout_email', true));
				if (empty($is_payout_email_added)) {
					if (in_array($role, array('administrator', 'admin', 'owner', 'seller'))) :
				?>

						<div class="alert alert-info mb-3" id="unpaid_listing_in_cart">
							<span style="display: block; font-weight: bold;"><?php esc_html_e('PayPal email missing!', 'truelysell') ?></span>
							<?php esc_html_e('Please add your PayPal email address. This is required to get your payments for booking using PayPal Payout service.', 'truelysell'); ?>
							<a  href="<?php echo get_permalink(truelysell_fl_framework_getoptions('payout_page')); ?>"><strong><?php esc_html_e('View Wallet and set the Payout Method there &#8594;', 'truelysell') ?></strong></a>
						</div>
			<?php endif;
				}
			}; ?>
<?php 
if(isset($_GET["action"])) {
	$form_edit = $_GET["action"];
} else {
	$form_edit = 'unedit';
}
?>

<div class="d-flex align-items-center justify-content-between flex-wrap row-gap-3 mb-4">
  <?php
						$is_dashboard_page = truelysell_fl_framework_getoptions('dashboard_page');
						$is_booking_page = truelysell_fl_framework_getoptions('bookings_page');
						$is_listings_page = truelysell_fl_framework_getoptions('listings_page');
						global $post;
						if ($is_dashboard_page == $post->ID) { ?>
							<h4 class="mb-0"><?php esc_html_e('Dashboard', 'truelysell'); ?></h4>
							<?php } else if ($is_booking_page == $post->ID) {
							$status = '';
							if (isset($_GET['status'])) {
								$status = $_GET['status'];
								switch ($status) {
									case 'approved': ?><h4 class="mb-0"><?php esc_html_e('Approved Bookings', 'truelysell'); ?></h4>
									<?php
										break; 
									case 'waiting': ?><h4 class="mb-0"><?php esc_html_e('Pending Bookings', 'truelysell'); ?></h4>
									<?php
										break;
									case 'expired': ?><h4 class="mb-0"><?php esc_html_e('Expired Bookings', 'truelysell'); ?></h4>
									<?php
										break;
									case 'cancelled': ?><h4 class="mb-0"><?php esc_html_e('Cancelled Bookings', 'truelysell'); ?></h4>
									<?php
										break;
									default:
									?><h4 class="mb-0"><?php esc_html_e('Bookings', 'truelysell'); ?></h4>
								<?php
										break;
								}
							} else { ?>
								<h4 class="mb-0"><?php //the_title(); ?>  <?php if ( $form_edit == 'edit') {   ?> <?php esc_html_e('Edit Service', 'truelysell'); ?> <?php } else { ?> <?php the_title(); } ?> </h4>
							<?php }
						} else if ($is_listings_page == $post->ID) {
							$status = '';
							if (isset($_GET['status'])) {
								$status = $_GET['status'];
								switch ($status) {
									case 'active': ?><h4 class="mb-0"><?php esc_html_e('Active Services', 'truelysell'); ?></h4>
									<?php
										break;
									case 'pending': ?><h4 class="mb-0"><?php esc_html_e('Pending Services', 'truelysell'); ?></h4>
									<?php
										break;
									case 'expired': ?><h4 class="mb-0"><?php esc_html_e('Expired Services', 'truelysell'); ?></h4>
									<?php
										break;
									case 'cancelled': ?><h4 class="mb-0"><?php esc_html_e('Cancelled Services', 'truelysell'); ?></h4>
									<?php
										break;
									default:
									?><h4 class="mb-0"><?php esc_html_e('Services', 'truelysell'); ?></h4>
								<?php
										break;
								}
							} else { ?>
								<h4 class="mb-0"><?php the_title(); ?> <?php if ( $form_edit == 'edit') {   ?> <?php esc_html_e('Edit Service', 'truelysell'); ?> <?php } else { ?> <?php   } ?> </h4>
							<?php }
						} else { ?>
							<h4 class="mb-0"><?php if ( $form_edit == 'edit') { ?> <?php esc_html_e('Edit Service', 'truelysell'); ?> <?php } else { ?><?php the_title(); } ?></h4>
						<?php } ?>
						
					</div>
 			<?php
			while (have_posts()) : the_post();
				the_content();
			endwhile; // End of the loop. 
			?>
		</div>
		</div>
   
   
</div>





<?php
	get_footer('provider');
 ?>

<?php
   } else { ?>
	 

	<!-- Dashboard -->
	<div class="content">
	 
		<div class="container">
			<div class="row">
			<div class="col-xl-3 col-lg-4 theiaStickySidebar1">
			<div class=" card user-sidebar mb-4 mb-lg-0  dashboard-nav">
 
			<div class="card-header user-sidebar-header mb-4">
                                <div class="d-flex justify-content-center align-items-center flex-column">
                                    <span class="user rounded-circle avatar avatar-xxl mb-2">
 									   <?php echo get_avatar($current_user->user_email, 60, '', '', array('class' => 'img-fluid rounded-circle')); ?>
                                      </span>
                                    <h6 class="mb-2"><?php echo esc_html($name);?></h6>
                                    <p class="fs-14 mb-0"><?php echo esc_html('Member Since','truelysell'); ?> <?php echo date("M Y", strtotime(get_userdata($user_id)->user_registered)); ?></p>
                                </div>
                            </div>
 
				<div class=" card-body user-sidebar-body p-0 settings-menu_old sidebar-menu-old" id="sidebar-menu">
					<ul >
					<?php if (in_array($role, array('administrator', 'admin', 'owner', 'seller'))) : ?>
						<?php $dashboard_page = truelysell_fl_framework_getoptions('dashboard_page');
						if ($dashboard_page) : ?>
							<li <?php if ($post->ID == $dashboard_page) : ?>class="active mb-4 " <?php endif; ?> class="mb-4 "><a href="<?php echo esc_url(get_permalink($dashboard_page)); ?>" class="d-flex align-items-center"><i class="ti ti-layout-grid me-2"></i><?php esc_html_e('Dashboard', 'truelysell'); ?></a></li>
						<?php endif; ?>
					<?php endif; ?>

					<!-- Addon Services -->
					<!-- <?php if (in_array($role, array('administrator', 'admin', 'owner', 'seller'))) : ?>
						<?php $additional_service_page = truelysell_fl_framework_getoptions('additional_service_page');
						if ($additional_service_page) : ?>
							<li <?php if ($post->ID == $additional_service_page) : ?>class="active" <?php endif; ?>><a   href="<?php echo esc_url(get_permalink($additional_service_page)); ?>"><i class="feather-server"></i><?php esc_html_e('Addon Service', 'truelysell'); ?></a></li>
						<?php endif; ?>
					<?php endif; ?> -->

					<!-- My Services -->
					<?php if (in_array($role, array('administrator', 'admin', 'owner', 'seller'))) : ?>
						<?php $submit_page = truelysell_fl_framework_getoptions('submit_page');
						if ($submit_page) : ?>
							<li <?php if ($post->ID == $submit_page) : ?> class="active mb-4" <?php endif; ?> class="mb-4" ><a href="<?php echo esc_url(get_permalink($submit_page)); ?>" class="d-flex align-items-center"><i class="ti ti-circle-plus me-2"></i> <?php esc_html_e('Add Service', 'truelysell'); ?> </a></li>
						<?php endif; ?>

						<?php if (in_array($role, array('administrator', 'admin', 'owner', 'seller'))) : ?>
						<?php $listings_page = truelysell_fl_framework_getoptions('listings_page');
						if ($listings_page) : ?>
							<li  id="myservices_list" class="submenu" ><a <?php if ($post->ID == $listings_page) {?> class=" d-block mb-3 active my_services " <?php } else { ?> class="my_services d-block mb-3 " <?php } ?>><i class="ti ti-briefcase me-2"></i><?php esc_html_e('My Services', 'truelysell'); ?> <span class="menu-arrow"></span></a>

								<ul class="ms-4" style="display: none;">
									<li class="mb-3">
										<a href="<?php echo esc_url(get_permalink($listings_page)); ?>?status=active" class="fs-14 d-inline-flex align-items-center"><i class="ti ti-chevrons-right me-2"></i><?php esc_html_e('Active', 'truelysell'); ?>
										
											<?php
											$count_published =  truelysell_count_posts_by_user($user_id, 'listing', 'publish');
											if (isset($count_published)) : ?><span class="badge bg-success ms-2"><?php echo esc_html($count_published); ?></span><?php endif; ?>
										</a>
									</li>
									<li  class="mb-3">
										<a href="<?php echo esc_url(get_permalink($listings_page)); ?>?status=pending" class="fs-14 d-inline-flex align-items-center"><i class="ti ti-chevrons-right me-2"></i><?php esc_html_e('Pending', 'truelysell'); ?>
										
											<?php
											$count_pending =  truelysell_count_posts_by_user($user_id, 'listing', 'pending');
											$count_pending_payment =  truelysell_count_posts_by_user($user_id, 'listing', 'pending_payment');
											$count_draft =  truelysell_count_posts_by_user($user_id, 'listing', 'draft');
											$total_pending_count = $count_pending + $count_pending_payment + $count_draft;
											if ($total_pending_count) : ?><span class="badge bg-info  ms-2"><?php echo esc_html($total_pending_count); ?></span><?php endif; ?>
										</a>
									</li>
									<li  class="mb-3">
										<a href="<?php echo esc_url(get_permalink($listings_page)); ?>?status=expired" class="fs-14 d-inline-flex align-items-center">
										<i class="ti ti-chevrons-right me-2"></i>
											<?php esc_html_e('Expired', 'truelysell'); ?>
											<?php
											$count_expired =  truelysell_count_posts_by_user($user_id, 'listing', 'expired');
											if ($count_expired) : ?><span class="badge bg-danger  ms-2"><?php echo esc_html($count_expired) ?></span><?php endif; ?>
										</a>
									</li>

								</ul>
							</li>
							<?php endif; ?>
						<?php endif; ?>
					<?php endif; ?>



					<!-- My Services End -->

					<?php if (in_array($role, array('administrator', 'admin', 'owner', 'seller'))) : ?>
						<?php $bookings_page = truelysell_fl_framework_getoptions('bookings_page');
						if ($bookings_page) : ?>
							<li id="bookservices_list" class="submenu mb-4"  ><a class="d-block mb-3 <?php if ($post->ID == $bookings_page) { ?> active <?php  } ?> "><i class="ti ti-calendar-month me-2"></i> <?php esc_html_e('Booking List', 'truelysell'); ?> <span class="menu-arrow"></span></a>
								<ul class="ms-4" style="display: none;">
									<li  class="mb-3"> 
										<a href="<?php echo esc_url(get_permalink($bookings_page)); ?>?status=waiting" class="fs-14 d-inline-flex align-items-center">
										<i class="ti ti-chevrons-right me-2"></i>
										<?php esc_html_e('Pending', 'truelysell'); ?>
										
											<?php
											$count_pending = truelysell_count_bookings($user_id, 'waiting');
											if (isset($count_pending)) : ?><span class="badge bg-info  ms-2"><?php echo esc_html($count_pending); ?></span><?php endif; ?>
										</a>
									</li>
									<li  class="mb-3">
										<a href="<?php echo esc_url(get_permalink($bookings_page)); ?>?status=approved" class="fs-14 d-inline-flex align-items-center">
										<i class="ti ti-chevrons-right me-2"></i><?php esc_html_e('Approved', 'truelysell'); ?>
										
											<?php
											$count_approved = truelysell_count_bookings($user_id, 'approved');
											if (isset($count_approved)) : ?><span class="badge bg-success  ms-2"><?php echo esc_html($count_approved); ?></span><?php endif; ?>
										</a>
									</li>
									<li  class="mb-3">
										<a href="<?php echo esc_url(get_permalink($bookings_page)); ?>?status=cancelled" class="fs-14 d-inline-flex align-items-center">
										<i class="ti ti-chevrons-right me-2"></i><?php esc_html_e('Cancelled', 'truelysell'); ?>
										
											<?php
											$count_cancelled = truelysell_count_bookings($user_id, 'cancelled');
											if (isset($count_cancelled)) : ?><span class="badge bg-danger  ms-2"><?php echo esc_html($count_cancelled); ?></span><?php endif; ?>
										</a>
									</li>
									<?php if (truelysell_fl_framework_getoptions('show_expired')) : ?>
										<li  class="mb-3">
											<a href="<?php echo esc_url(get_permalink($bookings_page)); ?>?status=expired" class="fs-14 d-inline-flex align-items-center">
											<i class="ti ti-chevrons-right me-2"></i><?php esc_html_e('Expired', 'truelysell'); ?>
											
												<?php
												$count_cancelled = truelysell_count_bookings($user_id, 'expired');
												if (isset($count_cancelled)) : ?><span class="badge bg-danger  ms-2"><?php echo esc_html($count_cancelled); ?></span><?php endif; ?>
											</a>
										</li>
									<?php endif; ?>


								</ul>

							</li>
						<?php endif; ?>
					<?php endif; ?>

					<?php
					$user_bookings_page = truelysell_fl_framework_getoptions('user_bookings_page');
					if (truelysell_fl_framework_getoptions('owners_can_book')) {

						if ($user_bookings_page) : ?>
							<li <?php if ($post->ID == $user_bookings_page) : ?> class="active mb-4" <?php endif; ?> class="mb-4" ><a href="<?php echo esc_url(get_permalink($user_bookings_page)); ?>" class="d-flex align-items-center"> <i class="ti ti-layout-grid me-2"></i><?php esc_html_e('Booking List', 'truelysell'); ?></a></li>
						<?php endif;
					} else {
						if (!in_array($role, array('owner', 'seller'))) : ?>
							<?php if ($user_bookings_page) : ?>
								<li class=" mb-4 "><a  href="<?php echo esc_url(get_permalink($user_bookings_page)); ?>" class="d-flex align-items-center  <?php if ($post->ID == $user_bookings_page) : ?>active <?php endif; ?> " ><i class="ti ti-device-mobile me-2"></i> <?php esc_html_e('My Bookings', 'truelysell'); ?></a></li>
							<?php endif; ?>
					<?php endif;
					} ?>

                     <?php if (in_array($role, array('administrator', 'admin', 'owner', 'seller'))) : ?>
						<?php $payout_page = truelysell_fl_framework_getoptions('payout_page');
						if ($payout_page) : ?>
							<li class=" mb-4" ><a href="<?php echo esc_url(get_permalink($payout_page)); ?>" class="d-flex align-items-center <?php if ($post->ID == $payout_page) : ?> active <?php endif; ?>"><i class="ti ti-wallet me-2"></i> <?php esc_html_e('Payout', 'truelysell'); ?></a>
							</li>
						<?php endif; ?>
					<?php endif; ?>
								
					<!-- wallet -->
					<?php if (in_array($role, array('administrator', 'admin', 'owner', 'seller'))) : ?>
						<?php $wallet_page = truelysell_fl_framework_getoptions('wallet_page');
						if ($wallet_page) : ?>
							<li class=" mb-4" ><a href="<?php echo esc_url(get_permalink($wallet_page)); ?>" class="d-flex align-items-center <?php if ($post->ID == $wallet_page) : ?> active<?php endif; ?>"><i class="ti ti-cash-banknote me-2"></i> <?php esc_html_e('Earnings', 'truelysell'); ?></a>
							</li>
						<?php endif; ?>
					<?php endif; ?>


                     <?php if (!in_array($role, array('owner', 'seller'))) : ?>
						<?php $bookmarks_page = truelysell_fl_framework_getoptions('bookmarks_page');
						if ($bookmarks_page) : ?>
							<li id="<?php echo esc_html($role);?>" class="mb-4" ><a  href="<?php echo esc_url(get_permalink($bookmarks_page)); ?>" class="d-flex align-items-center <?php if ($post->ID == $bookmarks_page) : ?> active <?php endif; ?>"><i class="ti ti-heart me-2"></i> <?php esc_html_e('Favourites', 'truelysell'); ?></a></li>
						<?php endif; ?>
					<?php endif; ?>
                       <!-- Reviews -->
					<?php $reviews_page = truelysell_fl_framework_getoptions('reviews_page');
					if ($reviews_page) : ?>
						<li id="<?php echo esc_html($role);?>" class="mb-4"><a   href="<?php echo esc_url(get_permalink($reviews_page)); ?>" class="d-flex align-items-center <?php if ($post->ID == $reviews_page) : ?> active <?php endif; ?> "><i class="ti ti-star me-2"></i> <?php esc_html_e('Reviews', 'truelysell'); ?></a></li>
					<?php endif; ?>
 
                    
						<!-- Messages -->
					<?php $messages_page = truelysell_fl_framework_getoptions('messages_page');
					if ($messages_page) : ?>
						<li id="<?php echo esc_html($role);?>"  class="mb-4"><a href="<?php echo esc_url(get_permalink($messages_page)); ?>" class="d-flex align-items-center <?php if ($post->ID == $messages_page) : ?>  active <?php endif; ?>"><i class="ti ti-message-circle me-2"></i> <?php esc_html_e('Chat ', 'truelysell'); ?>
								<?php
								$counter = truelysell_get_unread_counter();
								if ($counter) { ?>
									<span class="nav-tag messages"> (<?php echo esc_html($counter); ?>)</span>
								<?php } ?>
							</a>
						</li>
				<?php endif; ?>
			
					<!-- Profile settings -->
					<?php $profile_page = truelysell_fl_framework_getoptions('profile_page');
					if ($profile_page) : ?>
						<li class="mb-4"><a  href="<?php echo esc_url(get_permalink($profile_page)); ?>" class="d-flex align-items-center <?php if ($post->ID == $profile_page) : ?> active <?php endif; ?> "><i class="ti ti-settings me-2"></i> <?php esc_html_e('Settings', 'truelysell'); ?></a></li>
					<?php endif; ?>
			
					<!-- Logout -->
					<li class="mb-0"><a href="<?php echo wp_logout_url(home_url()); ?>"><i class="ti ti-logout me-2"></i> <?php esc_html_e('Logout', 'truelysell'); ?></a></li>
				</ul>
				</div>
		 
			 
			
			 
			</div>
			</div>
			<!-- Content
			================================================== -->
			<?php
			$current_user = wp_get_current_user();
			$roles = $current_user->roles;
			$role = array_shift($roles);
			if (!empty($current_user->user_firstname)) {
				$name = $current_user->user_firstname;
			} else {
				$name =  $current_user->display_name;
			}
			?>
			<div class="col-xl-9 col-lg-8" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
			<!-- Titlebar -->
			<?php
			if (truelysell_is_payout_active()) {
				$is_payout_email_added = esc_attr(get_user_meta(get_current_user_id(), 'truelysell_paypal_payout_email', true));
				if (empty($is_payout_email_added)) {
					if (in_array($role, array('administrator', 'admin', 'owner', 'seller'))) :
				?>

						<div class="alert alert-info mb-3" id="unpaid_listing_in_cart">
							<span style="display: block; font-weight: bold;"><?php esc_html_e('PayPal email missing!', 'truelysell') ?></span>
							<?php esc_html_e('Please add your PayPal email address. This is required to get your payments for booking using PayPal Payout service.', 'truelysell'); ?>
							<a  href="<?php echo get_permalink(truelysell_fl_framework_getoptions('payout_page')); ?>"><strong><?php esc_html_e('View Wallet and set the Payout Method there &#8594;', 'truelysell') ?></strong></a>
						</div>
			<?php endif;
				}
			}; ?>
<?php 
if(isset($_GET["action"])) {
	$form_edit = $_GET["action"];
} else {
	$form_edit = 'unedit';
}
?>

<div class="d-flex align-items-center justify-content-between flex-wrap row-gap-3 mb-4">
  <?php
						$is_dashboard_page = truelysell_fl_framework_getoptions('dashboard_page');
						$is_booking_page = truelysell_fl_framework_getoptions('bookings_page');
						$is_listings_page = truelysell_fl_framework_getoptions('listings_page');
						global $post;
						if ($is_dashboard_page == $post->ID) { ?>
							<h4 class="mb-0"><?php esc_html_e('Dashboard', 'truelysell'); ?></h4>
							<?php } else if ($is_booking_page == $post->ID) {
							$status = '';
							if (isset($_GET['status'])) {
								$status = $_GET['status'];
								switch ($status) {
									case 'approved': ?><h4 class="mb-0"><?php esc_html_e('Approved Bookings', 'truelysell'); ?></h4>
									<?php
										break; 
									case 'waiting': ?><h4 class="mb-0"><?php esc_html_e('Pending Bookings', 'truelysell'); ?></h4>
									<?php
										break;
									case 'expired': ?><h4 class="mb-0"><?php esc_html_e('Expired Bookings', 'truelysell'); ?></h4>
									<?php
										break;
									case 'cancelled': ?><h4 class="mb-0"><?php esc_html_e('Cancelled Bookings', 'truelysell'); ?></h4>
									<?php
										break;
									default:
									?><h4 class="mb-0"><?php esc_html_e('Bookings', 'truelysell'); ?></h4>
								<?php
										break;
								}
							} else { ?>
								<h4 class="mb-0"><?php the_title(); ?> <?php if ( $form_edit == 'edit') {   ?> <?php esc_html_e('Edit Service', 'truelysell'); ?> <?php } else { ?> <?php the_title(); } ?> </h4>
							<?php }
						} else if ($is_listings_page == $post->ID) {
							$status = '';
							if (isset($_GET['status'])) {
								$status = $_GET['status'];
								switch ($status) {
									case 'active': ?><h4 class="mb-0"><?php esc_html_e('Active Services', 'truelysell'); ?></h4>
									<?php
										break;
									case 'pending': ?><h4 class="mb-0"><?php esc_html_e('Pending Services', 'truelysell'); ?></h4>
									<?php
										break;
									case 'expired': ?><h4 class="mb-0"><?php esc_html_e('Expired Services', 'truelysell'); ?></h4>
									<?php
										break;
									case 'cancelled': ?><h4 class="mb-0"><?php esc_html_e('Cancelled Services', 'truelysell'); ?></h4>
									<?php
										break;
									default:
									?><h4 class="mb-0"><?php esc_html_e('Services', 'truelysell'); ?></h4>
								<?php
										break;
								}
							} else { ?>
								<h4 class="mb-0"><?php the_title(); ?> <?php if ( $form_edit == 'edit') {   ?> <?php esc_html_e('Edit Service', 'truelysell'); ?> <?php } else { ?> <?php   } ?> </h4>
							<?php }
						} else { ?>
							<h4 class="mb-0"><?php if ( $form_edit == 'edit') { ?> <?php esc_html_e('Edit Service', 'truelysell'); ?> <?php } else { ?><?php the_title(); } ?></h4>
						<?php } ?>
						
					</div>
 			<?php
			while (have_posts()) : the_post();
				the_content();
			endwhile; // End of the loop. 
			?>
		</div>
		</div>
		<!-- Navigation / End -->
		</div>
	</div>
	<!-- Dashboard / End -->

	

<?php
	get_footer();
} ?>

<?php } ?>