Test Failed
Pull Request — master (#333)
by
unknown
21:14
created
geodirectory-functions/general_functions.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 			break;
326 326
 		case 'preview':
327 327
 			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
328
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
328
+				 && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
329 329
 			) {
330 330
 				return true;
331 331
 			}
@@ -526,9 +526,9 @@  discard block
 block discarded – undo
526 526
 
527 527
 //check if homepage
528 528
 		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
529
-		     && ! isset( $wp->query_vars['page_id'] )
530
-		     && ! isset( $wp->query_vars['pagename'] )
531
-		     && is_page_geodir_home()
529
+			 && ! isset( $wp->query_vars['page_id'] )
530
+			 && ! isset( $wp->query_vars['pagename'] )
531
+			 && is_page_geodir_home()
532 532
 		) {
533 533
 			$wp->query_vars['gd_is_geodir_page'] = true;
534 534
 		}
@@ -713,8 +713,8 @@  discard block
 block discarded – undo
713 713
 		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
714 714
 		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
715 715
 		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
716
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
717
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
716
+						  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
717
+						  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
718 718
 		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
719 719
 		$distance       = $earthMeanRadius * $c;
720 720
 
@@ -3470,14 +3470,14 @@  discard block
 block discarded – undo
3470 3470
 					 *
3471 3471
 					 * @since 1.0.0
3472 3472
 					 */
3473
-    				$is_enable_signup = get_option( 'users_can_register' );
3473
+					$is_enable_signup = get_option( 'users_can_register' );
3474 3474
 
3475
-    				if ( $is_enable_signup ) {
3475
+					if ( $is_enable_signup ) {
3476 3476
 					?>
3477 3477
 						<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3478 3478
 					   		class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3479 3479
 					<?php
3480
-    				}
3480
+					}
3481 3481
 
3482 3482
 					/**
3483 3483
 					 * Filter signup page forgot password form link.
@@ -5160,7 +5160,7 @@  discard block
 block discarded – undo
5160 5160
  * @param string $name The name of the string which helps to know what's being translated.
5161 5161
  */
5162 5162
 function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5163
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5163
+	do_action( 'wpml_register_single_string', $domain, $name, $string );
5164 5164
 }
5165 5165
 
5166 5166
 /**
@@ -5176,5 +5176,5 @@  discard block
 block discarded – undo
5176 5176
  * @return string The translated string.
5177 5177
  */
5178 5178
 function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5179
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5179
+	return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5180 5180
 }
5181 5181
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1275 added lines, -1275 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 /**
11 11
  * Get All Plugin functions from WordPress
12 12
  */
13
-include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
13
+include_once(ABSPATH.'wp-admin/includes/plugin.php');
14 14
 
15 15
 /*-----------------------------------------------------------------------------------*/
16 16
 /* Helper functions */
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
  */
28 28
 function geodir_plugin_url() {
29 29
 
30
-	if ( is_ssl() ) :
31
-		return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
30
+	if (is_ssl()) :
31
+		return str_replace('http://', 'https://', WP_PLUGIN_URL)."/".plugin_basename(dirname(dirname(__FILE__)));
32 32
 	else :
33
-		return WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
33
+		return WP_PLUGIN_URL."/".plugin_basename(dirname(dirname(__FILE__)));
34 34
 	endif;
35 35
 }
36 36
 
@@ -45,10 +45,10 @@  discard block
 block discarded – undo
45 45
  * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory
46 46
  */
47 47
 function geodir_plugin_path() {
48
-	if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
49
-		return dirname( dirname( __FILE__ ) );
48
+	if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) {
49
+		return dirname(dirname(__FILE__));
50 50
 	} else {
51
-		return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
51
+		return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__)));
52 52
 	}
53 53
 }
54 54
 
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
  * @return bool true or false.
64 64
  * @todo    check if this is faster than normal WP check and remove if not.
65 65
  */
66
-function geodir_is_plugin_active( $plugin ) {
67
-	$active_plugins = get_option( 'active_plugins' );
68
-	foreach ( $active_plugins as $key => $active_plugin ) {
69
-		if ( strstr( $active_plugin, $plugin ) ) {
66
+function geodir_is_plugin_active($plugin) {
67
+	$active_plugins = get_option('active_plugins');
68
+	foreach ($active_plugins as $key => $active_plugin) {
69
+		if (strstr($active_plugin, $plugin)) {
70 70
 			return true;
71 71
 		}
72 72
 	}
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
  *
89 89
  * @return bool|int|string the formatted date.
90 90
  */
91
-function geodir_get_formated_date( $date ) {
92
-	return mysql2date( get_option( 'date_format' ), $date );
91
+function geodir_get_formated_date($date) {
92
+	return mysql2date(get_option('date_format'), $date);
93 93
 }
94 94
 
95 95
 /**
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
  *
106 106
  * @return bool|int|string the formatted time.
107 107
  */
108
-function geodir_get_formated_time( $time ) {
109
-	return mysql2date( get_option( 'time_format' ), $time, $translate = true );
108
+function geodir_get_formated_time($time) {
109
+	return mysql2date(get_option('time_format'), $time, $translate = true);
110 110
 }
111 111
 
112 112
 
@@ -124,35 +124,35 @@  discard block
 block discarded – undo
124 124
  *
125 125
  * @return string Formatted link.
126 126
  */
127
-function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) {
128
-	if ( $use_existing_arguments ) {
127
+function geodir_getlink($url, $params = array(), $use_existing_arguments = false) {
128
+	if ($use_existing_arguments) {
129 129
 		$params = $params + $_GET;
130 130
 	}
131
-	if ( ! $params ) {
131
+	if (!$params) {
132 132
 		return $url;
133 133
 	}
134 134
 	$link = $url;
135
-	if ( strpos( $link, '?' ) === false ) {
135
+	if (strpos($link, '?') === false) {
136 136
 		$link .= '?';
137 137
 	} //If there is no '?' add one at the end
138
-	elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) {
138
+	elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) {
139 139
 		$link .= '&amp;';
140 140
 	} //If there is no '&' at the END, add one.
141
-	elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) {
141
+	elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) {
142 142
 		$link .= '&';
143 143
 	} //If there is no '&' at the END, add one.
144 144
 
145 145
 	$params_arr = array();
146
-	foreach ( $params as $key => $value ) {
147
-		if ( gettype( $value ) == 'array' ) { //Handle array data properly
148
-			foreach ( $value as $val ) {
149
-				$params_arr[] = $key . '[]=' . urlencode( $val );
146
+	foreach ($params as $key => $value) {
147
+		if (gettype($value) == 'array') { //Handle array data properly
148
+			foreach ($value as $val) {
149
+				$params_arr[] = $key.'[]='.urlencode($val);
150 150
 			}
151 151
 		} else {
152
-			$params_arr[] = $key . '=' . urlencode( $value );
152
+			$params_arr[] = $key.'='.urlencode($value);
153 153
 		}
154 154
 	}
155
-	$link .= implode( '&', $params_arr );
155
+	$link .= implode('&', $params_arr);
156 156
 
157 157
 	return $link;
158 158
 }
@@ -169,18 +169,18 @@  discard block
 block discarded – undo
169 169
  *
170 170
  * @return string Listing page url if valid. Otherwise home url will be returned.
171 171
  */
172
-function geodir_get_addlisting_link( $post_type = '' ) {
172
+function geodir_get_addlisting_link($post_type = '') {
173 173
 	global $wpdb;
174 174
 
175 175
 	//$check_pkg  = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
176 176
 	$check_pkg = 1;
177
-	if ( post_type_exists( $post_type ) && $check_pkg ) {
177
+	if (post_type_exists($post_type) && $check_pkg) {
178 178
 
179
-		$add_listing_link = get_page_link( geodir_add_listing_page_id() );
179
+		$add_listing_link = get_page_link(geodir_add_listing_page_id());
180 180
 
181
-		return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) );
181
+		return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link));
182 182
 	} else {
183
-		return get_bloginfo( 'url' );
183
+		return get_bloginfo('url');
184 184
 	}
185 185
 }
186 186
 
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 	if (!empty($_SERVER['PHP_SELF']) && !empty($_SERVER['REQUEST_URI'])) {
209 209
 		// To build the entire URI we need to prepend the protocol, and the http host
210 210
 		// to the URI string.
211
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
211
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
212 212
 	} else {
213 213
 		/*
214 214
 		 * Since we do not have REQUEST_URI to work with, we will assume we are
@@ -217,11 +217,11 @@  discard block
 block discarded – undo
217 217
 		 *
218 218
 		 * IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS
219 219
 		 */
220
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'];
220
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
221 221
 
222 222
 		// If the query string exists append it to the URI string
223 223
 		if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
224
-			$pageURL .= '?' . $_SERVER['QUERY_STRING'];
224
+			$pageURL .= '?'.$_SERVER['QUERY_STRING'];
225 225
 		}
226 226
 	}
227 227
 
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 	 *
233 233
 	 * @param string $pageURL The URL of the current page.
234 234
 	 */
235
-	return apply_filters( 'geodir_curPageURL', $pageURL );
235
+	return apply_filters('geodir_curPageURL', $pageURL);
236 236
 }
237 237
 
238 238
 /**
@@ -247,12 +247,12 @@  discard block
 block discarded – undo
247 247
  *
248 248
  * @return string Cleaned variable.
249 249
  */
250
-function geodir_clean( $string ) {
250
+function geodir_clean($string) {
251 251
 
252
-	$string = trim( strip_tags( stripslashes( $string ) ) );
253
-	$string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens.
254
-	$string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars.
255
-	$string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one.
252
+	$string = trim(strip_tags(stripslashes($string)));
253
+	$string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
254
+	$string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
255
+	$string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
256 256
 
257 257
 	return $string;
258 258
 }
@@ -266,13 +266,13 @@  discard block
 block discarded – undo
266 266
  */
267 267
 function geodir_get_weekday() {
268 268
 	return array(
269
-		__( 'Sunday', 'geodirectory' ),
270
-		__( 'Monday', 'geodirectory' ),
271
-		__( 'Tuesday', 'geodirectory' ),
272
-		__( 'Wednesday', 'geodirectory' ),
273
-		__( 'Thursday', 'geodirectory' ),
274
-		__( 'Friday', 'geodirectory' ),
275
-		__( 'Saturday', 'geodirectory' )
269
+		__('Sunday', 'geodirectory'),
270
+		__('Monday', 'geodirectory'),
271
+		__('Tuesday', 'geodirectory'),
272
+		__('Wednesday', 'geodirectory'),
273
+		__('Thursday', 'geodirectory'),
274
+		__('Friday', 'geodirectory'),
275
+		__('Saturday', 'geodirectory')
276 276
 	);
277 277
 }
278 278
 
@@ -285,11 +285,11 @@  discard block
 block discarded – undo
285 285
  */
286 286
 function geodir_get_weeks() {
287 287
 	return array(
288
-		__( 'First', 'geodirectory' ),
289
-		__( 'Second', 'geodirectory' ),
290
-		__( 'Third', 'geodirectory' ),
291
-		__( 'Fourth', 'geodirectory' ),
292
-		__( 'Last', 'geodirectory' )
288
+		__('First', 'geodirectory'),
289
+		__('Second', 'geodirectory'),
290
+		__('Third', 'geodirectory'),
291
+		__('Fourth', 'geodirectory'),
292
+		__('Last', 'geodirectory')
293 293
 	);
294 294
 }
295 295
 
@@ -308,112 +308,112 @@  discard block
 block discarded – undo
308 308
  *
309 309
  * @return bool If valid returns true. Otherwise false.
310 310
  */
311
-function geodir_is_page( $gdpage = '' ) {
311
+function geodir_is_page($gdpage = '') {
312 312
 
313 313
 	global $wp_query, $post, $wp;
314 314
 	//if(!is_admin()):
315 315
 
316
-	switch ( $gdpage ):
316
+	switch ($gdpage):
317 317
 		case 'add-listing':
318 318
 
319
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) {
319
+			if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
320 320
 				return true;
321
-			} elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
321
+			} elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
322 322
 				return true;
323 323
 			}
324 324
 
325 325
 			break;
326 326
 		case 'preview':
327
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
328
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
327
+			if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
328
+			     && in_array($_REQUEST['listing_type'], geodir_get_posttypes())
329 329
 			) {
330 330
 				return true;
331 331
 			}
332 332
 			break;
333 333
 		case 'listing-success':
334
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) {
334
+			if (is_page() && get_query_var('page_id') == geodir_success_page_id()) {
335 335
 				return true;
336 336
 			}
337 337
 			break;
338 338
 		case 'detail':
339
-			$post_type = get_query_var( 'post_type' );
340
-			if ( is_array( $post_type ) ) {
341
-				$post_type = reset( $post_type );
339
+			$post_type = get_query_var('post_type');
340
+			if (is_array($post_type)) {
341
+				$post_type = reset($post_type);
342 342
 			}
343
-			if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) {
343
+			if (is_single() && in_array($post_type, geodir_get_posttypes())) {
344 344
 				return true;
345 345
 			}
346 346
 			break;
347 347
 		case 'pt':
348
-			$post_type = get_query_var( 'post_type' );
349
-			if ( is_array( $post_type ) ) {
350
-				$post_type = reset( $post_type );
348
+			$post_type = get_query_var('post_type');
349
+			if (is_array($post_type)) {
350
+				$post_type = reset($post_type);
351 351
 			}
352
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) {
352
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) {
353 353
 				return true;
354 354
 			}
355 355
 
356 356
 			break;
357 357
 		case 'listing':
358
-			if ( is_tax() && geodir_get_taxonomy_posttype() ) {
358
+			if (is_tax() && geodir_get_taxonomy_posttype()) {
359 359
 				global $current_term, $taxonomy, $term;
360 360
 
361 361
 				return true;
362 362
 			}
363
-			$post_type = get_query_var( 'post_type' );
364
-			if ( is_array( $post_type ) ) {
365
-				$post_type = reset( $post_type );
363
+			$post_type = get_query_var('post_type');
364
+			if (is_array($post_type)) {
365
+				$post_type = reset($post_type);
366 366
 			}
367
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) {
367
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) {
368 368
 				return true;
369 369
 			}
370 370
 
371 371
 			break;
372 372
 		case 'home':
373 373
 
374
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) {
374
+			if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) {
375 375
 				return true;
376 376
 			}
377 377
 
378 378
 			break;
379 379
 		case 'location':
380
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) {
380
+			if (is_page() && get_query_var('page_id') == geodir_location_page_id()) {
381 381
 				return true;
382 382
 			}
383 383
 			break;
384 384
 		case 'author':
385
-			if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) {
385
+			if (is_author() && isset($_REQUEST['geodir_dashbord'])) {
386 386
 				return true;
387 387
 			}
388 388
 
389
-			if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) {
390
-				if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) {
389
+			if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) {
390
+				if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) {
391 391
 					return true;
392 392
 				}
393 393
 			}
394 394
 			break;
395 395
 		case 'search':
396
-			if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) {
396
+			if (is_search() && isset($_REQUEST['geodir_search'])) {
397 397
 				return true;
398 398
 			}
399 399
 			break;
400 400
 		case 'info':
401
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) {
401
+			if (is_page() && get_query_var('page_id') == geodir_info_page_id()) {
402 402
 				return true;
403 403
 			}
404 404
 			break;
405 405
 		case 'login':
406
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) {
406
+			if (is_page() && get_query_var('page_id') == geodir_login_page_id()) {
407 407
 				return true;
408 408
 			}
409 409
 			break;
410 410
 		case 'checkout':
411
-			if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) {
411
+			if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) {
412 412
 				return true;
413 413
 			}
414 414
 			break;
415 415
 		case 'invoices':
416
-			if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) {
416
+			if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) {
417 417
 				return true;
418 418
 			}
419 419
 			break;
@@ -438,25 +438,25 @@  discard block
 block discarded – undo
438 438
  *
439 439
  * @param object $wp WordPress object.
440 440
  */
441
-function geodir_set_is_geodir_page( $wp ) {
442
-	if ( ! is_admin() ) {
441
+function geodir_set_is_geodir_page($wp) {
442
+	if (!is_admin()) {
443 443
 		//$wp->query_vars['gd_is_geodir_page'] = false;
444 444
 		//print_r()
445
-		if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array(
445
+		if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array(
446 446
 				'preview',
447 447
 				'page',
448 448
 				'paged',
449 449
 				'cpage'
450
-			) )
450
+			))
451 451
 		) {
452
-			if ( geodir_is_page( 'home' ) ) {
452
+			if (geodir_is_page('home')) {
453 453
 				$wp->query_vars['gd_is_geodir_page'] = true;
454 454
 			}
455 455
 
456 456
 
457 457
 		}
458 458
 
459
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) {
459
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
460 460
 			if (
461 461
 				$wp->query_vars['page_id'] == geodir_add_listing_page_id()
462 462
 				|| $wp->query_vars['page_id'] == geodir_preview_page_id()
@@ -465,26 +465,26 @@  discard block
 block discarded – undo
465 465
 				|| $wp->query_vars['page_id'] == geodir_home_page_id()
466 466
 				|| $wp->query_vars['page_id'] == geodir_info_page_id()
467 467
 				|| $wp->query_vars['page_id'] == geodir_login_page_id()
468
-				|| ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
469
-				|| ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
468
+				|| (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
469
+				|| (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
470 470
 			) {
471 471
 				$wp->query_vars['gd_is_geodir_page'] = true;
472 472
 			}
473 473
 		}
474 474
 
475
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) {
476
-			$page = get_page_by_path( $wp->query_vars['pagename'] );
475
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
476
+			$page = get_page_by_path($wp->query_vars['pagename']);
477 477
 
478
-			if ( ! empty( $page ) && (
478
+			if (!empty($page) && (
479 479
 					$page->ID == geodir_add_listing_page_id()
480 480
 					|| $page->ID == geodir_preview_page_id()
481 481
 					|| $page->ID == geodir_success_page_id()
482 482
 					|| $page->ID == geodir_location_page_id()
483
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() )
484
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() )
485
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() )
486
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
487
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
483
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id())
484
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id())
485
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id())
486
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
487
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
488 488
 				)
489 489
 			) {
490 490
 				$wp->query_vars['gd_is_geodir_page'] = true;
@@ -492,20 +492,20 @@  discard block
 block discarded – undo
492 492
 		}
493 493
 
494 494
 
495
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) {
495
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
496 496
 			$requested_post_type = $wp->query_vars['post_type'];
497 497
 			// check if this post type is geodirectory post types
498 498
 			$post_type_array = geodir_get_posttypes();
499
-			if ( in_array( $requested_post_type, $post_type_array ) ) {
499
+			if (in_array($requested_post_type, $post_type_array)) {
500 500
 				$wp->query_vars['gd_is_geodir_page'] = true;
501 501
 			}
502 502
 		}
503 503
 
504
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) {
505
-			$geodir_taxonomis = geodir_get_taxonomies( '', true );
506
-			if ( ! empty( $geodir_taxonomis ) ) {
507
-				foreach ( $geodir_taxonomis as $taxonomy ) {
508
-					if ( array_key_exists( $taxonomy, $wp->query_vars ) ) {
504
+		if (!isset($wp->query_vars['gd_is_geodir_page'])) {
505
+			$geodir_taxonomis = geodir_get_taxonomies('', true);
506
+			if (!empty($geodir_taxonomis)) {
507
+				foreach ($geodir_taxonomis as $taxonomy) {
508
+					if (array_key_exists($taxonomy, $wp->query_vars)) {
509 509
 						$wp->query_vars['gd_is_geodir_page'] = true;
510 510
 						break;
511 511
 					}
@@ -514,20 +514,20 @@  discard block
 block discarded – undo
514 514
 
515 515
 		}
516 516
 
517
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) {
517
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) {
518 518
 			$wp->query_vars['gd_is_geodir_page'] = true;
519 519
 		}
520 520
 
521 521
 
522
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) {
522
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) {
523 523
 			$wp->query_vars['gd_is_geodir_page'] = true;
524 524
 		}
525 525
 
526 526
 
527 527
 //check if homepage
528
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
529
-		     && ! isset( $wp->query_vars['page_id'] )
530
-		     && ! isset( $wp->query_vars['pagename'] )
528
+		if (!isset($wp->query_vars['gd_is_geodir_page'])
529
+		     && !isset($wp->query_vars['page_id'])
530
+		     && !isset($wp->query_vars['pagename'])
531 531
 		     && is_page_geodir_home()
532 532
 		) {
533 533
 			$wp->query_vars['gd_is_geodir_page'] = true;
@@ -551,14 +551,14 @@  discard block
 block discarded – undo
551 551
  */
552 552
 function geodir_is_geodir_page() {
553 553
 	global $wp;
554
-	if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) {
554
+	if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) {
555 555
 		return true;
556 556
 	} else {
557 557
 		return false;
558 558
 	}
559 559
 }
560 560
 
561
-if ( ! function_exists( 'geodir_get_imagesize' ) ) {
561
+if (!function_exists('geodir_get_imagesize')) {
562 562
 	/**
563 563
 	 * Get image size using the size key .
564 564
 	 *
@@ -569,13 +569,13 @@  discard block
 block discarded – undo
569 569
 	 *
570 570
 	 * @return array|mixed|void|WP_Error If valid returns image size. Else returns error.
571 571
 	 */
572
-	function geodir_get_imagesize( $size = '' ) {
572
+	function geodir_get_imagesize($size = '') {
573 573
 
574 574
 		$imagesizes = array(
575
-			'list-thumb'   => array( 'w' => 283, 'h' => 188 ),
576
-			'thumbnail'    => array( 'w' => 125, 'h' => 125 ),
577
-			'widget-thumb' => array( 'w' => 50, 'h' => 50 ),
578
-			'slider-thumb' => array( 'w' => 100, 'h' => 100 )
575
+			'list-thumb'   => array('w' => 283, 'h' => 188),
576
+			'thumbnail'    => array('w' => 125, 'h' => 125),
577
+			'widget-thumb' => array('w' => 50, 'h' => 50),
578
+			'slider-thumb' => array('w' => 100, 'h' => 100)
579 579
 		);
580 580
 
581 581
 		/**
@@ -585,9 +585,9 @@  discard block
 block discarded – undo
585 585
 		 *
586 586
 		 * @param array $imagesizes Image size array.
587 587
 		 */
588
-		$imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes );
588
+		$imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
589 589
 
590
-		if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) {
590
+		if (!empty($size) && array_key_exists($size, $imagesizes)) {
591 591
 			/**
592 592
 			 * Filters image size of the passed key.
593 593
 			 *
@@ -595,11 +595,11 @@  discard block
 block discarded – undo
595 595
 			 *
596 596
 			 * @param array $imagesizes [$size] Image size array of the passed key.
597 597
 			 */
598
-			return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] );
598
+			return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]);
599 599
 
600
-		} elseif ( ! empty( $size ) ) {
600
+		} elseif (!empty($size)) {
601 601
 
602
-			return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) );
602
+			return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
603 603
 
604 604
 		}
605 605
 
@@ -623,7 +623,7 @@  discard block
 block discarded – undo
623 623
 */
624 624
 
625 625
 
626
-if ( ! function_exists( 'createRandomString' ) ) {
626
+if (!function_exists('createRandomString')) {
627 627
 	/**
628 628
 	 * Creates random string.
629 629
 	 *
@@ -633,21 +633,21 @@  discard block
 block discarded – undo
633 633
 	 */
634 634
 	function createRandomString() {
635 635
 		$chars = "abcdefghijkmlnopqrstuvwxyz1023456789";
636
-		srand( (double) microtime() * 1000000 );
636
+		srand((double) microtime() * 1000000);
637 637
 		$i       = 0;
638 638
 		$rstring = '';
639
-		while ( $i <= 25 ) {
639
+		while ($i <= 25) {
640 640
 			$num     = rand() % 33;
641
-			$tmp     = substr( $chars, $num, 1 );
642
-			$rstring = $rstring . $tmp;
643
-			$i ++;
641
+			$tmp     = substr($chars, $num, 1);
642
+			$rstring = $rstring.$tmp;
643
+			$i++;
644 644
 		}
645 645
 
646 646
 		return $rstring;
647 647
 	}
648 648
 }
649 649
 
650
-if ( ! function_exists( 'geodir_getDistanceRadius' ) ) {
650
+if (!function_exists('geodir_getDistanceRadius')) {
651 651
 	/**
652 652
 	 * Calculates the distance radius.
653 653
 	 *
@@ -658,9 +658,9 @@  discard block
 block discarded – undo
658 658
 	 *
659 659
 	 * @return float The mean radius.
660 660
 	 */
661
-	function geodir_getDistanceRadius( $uom = 'km' ) {
661
+	function geodir_getDistanceRadius($uom = 'km') {
662 662
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
663
-		switch ( geodir_strtolower( $uom ) ):
663
+		switch (geodir_strtolower($uom)):
664 664
 			case 'km'    :
665 665
 				$earthMeanRadius = 6371.009; // km
666 666
 				break;
@@ -692,7 +692,7 @@  discard block
 block discarded – undo
692 692
 }
693 693
 
694 694
 
695
-if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) {
695
+if (!function_exists('geodir_calculateDistanceFromLatLong')) {
696 696
 	/**
697 697
 	 * Calculate the great circle distance between two points identified by longitude and latitude.
698 698
 	 *
@@ -705,17 +705,17 @@  discard block
 block discarded – undo
705 705
 	 *
706 706
 	 * @return float The distance.
707 707
 	 */
708
-	function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) {
708
+	function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') {
709 709
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
710 710
 
711
-		$earthMeanRadius = geodir_getDistanceRadius( $uom );
711
+		$earthMeanRadius = geodir_getDistanceRadius($uom);
712 712
 
713
-		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
714
-		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
715
-		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
716
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
717
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
718
-		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
713
+		$deltaLatitude  = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']);
714
+		$deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']);
715
+		$a              = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) +
716
+		                  cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) *
717
+		                  sin($deltaLongitude / 2) * sin($deltaLongitude / 2);
718
+		$c              = 2 * atan2(sqrt($a), sqrt(1 - $a));
719 719
 		$distance       = $earthMeanRadius * $c;
720 720
 
721 721
 		return $distance;
@@ -724,7 +724,7 @@  discard block
 block discarded – undo
724 724
 }
725 725
 
726 726
 
727
-if ( ! function_exists( 'geodir_sendEmail' ) ) {
727
+if (!function_exists('geodir_sendEmail')) {
728 728
 	/**
729 729
 	 * The main function that send transactional emails using the args provided.
730 730
 	 *
@@ -743,95 +743,95 @@  discard block
 block discarded – undo
743 743
 	 * @param string $post_id       The post ID.
744 744
 	 * @param string $user_id       The user ID.
745 745
 	 */
746
-	function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) {
746
+	function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
747 747
 		$login_details = '';
748 748
 
749 749
 		// strip slashes from subject & message text
750
-		$to_subject = stripslashes_deep( $to_subject );
751
-		$to_message = stripslashes_deep( $to_message );
750
+		$to_subject = stripslashes_deep($to_subject);
751
+		$to_message = stripslashes_deep($to_message);
752 752
 
753
-		if ( $message_type == 'send_friend' ) {
754
-			$subject = get_option( 'geodir_email_friend_subject' );
755
-			$message = get_option( 'geodir_email_friend_content' );
756
-		} elseif ( $message_type == 'send_enquiry' ) {
757
-			$subject = get_option( 'geodir_email_enquiry_subject' );
758
-			$message = get_option( 'geodir_email_enquiry_content' );
753
+		if ($message_type == 'send_friend') {
754
+			$subject = get_option('geodir_email_friend_subject');
755
+			$message = get_option('geodir_email_friend_content');
756
+		} elseif ($message_type == 'send_enquiry') {
757
+			$subject = get_option('geodir_email_enquiry_subject');
758
+			$message = get_option('geodir_email_enquiry_content');
759 759
 
760 760
 			// change to name in some cases
761
-			$post_author = get_post_field( 'post_author', $post_id );
762
-			if(is_super_admin( $post_author  )){// if admin probably not the post author so change name
763
-				$toEmailName = __('Business Owner','geodirectory');
764
-			}elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
765
-				$toEmailName = __('Business Owner','geodirectory');
761
+			$post_author = get_post_field('post_author', $post_id);
762
+			if (is_super_admin($post_author)) {// if admin probably not the post author so change name
763
+				$toEmailName = __('Business Owner', 'geodirectory');
764
+			}elseif (defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id, 'claimed') != '1') {// if claim manager installed but listing not claimed
765
+				$toEmailName = __('Business Owner', 'geodirectory');
766 766
 			}
767 767
 
768 768
 
769
-		} elseif ( $message_type == 'forgot_password' ) {
770
-			$subject       = get_option( 'geodir_forgot_password_subject' );
771
-			$message       = get_option( 'geodir_forgot_password_content' );
769
+		} elseif ($message_type == 'forgot_password') {
770
+			$subject       = get_option('geodir_forgot_password_subject');
771
+			$message       = get_option('geodir_forgot_password_content');
772 772
 			$login_details = $to_message;
773
-		} elseif ( $message_type == 'registration' ) {
774
-			$subject       = get_option( 'geodir_registration_success_email_subject' );
775
-			$message       = get_option( 'geodir_registration_success_email_content' );
773
+		} elseif ($message_type == 'registration') {
774
+			$subject       = get_option('geodir_registration_success_email_subject');
775
+			$message       = get_option('geodir_registration_success_email_content');
776 776
 			$login_details = $to_message;
777
-		} elseif ( $message_type == 'post_submit' ) {
778
-			$subject = get_option( 'geodir_post_submited_success_email_subject' );
779
-			$message = get_option( 'geodir_post_submited_success_email_content' );
780
-		} elseif ( $message_type == 'listing_published' ) {
781
-			$subject = get_option( 'geodir_post_published_email_subject' );
782
-			$message = get_option( 'geodir_post_published_email_content' );
783
-		} elseif ( $message_type == 'listing_edited' ) {
784
-			$subject = get_option( 'geodir_post_edited_email_subject_admin' );
785
-			$message = get_option( 'geodir_post_edited_email_content_admin' );
777
+		} elseif ($message_type == 'post_submit') {
778
+			$subject = get_option('geodir_post_submited_success_email_subject');
779
+			$message = get_option('geodir_post_submited_success_email_content');
780
+		} elseif ($message_type == 'listing_published') {
781
+			$subject = get_option('geodir_post_published_email_subject');
782
+			$message = get_option('geodir_post_published_email_content');
783
+		} elseif ($message_type == 'listing_edited') {
784
+			$subject = get_option('geodir_post_edited_email_subject_admin');
785
+			$message = get_option('geodir_post_edited_email_content_admin');
786 786
 		}
787 787
 
788
-		if ( ! empty( $subject ) ) {
789
-			$subject = __( stripslashes_deep( $subject ), 'geodirectory' );
788
+		if (!empty($subject)) {
789
+			$subject = __(stripslashes_deep($subject), 'geodirectory');
790 790
 		}
791 791
 
792
-		if ( ! empty( $message ) ) {
793
-			$message = __( stripslashes_deep( $message ), 'geodirectory' );
792
+		if (!empty($message)) {
793
+			$message = __(stripslashes_deep($message), 'geodirectory');
794 794
 		}
795 795
 
796
-		$to_message        = nl2br( $to_message );
797
-		$sitefromEmail     = get_option( 'site_email' );
796
+		$to_message        = nl2br($to_message);
797
+		$sitefromEmail     = get_option('site_email');
798 798
 		$sitefromEmailName = get_site_emailName();
799
-		$productlink       = get_permalink( $post_id );
799
+		$productlink       = get_permalink($post_id);
800 800
 
801 801
 		$user_login = '';
802
-		if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) {
802
+		if ($user_id > 0 && $user_info = get_userdata($user_id)) {
803 803
 			$user_login = $user_info->user_login;
804 804
 		}
805 805
 
806 806
 		$posted_date = '';
807 807
 		$listingLink = '';
808 808
 
809
-		$post_info = get_post( $post_id );
809
+		$post_info = get_post($post_id);
810 810
 
811
-		if ( $post_info ) {
811
+		if ($post_info) {
812 812
 			$posted_date = $post_info->post_date;
813
-			$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
813
+			$listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
814 814
 		}
815 815
 		$siteurl       = home_url();
816
-		$siteurl_link  = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
816
+		$siteurl_link  = '<a href="'.$siteurl.'">'.$siteurl.'</a>';
817 817
 		$loginurl      = geodir_login_url();
818
-		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
818
+		$loginurl_link = '<a href="'.$loginurl.'">login</a>';
819 819
 
820
-		$post_author_id   = ! empty( $post_info ) ? $post_info->post_author : 0;
821
-		$post_author_data = $post_author_id ? get_userdata( $post_author_id ) : NULL;
822
-		$post_author_name = geodir_get_client_name( $post_author_id );
823
-		$post_author_email = !empty( $post_author_data->user_email ) ? $post_author_data->user_email : '';
824
-		$current_date     = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) );
820
+		$post_author_id   = !empty($post_info) ? $post_info->post_author : 0;
821
+		$post_author_data = $post_author_id ? get_userdata($post_author_id) : NULL;
822
+		$post_author_name = geodir_get_client_name($post_author_id);
823
+		$post_author_email = !empty($post_author_data->user_email) ? $post_author_data->user_email : '';
824
+		$current_date     = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
825 825
 
826
-		if ( $fromEmail == '' ) {
827
-			$fromEmail = get_option( 'site_email' );
826
+		if ($fromEmail == '') {
827
+			$fromEmail = get_option('site_email');
828 828
 		}
829 829
 
830
-		if ( $fromEmailName == '' ) {
831
-			$fromEmailName = get_option( 'site_email_name' );
830
+		if ($fromEmailName == '') {
831
+			$fromEmailName = get_option('site_email_name');
832 832
 		}
833 833
 
834
-		$search_array  = array(
834
+		$search_array = array(
835 835
 			'[#listing_link#]',
836 836
 			'[#site_name_url#]',
837 837
 			'[#post_id#]',
@@ -873,7 +873,7 @@  discard block
 block discarded – undo
873 873
 			$post_author_email,
874 874
 			$current_date,
875 875
 		);
876
-		$message       = str_replace( $search_array, $replace_array, $message );
876
+		$message       = str_replace($search_array, $replace_array, $message);
877 877
 
878 878
 		$search_array  = array(
879 879
 			'[#listing_link#]',
@@ -911,12 +911,12 @@  discard block
 block discarded – undo
911 911
 			$post_author_email,
912 912
 			$current_date
913 913
 		);
914
-		$subject       = str_replace( $search_array, $replace_array, $subject );
914
+		$subject = str_replace($search_array, $replace_array, $subject);
915 915
 
916
-		$headers =  array();
916
+		$headers = array();
917 917
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
918
-		$headers[] = "Reply-To: " . $fromEmail;
919
-		$headers[] = 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>';
918
+		$headers[] = "Reply-To: ".$fromEmail;
919
+		$headers[] = 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>';
920 920
 
921 921
 		$to = $toEmail;
922 922
 
@@ -938,7 +938,7 @@  discard block
 block discarded – undo
938 938
 		 * @param string $post_id       The post ID.
939 939
 		 * @param string $user_id       The user ID.
940 940
 		 */
941
-		$to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
941
+		$to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
942 942
 		/**
943 943
 		 * Filter the client email subject.
944 944
 		 *
@@ -957,7 +957,7 @@  discard block
 block discarded – undo
957 957
 		 * @param string $post_id       The post ID.
958 958
 		 * @param string $user_id       The user ID.
959 959
 		 */
960
-		$subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
960
+		$subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
961 961
 		/**
962 962
 		 * Filter the client email message.
963 963
 		 *
@@ -976,7 +976,7 @@  discard block
 block discarded – undo
976 976
 		 * @param string $post_id       The post ID.
977 977
 		 * @param string $user_id       The user ID.
978 978
 		 */
979
-		$message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
979
+		$message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
980 980
 		/**
981 981
 		 * Filter the client email headers.
982 982
 		 *
@@ -995,39 +995,39 @@  discard block
 block discarded – undo
995 995
 		 * @param string $post_id       The post ID.
996 996
 		 * @param string $user_id       The user ID.
997 997
 		 */
998
-		$headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
998
+		$headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
999 999
 
1000
-		$sent = wp_mail( $to, $subject, $message, $headers );
1000
+		$sent = wp_mail($to, $subject, $message, $headers);
1001 1001
 
1002
-		if ( ! $sent ) {
1003
-			if ( is_array( $to ) ) {
1004
-				$to = implode( ',', $to );
1002
+		if (!$sent) {
1003
+			if (is_array($to)) {
1004
+				$to = implode(',', $to);
1005 1005
 			}
1006 1006
 			$log_message = sprintf(
1007
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1007
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1008 1008
 				$message_type,
1009
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1009
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1010 1010
 				$to,
1011 1011
 				$subject
1012 1012
 			);
1013
-			geodir_error_log( $log_message );
1013
+			geodir_error_log($log_message);
1014 1014
 		}
1015 1015
 
1016 1016
 		///////// ADMIN BCC EMIALS
1017
-		$adminEmail = get_bloginfo( 'admin_email' );
1017
+		$adminEmail = get_bloginfo('admin_email');
1018 1018
 		$to         = $adminEmail;
1019 1019
 
1020 1020
 		$admin_bcc = false;
1021
-		if ( $message_type == 'registration' ) {
1022
-			$message_raw  = explode( __( "Password:", 'geodirectory' ), $message );
1023
-			$message_raw2 = explode( "</p>", $message_raw[1], 2 );
1024
-			$message      = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1];
1021
+		if ($message_type == 'registration') {
1022
+			$message_raw  = explode(__("Password:", 'geodirectory'), $message);
1023
+			$message_raw2 = explode("</p>", $message_raw[1], 2);
1024
+			$message      = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1];
1025 1025
 		}
1026
-		if ( $message_type == 'post_submit' ) {
1027
-			$subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' );
1028
-			$message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' );
1026
+		if ($message_type == 'post_submit') {
1027
+			$subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
1028
+			$message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
1029 1029
 
1030
-			$search_array  = array(
1030
+			$search_array = array(
1031 1031
 				'[#listing_link#]',
1032 1032
 				'[#site_name_url#]',
1033 1033
 				'[#post_id#]',
@@ -1063,7 +1063,7 @@  discard block
 block discarded – undo
1063 1063
 				$user_login,
1064 1064
 				$post_author_email,
1065 1065
 			);
1066
-			$message       = str_replace( $search_array, $replace_array, $message );
1066
+			$message       = str_replace($search_array, $replace_array, $message);
1067 1067
 
1068 1068
 			$search_array  = array(
1069 1069
 				'[#listing_link#]',
@@ -1095,26 +1095,26 @@  discard block
 block discarded – undo
1095 1095
 				$user_login,
1096 1096
 				$post_author_email,
1097 1097
 			);
1098
-			$subject       = str_replace( $search_array, $replace_array, $subject );
1098
+			$subject = str_replace($search_array, $replace_array, $subject);
1099 1099
 
1100 1100
 			$subject .= ' - ADMIN BCC COPY';
1101 1101
 			$admin_bcc = true;
1102 1102
 
1103
-		} elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
1103
+		} elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
1104 1104
 			$subject .= ' - ADMIN BCC COPY';
1105 1105
 			$admin_bcc = true;
1106
-		} elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) {
1106
+		} elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
1107 1107
 			$subject .= ' - ADMIN BCC COPY';
1108 1108
 			$admin_bcc = true;
1109
-		} elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
1109
+		} elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
1110 1110
 			$subject .= ' - ADMIN BCC COPY';
1111 1111
 			$admin_bcc = true;
1112
-		} elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
1112
+		} elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
1113 1113
 			$subject .= ' - ADMIN BCC COPY';
1114 1114
 			$admin_bcc = true;
1115 1115
 		}
1116 1116
 
1117
-		if ( $admin_bcc === true ) {
1117
+		if ($admin_bcc === true) {
1118 1118
 
1119 1119
 			/**
1120 1120
 			 * Filter the client email subject.
@@ -1134,7 +1134,7 @@  discard block
 block discarded – undo
1134 1134
 			 * @param string $post_id       The post ID.
1135 1135
 			 * @param string $user_id       The user ID.
1136 1136
 			 */
1137
-			$subject = apply_filters( 'geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1137
+			$subject = apply_filters('geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1138 1138
 			/**
1139 1139
 			 * Filter the client email message.
1140 1140
 			 *
@@ -1153,23 +1153,23 @@  discard block
 block discarded – undo
1153 1153
 			 * @param string $post_id       The post ID.
1154 1154
 			 * @param string $user_id       The user ID.
1155 1155
 			 */
1156
-			$message = apply_filters( 'geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1156
+			$message = apply_filters('geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1157 1157
 
1158 1158
 
1159
-			$sent = wp_mail( $to, $subject, $message, $headers );
1159
+			$sent = wp_mail($to, $subject, $message, $headers);
1160 1160
 
1161
-			if ( ! $sent ) {
1162
-				if ( is_array( $to ) ) {
1163
-					$to = implode( ',', $to );
1161
+			if (!$sent) {
1162
+				if (is_array($to)) {
1163
+					$to = implode(',', $to);
1164 1164
 				}
1165 1165
 				$log_message = sprintf(
1166
-					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1166
+					__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1167 1167
 					$message_type,
1168
-					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1168
+					date_i18n('F j Y H:i:s', current_time('timestamp')),
1169 1169
 					$to,
1170 1170
 					$subject
1171 1171
 				);
1172
-				geodir_error_log( $log_message );
1172
+				geodir_error_log($log_message);
1173 1173
 			}
1174 1174
 		}
1175 1175
 
@@ -1185,49 +1185,49 @@  discard block
 block discarded – undo
1185 1185
  */
1186 1186
 function geodir_taxonomy_breadcrumb() {
1187 1187
 
1188
-	$term   = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
1188
+	$term   = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
1189 1189
 	$parent = $term->parent;
1190 1190
 
1191
-	while ( $parent ):
1191
+	while ($parent):
1192 1192
 		$parents[]  = $parent;
1193
-		$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1193
+		$new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
1194 1194
 		$parent     = $new_parent->parent;
1195 1195
 	endwhile;
1196 1196
 
1197
-	if ( ! empty( $parents ) ):
1198
-		$parents = array_reverse( $parents );
1197
+	if (!empty($parents)):
1198
+		$parents = array_reverse($parents);
1199 1199
 
1200
-		foreach ( $parents as $parent ):
1201
-			$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1202
-			$url  = get_term_link( $item, get_query_var( 'taxonomy' ) );
1203
-			echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
1200
+		foreach ($parents as $parent):
1201
+			$item = get_term_by('id', $parent, get_query_var('taxonomy'));
1202
+			$url  = get_term_link($item, get_query_var('taxonomy'));
1203
+			echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>';
1204 1204
 		endforeach;
1205 1205
 
1206 1206
 	endif;
1207 1207
 
1208
-	echo '<li> > ' . $term->name . '</li>';
1208
+	echo '<li> > '.$term->name.'</li>';
1209 1209
 }
1210 1210
 
1211
-function geodir_wpml_post_type_archive_link($link, $post_type){
1211
+function geodir_wpml_post_type_archive_link($link, $post_type) {
1212 1212
 	if (function_exists('icl_object_id')) {
1213
-		$post_types   = get_option( 'geodir_post_types' );
1214
-		$slug         = $post_types[ $post_type ]['rewrite']['slug'];
1213
+		$post_types   = get_option('geodir_post_types');
1214
+		$slug         = $post_types[$post_type]['rewrite']['slug'];
1215 1215
 
1216 1216
 		// Alter the CPT slug if WPML is set to do so
1217
-		if ( function_exists( 'icl_object_id' ) ) {
1218
-			if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
1217
+		if (function_exists('icl_object_id')) {
1218
+			if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
1219 1219
 
1220 1220
 				$org_slug = $slug;
1221
-				$slug     = apply_filters( 'wpml_translate_single_string',
1221
+				$slug     = apply_filters('wpml_translate_single_string',
1222 1222
 					$slug,
1223 1223
 					'WordPress',
1224
-					'URL slug: ' . $slug,
1225
-					$language_code );
1224
+					'URL slug: '.$slug,
1225
+					$language_code);
1226 1226
 
1227
-				if ( ! $slug ) {
1227
+				if (!$slug) {
1228 1228
 					$slug = $org_slug;
1229 1229
 				} else {
1230
-					$link = str_replace( $org_slug, $slug, $link );
1230
+					$link = str_replace($org_slug, $slug, $link);
1231 1231
 				}
1232 1232
 			}
1233 1233
 		}
@@ -1235,7 +1235,7 @@  discard block
 block discarded – undo
1235 1235
 
1236 1236
 	return $link;
1237 1237
 }
1238
-add_filter( 'post_type_archive_link','geodir_wpml_post_type_archive_link', 1000, 2);
1238
+add_filter('post_type_archive_link', 'geodir_wpml_post_type_archive_link', 1000, 2);
1239 1239
 
1240 1240
 /**
1241 1241
  * Main function that generates breadcrumb for all pages.
@@ -1256,9 +1256,9 @@  discard block
 block discarded – undo
1256 1256
 	 *
1257 1257
 	 * @since 1.0.0
1258 1258
 	 */
1259
-	$separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' );
1259
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
1260 1260
 
1261
-	if ( ! geodir_is_page( 'home' ) ) {
1261
+	if (!geodir_is_page('home')) {
1262 1262
 		$breadcrumb    = '';
1263 1263
 		$url_categoris = '';
1264 1264
 		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
@@ -1267,167 +1267,167 @@  discard block
 block discarded – undo
1267 1267
 		 *
1268 1268
 		 * @since 1.0.0
1269 1269
 		 */
1270
-		$breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>';
1270
+		$breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
1271 1271
 
1272 1272
 		$gd_post_type   = geodir_get_current_posttype();
1273
-		$post_type_info = get_post_type_object( $gd_post_type );
1273
+		$post_type_info = get_post_type_object($gd_post_type);
1274 1274
 
1275
-		remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' );
1275
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
1276 1276
 
1277
-		$listing_link = get_post_type_archive_link( $gd_post_type );
1277
+		$listing_link = get_post_type_archive_link($gd_post_type);
1278 1278
 
1279
-		add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 );
1280
-		$listing_link = rtrim( $listing_link, '/' );
1279
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
1280
+		$listing_link = rtrim($listing_link, '/');
1281 1281
 		$listing_link .= '/';
1282 1282
 
1283 1283
 		$post_type_for_location_link = $listing_link;
1284
-		$location_terms              = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
1284
+		$location_terms              = geodir_get_current_location_terms('query_vars', $gd_post_type);
1285 1285
 
1286 1286
 		global $wp, $gd_session;
1287 1287
 		$location_link = $post_type_for_location_link;
1288 1288
 
1289
-		if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
1289
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
1290 1290
 			global $post;
1291
-			$location_manager     = defined( 'POST_LOCATION_TABLE' ) ? true : false;
1292
-			$neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false;
1291
+			$location_manager     = defined('POST_LOCATION_TABLE') ? true : false;
1292
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1293 1293
 
1294
-			if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
1294
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1295 1295
 				$location_terms = array(
1296 1296
 					'gd_country' => $post->country_slug,
1297 1297
 					'gd_region'  => $post->region_slug,
1298 1298
 					'gd_city'    => $post->city_slug
1299 1299
 				);
1300 1300
 
1301
-				if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
1301
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1302 1302
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1303 1303
 				}
1304 1304
 			}
1305 1305
 
1306
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
1306
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1307 1307
 
1308 1308
 			$hide_url_part = array();
1309
-			if ( $location_manager ) {
1310
-				$hide_country_part = get_option( 'geodir_location_hide_country_part' );
1311
-				$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
1312
-
1313
-				if ( $hide_region_part && $hide_country_part ) {
1314
-					$hide_url_part = array( 'gd_country', 'gd_region' );
1315
-				} else if ( $hide_region_part && ! $hide_country_part ) {
1316
-					$hide_url_part = array( 'gd_region' );
1317
-				} else if ( ! $hide_region_part && $hide_country_part ) {
1318
-					$hide_url_part = array( 'gd_country' );
1309
+			if ($location_manager) {
1310
+				$hide_country_part = get_option('geodir_location_hide_country_part');
1311
+				$hide_region_part  = get_option('geodir_location_hide_region_part');
1312
+
1313
+				if ($hide_region_part && $hide_country_part) {
1314
+					$hide_url_part = array('gd_country', 'gd_region');
1315
+				} else if ($hide_region_part && !$hide_country_part) {
1316
+					$hide_url_part = array('gd_region');
1317
+				} else if (!$hide_region_part && $hide_country_part) {
1318
+					$hide_url_part = array('gd_country');
1319 1319
 				}
1320 1320
 			}
1321 1321
 
1322 1322
 			$hide_text_part = array();
1323
-			if ( $geodir_show_location_url == 'country_city' ) {
1324
-				$hide_text_part = array( 'gd_region' );
1323
+			if ($geodir_show_location_url == 'country_city') {
1324
+				$hide_text_part = array('gd_region');
1325 1325
 
1326
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1327
-					unset( $location_terms['gd_region'] );
1326
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1327
+					unset($location_terms['gd_region']);
1328 1328
 				}
1329
-			} else if ( $geodir_show_location_url == 'region_city' ) {
1330
-				$hide_text_part = array( 'gd_country' );
1329
+			} else if ($geodir_show_location_url == 'region_city') {
1330
+				$hide_text_part = array('gd_country');
1331 1331
 
1332
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1333
-					unset( $location_terms['gd_country'] );
1332
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1333
+					unset($location_terms['gd_country']);
1334 1334
 				}
1335
-			} else if ( $geodir_show_location_url == 'city' ) {
1336
-				$hide_text_part = array( 'gd_country', 'gd_region' );
1335
+			} else if ($geodir_show_location_url == 'city') {
1336
+				$hide_text_part = array('gd_country', 'gd_region');
1337 1337
 
1338
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1339
-					unset( $location_terms['gd_country'] );
1338
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1339
+					unset($location_terms['gd_country']);
1340 1340
 				}
1341
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1342
-					unset( $location_terms['gd_region'] );
1341
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1342
+					unset($location_terms['gd_region']);
1343 1343
 				}
1344 1344
 			}
1345 1345
 
1346 1346
 			$is_location_last = '';
1347 1347
 			$is_taxonomy_last = '';
1348 1348
 			$breadcrumb .= '<li>';
1349
-			if ( get_query_var( $gd_post_type . 'category' ) ) {
1350
-				$gd_taxonomy = $gd_post_type . 'category';
1351
-			} elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
1352
-				$gd_taxonomy = $gd_post_type . '_tags';
1349
+			if (get_query_var($gd_post_type.'category')) {
1350
+				$gd_taxonomy = $gd_post_type.'category';
1351
+			} elseif (get_query_var($gd_post_type.'_tags')) {
1352
+				$gd_taxonomy = $gd_post_type.'_tags';
1353 1353
 			}
1354 1354
 
1355
-			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1356
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1355
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>';
1356
+			if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
1357 1357
 				$is_location_last = false;
1358 1358
 			} else {
1359 1359
 				$is_location_last = true;
1360 1360
 			}
1361 1361
 
1362
-			if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
1362
+			if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
1363 1363
 				$is_taxonomy_last = true;
1364 1364
 			} else {
1365 1365
 				$is_taxonomy_last = false;
1366 1366
 			}
1367 1367
 
1368
-			if ( ! empty( $location_terms ) ) {
1369
-				$geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false;
1368
+			if (!empty($location_terms)) {
1369
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1370 1370
 
1371
-				foreach ( $location_terms as $key => $location_term ) {
1372
-					if ( $location_term != '' ) {
1373
-						if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
1371
+				foreach ($location_terms as $key => $location_term) {
1372
+					if ($location_term != '') {
1373
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1374 1374
 							continue;
1375 1375
 						}
1376 1376
 
1377
-						$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term );
1378
-						$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
1379
-						$gd_location_link_text = ucfirst( $gd_location_link_text );
1377
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1378
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1379
+						$gd_location_link_text = ucfirst($gd_location_link_text);
1380 1380
 
1381 1381
 						$location_term_actual_country = '';
1382 1382
 						$location_term_actual_region  = '';
1383 1383
 						$location_term_actual_city    = '';
1384 1384
 						$location_term_actual_neighbourhood = '';
1385
-						if ( $geodir_get_locations ) {
1386
-							if ( $key == 'gd_country' ) {
1387
-								$location_term_actual_country = get_actual_location_name( 'country', $location_term, true );
1388
-							} else if ( $key == 'gd_region' ) {
1389
-								$location_term_actual_region = get_actual_location_name( 'region', $location_term, true );
1390
-							} else if ( $key == 'gd_city' ) {
1391
-								$location_term_actual_city = get_actual_location_name( 'city', $location_term, true );
1392
-							} else if ( $key == 'gd_neighbourhood' ) {
1393
-								$location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true );
1385
+						if ($geodir_get_locations) {
1386
+							if ($key == 'gd_country') {
1387
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1388
+							} else if ($key == 'gd_region') {
1389
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1390
+							} else if ($key == 'gd_city') {
1391
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1392
+							} else if ($key == 'gd_neighbourhood') {
1393
+								$location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true);
1394 1394
 							}
1395 1395
 						} else {
1396 1396
 							$location_info = geodir_get_location();
1397 1397
 
1398
-							if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
1399
-								if ( $key == 'gd_country' ) {
1400
-									$location_term_actual_country = __( $location_info->country, 'geodirectory' );
1401
-								} else if ( $key == 'gd_region' ) {
1402
-									$location_term_actual_region = __( $location_info->region, 'geodirectory' );
1403
-								} else if ( $key == 'gd_city' ) {
1404
-									$location_term_actual_city = __( $location_info->city, 'geodirectory' );
1398
+							if (!empty($location_info) && isset($location_info->location_id)) {
1399
+								if ($key == 'gd_country') {
1400
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1401
+								} else if ($key == 'gd_region') {
1402
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1403
+								} else if ($key == 'gd_city') {
1404
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1405 1405
 								}
1406 1406
 							}
1407 1407
 						}
1408 1408
 
1409
-						if ( $is_location_last && $key == 'gd_country' && ! ( isset( $location_terms['gd_region'] ) && $location_terms['gd_region'] != '' ) && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1410
-							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1411
-						} else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1412
-							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1413
-						} else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
1414
-							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1415
-						} else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
1416
-							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text;
1409
+						if ($is_location_last && $key == 'gd_country' && !(isset($location_terms['gd_region']) && $location_terms['gd_region'] != '') && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1410
+							$breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text;
1411
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1412
+							$breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text;
1413
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1414
+							$breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text;
1415
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1416
+							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text;
1417 1417
 						} else {
1418
-							if ( get_option( 'permalink_structure' ) != '' ) {
1419
-								$location_link .= $location_term . '/';
1418
+							if (get_option('permalink_structure') != '') {
1419
+								$location_link .= $location_term.'/';
1420 1420
 							} else {
1421
-								$location_link .= "&$key=" . $location_term;
1421
+								$location_link .= "&$key=".$location_term;
1422 1422
 							}
1423 1423
 
1424
-							if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
1424
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1425 1425
 								$gd_location_link_text = $location_term_actual_country;
1426
-							} else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
1426
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1427 1427
 								$gd_location_link_text = $location_term_actual_region;
1428
-							} else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
1428
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1429 1429
 								$gd_location_link_text = $location_term_actual_city;
1430
-							} else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) {
1430
+							} else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') {
1431 1431
 								$gd_location_link_text = $location_term_actual_neighbourhood;
1432 1432
 							}
1433 1433
 
@@ -1437,76 +1437,76 @@  discard block
 block discarded – undo
1437 1437
                             }
1438 1438
                             */
1439 1439
 
1440
-							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1440
+							$breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>';
1441 1441
 						}
1442 1442
 					}
1443 1443
 				}
1444 1444
 			}
1445 1445
 
1446
-			if ( ! empty( $gd_taxonomy ) ) {
1446
+			if (!empty($gd_taxonomy)) {
1447 1447
 				$term_index = 1;
1448 1448
 
1449 1449
 				//if(get_option('geodir_add_categories_url'))
1450 1450
 				{
1451
-					if ( get_query_var( $gd_post_type . '_tags' ) ) {
1452
-						$cat_link = $listing_link . 'tags/';
1451
+					if (get_query_var($gd_post_type.'_tags')) {
1452
+						$cat_link = $listing_link.'tags/';
1453 1453
 					} else {
1454 1454
 						$cat_link = $listing_link;
1455 1455
 					}
1456 1456
 
1457
-					foreach ( $location_terms as $key => $location_term ) {
1458
-						if ( $location_manager && in_array( $key, $hide_url_part ) ) {
1457
+					foreach ($location_terms as $key => $location_term) {
1458
+						if ($location_manager && in_array($key, $hide_url_part)) {
1459 1459
 							continue;
1460 1460
 						}
1461 1461
 
1462
-						if ( $location_term != '' ) {
1463
-							if ( get_option( 'permalink_structure' ) != '' ) {
1464
-								$cat_link .= $location_term . '/';
1462
+						if ($location_term != '') {
1463
+							if (get_option('permalink_structure') != '') {
1464
+								$cat_link .= $location_term.'/';
1465 1465
 							}
1466 1466
 						}
1467 1467
 					}
1468 1468
 
1469
-					$term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) );
1470
-					foreach ( $term_array as $term ) {
1471
-						$term_link_text = preg_replace( '/-(\d+)$/', '', $term );
1472
-						$term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text );
1469
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1470
+					foreach ($term_array as $term) {
1471
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1472
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1473 1473
 
1474 1474
 						// get term actual name
1475
-						$term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' );
1476
-						if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
1477
-							$term_link_text = urldecode( $term_info['name'] );
1475
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1476
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1477
+							$term_link_text = urldecode($term_info['name']);
1478 1478
 						} else {
1479 1479
 							continue;
1480 1480
 							//$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text)));
1481 1481
 						}
1482 1482
 
1483
-						if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
1484
-							$breadcrumb .= $separator . $term_link_text;
1483
+						if ($term_index == count($term_array) && $is_taxonomy_last) {
1484
+							$breadcrumb .= $separator.$term_link_text;
1485 1485
 						} else {
1486
-							$cat_link .= $term . '/';
1487
-							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1486
+							$cat_link .= $term.'/';
1487
+							$breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>';
1488 1488
 						}
1489
-						$term_index ++;
1489
+						$term_index++;
1490 1490
 					}
1491 1491
 				}
1492 1492
 
1493 1493
 
1494 1494
 			}
1495 1495
 
1496
-			if ( geodir_is_page( 'detail' ) ) {
1497
-				$breadcrumb .= $separator . get_the_title();
1496
+			if (geodir_is_page('detail')) {
1497
+				$breadcrumb .= $separator.get_the_title();
1498 1498
 			}
1499 1499
 
1500 1500
 			$breadcrumb .= '</li>';
1501 1501
 
1502 1502
 
1503
-		} elseif ( geodir_is_page( 'author' ) ) {
1503
+		} elseif (geodir_is_page('author')) {
1504 1504
 			$user_id             = get_current_user_id();
1505
-			$author_link         = get_author_posts_url( $user_id );
1506
-			$default_author_link = geodir_getlink( $author_link, array(
1505
+			$author_link         = get_author_posts_url($user_id);
1506
+			$default_author_link = geodir_getlink($author_link, array(
1507 1507
 				'geodir_dashbord' => 'true',
1508 1508
 				'stype'           => 'gd_place'
1509
-			), false );
1509
+			), false);
1510 1510
 
1511 1511
 			/**
1512 1512
 			 * Filter author page link.
@@ -1516,16 +1516,16 @@  discard block
 block discarded – undo
1516 1516
 			 * @param string $default_author_link Default author link.
1517 1517
 			 * @param int $user_id                Author ID.
1518 1518
 			 */
1519
-			$default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id );
1519
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1520 1520
 
1521 1521
 			$breadcrumb .= '<li>';
1522
-			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>';
1522
+			$breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
1523 1523
 
1524
-			if ( isset( $_REQUEST['list'] ) ) {
1525
-				$author_link = geodir_getlink( $author_link, array(
1524
+			if (isset($_REQUEST['list'])) {
1525
+				$author_link = geodir_getlink($author_link, array(
1526 1526
 					'geodir_dashbord' => 'true',
1527 1527
 					'stype'           => $_REQUEST['stype']
1528
-				), false );
1528
+				), false);
1529 1529
 
1530 1530
 				/**
1531 1531
 				 * Filter author page link.
@@ -1536,61 +1536,61 @@  discard block
 block discarded – undo
1536 1536
 				 * @param int $user_id        Author ID.
1537 1537
 				 * @param string $_REQUEST    ['stype'] Post type.
1538 1538
 				 */
1539
-				$author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] );
1539
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1540 1540
 
1541
-				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1542
-				$breadcrumb .= $separator . ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] );
1541
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>';
1542
+				$breadcrumb .= $separator.ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
1543 1543
 			} else {
1544
-				$breadcrumb .= $separator . __( ucfirst( $post_type_info->label ), 'geodirectory' );
1544
+				$breadcrumb .= $separator.__(ucfirst($post_type_info->label), 'geodirectory');
1545 1545
 			}
1546 1546
 
1547 1547
 			$breadcrumb .= '</li>';
1548
-		} elseif ( is_category() || is_single() ) {
1548
+		} elseif (is_category() || is_single()) {
1549 1549
 			$category = get_the_category();
1550
-			if ( is_category() ) {
1551
-				$breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1550
+			if (is_category()) {
1551
+				$breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>';
1552 1552
 			}
1553
-			if ( is_single() ) {
1554
-				$breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>';
1555
-				$breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1553
+			if (is_single()) {
1554
+				$breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>';
1555
+				$breadcrumb .= '<li>'.$separator.get_the_title().'</li>';
1556 1556
 			}
1557 1557
 			/* End of my version ##################################################### */
1558
-		} else if ( is_page() ) {
1558
+		} else if (is_page()) {
1559 1559
 			$page_title = get_the_title();
1560 1560
 
1561
-			if ( geodir_is_page( 'location' ) ) {
1561
+			if (geodir_is_page('location')) {
1562 1562
 				$location_page_id = geodir_location_page_id();
1563
-				$loc_post         = get_post( $location_page_id );
1563
+				$loc_post         = get_post($location_page_id);
1564 1564
 				$post_name        = $loc_post->post_name;
1565
-				$slug             = ucwords( str_replace( '-', ' ', $post_name ) );
1566
-				$page_title       = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' );
1565
+				$slug             = ucwords(str_replace('-', ' ', $post_name));
1566
+				$page_title       = !empty($slug) ? $slug : __('Location', 'geodirectory');
1567 1567
 			}
1568 1568
 
1569
-			$breadcrumb .= '<li>' . $separator;
1570
-			$breadcrumb .= stripslashes_deep( $page_title );
1569
+			$breadcrumb .= '<li>'.$separator;
1570
+			$breadcrumb .= stripslashes_deep($page_title);
1571 1571
 			$breadcrumb .= '</li>';
1572
-		} else if ( is_tag() ) {
1573
-			$breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>';
1574
-		} else if ( is_day() ) {
1575
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1576
-			the_time( 'F jS, Y' );
1572
+		} else if (is_tag()) {
1573
+			$breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
1574
+		} else if (is_day()) {
1575
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1576
+			the_time('F jS, Y');
1577 1577
 			$breadcrumb .= '</li>';
1578
-		} else if ( is_month() ) {
1579
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1580
-			the_time( 'F, Y' );
1578
+		} else if (is_month()) {
1579
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1580
+			the_time('F, Y');
1581 1581
 			$breadcrumb .= '</li>';
1582
-		} else if ( is_year() ) {
1583
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1584
-			the_time( 'Y' );
1582
+		} else if (is_year()) {
1583
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1584
+			the_time('Y');
1585 1585
 			$breadcrumb .= '</li>';
1586
-		} else if ( is_author() ) {
1587
-			$breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' );
1586
+		} else if (is_author()) {
1587
+			$breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
1588 1588
 			$breadcrumb .= '</li>';
1589
-		} else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
1590
-			$breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' );
1589
+		} else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1590
+			$breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
1591 1591
 			$breadcrumb .= '</li>';
1592
-		} else if ( is_search() ) {
1593
-			$breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' );
1592
+		} else if (is_search()) {
1593
+			$breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
1594 1594
 			$breadcrumb .= '</li>';
1595 1595
 		}
1596 1596
 		$breadcrumb .= '</ul></div>';
@@ -1603,13 +1603,13 @@  discard block
 block discarded – undo
1603 1603
 		 * @param string $breadcrumb Breadcrumb HTML.
1604 1604
 		 * @param string $separator  Breadcrumb separator.
1605 1605
 		 */
1606
-		echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator );
1606
+		echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1607 1607
 	}
1608 1608
 }
1609 1609
 
1610 1610
 
1611
-add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin
1612
-if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
1611
+add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
1612
+if (!function_exists('geodir_allow_wpadmin')) {
1613 1613
 	/**
1614 1614
 	 * Allow only admins to access wp-admin.
1615 1615
 	 *
@@ -1621,12 +1621,12 @@  discard block
 block discarded – undo
1621 1621
 	 */
1622 1622
 	function geodir_allow_wpadmin() {
1623 1623
 		global $wpdb;
1624
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1624
+		if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
1625 1625
 		{
1626
-			if ( current_user_can( 'administrator' ) ) {
1626
+			if (current_user_can('administrator')) {
1627 1627
 			} else {
1628 1628
 
1629
-				wp_redirect( home_url() );
1629
+				wp_redirect(home_url());
1630 1630
 				exit;
1631 1631
 			}
1632 1632
 
@@ -1645,23 +1645,23 @@  discard block
 block discarded – undo
1645 1645
  *
1646 1646
  * @return array|WP_Error The uploaded data as array. When failure returns error.
1647 1647
  */
1648
-function fetch_remote_file( $url ) {
1648
+function fetch_remote_file($url) {
1649 1649
 	// extract the file name and extension from the url
1650
-	require_once( ABSPATH . 'wp-includes/pluggable.php' );
1651
-	$file_name = basename( $url );
1652
-	if ( strpos( $file_name, '?' ) !== false ) {
1653
-		list( $file_name ) = explode( '?', $file_name );
1650
+	require_once(ABSPATH.'wp-includes/pluggable.php');
1651
+	$file_name = basename($url);
1652
+	if (strpos($file_name, '?') !== false) {
1653
+		list($file_name) = explode('?', $file_name);
1654 1654
 	}
1655 1655
 	$dummy        = false;
1656 1656
 	$add_to_cache = false;
1657 1657
 	$key          = null;
1658
-	if ( strpos( $url, '/dummy/' ) !== false ) {
1658
+	if (strpos($url, '/dummy/') !== false) {
1659 1659
 		$dummy = true;
1660
-		$key   = "dummy_" . str_replace( '.', '_', $file_name );
1661
-		$value = get_transient( 'cached_dummy_images' );
1662
-		if ( $value ) {
1663
-			if ( isset( $value[ $key ] ) ) {
1664
-				return $value[ $key ];
1660
+		$key   = "dummy_".str_replace('.', '_', $file_name);
1661
+		$value = get_transient('cached_dummy_images');
1662
+		if ($value) {
1663
+			if (isset($value[$key])) {
1664
+				return $value[$key];
1665 1665
 			} else {
1666 1666
 				$add_to_cache = true;
1667 1667
 			}
@@ -1672,58 +1672,58 @@  discard block
 block discarded – undo
1672 1672
 
1673 1673
 	// get placeholder file in the upload dir with a unique, sanitized filename
1674 1674
 
1675
-	$post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : '';
1675
+	$post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1676 1676
 
1677
-	$upload = wp_upload_bits( $file_name, 0, '', $post_upload_date );
1678
-	if ( $upload['error'] ) {
1679
-		return new WP_Error( 'upload_dir_error', $upload['error'] );
1677
+	$upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1678
+	if ($upload['error']) {
1679
+		return new WP_Error('upload_dir_error', $upload['error']);
1680 1680
 	}
1681 1681
 
1682 1682
 
1683
-	sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1683
+	sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay
1684 1684
 
1685 1685
 	// fetch the remote url and write it to the placeholder file
1686
-	$headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) );
1686
+	$headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
1687 1687
 
1688 1688
 	$log_message = '';
1689
-	if ( is_wp_error( $headers ) ) {
1690
-		echo 'file: ' . $url;
1689
+	if (is_wp_error($headers)) {
1690
+		echo 'file: '.$url;
1691 1691
 
1692
-		return new WP_Error( 'import_file_error', $headers->get_error_message() );
1692
+		return new WP_Error('import_file_error', $headers->get_error_message());
1693 1693
 	}
1694 1694
 
1695
-	$filesize = filesize( $upload['file'] );
1695
+	$filesize = filesize($upload['file']);
1696 1696
 	// request failed
1697
-	if ( ! $headers ) {
1698
-		$log_message = __( 'Remote server did not respond', 'geodirectory' );
1697
+	if (!$headers) {
1698
+		$log_message = __('Remote server did not respond', 'geodirectory');
1699 1699
 	} // make sure the fetch was successful
1700
-	elseif ( $headers['response']['code'] != '200' ) {
1701
-		$log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) );
1702
-	} elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
1703
-		$log_message = __( 'Remote file is incorrect size', 'geodirectory' );
1704
-	} elseif ( 0 == $filesize ) {
1705
-		$log_message = __( 'Zero size file downloaded', 'geodirectory' );
1706
-	}
1707
-
1708
-	if ( $log_message ) {
1709
-		$del = unlink( $upload['file'] );
1710
-		if ( ! $del ) {
1711
-			geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) );
1700
+	elseif ($headers['response']['code'] != '200') {
1701
+		$log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1702
+	} elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1703
+		$log_message = __('Remote file is incorrect size', 'geodirectory');
1704
+	} elseif (0 == $filesize) {
1705
+		$log_message = __('Zero size file downloaded', 'geodirectory');
1706
+	}
1707
+
1708
+	if ($log_message) {
1709
+		$del = unlink($upload['file']);
1710
+		if (!$del) {
1711
+			geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
1712 1712
 		}
1713 1713
 
1714
-		return new WP_Error( 'import_file_error', $log_message );
1714
+		return new WP_Error('import_file_error', $log_message);
1715 1715
 	}
1716 1716
 
1717
-	if ( $dummy && $add_to_cache && is_array( $upload ) ) {
1718
-		$images = get_transient( 'cached_dummy_images' );
1719
-		if ( is_array( $images ) ) {
1720
-			$images[ $key ] = $upload;
1717
+	if ($dummy && $add_to_cache && is_array($upload)) {
1718
+		$images = get_transient('cached_dummy_images');
1719
+		if (is_array($images)) {
1720
+			$images[$key] = $upload;
1721 1721
 		} else {
1722
-			$images = array( $key => $upload );
1722
+			$images = array($key => $upload);
1723 1723
 		}
1724 1724
 
1725 1725
 		//setting the cache using the WP Transient API
1726
-		set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache
1726
+		set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1727 1727
 	}
1728 1728
 
1729 1729
 	return $upload;
@@ -1737,12 +1737,12 @@  discard block
 block discarded – undo
1737 1737
  * @return string|void Max upload size.
1738 1738
  */
1739 1739
 function geodir_max_upload_size() {
1740
-	$max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 );
1740
+	$max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
1741 1741
 
1742
-	if ( $max_filesize > 0 && $max_filesize < 1 ) {
1743
-		$max_filesize = (int) ( $max_filesize * 1024 ) . 'kb';
1742
+	if ($max_filesize > 0 && $max_filesize < 1) {
1743
+		$max_filesize = (int) ($max_filesize * 1024).'kb';
1744 1744
 	} else {
1745
-		$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1745
+		$max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb';
1746 1746
 	}
1747 1747
 
1748 1748
 	/**
@@ -1752,7 +1752,7 @@  discard block
 block discarded – undo
1752 1752
 	 *
1753 1753
 	 * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1754 1754
 	 */
1755
-	return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize );
1755
+	return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1756 1756
 }
1757 1757
 
1758 1758
 /**
@@ -1765,8 +1765,8 @@  discard block
 block discarded – undo
1765 1765
  * @return bool If dummy folder exists returns true, else false.
1766 1766
  */
1767 1767
 function geodir_dummy_folder_exists() {
1768
-	$path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1769
-	if ( ! is_dir( $path ) ) {
1768
+	$path = geodir_plugin_path().'/geodirectory-admin/dummy/';
1769
+	if (!is_dir($path)) {
1770 1770
 		return false;
1771 1771
 	} else {
1772 1772
 		return true;
@@ -1785,17 +1785,17 @@  discard block
 block discarded – undo
1785 1785
  *
1786 1786
  * @return object Author info.
1787 1787
  */
1788
-function geodir_get_author_info( $aid ) {
1788
+function geodir_get_author_info($aid) {
1789 1789
 	global $wpdb;
1790 1790
 	/*$infosql = "select * from $wpdb->users where ID=$aid";*/
1791
-	$infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) );
1792
-	$info    = $wpdb->get_results( $infosql );
1793
-	if ( $info ) {
1791
+	$infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1792
+	$info    = $wpdb->get_results($infosql);
1793
+	if ($info) {
1794 1794
 		return $info[0];
1795 1795
 	}
1796 1796
 }
1797 1797
 
1798
-if ( ! function_exists( 'adminEmail' ) ) {
1798
+if (!function_exists('adminEmail')) {
1799 1799
 	/**
1800 1800
 	 * Send emails to client on post submission, renew etc.
1801 1801
 	 *
@@ -1808,67 +1808,67 @@  discard block
 block discarded – undo
1808 1808
 	 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1809 1809
 	 * @param string $custom_1     Custom data to be sent.
1810 1810
 	 */
1811
-	function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
1811
+	function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
1812 1812
 		global $wpdb;
1813
-		if ( $message_type == 'expiration' ) {
1814
-			$subject        = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) );
1815
-			$client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) );
1816
-		} elseif ( $message_type == 'post_submited' ) {
1817
-			$subject        = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' );
1818
-			$client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' );
1819
-		} elseif ( $message_type == 'renew' ) {
1820
-			$subject        = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' );
1821
-			$client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' );
1822
-		} elseif ( $message_type == 'upgrade' ) {
1823
-			$subject        = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' );
1824
-			$client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' );
1825
-		} elseif ( $message_type == 'claim_approved' ) {
1826
-			$subject        = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' );
1827
-			$client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' );
1828
-		} elseif ( $message_type == 'claim_rejected' ) {
1829
-			$subject        = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' );
1830
-			$client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' );
1831
-		} elseif ( $message_type == 'claim_requested' ) {
1832
-			$subject        = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' );
1833
-			$client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' );
1834
-		} elseif ( $message_type == 'auto_claim' ) {
1835
-			$subject        = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' );
1836
-			$client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' );
1837
-		} elseif ( $message_type == 'payment_success' ) {
1838
-			$subject        = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' );
1839
-			$client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' );
1840
-		} elseif ( $message_type == 'payment_fail' ) {
1841
-			$subject        = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' );
1842
-			$client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' );
1813
+		if ($message_type == 'expiration') {
1814
+			$subject        = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
1815
+			$client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
1816
+		} elseif ($message_type == 'post_submited') {
1817
+			$subject        = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
1818
+			$client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
1819
+		} elseif ($message_type == 'renew') {
1820
+			$subject        = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
1821
+			$client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
1822
+		} elseif ($message_type == 'upgrade') {
1823
+			$subject        = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
1824
+			$client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
1825
+		} elseif ($message_type == 'claim_approved') {
1826
+			$subject        = __(get_option('claim_approved_email_subject'), 'geodirectory');
1827
+			$client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
1828
+		} elseif ($message_type == 'claim_rejected') {
1829
+			$subject        = __(get_option('claim_rejected_email_subject'), 'geodirectory');
1830
+			$client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
1831
+		} elseif ($message_type == 'claim_requested') {
1832
+			$subject        = __(get_option('claim_email_subject_admin'), 'geodirectory');
1833
+			$client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
1834
+		} elseif ($message_type == 'auto_claim') {
1835
+			$subject        = __(get_option('auto_claim_email_subject'), 'geodirectory');
1836
+			$client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
1837
+		} elseif ($message_type == 'payment_success') {
1838
+			$subject        = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
1839
+			$client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
1840
+		} elseif ($message_type == 'payment_fail') {
1841
+			$subject        = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
1842
+			$client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
1843 1843
 		}
1844 1844
 		$transaction_details = $custom_1;
1845
-		$fromEmail           = get_option( 'site_email' );
1845
+		$fromEmail           = get_option('site_email');
1846 1846
 		$fromEmailName       = get_site_emailName();
1847 1847
 //$alivedays = get_post_meta($page_id,'alive_days',true);
1848
-		$pkg_limit            = get_property_price_info_listing( $page_id );
1848
+		$pkg_limit            = get_property_price_info_listing($page_id);
1849 1849
 		$alivedays            = $pkg_limit['days'];
1850
-		$productlink          = get_permalink( $page_id );
1851
-		$post_info            = get_post( $page_id );
1852
-		$post_date            = date( 'dS F,Y', strtotime( $post_info->post_date ) );
1853
-		$listingLink          = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1850
+		$productlink          = get_permalink($page_id);
1851
+		$post_info            = get_post($page_id);
1852
+		$post_date            = date('dS F,Y', strtotime($post_info->post_date));
1853
+		$listingLink          = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
1854 1854
 		$loginurl             = geodir_login_url();
1855
-		$loginurl_link        = '<a href="' . $loginurl . '">login</a>';
1855
+		$loginurl_link        = '<a href="'.$loginurl.'">login</a>';
1856 1856
 		$siteurl              = home_url();
1857
-		$siteurl_link         = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1858
-		$user_info            = get_userdata( $user_id );
1857
+		$siteurl_link         = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>';
1858
+		$user_info            = get_userdata($user_id);
1859 1859
 		$user_email           = $user_info->user_email;
1860
-		$display_name         = geodir_get_client_name( $user_id );
1860
+		$display_name         = geodir_get_client_name($user_id);
1861 1861
 		$user_login           = $user_info->user_login;
1862
-		$number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' );
1863
-		if ( $number_of_grace_days == '' ) {
1862
+		$number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1863
+		if ($number_of_grace_days == '') {
1864 1864
 			$number_of_grace_days = 1;
1865 1865
 		}
1866
-		if ( $post_info->post_type == 'event' ) {
1866
+		if ($post_info->post_type == 'event') {
1867 1867
 			$post_type = 'event';
1868 1868
 		} else {
1869 1869
 			$post_type = 'listing';
1870 1870
 		}
1871
-		$renew_link     = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1871
+		$renew_link     = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>';
1872 1872
 		$search_array   = array(
1873 1873
 			'[#client_name#]',
1874 1874
 			'[#listing_link#]',
@@ -1884,7 +1884,7 @@  discard block
 block discarded – undo
1884 1884
 			'[#site_name#]',
1885 1885
 			'[#transaction_details#]'
1886 1886
 		);
1887
-		$replace_array  = array(
1887
+		$replace_array = array(
1888 1888
 			$display_name,
1889 1889
 			$listingLink,
1890 1890
 			$post_date,
@@ -1899,13 +1899,13 @@  discard block
 block discarded – undo
1899 1899
 			$fromEmailName,
1900 1900
 			$transaction_details
1901 1901
 		);
1902
-		$client_message = str_replace( $search_array, $replace_array, $client_message );
1903
-		$subject        = str_replace( $search_array, $replace_array, $subject );
1902
+		$client_message = str_replace($search_array, $replace_array, $client_message);
1903
+		$subject        = str_replace($search_array, $replace_array, $subject);
1904 1904
 
1905 1905
 
1906
-		$headers  = array();
1906
+		$headers = array();
1907 1907
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
1908
-		$headers[] = 'From: ' . $fromEmailName . ' <' . $fromEmail . '>';
1908
+		$headers[] = 'From: '.$fromEmailName.' <'.$fromEmail.'>';
1909 1909
 
1910 1910
 		$to      = $fromEmail;
1911 1911
 		$message = $client_message;
@@ -1923,7 +1923,7 @@  discard block
 block discarded – undo
1923 1923
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1924 1924
 		 * @param string $custom_1     Custom data to be sent.
1925 1925
 		 */
1926
-		$to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 );
1926
+		$to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
1927 1927
 		/**
1928 1928
 		 * Filter the admin email subject.
1929 1929
 		 *
@@ -1936,7 +1936,7 @@  discard block
 block discarded – undo
1936 1936
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1937 1937
 		 * @param string $custom_1     Custom data to be sent.
1938 1938
 		 */
1939
-		$subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 );
1939
+		$subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
1940 1940
 		/**
1941 1941
 		 * Filter the admin email message.
1942 1942
 		 *
@@ -1949,7 +1949,7 @@  discard block
 block discarded – undo
1949 1949
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1950 1950
 		 * @param string $custom_1     Custom data to be sent.
1951 1951
 		 */
1952
-		$message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 );
1952
+		$message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
1953 1953
 		/**
1954 1954
 		 * Filter the admin email headers.
1955 1955
 		 *
@@ -1962,22 +1962,22 @@  discard block
 block discarded – undo
1962 1962
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1963 1963
 		 * @param string $custom_1     Custom data to be sent.
1964 1964
 		 */
1965
-		$headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 );
1965
+		$headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
1966 1966
 
1967 1967
 
1968
-		$sent = wp_mail( $to, $subject, $message, $headers );
1969
-		if ( ! $sent ) {
1970
-			if ( is_array( $to ) ) {
1971
-				$to = implode( ',', $to );
1968
+		$sent = wp_mail($to, $subject, $message, $headers);
1969
+		if (!$sent) {
1970
+			if (is_array($to)) {
1971
+				$to = implode(',', $to);
1972 1972
 			}
1973 1973
 			$log_message = sprintf(
1974
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1974
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1975 1975
 				$message_type,
1976
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1976
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1977 1977
 				$to,
1978 1978
 				$subject
1979 1979
 			);
1980
-			geodir_error_log( $log_message );
1980
+			geodir_error_log($log_message);
1981 1981
 		}
1982 1982
 	}
1983 1983
 }
@@ -1997,12 +1997,12 @@  discard block
 block discarded – undo
1997 1997
  *
1998 1998
  * @return array Category IDs.
1999 1999
  */
2000
-function gd_lang_object_ids( $ids_array, $type ) {
2001
-	if ( function_exists( 'icl_object_id' ) ) {
2000
+function gd_lang_object_ids($ids_array, $type) {
2001
+	if (function_exists('icl_object_id')) {
2002 2002
 		$res = array();
2003
-		foreach ( $ids_array as $id ) {
2004
-			$xlat = icl_object_id( $id, $type, false );
2005
-			if ( ! is_null( $xlat ) ) {
2003
+		foreach ($ids_array as $id) {
2004
+			$xlat = icl_object_id($id, $type, false);
2005
+			if (!is_null($xlat)) {
2006 2006
 				$res[] = $xlat;
2007 2007
 			}
2008 2008
 		}
@@ -2026,20 +2026,20 @@  discard block
 block discarded – undo
2026 2026
  *
2027 2027
  * @return array Modified Body CSS classes.
2028 2028
  */
2029
-function geodir_custom_posts_body_class( $classes ) {
2029
+function geodir_custom_posts_body_class($classes) {
2030 2030
 	global $wpdb, $wp;
2031
-	$post_types = geodir_get_posttypes( 'object' );
2032
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2031
+	$post_types = geodir_get_posttypes('object');
2032
+	if (!empty($post_types) && count((array) $post_types) > 1) {
2033 2033
 		$classes[] = 'geodir_custom_posts';
2034 2034
 	}
2035 2035
 
2036 2036
 	// fix body class for signup page
2037
-	if ( geodir_is_page( 'login' ) ) {
2037
+	if (geodir_is_page('login')) {
2038 2038
 		$new_classes   = array();
2039 2039
 		$new_classes[] = 'signup page-geodir-signup';
2040
-		if ( ! empty( $classes ) ) {
2041
-			foreach ( $classes as $class ) {
2042
-				if ( $class && $class != 'home' && $class != 'blog' ) {
2040
+		if (!empty($classes)) {
2041
+			foreach ($classes as $class) {
2042
+				if ($class && $class != 'home' && $class != 'blog') {
2043 2043
 					$new_classes[] = $class;
2044 2044
 				}
2045 2045
 			}
@@ -2047,14 +2047,14 @@  discard block
 block discarded – undo
2047 2047
 		$classes = $new_classes;
2048 2048
 	}
2049 2049
 
2050
-	if ( geodir_is_geodir_page() ) {
2050
+	if (geodir_is_geodir_page()) {
2051 2051
 		$classes[] = 'geodir-page';
2052 2052
 	}
2053 2053
 
2054 2054
 	return $classes;
2055 2055
 }
2056 2056
 
2057
-add_filter( 'body_class', 'geodir_custom_posts_body_class' ); // let's add a class to the body so we can style the new addition to the search
2057
+add_filter('body_class', 'geodir_custom_posts_body_class'); // let's add a class to the body so we can style the new addition to the search
2058 2058
 
2059 2059
 
2060 2060
 /**
@@ -2070,7 +2070,7 @@  discard block
 block discarded – undo
2070 2070
 	 *
2071 2071
 	 * @since 1.0.0
2072 2072
 	 */
2073
-	return apply_filters( 'geodir_map_zoom_level', array(
2073
+	return apply_filters('geodir_map_zoom_level', array(
2074 2074
 		1,
2075 2075
 		2,
2076 2076
 		3,
@@ -2090,7 +2090,7 @@  discard block
 block discarded – undo
2090 2090
 		17,
2091 2091
 		18,
2092 2092
 		19
2093
-	) );
2093
+	));
2094 2094
 
2095 2095
 }
2096 2096
 
@@ -2103,12 +2103,12 @@  discard block
 block discarded – undo
2103 2103
  *
2104 2104
  * @param string $geodir_option_name Option key.
2105 2105
  */
2106
-function geodir_option_version_backup( $geodir_option_name ) {
2106
+function geodir_option_version_backup($geodir_option_name) {
2107 2107
 	$version_date  = time();
2108
-	$geodir_option = get_option( $geodir_option_name );
2108
+	$geodir_option = get_option($geodir_option_name);
2109 2109
 
2110
-	if ( ! empty( $geodir_option ) ) {
2111
-		add_option( $geodir_option_name . '_' . $version_date, $geodir_option );
2110
+	if (!empty($geodir_option)) {
2111
+		add_option($geodir_option_name.'_'.$version_date, $geodir_option);
2112 2112
 	}
2113 2113
 }
2114 2114
 
@@ -2122,10 +2122,10 @@  discard block
 block discarded – undo
2122 2122
  *
2123 2123
  * @return int Page ID.
2124 2124
  */
2125
-function get_page_id_geodir_add_listing_page( $page_id ) {
2126
-	if ( geodir_wpml_multilingual_status() ) {
2125
+function get_page_id_geodir_add_listing_page($page_id) {
2126
+	if (geodir_wpml_multilingual_status()) {
2127 2127
 		$post_type = 'post_page';
2128
-		$page_id   = geodir_get_wpml_element_id( $page_id, $post_type );
2128
+		$page_id   = geodir_get_wpml_element_id($page_id, $post_type);
2129 2129
 	}
2130 2130
 
2131 2131
 	return $page_id;
@@ -2139,7 +2139,7 @@  discard block
 block discarded – undo
2139 2139
  * @return bool Returns true when sitepress multilingual CMS active. else returns false.
2140 2140
  */
2141 2141
 function geodir_wpml_multilingual_status() {
2142
-	if ( function_exists( 'icl_object_id' ) ) {
2142
+	if (function_exists('icl_object_id')) {
2143 2143
 		return true;
2144 2144
 	}
2145 2145
 
@@ -2157,19 +2157,19 @@  discard block
 block discarded – undo
2157 2157
  *
2158 2158
  * @return int Element ID when exists. Else the page id.
2159 2159
  */
2160
-function geodir_get_wpml_element_id( $page_id, $post_type ) {
2160
+function geodir_get_wpml_element_id($page_id, $post_type) {
2161 2161
 	global $sitepress;
2162
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2163
-		$trid = $sitepress->get_element_trid( $page_id, $post_type );
2162
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2163
+		$trid = $sitepress->get_element_trid($page_id, $post_type);
2164 2164
 
2165
-		if ( $trid > 0 ) {
2166
-			$translations = $sitepress->get_element_translations( $trid, $post_type );
2165
+		if ($trid > 0) {
2166
+			$translations = $sitepress->get_element_translations($trid, $post_type);
2167 2167
 
2168 2168
 			$lang = $sitepress->get_current_language();
2169 2169
 			$lang = $lang ? $lang : $sitepress->get_default_language();
2170 2170
 
2171
-			if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
2172
-				$page_id = $translations[ $lang ]->element_id;
2171
+			if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
2172
+				$page_id = $translations[$lang]->element_id;
2173 2173
 			}
2174 2174
 		}
2175 2175
 	}
@@ -2186,15 +2186,15 @@  discard block
 block discarded – undo
2186 2186
  */
2187 2187
 function geodir_wpml_check_element_id() {
2188 2188
 	global $sitepress;
2189
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2189
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2190 2190
 		$el_type      = 'post_page';
2191
-		$el_id        = get_option( 'geodir_add_listing_page' );
2191
+		$el_id        = get_option('geodir_add_listing_page');
2192 2192
 		$default_lang = $sitepress->get_default_language();
2193
-		$el_details   = $sitepress->get_element_language_details( $el_id, $el_type );
2193
+		$el_details   = $sitepress->get_element_language_details($el_id, $el_type);
2194 2194
 
2195
-		if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
2196
-			if ( ! $el_details->source_language_code ) {
2197
-				$sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang );
2195
+		if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
2196
+			if (!$el_details->source_language_code) {
2197
+				$sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
2198 2198
 				$sitepress->icl_translations_cache->clear();
2199 2199
 			}
2200 2200
 		}
@@ -2213,41 +2213,41 @@  discard block
 block discarded – undo
2213 2213
  *
2214 2214
  * @return string Orderby SQL.
2215 2215
  */
2216
-function geodir_widget_listings_get_order( $query_args ) {
2216
+function geodir_widget_listings_get_order($query_args) {
2217 2217
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2218 2218
 
2219 2219
 	$query_args = $gd_query_args_widgets;
2220
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2221
-		return $wpdb->posts . ".post_date DESC, ";
2220
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2221
+		return $wpdb->posts.".post_date DESC, ";
2222 2222
 	}
2223 2223
 
2224
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2225
-	$table     = $plugin_prefix . $post_type . '_detail';
2224
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2225
+	$table     = $plugin_prefix.$post_type.'_detail';
2226 2226
 
2227
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2227
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2228 2228
 
2229
-	switch ( $sort_by ) {
2229
+	switch ($sort_by) {
2230 2230
 		case 'latest':
2231 2231
 		case 'newest':
2232
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2232
+			$orderby = $wpdb->posts.".post_date DESC, ";
2233 2233
 			break;
2234 2234
 		case 'featured':
2235
-			$orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, ";
2235
+			$orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, ";
2236 2236
 			break;
2237 2237
 		case 'az':
2238
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2238
+			$orderby = $wpdb->posts.".post_title ASC, ";
2239 2239
 			break;
2240 2240
 		case 'high_review':
2241
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2241
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2242 2242
 			break;
2243 2243
 		case 'high_rating':
2244
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2244
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2245 2245
 			break;
2246 2246
 		case 'random':
2247 2247
 			$orderby = "RAND(), ";
2248 2248
 			break;
2249 2249
 		default:
2250
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2250
+			$orderby = $wpdb->posts.".post_title ASC, ";
2251 2251
 			break;
2252 2252
 	}
2253 2253
 
@@ -2270,15 +2270,15 @@  discard block
 block discarded – undo
2270 2270
  *
2271 2271
  * @return mixed Result object.
2272 2272
  */
2273
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2273
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2274 2274
 	global $wpdb, $plugin_prefix, $table_prefix;
2275 2275
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2276 2276
 	$gd_query_args_widgets            = $query_args;
2277 2277
 
2278
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2279
-	$table     = $plugin_prefix . $post_type . '_detail';
2278
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2279
+	$table     = $plugin_prefix.$post_type.'_detail';
2280 2280
 
2281
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2281
+	$fields = $wpdb->posts.".*, ".$table.".*";
2282 2282
 	/**
2283 2283
 	 * Filter widget listing fields string part that is being used for query.
2284 2284
 	 *
@@ -2288,17 +2288,17 @@  discard block
 block discarded – undo
2288 2288
 	 * @param string $table     Table name.
2289 2289
 	 * @param string $post_type Post type.
2290 2290
 	 */
2291
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2291
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2292 2292
 
2293
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2293
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2294 2294
 
2295 2295
 	########### WPML ###########
2296 2296
 
2297
-	if ( function_exists( 'icl_object_id' ) ) {
2297
+	if (function_exists('icl_object_id')) {
2298 2298
 		global $sitepress;
2299 2299
 		$lang_code = ICL_LANGUAGE_CODE;
2300
-		if ( $lang_code ) {
2301
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2300
+		if ($lang_code) {
2301
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2302 2302
 		}
2303 2303
 	}
2304 2304
 
@@ -2312,15 +2312,15 @@  discard block
 block discarded – undo
2312 2312
 	 * @param string $join      Join clause string.
2313 2313
 	 * @param string $post_type Post type.
2314 2314
 	 */
2315
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2315
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2316 2316
 
2317
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2317
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2318 2318
 
2319
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2319
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2320 2320
 
2321 2321
 	########### WPML ###########
2322
-	if ( function_exists( 'icl_object_id' ) ) {
2323
-		if ( $lang_code ) {
2322
+	if (function_exists('icl_object_id')) {
2323
+		if ($lang_code) {
2324 2324
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2325 2325
 		}
2326 2326
 	}
@@ -2333,8 +2333,8 @@  discard block
 block discarded – undo
2333 2333
 	 * @param string $where     Where clause string.
2334 2334
 	 * @param string $post_type Post type.
2335 2335
 	 */
2336
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2337
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2336
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2337
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2338 2338
 
2339 2339
 	$groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster withotu
2340 2340
 	/**
@@ -2345,15 +2345,15 @@  discard block
 block discarded – undo
2345 2345
 	 * @param string $groupby   Group by clause string.
2346 2346
 	 * @param string $post_type Post type.
2347 2347
 	 */
2348
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2348
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2349 2349
 
2350
-	if ( $count_only ) {
2351
-		$sql  = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2352
-			" . $join . "
2350
+	if ($count_only) {
2351
+		$sql  = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2352
+			" . $join."
2353 2353
 			" . $where;
2354
-		$rows = (int) $wpdb->get_var( $sql );
2354
+		$rows = (int) $wpdb->get_var($sql);
2355 2355
 	} else {
2356
-		$orderby = geodir_widget_listings_get_order( $query_args );
2356
+		$orderby = geodir_widget_listings_get_order($query_args);
2357 2357
 		/**
2358 2358
 		 * Filter widget listing orderby clause string part that is being used for query.
2359 2359
 		 *
@@ -2363,11 +2363,11 @@  discard block
 block discarded – undo
2363 2363
 		 * @param string $table     Table name.
2364 2364
 		 * @param string $post_type Post type.
2365 2365
 		 */
2366
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2367
-		$orderby .= $wpdb->posts . ".post_title ASC";
2368
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2366
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2367
+		$orderby .= $wpdb->posts.".post_title ASC";
2368
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2369 2369
 
2370
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2370
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2371 2371
 		/**
2372 2372
 		 * Filter widget listing limit that is being used for query.
2373 2373
 		 *
@@ -2376,27 +2376,27 @@  discard block
 block discarded – undo
2376 2376
 		 * @param int $limit        Query results limit.
2377 2377
 		 * @param string $post_type Post type.
2378 2378
 		 */
2379
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2379
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2380 2380
 
2381
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2382
-		if ( ! $page ) {
2381
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2382
+		if (!$page) {
2383 2383
 			$page = 1;
2384 2384
 		}
2385 2385
 
2386
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2386
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2387 2387
 
2388 2388
 		//@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without
2389
-		$sql  = "SELECT " . $fields . " FROM " . $wpdb->posts . "
2390
-			" . $join . "
2391
-			" . $where . "
2392
-			" . $groupby . "
2393
-			" . $orderby . "
2389
+		$sql = "SELECT ".$fields." FROM ".$wpdb->posts."
2390
+			" . $join."
2391
+			" . $where."
2392
+			" . $groupby."
2393
+			" . $orderby."
2394 2394
 			" . $limit;
2395
-		$rows = $wpdb->get_results( $sql );
2395
+		$rows = $wpdb->get_results($sql);
2396 2396
 	}
2397 2397
 
2398
-	unset( $GLOBALS['gd_query_args_widgets'] );
2399
-	unset( $gd_query_args_widgets );
2398
+	unset($GLOBALS['gd_query_args_widgets']);
2399
+	unset($gd_query_args_widgets);
2400 2400
 
2401 2401
 	return $rows;
2402 2402
 }
@@ -2413,11 +2413,11 @@  discard block
 block discarded – undo
2413 2413
  *
2414 2414
  * @return string Modified fields SQL.
2415 2415
  */
2416
-function geodir_function_widget_listings_fields( $fields ) {
2416
+function geodir_function_widget_listings_fields($fields) {
2417 2417
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2418 2418
 
2419 2419
 	$query_args = $gd_query_args_widgets;
2420
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2420
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2421 2421
 		return $fields;
2422 2422
 	}
2423 2423
 
@@ -2436,24 +2436,24 @@  discard block
 block discarded – undo
2436 2436
  *
2437 2437
  * @return string Modified join clause SQL.
2438 2438
  */
2439
-function geodir_function_widget_listings_join( $join ) {
2439
+function geodir_function_widget_listings_join($join) {
2440 2440
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2441 2441
 
2442 2442
 	$query_args = $gd_query_args_widgets;
2443
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2443
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2444 2444
 		return $join;
2445 2445
 	}
2446 2446
 
2447
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2448
-	$table     = $plugin_prefix . $post_type . '_detail';
2447
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2448
+	$table     = $plugin_prefix.$post_type.'_detail';
2449 2449
 
2450
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2451
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2450
+	if (!empty($query_args['with_pics_only'])) {
2451
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2452 2452
 	}
2453 2453
 
2454
-	if ( ! empty( $query_args['tax_query'] ) ) {
2455
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2456
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2454
+	if (!empty($query_args['tax_query'])) {
2455
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2456
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2457 2457
 			$join .= $tax_queries['join'];
2458 2458
 		}
2459 2459
 	}
@@ -2473,49 +2473,49 @@  discard block
 block discarded – undo
2473 2473
  *
2474 2474
  * @return string Modified where clause SQL.
2475 2475
  */
2476
-function geodir_function_widget_listings_where( $where ) {
2476
+function geodir_function_widget_listings_where($where) {
2477 2477
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2478 2478
 
2479 2479
 	$query_args = $gd_query_args_widgets;
2480
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2480
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2481 2481
 		return $where;
2482 2482
 	}
2483
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2484
-	$table     = $plugin_prefix . $post_type . '_detail';
2483
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2484
+	$table     = $plugin_prefix.$post_type.'_detail';
2485 2485
 
2486
-	if ( ! empty( $query_args ) ) {
2487
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2488
-			$where = geodir_default_location_where( $where, $table );
2486
+	if (!empty($query_args)) {
2487
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2488
+			$where = geodir_default_location_where($where, $table);
2489 2489
 		}
2490 2490
 
2491
-		if ( ! empty( $query_args['post_author'] ) ) {
2492
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2491
+		if (!empty($query_args['post_author'])) {
2492
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2493 2493
 		}
2494 2494
 
2495
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2496
-			$where .= " AND " . $table . ".is_featured = '1'";
2495
+		if (!empty($query_args['show_featured_only'])) {
2496
+			$where .= " AND ".$table.".is_featured = '1'";
2497 2497
 		}
2498 2498
 
2499
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2500
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2499
+		if (!empty($query_args['show_special_only'])) {
2500
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2501 2501
 		}
2502 2502
 
2503
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2504
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2503
+		if (!empty($query_args['with_pics_only'])) {
2504
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2505 2505
 		}
2506 2506
 
2507
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2508
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2507
+		if (!empty($query_args['featured_image_only'])) {
2508
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2509 2509
 		}
2510 2510
 
2511
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2512
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2511
+		if (!empty($query_args['with_videos_only'])) {
2512
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2513 2513
 		}
2514 2514
 
2515
-		if ( ! empty( $query_args['tax_query'] ) ) {
2516
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2515
+		if (!empty($query_args['tax_query'])) {
2516
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2517 2517
 
2518
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2518
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2519 2519
 				$where .= $tax_queries['where'];
2520 2520
 			}
2521 2521
 		}
@@ -2536,11 +2536,11 @@  discard block
 block discarded – undo
2536 2536
  *
2537 2537
  * @return string Modified orderby clause SQL.
2538 2538
  */
2539
-function geodir_function_widget_listings_orderby( $orderby ) {
2539
+function geodir_function_widget_listings_orderby($orderby) {
2540 2540
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2541 2541
 
2542 2542
 	$query_args = $gd_query_args_widgets;
2543
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2543
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2544 2544
 		return $orderby;
2545 2545
 	}
2546 2546
 
@@ -2559,15 +2559,15 @@  discard block
 block discarded – undo
2559 2559
  *
2560 2560
  * @return int Query limit.
2561 2561
  */
2562
-function geodir_function_widget_listings_limit( $limit ) {
2562
+function geodir_function_widget_listings_limit($limit) {
2563 2563
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2564 2564
 
2565 2565
 	$query_args = $gd_query_args_widgets;
2566
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2566
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2567 2567
 		return $limit;
2568 2568
 	}
2569 2569
 
2570
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2570
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2571 2571
 		$limit = (int) $query_args['posts_per_page'];
2572 2572
 	}
2573 2573
 
@@ -2585,12 +2585,12 @@  discard block
 block discarded – undo
2585 2585
  *
2586 2586
  * @return int Large size width.
2587 2587
  */
2588
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2589
-	$large_size_w = get_option( 'large_size_w' );
2588
+function geodir_media_image_large_width($default = 800, $params = '') {
2589
+	$large_size_w = get_option('large_size_w');
2590 2590
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2591
-	$large_size_w = absint( $large_size_w );
2591
+	$large_size_w = absint($large_size_w);
2592 2592
 
2593
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2593
+	if (!get_option('geodir_use_wp_media_large_size')) {
2594 2594
 		$large_size_w = 800;
2595 2595
 	}
2596 2596
 
@@ -2603,7 +2603,7 @@  discard block
 block discarded – undo
2603 2603
 	 * @param int $default         Default width.
2604 2604
 	 * @param string|array $params Image parameters.
2605 2605
 	 */
2606
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2606
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2607 2607
 
2608 2608
 	return $large_size_w;
2609 2609
 }
@@ -2619,12 +2619,12 @@  discard block
 block discarded – undo
2619 2619
  *
2620 2620
  * @return int Large size height.
2621 2621
  */
2622
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2623
-	$large_size_h = get_option( 'large_size_h' );
2622
+function geodir_media_image_large_height($default = 800, $params = '') {
2623
+	$large_size_h = get_option('large_size_h');
2624 2624
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2625
-	$large_size_h = absint( $large_size_h );
2625
+	$large_size_h = absint($large_size_h);
2626 2626
 
2627
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2627
+	if (!get_option('geodir_use_wp_media_large_size')) {
2628 2628
 		$large_size_h = 800;
2629 2629
 	}
2630 2630
 
@@ -2637,7 +2637,7 @@  discard block
 block discarded – undo
2637 2637
 	 * @param int $default         Default height.
2638 2638
 	 * @param string|array $params Image parameters.
2639 2639
 	 */
2640
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2640
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2641 2641
 
2642 2642
 	return $large_size_h;
2643 2643
 }
@@ -2654,8 +2654,8 @@  discard block
 block discarded – undo
2654 2654
  *
2655 2655
  * @return string Sanitized name.
2656 2656
  */
2657
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2658
-	if ( $name == '' ) {
2657
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2658
+	if ($name == '') {
2659 2659
 		return null;
2660 2660
 	}
2661 2661
 
@@ -2664,13 +2664,13 @@  discard block
 block discarded – undo
2664 2664
 	$type = $type == 'gd_city' ? 'city' : $type;
2665 2665
 
2666 2666
 	$return = $name;
2667
-	if ( function_exists( 'get_actual_location_name' ) ) {
2668
-		$return = get_actual_location_name( $type, $name, $translate );
2667
+	if (function_exists('get_actual_location_name')) {
2668
+		$return = get_actual_location_name($type, $name, $translate);
2669 2669
 	} else {
2670
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2671
-		$return = preg_replace( '/[_-]/', ' ', $return );
2672
-		$return = geodir_ucwords( $return );
2673
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2670
+		$return = preg_replace('/-(\d+)$/', '', $return);
2671
+		$return = preg_replace('/[_-]/', ' ', $return);
2672
+		$return = geodir_ucwords($return);
2673
+		$return = $translate ? __($return, 'geodirectory') : $return;
2674 2674
 	}
2675 2675
 
2676 2676
 	return $return;
@@ -2685,14 +2685,14 @@  discard block
 block discarded – undo
2685 2685
  *
2686 2686
  * @param int $number Comments number.
2687 2687
  */
2688
-function geodir_comments_number( $number ) {
2688
+function geodir_comments_number($number) {
2689 2689
 
2690
-	if ( $number > 1 ) {
2691
-		$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2692
-	} elseif ( $number == 0 || $number == '' ) {
2693
-		$output = __( 'No Reviews', 'geodirectory' );
2690
+	if ($number > 1) {
2691
+		$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2692
+	} elseif ($number == 0 || $number == '') {
2693
+		$output = __('No Reviews', 'geodirectory');
2694 2694
 	} else { // must be one
2695
-		$output = __( '1 Review', 'geodirectory' );
2695
+		$output = __('1 Review', 'geodirectory');
2696 2696
 	}
2697 2697
 	echo $output;
2698 2698
 }
@@ -2707,18 +2707,18 @@  discard block
 block discarded – undo
2707 2707
  */
2708 2708
 function is_page_geodir_home() {
2709 2709
 	global $wpdb;
2710
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2711
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2712
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2710
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2711
+	if (function_exists('geodir_location_geo_home_link')) {
2712
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2713 2713
 	}
2714
-	$home_url = home_url( '', 'http' );
2715
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2716
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2714
+	$home_url = home_url('', 'http');
2715
+	if (function_exists('geodir_location_geo_home_link')) {
2716
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2717 2717
 	}
2718
-	$home_url = str_replace( "www.", "", $home_url );
2719
-	if ( ( strpos( $home_url, $cur_url ) !== false || strpos( $home_url . '/', $cur_url ) !== false ) && ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) ) {
2718
+	$home_url = str_replace("www.", "", $home_url);
2719
+	if ((strpos($home_url, $cur_url) !== false || strpos($home_url.'/', $cur_url) !== false) && ('page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page'))) {
2720 2720
 		return true;
2721
-	} elseif ( get_query_var( 'page_id' ) == get_option( 'page_on_front' ) && 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) {
2721
+	} elseif (get_query_var('page_id') == get_option('page_on_front') && 'page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page')) {
2722 2722
 		return true;
2723 2723
 	} else {
2724 2724
 		return false;
@@ -2738,18 +2738,18 @@  discard block
 block discarded – undo
2738 2738
  *
2739 2739
  * @return string The canonical URL.
2740 2740
  */
2741
-function geodir_wpseo_homepage_canonical( $url ) {
2741
+function geodir_wpseo_homepage_canonical($url) {
2742 2742
 	global $post;
2743 2743
 
2744
-	if ( is_page_geodir_home() ) {
2744
+	if (is_page_geodir_home()) {
2745 2745
 		return home_url();
2746 2746
 	}
2747 2747
 
2748 2748
 	return $url;
2749 2749
 }
2750 2750
 
2751
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2752
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2751
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2752
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2753 2753
 
2754 2754
 /**
2755 2755
  * Add extra fields to google maps script call.
@@ -2762,20 +2762,20 @@  discard block
 block discarded – undo
2762 2762
  *
2763 2763
  * @return string Modified extra string.
2764 2764
  */
2765
-function geodir_googlemap_script_extra_details_page( $extra ) {
2765
+function geodir_googlemap_script_extra_details_page($extra) {
2766 2766
 	global $post;
2767 2767
 	$add_google_places_api = false;
2768
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2768
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2769 2769
 		$add_google_places_api = true;
2770 2770
 	}
2771
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2771
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2772 2772
 		$extra .= "&amp;libraries=places";
2773 2773
 	}
2774 2774
 
2775 2775
 	return $extra;
2776 2776
 }
2777 2777
 
2778
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2778
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2779 2779
 
2780 2780
 
2781 2781
 /**
@@ -2793,104 +2793,104 @@  discard block
 block discarded – undo
2793 2793
  *                                          after_widget.
2794 2794
  * @param array|string $instance            The settings for the particular instance of the widget.
2795 2795
  */
2796
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2796
+function geodir_popular_post_category_output($args = '', $instance = '') {
2797 2797
 	// prints the widget
2798 2798
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2799
-	extract( $args, EXTR_SKIP );
2799
+	extract($args, EXTR_SKIP);
2800 2800
 
2801 2801
 	echo $before_widget;
2802 2802
 
2803 2803
 	/** This filter is documented in geodirectory_widgets.php */
2804
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2804
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2805 2805
 
2806 2806
 	$gd_post_type = geodir_get_current_posttype();
2807 2807
 
2808
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2808
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2809 2809
 	if (!isset($category_restrict)) {
2810 2810
 		$category_restrict = false;
2811 2811
 	}
2812
-	if ( ! empty( $gd_post_type ) ) {
2812
+	if (!empty($gd_post_type)) {
2813 2813
 		$default_post_type = $gd_post_type;
2814
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2814
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2815 2815
 		$default_post_type = $instance['default_post_type'];
2816 2816
 	} else {
2817 2817
 		$all_gd_post_type  = geodir_get_posttypes();
2818
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2818
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2819 2819
 	}
2820
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2820
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2821 2821
 
2822 2822
 	$taxonomy = array();
2823
-	if ( ! empty( $gd_post_type ) ) {
2824
-		$taxonomy[] = $gd_post_type . "category";
2823
+	if (!empty($gd_post_type)) {
2824
+		$taxonomy[] = $gd_post_type."category";
2825 2825
 	} else {
2826
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2826
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2827 2827
 	}
2828 2828
 
2829 2829
 	$taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy);
2830 2830
 
2831
-	$term_args = array( 'taxonomy' => $taxonomy );
2832
-	if ( $parent_only ) {
2831
+	$term_args = array('taxonomy' => $taxonomy);
2832
+	if ($parent_only) {
2833 2833
 		$term_args['parent'] = 0;
2834 2834
 	}
2835 2835
 
2836
-	$terms   = get_terms( $term_args );
2836
+	$terms   = get_terms($term_args);
2837 2837
 	$a_terms = array();
2838 2838
 	$b_terms = array();
2839 2839
 
2840
-	foreach ( $terms as $term ) {
2841
-		if ( $term->count > 0 ) {
2842
-			$a_terms[ $term->taxonomy ][] = $term;
2840
+	foreach ($terms as $term) {
2841
+		if ($term->count > 0) {
2842
+			$a_terms[$term->taxonomy][] = $term;
2843 2843
 		}
2844 2844
 	}
2845 2845
 
2846
-	if ( ! empty( $a_terms ) ) {
2847
-		foreach ( $a_terms as $b_key => $b_val ) {
2848
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' );
2846
+	if (!empty($a_terms)) {
2847
+		foreach ($a_terms as $b_key => $b_val) {
2848
+			$b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2849 2849
 		}
2850 2850
 
2851
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2851
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2852 2852
 
2853 2853
 		$tax_change_output = '';
2854
-		if ( count( $b_terms ) > 1 ) {
2855
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2856
-			foreach ( $b_terms as $key => $val ) {
2857
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2858
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2859
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2854
+		if (count($b_terms) > 1) {
2855
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2856
+			foreach ($b_terms as $key => $val) {
2857
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2858
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2859
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2860 2860
 			}
2861 2861
 			$tax_change_output .= "</select>";
2862 2862
 		}
2863 2863
 
2864
-		if ( ! empty( $b_terms ) ) {
2865
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2866
-			global $cat_count;//make global so we can change via function
2864
+		if (!empty($b_terms)) {
2865
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2866
+			global $cat_count; //make global so we can change via function
2867 2867
 			$cat_count = 0;
2868 2868
 			?>
2869 2869
 			<div class="geodir-category-list-in clearfix">
2870 2870
 				<div class="geodir-cat-list clearfix">
2871 2871
 					<?php
2872
-					echo $before_title . __( $title ) . $after_title;
2872
+					echo $before_title.__($title).$after_title;
2873 2873
 
2874 2874
 					echo $tax_change_output;
2875 2875
 
2876 2876
 					echo '<ul class="geodir-popular-cat-list">';
2877 2877
 
2878
-					geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict);
2878
+					geodir_helper_cat_list_output($terms, $category_limit, $category_restrict);
2879 2879
 
2880 2880
 					echo '</ul>';
2881 2881
 					?>
2882 2882
 				</div>
2883 2883
 				<?php
2884 2884
 				$hide = '';
2885
-				if ( $cat_count < $category_limit ) {
2885
+				if ($cat_count < $category_limit) {
2886 2886
 					$hide = 'style="display:none;"';
2887 2887
 				}
2888 2888
 				echo "<div class='geodir-cat-list-more' $hide >";
2889
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2890
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2889
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2890
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2891 2891
 				echo "</div>";
2892 2892
 				/* add scripts */
2893
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2893
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2894 2894
 				?>
2895 2895
 			</div>
2896 2896
 			<?php
@@ -2910,28 +2910,28 @@  discard block
 block discarded – undo
2910 2910
  * @param int $category_limit               Number of categories to display by default.
2911 2911
  * @param bool $category_restrict           If the cat limit shoudl be hidden or not shown.
2912 2912
  */
2913
-function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
2913
+function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
2914 2914
 	global $geodir_post_category_str, $cat_count;
2915 2915
 	$term_icons = geodir_get_term_icon();
2916 2916
 
2917 2917
 	$geodir_post_category_str = array();
2918 2918
 
2919 2919
 
2920
-	foreach ( $terms as $cat ) {
2921
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
2922
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
2920
+	foreach ($terms as $cat) {
2921
+		$post_type     = str_replace("category", "", $cat->taxonomy);
2922
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
2923 2923
 
2924
-		$cat_count ++;
2924
+		$cat_count++;
2925 2925
 
2926
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
2926
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
2927 2927
 
2928
-		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2929
-		if($category_restrict && $cat_count > $category_limit ){
2928
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2929
+		if ($category_restrict && $cat_count > $category_limit) {
2930 2930
 			continue;
2931 2931
 		}
2932 2932
 		$total_post = $cat->count;
2933 2933
 
2934
-		$term_link = get_term_link( $cat, $cat->taxonomy );
2934
+		$term_link = get_term_link($cat, $cat->taxonomy);
2935 2935
 		/**
2936 2936
 		 * Filer the category term link.
2937 2937
 		 *
@@ -2941,11 +2941,11 @@  discard block
 block discarded – undo
2941 2941
 		 * @param int $cat          ->term_id The term id.
2942 2942
 		 * @param string $post_type Wordpress post type.
2943 2943
 		 */
2944
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
2944
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
2945 2945
 
2946
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
2947
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
2948
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
2946
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
2947
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
2948
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
2949 2949
 		echo '</a></li>';
2950 2950
 	}
2951 2951
 }
@@ -2960,14 +2960,14 @@  discard block
 block discarded – undo
2960 2960
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
2961 2961
  * @param array|string $instance The settings for the particular instance of the widget.
2962 2962
  */
2963
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
2963
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
2964 2964
 	// prints the widget
2965
-	extract( $args, EXTR_SKIP );
2965
+	extract($args, EXTR_SKIP);
2966 2966
 
2967 2967
 	echo $before_widget;
2968 2968
 
2969 2969
 	/** This filter is documented in geodirectory_widgets.php */
2970
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2970
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2971 2971
 	/**
2972 2972
 	 * Filter the widget post type.
2973 2973
 	 *
@@ -2975,7 +2975,7 @@  discard block
 block discarded – undo
2975 2975
 	 *
2976 2976
 	 * @param string $instance ['post_type'] Post type of listing.
2977 2977
 	 */
2978
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
2978
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
2979 2979
 	/**
2980 2980
 	 * Filter the widget's term.
2981 2981
 	 *
@@ -2983,7 +2983,7 @@  discard block
 block discarded – undo
2983 2983
 	 *
2984 2984
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
2985 2985
 	 */
2986
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
2986
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
2987 2987
 	/**
2988 2988
 	 * Filter widget's "add_location_filter" value.
2989 2989
 	 *
@@ -2991,7 +2991,7 @@  discard block
 block discarded – undo
2991 2991
 	 *
2992 2992
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
2993 2993
 	 */
2994
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
2994
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
2995 2995
 	/**
2996 2996
 	 * Filter the widget listings limit.
2997 2997
 	 *
@@ -2999,7 +2999,7 @@  discard block
 block discarded – undo
2999 2999
 	 *
3000 3000
 	 * @param string $instance ['post_number'] Number of listings to display.
3001 3001
 	 */
3002
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3002
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3003 3003
 	/**
3004 3004
 	 * Filter the widget listings limit shown at one time.
3005 3005
 	 *
@@ -3007,7 +3007,7 @@  discard block
 block discarded – undo
3007 3007
 	 *
3008 3008
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
3009 3009
 	 */
3010
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
3010
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
3011 3011
 	/**
3012 3012
 	 * Filter the widget slide width.
3013 3013
 	 *
@@ -3015,7 +3015,7 @@  discard block
 block discarded – undo
3015 3015
 	 *
3016 3016
 	 * @param string $instance ['slide_width'] Width of the slides shown.
3017 3017
 	 */
3018
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
3018
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
3019 3019
 	/**
3020 3020
 	 * Filter widget's "show title" value.
3021 3021
 	 *
@@ -3023,7 +3023,7 @@  discard block
 block discarded – undo
3023 3023
 	 *
3024 3024
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
3025 3025
 	 */
3026
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
3026
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
3027 3027
 	/**
3028 3028
 	 * Filter widget's "slideshow" value.
3029 3029
 	 *
@@ -3031,7 +3031,7 @@  discard block
 block discarded – undo
3031 3031
 	 *
3032 3032
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
3033 3033
 	 */
3034
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
3034
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
3035 3035
 	/**
3036 3036
 	 * Filter widget's "animationLoop" value.
3037 3037
 	 *
@@ -3039,7 +3039,7 @@  discard block
 block discarded – undo
3039 3039
 	 *
3040 3040
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
3041 3041
 	 */
3042
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
3042
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
3043 3043
 	/**
3044 3044
 	 * Filter widget's "directionNav" value.
3045 3045
 	 *
@@ -3047,7 +3047,7 @@  discard block
 block discarded – undo
3047 3047
 	 *
3048 3048
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
3049 3049
 	 */
3050
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
3050
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
3051 3051
 	/**
3052 3052
 	 * Filter widget's "slideshowSpeed" value.
3053 3053
 	 *
@@ -3055,7 +3055,7 @@  discard block
 block discarded – undo
3055 3055
 	 *
3056 3056
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
3057 3057
 	 */
3058
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
3058
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
3059 3059
 	/**
3060 3060
 	 * Filter widget's "animationSpeed" value.
3061 3061
 	 *
@@ -3063,7 +3063,7 @@  discard block
 block discarded – undo
3063 3063
 	 *
3064 3064
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
3065 3065
 	 */
3066
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
3066
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
3067 3067
 	/**
3068 3068
 	 * Filter widget's "animation" value.
3069 3069
 	 *
@@ -3071,7 +3071,7 @@  discard block
 block discarded – undo
3071 3071
 	 *
3072 3072
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
3073 3073
 	 */
3074
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
3074
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3075 3075
 	/**
3076 3076
 	 * Filter widget's "list_sort" type.
3077 3077
 	 *
@@ -3079,10 +3079,10 @@  discard block
 block discarded – undo
3079 3079
 	 *
3080 3080
 	 * @param string $instance ['list_sort'] Listing sort by type.
3081 3081
 	 */
3082
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3083
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3082
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3083
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3084 3084
 
3085
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3085
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3086 3086
 	?>
3087 3087
 	<script type="text/javascript">
3088 3088
 		jQuery(window).load(function () {
@@ -3100,23 +3100,23 @@  discard block
 block discarded – undo
3100 3100
 				itemWidth: 75,
3101 3101
 				itemMargin: 5,
3102 3102
 				asNavFor: '#geodir_widget_slider',
3103
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3103
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3104 3104
 			});
3105 3105
 
3106 3106
 			jQuery('#geodir_widget_slider').flexslider({
3107
-				animation: "<?php echo $animation;?>",
3107
+				animation: "<?php echo $animation; ?>",
3108 3108
 				selector: ".geodir-slides > li",
3109 3109
 				namespace: "geodir-",
3110 3110
 				controlNav: true,
3111
-				animationLoop: <?php echo $animationLoop;?>,
3112
-				slideshow: <?php echo $slideshow;?>,
3113
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3114
-				animationSpeed: <?php echo $animationSpeed;?>,
3115
-				directionNav: <?php echo $directionNav;?>,
3116
-				maxItems: <?php echo $max_show;?>,
3111
+				animationLoop: <?php echo $animationLoop; ?>,
3112
+				slideshow: <?php echo $slideshow; ?>,
3113
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3114
+				animationSpeed: <?php echo $animationSpeed; ?>,
3115
+				directionNav: <?php echo $directionNav; ?>,
3116
+				maxItems: <?php echo $max_show; ?>,
3117 3117
 				move: 1,
3118
-				<?php if ( $slide_width ) {
3119
-				echo "itemWidth: " . $slide_width . ",";
3118
+				<?php if ($slide_width) {
3119
+				echo "itemWidth: ".$slide_width.",";
3120 3120
 			}?>
3121 3121
 				sync: "#geodir_widget_carousel",
3122 3122
 				start: function (slider) {
@@ -3128,7 +3128,7 @@  discard block
 block discarded – undo
3128 3128
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3129 3129
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3130 3130
 				},
3131
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3131
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3132 3132
 			});
3133 3133
 		});
3134 3134
 	</script>
@@ -3141,62 +3141,62 @@  discard block
 block discarded – undo
3141 3141
 		'order_by'       => $list_sort
3142 3142
 	);
3143 3143
 
3144
-	if ( $show_featured_only ) {
3144
+	if ($show_featured_only) {
3145 3145
 		$query_args['show_featured_only'] = 1;
3146 3146
 	}
3147 3147
 
3148
-	if ( $category != 0 || $category != '' ) {
3149
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3148
+	if ($category != 0 || $category != '') {
3149
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3150 3150
 		$tax_query         = array(
3151 3151
 			'taxonomy' => $category_taxonomy[0],
3152 3152
 			'field'    => 'id',
3153 3153
 			'terms'    => $category
3154 3154
 		);
3155 3155
 
3156
-		$query_args['tax_query'] = array( $tax_query );
3156
+		$query_args['tax_query'] = array($tax_query);
3157 3157
 	}
3158 3158
 
3159 3159
 	// we want listings with featured image only
3160 3160
 	$query_args['featured_image_only'] = 1;
3161 3161
 
3162
-	if ( $post_type == 'gd_event' ) {
3162
+	if ($post_type == 'gd_event') {
3163 3163
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3164 3164
 	}// show only upcoming events
3165 3165
 
3166
-	$widget_listings = geodir_get_widget_listings( $query_args );
3167
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3168
-		if ( $title ) {
3169
-			echo $before_title . $title . $after_title;
3166
+	$widget_listings = geodir_get_widget_listings($query_args);
3167
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3168
+		if ($title) {
3169
+			echo $before_title.$title.$after_title;
3170 3170
 		}
3171 3171
 
3172 3172
 		global $post;
3173 3173
 
3174
-		$current_post = $post;// keep current post info
3174
+		$current_post = $post; // keep current post info
3175 3175
 
3176 3176
 		$widget_main_slides = '';
3177 3177
 		$nav_slides         = '';
3178 3178
 		$widget_slides      = 0;
3179 3179
 
3180
-		foreach ( $widget_listings as $widget_listing ) {
3180
+		foreach ($widget_listings as $widget_listing) {
3181 3181
 			global $gd_widget_listing_type;
3182 3182
 			$post         = $widget_listing;
3183
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3183
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3184 3184
 
3185
-			if ( ! empty( $widget_image ) ) {
3186
-				if ( $widget_image->height >= 200 ) {
3185
+			if (!empty($widget_image)) {
3186
+				if ($widget_image->height >= 200) {
3187 3187
 					$widget_spacer_height = 0;
3188 3188
 				} else {
3189
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3189
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3190 3190
 				}
3191 3191
 
3192
-				$widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:' . $widget_spacer_height . 'px !important;margin:0 auto;" width="100" />';
3192
+				$widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:'.$widget_spacer_height.'px !important;margin:0 auto;" width="100" />';
3193 3193
 
3194 3194
 				$title = '';
3195
-				if ( $show_title ) {
3196
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3195
+				if ($show_title) {
3196
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3197 3197
 					$post_id        = $post->ID;
3198
-					$post_permalink = get_permalink( $post->ID );
3199
-					$post_title     = get_the_title( $post->ID );
3198
+					$post_permalink = get_permalink($post->ID);
3199
+					$post_title     = get_the_title($post->ID);
3200 3200
 					/**
3201 3201
 					 * Filter the listing slider widget title.
3202 3202
 					 *
@@ -3207,12 +3207,12 @@  discard block
 block discarded – undo
3207 3207
 					 * @param string $post_permalink The post permalink url.
3208 3208
 					 * @param string $post_title     The post title text.
3209 3209
 					 */
3210
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3210
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3211 3211
 				}
3212 3212
 
3213
-				$widget_main_slides .= $title . '<img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></li>';
3214
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3215
-				$widget_slides ++;
3213
+				$widget_main_slides .= $title.'<img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></li>';
3214
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3215
+				$widget_slides++;
3216 3216
 			}
3217 3217
 		}
3218 3218
 		?>
@@ -3221,7 +3221,7 @@  discard block
 block discarded – undo
3221 3221
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3222 3222
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3223 3223
 			</div>
3224
-			<?php if ( $widget_slides > 1 ) { ?>
3224
+			<?php if ($widget_slides > 1) { ?>
3225 3225
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3226 3226
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3227 3227
 				</div>
@@ -3229,7 +3229,7 @@  discard block
 block discarded – undo
3229 3229
 		</div>
3230 3230
 		<?php
3231 3231
 		$GLOBALS['post'] = $current_post;
3232
-		setup_postdata( $current_post );
3232
+		setup_postdata($current_post);
3233 3233
 	}
3234 3234
 	echo $after_widget;
3235 3235
 }
@@ -3245,46 +3245,46 @@  discard block
 block discarded – undo
3245 3245
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3246 3246
  * @param array|string $instance The settings for the particular instance of the widget.
3247 3247
  */
3248
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3248
+function geodir_loginwidget_output($args = '', $instance = '') {
3249 3249
 	//print_r($args);
3250 3250
 	//print_r($instance);
3251 3251
 	// prints the widget
3252
-	extract( $args, EXTR_SKIP );
3252
+	extract($args, EXTR_SKIP);
3253 3253
 
3254 3254
 	/** This filter is documented in geodirectory_widgets.php */
3255
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3255
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3256 3256
 
3257 3257
 	echo $before_widget;
3258
-	echo $before_title . $title . $after_title;
3258
+	echo $before_title.$title.$after_title;
3259 3259
 
3260
-	if ( is_user_logged_in() ) {
3260
+	if (is_user_logged_in()) {
3261 3261
 		global $current_user;
3262 3262
 
3263
-		$author_link = get_author_posts_url( $current_user->data->ID );
3264
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3263
+		$author_link = get_author_posts_url($current_user->data->ID);
3264
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3265 3265
 
3266 3266
 		echo '<ul class="geodir-loginbox-list">';
3267 3267
 		ob_start();
3268 3268
 		?>
3269 3269
 		<li><a class="signin"
3270
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3270
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3271 3271
 		<?php
3272
-		$post_types                           = geodir_get_posttypes( 'object' );
3273
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3274
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3272
+		$post_types                           = geodir_get_posttypes('object');
3273
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3274
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3275 3275
 
3276
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3276
+		if (!empty($show_add_listing_post_types_main_nav)) {
3277 3277
 			$addlisting_links = '';
3278
-			foreach ( $post_types as $key => $postobj ) {
3278
+			foreach ($post_types as $key => $postobj) {
3279 3279
 
3280
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3280
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3281 3281
 
3282
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3282
+					if ($add_link = geodir_get_addlisting_link($key)) {
3283 3283
 
3284 3284
 						$name = $postobj->labels->name;
3285 3285
 
3286 3286
 						$selected = '';
3287
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3287
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3288 3288
 							$selected = 'selected="selected"';
3289 3289
 						}
3290 3290
 
@@ -3297,22 +3297,22 @@  discard block
 block discarded – undo
3297 3297
 						 * @param string $key       Add listing array key.
3298 3298
 						 * @param int $current_user ->ID Current user ID.
3299 3299
 						 */
3300
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3300
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3301 3301
 
3302
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3302
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3303 3303
 
3304 3304
 					}
3305 3305
 				}
3306 3306
 
3307 3307
 			}
3308 3308
 
3309
-			if ( $addlisting_links != '' ) { ?>
3309
+			if ($addlisting_links != '') { ?>
3310 3310
 
3311 3311
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3312 3312
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3313
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3313
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3314 3314
 						<option value="" disabled="disabled" selected="selected"
3315
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3315
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3316 3316
 						<?php echo $addlisting_links; ?>
3317 3317
 					</select></li> <?php
3318 3318
 
@@ -3320,23 +3320,23 @@  discard block
 block discarded – undo
3320 3320
 
3321 3321
 		}
3322 3322
 		// My Favourites in Dashboard
3323
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3323
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3324 3324
 		$user_favourite                    = geodir_user_favourite_listing_count();
3325 3325
 
3326
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3326
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3327 3327
 			$favourite_links = '';
3328 3328
 
3329
-			foreach ( $post_types as $key => $postobj ) {
3330
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3329
+			foreach ($post_types as $key => $postobj) {
3330
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3331 3331
 					$name           = $postobj->labels->name;
3332
-					$post_type_link = geodir_getlink( $author_link, array(
3332
+					$post_type_link = geodir_getlink($author_link, array(
3333 3333
 						'stype' => $key,
3334 3334
 						'list'  => 'favourite'
3335
-					), false );
3335
+					), false);
3336 3336
 
3337 3337
 					$selected = '';
3338 3338
 
3339
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3339
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3340 3340
 						$selected = 'selected="selected"';
3341 3341
 					}
3342 3342
 					/**
@@ -3348,20 +3348,20 @@  discard block
 block discarded – undo
3348 3348
 					 * @param string $key            Favorite listing array key.
3349 3349
 					 * @param int $current_user      ->ID Current user ID.
3350 3350
 					 */
3351
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3351
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3352 3352
 
3353
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3353
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3354 3354
 				}
3355 3355
 			}
3356 3356
 
3357
-			if ( $favourite_links != '' ) {
3357
+			if ($favourite_links != '') {
3358 3358
 				?>
3359 3359
 				<li>
3360 3360
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3361 3361
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3362
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3362
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3363 3363
 						<option value="" disabled="disabled" selected="selected"
3364
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3364
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3365 3365
 						<?php echo $favourite_links; ?>
3366 3366
 					</select>
3367 3367
 				</li>
@@ -3370,19 +3370,19 @@  discard block
 block discarded – undo
3370 3370
 		}
3371 3371
 
3372 3372
 
3373
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3373
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3374 3374
 		$user_listing                     = geodir_user_post_listing_count();
3375 3375
 
3376
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3376
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3377 3377
 			$listing_links = '';
3378 3378
 
3379
-			foreach ( $post_types as $key => $postobj ) {
3380
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3379
+			foreach ($post_types as $key => $postobj) {
3380
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3381 3381
 					$name         = $postobj->labels->name;
3382
-					$listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false );
3382
+					$listing_link = geodir_getlink($author_link, array('stype' => $key), false);
3383 3383
 
3384 3384
 					$selected = '';
3385
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3385
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3386 3386
 						$selected = 'selected="selected"';
3387 3387
 					}
3388 3388
 
@@ -3395,20 +3395,20 @@  discard block
 block discarded – undo
3395 3395
 					 * @param string $key          My listing array key.
3396 3396
 					 * @param int $current_user    ->ID Current user ID.
3397 3397
 					 */
3398
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3398
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3399 3399
 
3400
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>';
3400
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(ucfirst($name), 'geodirectory').'</option>';
3401 3401
 				}
3402 3402
 			}
3403 3403
 
3404
-			if ( $listing_links != '' ) {
3404
+			if ($listing_links != '') {
3405 3405
 				?>
3406 3406
 				<li>
3407 3407
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3408 3408
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3409
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3409
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3410 3410
 						<option value="" disabled="disabled" selected="selected"
3411
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3411
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3412 3412
 						<?php echo $listing_links; ?>
3413 3413
 					</select>
3414 3414
 				</li>
@@ -3424,7 +3424,7 @@  discard block
 block discarded – undo
3424 3424
 		 *
3425 3425
 		 * @param string $dashboard_link Dashboard links HTML.
3426 3426
 		 */
3427
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3427
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3428 3428
 		echo '</ul>';
3429 3429
 
3430 3430
 		/**
@@ -3432,7 +3432,7 @@  discard block
 block discarded – undo
3432 3432
 		 *
3433 3433
 		 * @since 1.6.6
3434 3434
 		 */
3435
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3435
+		do_action('geodir_after_loginwidget_form_logged_in');
3436 3436
 
3437 3437
 
3438 3438
 	} else {
@@ -3447,18 +3447,18 @@  discard block
 block discarded – undo
3447 3447
 		<form name="loginform" class="loginform1"
3448 3448
 		      action="<?php echo geodir_login_url(); ?>"
3449 3449
 		      method="post">
3450
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log"
3450
+			<div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log"
3451 3451
 			                                    type="text" class="textfield user_login1"/> <span
3452 3452
 					class="user_loginInfo"></span></div>
3453
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3453
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3454 3454
 			                                    name="pwd" type="password"
3455 3455
 			                                    class="textfield user_pass1 input-text"/><span
3456 3456
 					class="user_passInfo"></span></div>
3457 3457
 
3458
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3458
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3459 3459
 			<input type="hidden" name="testcookie" value="1"/>
3460 3460
 
3461
-				<?php do_action( 'login_form' ); ?>
3461
+				<?php do_action('login_form'); ?>
3462 3462
 
3463 3463
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3464 3464
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3470,11 +3470,11 @@  discard block
 block discarded – undo
3470 3470
 					 *
3471 3471
 					 * @since 1.0.0
3472 3472
 					 */
3473
-    				$is_enable_signup = get_option( 'users_can_register' );
3473
+    				$is_enable_signup = get_option('users_can_register');
3474 3474
 
3475
-    				if ( $is_enable_signup ) {
3475
+    				if ($is_enable_signup) {
3476 3476
 					?>
3477
-						<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3477
+						<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3478 3478
 					   		class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3479 3479
 					<?php
3480 3480
     				}
@@ -3485,7 +3485,7 @@  discard block
 block discarded – undo
3485 3485
 					 * @since 1.0.0
3486 3486
 					 */
3487 3487
 					?>
3488
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3488
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3489 3489
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3490 3490
 		</form>
3491 3491
 		<?php
@@ -3494,7 +3494,7 @@  discard block
 block discarded – undo
3494 3494
 		 *
3495 3495
 		 * @since 1.6.6
3496 3496
 		 */
3497
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3497
+		do_action('geodir_after_loginwidget_form_logged_out');
3498 3498
 	}
3499 3499
 
3500 3500
 	echo $after_widget;
@@ -3516,16 +3516,16 @@  discard block
 block discarded – undo
3516 3516
  *                                         after_widget.
3517 3517
  * @param array|string $instance           The settings for the particular instance of the widget.
3518 3518
  */
3519
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3519
+function geodir_popular_postview_output($args = '', $instance = '') {
3520 3520
 	global $gd_session;
3521 3521
 
3522 3522
 	// prints the widget
3523
-	extract( $args, EXTR_SKIP );
3523
+	extract($args, EXTR_SKIP);
3524 3524
 
3525 3525
 	echo $before_widget;
3526 3526
 
3527 3527
 	/** This filter is documented in geodirectory_widgets.php */
3528
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3528
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3529 3529
 	/**
3530 3530
 	 * Filter the widget post type.
3531 3531
 	 *
@@ -3533,7 +3533,7 @@  discard block
 block discarded – undo
3533 3533
 	 *
3534 3534
 	 * @param string $instance ['post_type'] Post type of listing.
3535 3535
 	 */
3536
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3536
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3537 3537
 	/**
3538 3538
 	 * Filter the widget's term.
3539 3539
 	 *
@@ -3541,7 +3541,7 @@  discard block
 block discarded – undo
3541 3541
 	 *
3542 3542
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3543 3543
 	 */
3544
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3544
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3545 3545
 	/**
3546 3546
 	 * Filter the widget listings limit.
3547 3547
 	 *
@@ -3549,7 +3549,7 @@  discard block
 block discarded – undo
3549 3549
 	 *
3550 3550
 	 * @param string $instance ['post_number'] Number of listings to display.
3551 3551
 	 */
3552
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3552
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3553 3553
 	/**
3554 3554
 	 * Filter widget's "layout" type.
3555 3555
 	 *
@@ -3557,7 +3557,7 @@  discard block
 block discarded – undo
3557 3557
 	 *
3558 3558
 	 * @param string $instance ['layout'] Widget layout type.
3559 3559
 	 */
3560
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3560
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3561 3561
 	/**
3562 3562
 	 * Filter widget's "add_location_filter" value.
3563 3563
 	 *
@@ -3565,7 +3565,7 @@  discard block
 block discarded – undo
3565 3565
 	 *
3566 3566
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3567 3567
 	 */
3568
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3568
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3569 3569
 	/**
3570 3570
 	 * Filter widget's listing width.
3571 3571
 	 *
@@ -3573,7 +3573,7 @@  discard block
 block discarded – undo
3573 3573
 	 *
3574 3574
 	 * @param string $instance ['listing_width'] Listing width.
3575 3575
 	 */
3576
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3576
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3577 3577
 	/**
3578 3578
 	 * Filter widget's "list_sort" type.
3579 3579
 	 *
@@ -3581,25 +3581,25 @@  discard block
 block discarded – undo
3581 3581
 	 *
3582 3582
 	 * @param string $instance ['list_sort'] Listing sort by type.
3583 3583
 	 */
3584
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3585
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3584
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3585
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3586 3586
 
3587 3587
 	// set post type to current viewing post type
3588
-	if ( $use_viewing_post_type ) {
3588
+	if ($use_viewing_post_type) {
3589 3589
 		$current_post_type = geodir_get_current_posttype();
3590
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3590
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3591 3591
 			$post_type = $current_post_type;
3592 3592
 			$category  = array(); // old post type category will not work for current changed post type
3593 3593
 		}
3594 3594
 	}
3595 3595
 	// replace widget title dynamically
3596
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3597
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3596
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3597
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3598 3598
 
3599
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3600
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3599
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3600
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3601 3601
 
3602
-	if ( isset( $instance['character_count'] ) ) {
3602
+	if (isset($instance['character_count'])) {
3603 3603
 		/**
3604 3604
 		 * Filter the widget's excerpt character count.
3605 3605
 		 *
@@ -3607,37 +3607,37 @@  discard block
 block discarded – undo
3607 3607
 		 *
3608 3608
 		 * @param int $instance ['character_count'] Excerpt character count.
3609 3609
 		 */
3610
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3610
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3611 3611
 	} else {
3612 3612
 		$character_count = '';
3613 3613
 	}
3614 3614
 
3615
-	if ( empty( $title ) || $title == 'All' ) {
3616
-		$title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3615
+	if (empty($title) || $title == 'All') {
3616
+		$title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory');
3617 3617
 	}
3618 3618
 
3619 3619
 	$location_url = array();
3620
-	$city         = get_query_var( 'gd_city' );
3621
-	if ( ! empty( $city ) ) {
3622
-		$country = get_query_var( 'gd_country' );
3623
-		$region  = get_query_var( 'gd_region' );
3620
+	$city         = get_query_var('gd_city');
3621
+	if (!empty($city)) {
3622
+		$country = get_query_var('gd_country');
3623
+		$region  = get_query_var('gd_region');
3624 3624
 
3625
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3625
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3626 3626
 
3627
-		if ( $geodir_show_location_url == 'all' ) {
3628
-			if ( $country != '' ) {
3627
+		if ($geodir_show_location_url == 'all') {
3628
+			if ($country != '') {
3629 3629
 				$location_url[] = $country;
3630 3630
 			}
3631 3631
 
3632
-			if ( $region != '' ) {
3632
+			if ($region != '') {
3633 3633
 				$location_url[] = $region;
3634 3634
 			}
3635
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3636
-			if ( $country != '' ) {
3635
+		} else if ($geodir_show_location_url == 'country_city') {
3636
+			if ($country != '') {
3637 3637
 				$location_url[] = $country;
3638 3638
 			}
3639
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3640
-			if ( $region != '' ) {
3639
+		} else if ($geodir_show_location_url == 'region_city') {
3640
+			if ($region != '') {
3641 3641
 				$location_url[] = $region;
3642 3642
 			}
3643 3643
 		}
@@ -3645,37 +3645,37 @@  discard block
 block discarded – undo
3645 3645
 		$location_url[] = $city;
3646 3646
 	}
3647 3647
 
3648
-	$location_url  = implode( '/', $location_url );
3648
+	$location_url  = implode('/', $location_url);
3649 3649
 	$skip_location = false;
3650
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3650
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3651 3651
 		$skip_location = true;
3652
-		$gd_session->un_set( 'gd_multi_location' );
3652
+		$gd_session->un_set('gd_multi_location');
3653 3653
 	}
3654 3654
 
3655
-	if ( get_option( 'permalink_structure' ) ) {
3656
-		$viewall_url = get_post_type_archive_link( $post_type );
3655
+	if (get_option('permalink_structure')) {
3656
+		$viewall_url = get_post_type_archive_link($post_type);
3657 3657
 	} else {
3658
-		$viewall_url = get_post_type_archive_link( $post_type );
3658
+		$viewall_url = get_post_type_archive_link($post_type);
3659 3659
 	}
3660 3660
 
3661
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3661
+	if (!empty($category) && $category[0] != '0') {
3662 3662
 		global $geodir_add_location_url;
3663 3663
 
3664 3664
 		$geodir_add_location_url = '0';
3665 3665
 
3666
-		if ( $add_location_filter != '0' ) {
3666
+		if ($add_location_filter != '0') {
3667 3667
 			$geodir_add_location_url = '1';
3668 3668
 		}
3669 3669
 
3670
-		$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3670
+		$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3671 3671
 
3672 3672
 		$geodir_add_location_url = null;
3673 3673
 	}
3674
-	if ( $skip_location ) {
3675
-		$gd_session->set( 'gd_multi_location', 1 );
3674
+	if ($skip_location) {
3675
+		$gd_session->set('gd_multi_location', 1);
3676 3676
 	}
3677 3677
 
3678
-	if ( is_wp_error( $viewall_url ) ) {
3678
+	if (is_wp_error($viewall_url)) {
3679 3679
 		$viewall_url = '';
3680 3680
 	}
3681 3681
 
@@ -3687,34 +3687,34 @@  discard block
 block discarded – undo
3687 3687
 		'order_by'       => $list_sort
3688 3688
 	);
3689 3689
 
3690
-	if ( $character_count ) {
3690
+	if ($character_count) {
3691 3691
 		$query_args['excerpt_length'] = $character_count;
3692 3692
 	}
3693 3693
 
3694
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3694
+	if (!empty($instance['show_featured_only'])) {
3695 3695
 		$query_args['show_featured_only'] = 1;
3696 3696
 	}
3697 3697
 
3698
-	if ( ! empty( $instance['show_special_only'] ) ) {
3698
+	if (!empty($instance['show_special_only'])) {
3699 3699
 		$query_args['show_special_only'] = 1;
3700 3700
 	}
3701 3701
 
3702
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3702
+	if (!empty($instance['with_pics_only'])) {
3703 3703
 		$query_args['with_pics_only']      = 0;
3704 3704
 		$query_args['featured_image_only'] = 1;
3705 3705
 	}
3706 3706
 
3707
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3707
+	if (!empty($instance['with_videos_only'])) {
3708 3708
 		$query_args['with_videos_only'] = 1;
3709 3709
 	}
3710
-	$with_no_results = ! empty( $instance['without_no_results'] ) ? false : true;
3710
+	$with_no_results = !empty($instance['without_no_results']) ? false : true;
3711 3711
 
3712
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3713
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3712
+	if (!empty($category) && $category[0] != '0') {
3713
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3714 3714
 
3715 3715
 		######### WPML #########
3716
-		if ( function_exists( 'icl_object_id' ) ) {
3717
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3716
+		if (function_exists('icl_object_id')) {
3717
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3718 3718
 		}
3719 3719
 		######### WPML #########
3720 3720
 
@@ -3724,14 +3724,14 @@  discard block
 block discarded – undo
3724 3724
 			'terms'    => $category
3725 3725
 		);
3726 3726
 
3727
-		$query_args['tax_query'] = array( $tax_query );
3727
+		$query_args['tax_query'] = array($tax_query);
3728 3728
 	}
3729 3729
 
3730 3730
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3731 3731
 
3732
-	$widget_listings = geodir_get_widget_listings( $query_args );
3732
+	$widget_listings = geodir_get_widget_listings($query_args);
3733 3733
 
3734
-	if ( ! empty( $widget_listings ) || $with_no_results ) {
3734
+	if (!empty($widget_listings) || $with_no_results) {
3735 3735
 		?>
3736 3736
 		<div class="geodir_locations geodir_location_listing">
3737 3737
 
@@ -3741,11 +3741,11 @@  discard block
 block discarded – undo
3741 3741
 			 *
3742 3742
 			 * @since 1.0.0
3743 3743
 			 */
3744
-			do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3744
+			do_action('geodir_before_view_all_link_in_widget'); ?>
3745 3745
 			<div class="geodir_list_heading clearfix">
3746
-				<?php echo $before_title . $title . $after_title; ?>
3746
+				<?php echo $before_title.$title.$after_title; ?>
3747 3747
 				<a href="<?php echo $viewall_url; ?>"
3748
-				   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3748
+				   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3749 3749
 			</div>
3750 3750
 			<?php
3751 3751
 			/**
@@ -3753,10 +3753,10 @@  discard block
 block discarded – undo
3753 3753
 			 *
3754 3754
 			 * @since 1.0.0
3755 3755
 			 */
3756
-			do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3756
+			do_action('geodir_after_view_all_link_in_widget'); ?>
3757 3757
 			<?php
3758
-			if ( strstr( $layout, 'gridview' ) ) {
3759
-				$listing_view_exp        = explode( '_', $layout );
3758
+			if (strstr($layout, 'gridview')) {
3759
+				$listing_view_exp        = explode('_', $layout);
3760 3760
 				$gridview_columns_widget = $layout;
3761 3761
 				$layout                  = $listing_view_exp[0];
3762 3762
 			} else {
@@ -3768,8 +3768,8 @@  discard block
 block discarded – undo
3768 3768
 			 *
3769 3769
 			 * @since 1.0.0
3770 3770
 			 */
3771
-			$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3772
-			if ( ! isset( $character_count ) ) {
3771
+			$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3772
+			if (!isset($character_count)) {
3773 3773
 				/**
3774 3774
 				 * Filter the widget's excerpt character count.
3775 3775
 				 *
@@ -3777,7 +3777,7 @@  discard block
 block discarded – undo
3777 3777
 				 *
3778 3778
 				 * @param int $instance ['character_count'] Excerpt character count.
3779 3779
 				 */
3780
-				$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3780
+				$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3781 3781
 			}
3782 3782
 
3783 3783
 			global $post, $map_jason, $map_canvas_arr;
@@ -3792,13 +3792,13 @@  discard block
 block discarded – undo
3792 3792
 			 *
3793 3793
 			 * @since 1.0.0
3794 3794
 			 */
3795
-			include( $template );
3795
+			include($template);
3796 3796
 
3797 3797
 			$geodir_is_widget_listing = false;
3798 3798
 
3799 3799
 			$GLOBALS['post'] = $current_post;
3800
-			if ( ! empty( $current_post ) ) {
3801
-				setup_postdata( $current_post );
3800
+			if (!empty($current_post)) {
3801
+				setup_postdata($current_post);
3802 3802
 			}
3803 3803
 			$map_jason      = $current_map_jason;
3804 3804
 			$map_canvas_arr = $current_map_canvas_arr;
@@ -3829,12 +3829,12 @@  discard block
 block discarded – undo
3829 3829
  *
3830 3830
  * @return int Reviews count.
3831 3831
  */
3832
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3832
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3833 3833
 	global $wpdb, $plugin_prefix;
3834 3834
 
3835
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3835
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3836 3836
 
3837
-	$sql = "SELECT COALESCE(SUM(rating_count),0) FROM " . $detail_table . " WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(" . $term_id . ", " . $taxonomy . ")";
3837
+	$sql = "SELECT COALESCE(SUM(rating_count),0) FROM ".$detail_table." WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(".$term_id.", ".$taxonomy.")";
3838 3838
 
3839 3839
 	/**
3840 3840
 	 * Filter count review sql query.
@@ -3846,9 +3846,9 @@  discard block
 block discarded – undo
3846 3846
 	 * @param int $taxonomy     The taxonomy Id.
3847 3847
 	 * @param string $post_type The post type.
3848 3848
 	 */
3849
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3849
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3850 3850
 
3851
-	$count = $wpdb->get_var( $sql );
3851
+	$count = $wpdb->get_var($sql);
3852 3852
 
3853 3853
 	return $count;
3854 3854
 }
@@ -3866,7 +3866,7 @@  discard block
 block discarded – undo
3866 3866
  *
3867 3867
  * @return array Term array data.
3868 3868
  */
3869
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3869
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3870 3870
 	/**
3871 3871
 	 * Filter review count option data.
3872 3872
 	 *
@@ -3876,78 +3876,78 @@  discard block
 block discarded – undo
3876 3876
 	 * @param bool $force_update Force update option value?. Default.false.
3877 3877
 	 * @param int $post_ID       The post id to update if any.
3878 3878
 	 */
3879
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
3880
-	if ( ! empty( $option_data ) ) {
3879
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
3880
+	if (!empty($option_data)) {
3881 3881
 		return $option_data;
3882 3882
 	}
3883 3883
 
3884
-	$option_data = get_option( 'geodir_global_review_count' );
3884
+	$option_data = get_option('geodir_global_review_count');
3885 3885
 
3886
-	if ( ! $option_data || $force_update ) {
3887
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
3886
+	if (!$option_data || $force_update) {
3887
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
3888 3888
 			global $gd_session;
3889 3889
 			$term_array = (array) $option_data;
3890
-			$post_type  = get_post_type( $post_ID );
3891
-			$taxonomy   = $post_type . 'category';
3892
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
3893
-
3894
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
3895
-				foreach ( $terms as $term_id ) {
3896
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3897
-					$children               = get_term_children( $term_id, $taxonomy );
3898
-					$term_array[ $term_id ] = $count;
3890
+			$post_type  = get_post_type($post_ID);
3891
+			$taxonomy   = $post_type.'category';
3892
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3893
+
3894
+			if (!empty($terms) && !is_wp_error($terms)) {
3895
+				foreach ($terms as $term_id) {
3896
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3897
+					$children               = get_term_children($term_id, $taxonomy);
3898
+					$term_array[$term_id] = $count;
3899 3899
 				}
3900 3900
 			}
3901 3901
 
3902
-			$session_listing = $gd_session->get( 'listing' );
3902
+			$session_listing = $gd_session->get('listing');
3903 3903
 
3904 3904
 			$terms = array();
3905
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
3906
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
3907
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
3908
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
3905
+			if (isset($_POST['post_category'][$taxonomy])) {
3906
+				$terms = (array) $_POST['post_category'][$taxonomy];
3907
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
3908
+				$terms = (array) $session_listing['post_category'][$taxonomy];
3909 3909
 			}
3910 3910
 
3911
-			if ( ! empty( $terms ) ) {
3912
-				foreach ( $terms as $term_id ) {
3913
-					if ( $term_id > 0 ) {
3914
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3915
-						$children               = get_term_children( $term_id, $taxonomy );
3916
-						$term_array[ $term_id ] = $count;
3911
+			if (!empty($terms)) {
3912
+				foreach ($terms as $term_id) {
3913
+					if ($term_id > 0) {
3914
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3915
+						$children               = get_term_children($term_id, $taxonomy);
3916
+						$term_array[$term_id] = $count;
3917 3917
 					}
3918 3918
 				}
3919 3919
 			}
3920 3920
 		} else { // Update reviews count for all post categories.
3921 3921
 			$term_array = array();
3922 3922
 			$post_types = geodir_get_posttypes();
3923
-			foreach ( $post_types as $post_type ) {
3923
+			foreach ($post_types as $post_type) {
3924 3924
 
3925
-				$taxonomy = geodir_get_taxonomies( $post_type );
3925
+				$taxonomy = geodir_get_taxonomies($post_type);
3926 3926
 				$taxonomy = $taxonomy[0];
3927 3927
 
3928 3928
 				$args = array(
3929 3929
 					'hide_empty' => false
3930 3930
 				);
3931 3931
 
3932
-				$terms = get_terms( $taxonomy, $args );
3932
+				$terms = get_terms($taxonomy, $args);
3933 3933
 
3934
-				foreach ( $terms as $term ) {
3935
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
3936
-					$children = get_term_children( $term->term_id, $taxonomy );
3934
+				foreach ($terms as $term) {
3935
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
3936
+					$children = get_term_children($term->term_id, $taxonomy);
3937 3937
 					/*if ( is_array( $children ) ) {
3938 3938
                         foreach ( $children as $child_id ) {
3939 3939
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
3940 3940
                             $count = $count + $child_count;
3941 3941
                         }
3942 3942
                     }*/
3943
-					$term_array[ $term->term_id ] = $count;
3943
+					$term_array[$term->term_id] = $count;
3944 3944
 				}
3945 3945
 			}
3946 3946
 		}
3947 3947
 
3948
-		update_option( 'geodir_global_review_count', $term_array );
3948
+		update_option('geodir_global_review_count', $term_array);
3949 3949
 		//clear cache
3950
-		wp_cache_delete( 'geodir_global_review_count' );
3950
+		wp_cache_delete('geodir_global_review_count');
3951 3951
 
3952 3952
 		return $term_array;
3953 3953
 	} else {
@@ -3963,39 +3963,39 @@  discard block
 block discarded – undo
3963 3963
  * @package GeoDirectory
3964 3964
  * @return bool
3965 3965
  */
3966
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
3967
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
3966
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
3967
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
3968 3968
 		return; // do not run if importing listings
3969 3969
 	}
3970 3970
 
3971
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
3971
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
3972 3972
 		return;
3973 3973
 	}
3974 3974
 
3975 3975
 	$post_ID = 0;
3976
-	if ( ! empty( $post ) ) {
3977
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
3976
+	if (!empty($post)) {
3977
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
3978 3978
 			return;
3979 3979
 		}
3980 3980
 
3981
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
3981
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
3982 3982
 			return;
3983 3983
 		}
3984 3984
 
3985
-		if ( ! empty( $post->ID ) ) {
3985
+		if (!empty($post->ID)) {
3986 3986
 			$post_ID = $post->ID;
3987 3987
 		}
3988 3988
 	}
3989 3989
 
3990
-	if ( $new_status != $old_status ) {
3991
-		geodir_count_reviews_by_terms( true, $post_ID );
3990
+	if ($new_status != $old_status) {
3991
+		geodir_count_reviews_by_terms(true, $post_ID);
3992 3992
 	}
3993 3993
 
3994 3994
 	return true;
3995 3995
 }
3996 3996
 
3997
-function geodir_term_review_count_force_update_single_post( $post_id ) {
3998
-	geodir_count_reviews_by_terms( true, $post_id );
3997
+function geodir_term_review_count_force_update_single_post($post_id) {
3998
+	geodir_count_reviews_by_terms(true, $post_id);
3999 3999
 }
4000 4000
 
4001 4001
 /*-----------------------------------------------------------------------------------*/
@@ -4012,11 +4012,11 @@  discard block
 block discarded – undo
4012 4012
  *
4013 4013
  * @return int Post count.
4014 4014
  */
4015
-function geodir_count_posts_by_term( $data, $term ) {
4015
+function geodir_count_posts_by_term($data, $term) {
4016 4016
 
4017
-	if ( $data ) {
4018
-		if ( isset( $data[ $term->term_id ] ) ) {
4019
-			return $data[ $term->term_id ];
4017
+	if ($data) {
4018
+		if (isset($data[$term->term_id])) {
4019
+			return $data[$term->term_id];
4020 4020
 		} else {
4021 4021
 			return 0;
4022 4022
 		}
@@ -4033,8 +4033,8 @@  discard block
 block discarded – undo
4033 4033
  * param array $terms An array of term objects.
4034 4034
  * @return array Sorted terms array.
4035 4035
  */
4036
-function geodir_sort_terms_by_count( $terms ) {
4037
-	usort( $terms, "geodir_sort_by_count_obj" );
4036
+function geodir_sort_terms_by_count($terms) {
4037
+	usort($terms, "geodir_sort_by_count_obj");
4038 4038
 
4039 4039
 	return $terms;
4040 4040
 }
@@ -4049,8 +4049,8 @@  discard block
 block discarded – undo
4049 4049
  *
4050 4050
  * @return array Sorted terms array.
4051 4051
  */
4052
-function geodir_sort_terms_by_review_count( $terms ) {
4053
-	usort( $terms, "geodir_sort_by_review_count_obj" );
4052
+function geodir_sort_terms_by_review_count($terms) {
4053
+	usort($terms, "geodir_sort_by_review_count_obj");
4054 4054
 
4055 4055
 	return $terms;
4056 4056
 }
@@ -4066,12 +4066,12 @@  discard block
 block discarded – undo
4066 4066
  *
4067 4067
  * @return array Sorted terms array.
4068 4068
  */
4069
-function geodir_sort_terms( $terms, $sort = 'count' ) {
4070
-	if ( $sort == 'count' ) {
4071
-		return geodir_sort_terms_by_count( $terms );
4069
+function geodir_sort_terms($terms, $sort = 'count') {
4070
+	if ($sort == 'count') {
4071
+		return geodir_sort_terms_by_count($terms);
4072 4072
 	}
4073
-	if ( $sort == 'review_count' ) {
4074
-		return geodir_sort_terms_by_review_count( $terms );
4073
+	if ($sort == 'review_count') {
4074
+		return geodir_sort_terms_by_review_count($terms);
4075 4075
 	}
4076 4076
 }
4077 4077
 
@@ -4089,7 +4089,7 @@  discard block
 block discarded – undo
4089 4089
  *
4090 4090
  * @return bool
4091 4091
  */
4092
-function geodir_sort_by_count( $a, $b ) {
4092
+function geodir_sort_by_count($a, $b) {
4093 4093
 	return $a['count'] < $b['count'];
4094 4094
 }
4095 4095
 
@@ -4104,7 +4104,7 @@  discard block
 block discarded – undo
4104 4104
  *
4105 4105
  * @return bool
4106 4106
  */
4107
-function geodir_sort_by_count_obj( $a, $b ) {
4107
+function geodir_sort_by_count_obj($a, $b) {
4108 4108
 	return $a->count < $b->count;
4109 4109
 }
4110 4110
 
@@ -4119,7 +4119,7 @@  discard block
 block discarded – undo
4119 4119
  *
4120 4120
  * @return bool
4121 4121
  */
4122
-function geodir_sort_by_review_count_obj( $a, $b ) {
4122
+function geodir_sort_by_review_count_obj($a, $b) {
4123 4123
 	return $a->review_count < $b->review_count;
4124 4124
 }
4125 4125
 
@@ -4136,35 +4136,35 @@  discard block
 block discarded – undo
4136 4136
 	 * @since   1.4.2
4137 4137
 	 * @package GeoDirectory
4138 4138
 	 */
4139
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4139
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4140 4140
 
4141
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4142
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4141
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4142
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4143 4143
 
4144 4144
 	/**
4145 4145
 	 * Define language constants.
4146 4146
 	 *
4147 4147
 	 * @since 1.0.0
4148 4148
 	 */
4149
-	require_once( geodir_plugin_path() . '/language.php' );
4149
+	require_once(geodir_plugin_path().'/language.php');
4150 4150
 
4151
-	$language_file = geodir_plugin_path() . '/db-language.php';
4151
+	$language_file = geodir_plugin_path().'/db-language.php';
4152 4152
 
4153 4153
 	// Load language string file if not created yet
4154
-	if ( ! file_exists( $language_file ) ) {
4154
+	if (!file_exists($language_file)) {
4155 4155
 		geodirectory_load_db_language();
4156 4156
 	}
4157 4157
 
4158
-	if ( file_exists( $language_file ) ) {
4158
+	if (file_exists($language_file)) {
4159 4159
 		/**
4160 4160
 		 * Language strings from database.
4161 4161
 		 *
4162 4162
 		 * @since 1.4.2
4163 4163
 		 */
4164 4164
 		try {
4165
-			require_once( $language_file );
4166
-		} catch ( Exception $e ) {
4167
-			error_log( 'Language Error: ' . $e->getMessage() );
4165
+			require_once($language_file);
4166
+		} catch (Exception $e) {
4167
+			error_log('Language Error: '.$e->getMessage());
4168 4168
 		}
4169 4169
 	}
4170 4170
 }
@@ -4181,19 +4181,19 @@  discard block
 block discarded – undo
4181 4181
  */
4182 4182
 function geodirectory_load_db_language() {
4183 4183
 	global $wp_filesystem;
4184
-	if ( empty( $wp_filesystem ) ) {
4185
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4184
+	if (empty($wp_filesystem)) {
4185
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4186 4186
 		WP_Filesystem();
4187 4187
 		global $wp_filesystem;
4188 4188
 	}
4189 4189
 
4190
-	$language_file = geodir_plugin_path() . '/db-language.php';
4190
+	$language_file = geodir_plugin_path().'/db-language.php';
4191 4191
 
4192
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4192
+	if (is_file($language_file) && !is_writable($language_file)) {
4193 4193
 		return false;
4194 4194
 	} // Not possible to create.
4195 4195
 
4196
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4196
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4197 4197
 		return false;
4198 4198
 	} // Not possible to create.
4199 4199
 
@@ -4207,9 +4207,9 @@  discard block
 block discarded – undo
4207 4207
 	 *
4208 4208
 	 * @param array $contents_strings Array of strings.
4209 4209
 	 */
4210
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4210
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4211 4211
 
4212
-	$contents_strings = array_unique( $contents_strings );
4212
+	$contents_strings = array_unique($contents_strings);
4213 4213
 
4214 4214
 	$contents_head   = array();
4215 4215
 	$contents_head[] = "<?php";
@@ -4226,21 +4226,21 @@  discard block
 block discarded – undo
4226 4226
 	$contents_foot[] = "";
4227 4227
 	$contents_foot[] = "";
4228 4228
 
4229
-	$contents = implode( PHP_EOL, $contents_head );
4229
+	$contents = implode(PHP_EOL, $contents_head);
4230 4230
 
4231
-	if ( ! empty( $contents_strings ) ) {
4232
-		foreach ( $contents_strings as $string ) {
4233
-			if ( is_scalar( $string ) && $string != '' ) {
4234
-				$string = str_replace( "'", "\'", $string );
4235
-				geodir_wpml_register_string( $string );
4236
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4231
+	if (!empty($contents_strings)) {
4232
+		foreach ($contents_strings as $string) {
4233
+			if (is_scalar($string) && $string != '') {
4234
+				$string = str_replace("'", "\'", $string);
4235
+				geodir_wpml_register_string($string);
4236
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4237 4237
 			}
4238 4238
 		}
4239 4239
 	}
4240 4240
 
4241
-	$contents .= implode( PHP_EOL, $contents_foot );
4241
+	$contents .= implode(PHP_EOL, $contents_foot);
4242 4242
 
4243
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4243
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4244 4244
 		return false;
4245 4245
 	} // Failure; could not write file.
4246 4246
 
@@ -4261,49 +4261,49 @@  discard block
 block discarded – undo
4261 4261
  *
4262 4262
  * @return array Translation texts.
4263 4263
  */
4264
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4264
+function geodir_load_custom_field_translation($translation_texts = array()) {
4265 4265
 	global $wpdb;
4266 4266
 
4267 4267
 	// Custom fields table
4268
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4269
-	$rows = $wpdb->get_results( $sql );
4268
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4269
+	$rows = $wpdb->get_results($sql);
4270 4270
 
4271
-	if ( ! empty( $rows ) ) {
4272
-		foreach ( $rows as $row ) {
4273
-			if ( ! empty( $row->admin_title ) ) {
4274
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4271
+	if (!empty($rows)) {
4272
+		foreach ($rows as $row) {
4273
+			if (!empty($row->admin_title)) {
4274
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4275 4275
 			}
4276 4276
 
4277
-			if ( ! empty( $row->admin_desc ) ) {
4278
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4277
+			if (!empty($row->admin_desc)) {
4278
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4279 4279
 			}
4280 4280
 
4281
-			if ( ! empty( $row->site_title ) ) {
4282
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4281
+			if (!empty($row->site_title)) {
4282
+				$translation_texts[] = stripslashes_deep($row->site_title);
4283 4283
 			}
4284 4284
 
4285
-			if ( ! empty( $row->clabels ) ) {
4286
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4285
+			if (!empty($row->clabels)) {
4286
+				$translation_texts[] = stripslashes_deep($row->clabels);
4287 4287
 			}
4288 4288
 
4289
-			if ( ! empty( $row->required_msg ) ) {
4290
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4289
+			if (!empty($row->required_msg)) {
4290
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4291 4291
 			}
4292 4292
 
4293
-			if ( ! empty( $row->validation_msg ) ) {
4294
-				$translation_texts[] = stripslashes_deep( $row->validation_msg );
4293
+			if (!empty($row->validation_msg)) {
4294
+				$translation_texts[] = stripslashes_deep($row->validation_msg);
4295 4295
 			}
4296 4296
 
4297
-			if ( ! empty( $row->default_value ) ) {
4298
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4297
+			if (!empty($row->default_value)) {
4298
+				$translation_texts[] = stripslashes_deep($row->default_value);
4299 4299
 			}
4300 4300
 
4301
-			if ( ! empty( $row->option_values ) ) {
4302
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4301
+			if (!empty($row->option_values)) {
4302
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4303 4303
 
4304
-				if ( ! empty( $option_values ) ) {
4305
-					foreach ( $option_values as $option_value ) {
4306
-						if ( ! empty( $option_value['label'] ) ) {
4304
+				if (!empty($option_values)) {
4305
+					foreach ($option_values as $option_value) {
4306
+						if (!empty($option_value['label'])) {
4307 4307
 							$translation_texts[] = $option_value['label'];
4308 4308
 						}
4309 4309
 					}
@@ -4313,56 +4313,56 @@  discard block
 block discarded – undo
4313 4313
 	}
4314 4314
 
4315 4315
 	// Custom sorting fields table
4316
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4317
-	$rows = $wpdb->get_results( $sql );
4316
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4317
+	$rows = $wpdb->get_results($sql);
4318 4318
 
4319
-	if ( ! empty( $rows ) ) {
4320
-		foreach ( $rows as $row ) {
4321
-			if ( ! empty( $row->site_title ) ) {
4322
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4319
+	if (!empty($rows)) {
4320
+		foreach ($rows as $row) {
4321
+			if (!empty($row->site_title)) {
4322
+				$translation_texts[] = stripslashes_deep($row->site_title);
4323 4323
 			}
4324 4324
 
4325
-			if ( ! empty( $row->asc_title ) ) {
4326
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4325
+			if (!empty($row->asc_title)) {
4326
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4327 4327
 			}
4328 4328
 
4329
-			if ( ! empty( $row->desc_title ) ) {
4330
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4329
+			if (!empty($row->desc_title)) {
4330
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4331 4331
 			}
4332 4332
 		}
4333 4333
 	}
4334 4334
 
4335 4335
 	// Advance search filter fields table
4336
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4337
-		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4338
-		$rows = $wpdb->get_results( $sql );
4339
-
4340
-		if ( ! empty( $rows ) ) {
4341
-			foreach ( $rows as $row ) {
4342
-				if ( ! empty( $row->field_site_name ) ) {
4343
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4336
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4337
+		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4338
+		$rows = $wpdb->get_results($sql);
4339
+
4340
+		if (!empty($rows)) {
4341
+			foreach ($rows as $row) {
4342
+				if (!empty($row->field_site_name)) {
4343
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4344 4344
 				}
4345 4345
 
4346
-				if ( ! empty( $row->front_search_title ) ) {
4347
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4346
+				if (!empty($row->front_search_title)) {
4347
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4348 4348
 				}
4349 4349
 
4350
-				if ( ! empty( $row->first_search_text ) ) {
4351
-					$translation_texts[] = stripslashes_deep( $row->first_search_text );
4350
+				if (!empty($row->first_search_text)) {
4351
+					$translation_texts[] = stripslashes_deep($row->first_search_text);
4352 4352
 				}
4353 4353
 
4354
-				if ( ! empty( $row->last_search_text ) ) {
4355
-					$translation_texts[] = stripslashes_deep( $row->last_search_text );
4354
+				if (!empty($row->last_search_text)) {
4355
+					$translation_texts[] = stripslashes_deep($row->last_search_text);
4356 4356
 				}
4357 4357
 
4358
-				if ( ! empty( $row->field_desc ) ) {
4359
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4358
+				if (!empty($row->field_desc)) {
4359
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4360 4360
 				}
4361 4361
 			}
4362 4362
 		}
4363 4363
 	}
4364 4364
 
4365
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4365
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4366 4366
 
4367 4367
 	return $translation_texts;
4368 4368
 }
@@ -4384,7 +4384,7 @@  discard block
 block discarded – undo
4384 4384
 	 *
4385 4385
 	 * @param array $geodir_allowed_mime_types and file extensions.
4386 4386
 	 */
4387
-	return apply_filters( 'geodir_allowed_mime_types', array(
4387
+	return apply_filters('geodir_allowed_mime_types', array(
4388 4388
 			'Image'       => array( // Image formats.
4389 4389
 				'jpg'  => 'image/jpeg',
4390 4390
 				'jpe'  => 'image/jpeg',
@@ -4452,18 +4452,18 @@  discard block
 block discarded – undo
4452 4452
  *
4453 4453
  * @return string User display name.
4454 4454
  */
4455
-function geodir_get_client_name( $user_id ) {
4455
+function geodir_get_client_name($user_id) {
4456 4456
 	$client_name = '';
4457 4457
 
4458
-	$user_data = get_userdata( $user_id );
4458
+	$user_data = get_userdata($user_id);
4459 4459
 
4460
-	if ( ! empty( $user_data ) ) {
4461
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4462
-			$client_name = trim( $user_data->display_name );
4463
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4464
-			$client_name = trim( $user_data->user_nicename );
4460
+	if (!empty($user_data)) {
4461
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4462
+			$client_name = trim($user_data->display_name);
4463
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4464
+			$client_name = trim($user_data->user_nicename);
4465 4465
 		} else {
4466
-			$client_name = trim( $user_data->user_login );
4466
+			$client_name = trim($user_data->user_login);
4467 4467
 		}
4468 4468
 	}
4469 4469
 
@@ -4471,19 +4471,19 @@  discard block
 block discarded – undo
4471 4471
 }
4472 4472
 
4473 4473
 
4474
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4474
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4475 4475
 /*
4476 4476
  * Add location variables to wpseo replacements.
4477 4477
  *
4478 4478
  * @since 1.5.4
4479 4479
  */
4480
-function geodir_wpseo_replacements( $vars ) {
4480
+function geodir_wpseo_replacements($vars) {
4481 4481
 
4482 4482
 	global $wp;
4483 4483
 	$title = '';
4484 4484
 	// location variables
4485 4485
 	$gd_post_type   = geodir_get_current_posttype();
4486
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4486
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4487 4487
 	/**
4488 4488
 	 * Filter the title variables location variables array
4489 4489
 	 *
@@ -4493,20 +4493,20 @@  discard block
 block discarded – undo
4493 4493
 	 * @param array $location_array The array of location variables.
4494 4494
 	 * @param array $vars           The page title variables.
4495 4495
 	 */
4496
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4496
+	$location_array  = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4497 4497
 	$location_titles = array();
4498
-	if ( get_query_var( 'gd_country_full' ) ) {
4499
-		if ( get_query_var( 'gd_country_full' ) ) {
4500
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4498
+	if (get_query_var('gd_country_full')) {
4499
+		if (get_query_var('gd_country_full')) {
4500
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4501 4501
 		}
4502
-		if ( get_query_var( 'gd_region_full' ) ) {
4503
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4502
+		if (get_query_var('gd_region_full')) {
4503
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4504 4504
 		}
4505
-		if ( get_query_var( 'gd_city_full' ) ) {
4506
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4505
+		if (get_query_var('gd_city_full')) {
4506
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4507 4507
 		}
4508
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4509
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4508
+		if (get_query_var('gd_neighbourhood_full')) {
4509
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4510 4510
 		}
4511 4511
 	}
4512 4512
 
@@ -4521,7 +4521,7 @@  discard block
 block discarded – undo
4521 4521
 	 * @param string $gd_page       The page being filtered.
4522 4522
 	 * @param string $sep           The separator, default: `|`.
4523 4523
 	 */
4524
-	$title = apply_filters( 'geodir_replace_location_variables_seo', $title, $location_array, '', '' );
4524
+	$title = apply_filters('geodir_replace_location_variables_seo', $title, $location_array, '', '');
4525 4525
 
4526 4526
 	/**
4527 4527
 	 * Filter the title variables after standard ones have been filtered for wpseo.
@@ -4532,13 +4532,13 @@  discard block
 block discarded – undo
4532 4532
 	 * @param string $vars          The title with variables.
4533 4533
 	 * @param array $location_array The array of location variables.
4534 4534
 	 */
4535
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4535
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4536 4536
 }
4537 4537
 
4538 4538
 
4539
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4540
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4541
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4539
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4540
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4541
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4542 4542
 
4543 4543
 /**
4544 4544
  * Filter the title variables.
@@ -4580,14 +4580,14 @@  discard block
 block discarded – undo
4580 4580
  *
4581 4581
  * @return string Title after filtered variables.
4582 4582
  */
4583
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4583
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4584 4584
 	global $wp, $post;
4585 4585
 
4586
-	if ( ! $gd_page || ! $title ) {
4586
+	if (!$gd_page || !$title) {
4587 4587
 		return $title; // if no a GD page then bail.
4588 4588
 	}
4589 4589
 
4590
-	if ( $sep == '' ) {
4590
+	if ($sep == '') {
4591 4591
 		/**
4592 4592
 		 * Filter the page title separator.
4593 4593
 		 *
@@ -4596,100 +4596,100 @@  discard block
 block discarded – undo
4596 4596
 		 *
4597 4597
 		 * @param string $sep The separator, default: `|`.
4598 4598
 		 */
4599
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4599
+		$sep = apply_filters('geodir_page_title_separator', '|');
4600 4600
 	}
4601 4601
 
4602
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4603
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4602
+	if (strpos($title, '%%title%%') !== false) {
4603
+		$title = str_replace("%%title%%", $post->post_title, $title);
4604 4604
 	}
4605 4605
 
4606
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4607
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4606
+	if (strpos($title, '%%sitename%%') !== false) {
4607
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4608 4608
 	}
4609 4609
 
4610
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4611
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4610
+	if (strpos($title, '%%sitedesc%%') !== false) {
4611
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4612 4612
 	}
4613 4613
 
4614
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4615
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4614
+	if (strpos($title, '%%excerpt%%') !== false) {
4615
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4616 4616
 	}
4617 4617
 
4618
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4619
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4620
-	} else if ( $gd_page == 'add-listing' ) {
4621
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4622
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4623
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4618
+	if ($gd_page == 'search' || $gd_page == 'author') {
4619
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4620
+	} else if ($gd_page == 'add-listing') {
4621
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4622
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4623
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4624 4624
 		$post_type = $post->post_type;
4625 4625
 	} else {
4626
-		$post_type = get_query_var( 'post_type' );
4626
+		$post_type = get_query_var('post_type');
4627 4627
 	}
4628 4628
 
4629
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4629
+	if (strpos($title, '%%pt_single%%') !== false) {
4630 4630
 		$singular_name = '';
4631
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4632
-			$singular_name = __( $singular_name, 'geodirectory' );
4631
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4632
+			$singular_name = __($singular_name, 'geodirectory');
4633 4633
 		}
4634 4634
 
4635
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4635
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4636 4636
 	}
4637 4637
 
4638
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4638
+	if (strpos($title, '%%pt_plural%%') !== false) {
4639 4639
 		$plural_name = '';
4640
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4641
-			$plural_name = __( $plural_name, 'geodirectory' );
4640
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4641
+			$plural_name = __($plural_name, 'geodirectory');
4642 4642
 		}
4643 4643
 
4644
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4644
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4645 4645
 	}
4646 4646
 
4647
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4647
+	if (strpos($title, '%%category%%') !== false) {
4648 4648
 		$cat_name = '';
4649 4649
 
4650
-		if ( $gd_page == 'detail' ) {
4651
-			if ( $post->default_category ) {
4652
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4653
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4650
+		if ($gd_page == 'detail') {
4651
+			if ($post->default_category) {
4652
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4653
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4654 4654
 			}
4655
-		} else if ( $gd_page == 'listing' ) {
4655
+		} else if ($gd_page == 'listing') {
4656 4656
 			$queried_object = get_queried_object();
4657
-			if ( isset( $queried_object->name ) ) {
4657
+			if (isset($queried_object->name)) {
4658 4658
 				$cat_name = $queried_object->name;
4659 4659
 			}
4660 4660
 		}
4661
-		$title = str_replace( "%%category%%", $cat_name, $title );
4661
+		$title = str_replace("%%category%%", $cat_name, $title);
4662 4662
 	}
4663 4663
 
4664
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4664
+	if (strpos($title, '%%tag%%') !== false) {
4665 4665
 		$cat_name = '';
4666 4666
 
4667
-		if ( $gd_page == 'detail' ) {
4668
-			if ( $post->default_category ) {
4669
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4670
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4667
+		if ($gd_page == 'detail') {
4668
+			if ($post->default_category) {
4669
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4670
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4671 4671
 			}
4672
-		} else if ( $gd_page == 'listing' ) {
4672
+		} else if ($gd_page == 'listing') {
4673 4673
 			$queried_object = get_queried_object();
4674
-			if ( isset( $queried_object->name ) ) {
4674
+			if (isset($queried_object->name)) {
4675 4675
 				$cat_name = $queried_object->name;
4676 4676
 			}
4677 4677
 		}
4678
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4678
+		$title = str_replace("%%tag%%", $cat_name, $title);
4679 4679
 	}
4680 4680
 
4681
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4682
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4683
-		$title = str_replace( "%%id%%", $ID, $title );
4681
+	if (strpos($title, '%%id%%') !== false) {
4682
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4683
+		$title = str_replace("%%id%%", $ID, $title);
4684 4684
 	}
4685 4685
 
4686
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4687
-		$title = str_replace( "%%sep%%", $sep, $title );
4686
+	if (strpos($title, '%%sep%%') !== false) {
4687
+		$title = str_replace("%%sep%%", $sep, $title);
4688 4688
 	}
4689 4689
 
4690 4690
 	// location variables
4691 4691
 	$gd_post_type   = geodir_get_current_posttype();
4692
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4692
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4693 4693
 
4694 4694
 	/**
4695 4695
 	 * Filter the title variables location variables array
@@ -4702,20 +4702,20 @@  discard block
 block discarded – undo
4702 4702
 	 * @param string $gd_page       The page being filtered.
4703 4703
 	 * @param string $sep           The separator, default: `|`.
4704 4704
 	 */
4705
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4705
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4706 4706
 
4707
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4708
-		if ( get_query_var( 'gd_country_full' ) ) {
4709
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4707
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4708
+		if (get_query_var('gd_country_full')) {
4709
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4710 4710
 		}
4711
-		if ( get_query_var( 'gd_region_full' ) ) {
4712
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4711
+		if (get_query_var('gd_region_full')) {
4712
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4713 4713
 		}
4714
-		if ( get_query_var( 'gd_city_full' ) ) {
4715
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4714
+		if (get_query_var('gd_city_full')) {
4715
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4716 4716
 		}
4717
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4718
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4717
+		if (get_query_var('gd_neighbourhood_full')) {
4718
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4719 4719
 		}
4720 4720
 	}
4721 4721
 
@@ -4730,57 +4730,57 @@  discard block
 block discarded – undo
4730 4730
 	 * @param string $gd_page       The page being filtered.
4731 4731
 	 * @param string $sep           The separator, default: `|`.
4732 4732
 	 */
4733
-	$title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep );
4733
+	$title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
4734 4734
 
4735
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4735
+	if (strpos($title, '%%search_term%%') !== false) {
4736 4736
 		$search_term = '';
4737
-		if ( isset( $_REQUEST['s'] ) ) {
4738
-			$search_term = esc_attr( $_REQUEST['s'] );
4737
+		if (isset($_REQUEST['s'])) {
4738
+			$search_term = esc_attr($_REQUEST['s']);
4739 4739
 		}
4740
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4740
+		$title = str_replace("%%search_term%%", $search_term, $title);
4741 4741
 	}
4742 4742
 
4743
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4743
+	if (strpos($title, '%%search_near%%') !== false) {
4744 4744
 		$search_term = '';
4745
-		if ( isset( $_REQUEST['snear'] ) ) {
4746
-			$search_term = esc_attr( $_REQUEST['snear'] );
4745
+		if (isset($_REQUEST['snear'])) {
4746
+			$search_term = esc_attr($_REQUEST['snear']);
4747 4747
 		}
4748
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4748
+		$title = str_replace("%%search_near%%", $search_term, $title);
4749 4749
 	}
4750 4750
 
4751
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4752
-		if ( is_author() ) {
4753
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4751
+	if (strpos($title, '%%name%%') !== false) {
4752
+		if (is_author()) {
4753
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4754 4754
 			$author_name = $curauth->display_name;
4755 4755
 		} else {
4756 4756
 			$author_name = get_the_author();
4757 4757
 		}
4758
-		if ( ! $author_name || $author_name === '' ) {
4758
+		if (!$author_name || $author_name === '') {
4759 4759
 			$queried_object = get_queried_object();
4760 4760
 
4761
-			if ( isset( $queried_object->data->user_nicename ) ) {
4761
+			if (isset($queried_object->data->user_nicename)) {
4762 4762
 				$author_name = $queried_object->data->display_name;
4763 4763
 			}
4764 4764
 		}
4765
-		$title = str_replace( "%%name%%", $author_name, $title );
4765
+		$title = str_replace("%%name%%", $author_name, $title);
4766 4766
 	}
4767 4767
 
4768
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4769
-		$page  = geodir_title_meta_page( $sep );
4770
-		$title = str_replace( "%%page%%", $page, $title );
4768
+	if (strpos($title, '%%page%%') !== false) {
4769
+		$page  = geodir_title_meta_page($sep);
4770
+		$title = str_replace("%%page%%", $page, $title);
4771 4771
 	}
4772
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4772
+	if (strpos($title, '%%pagenumber%%') !== false) {
4773 4773
 		$pagenumber = geodir_title_meta_pagenumber();
4774
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4774
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4775 4775
 	}
4776
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4776
+	if (strpos($title, '%%pagetotal%%') !== false) {
4777 4777
 		$pagetotal = geodir_title_meta_pagetotal();
4778
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4778
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4779 4779
 	}
4780 4780
 
4781
-	$title = wptexturize( $title );
4782
-	$title = convert_chars( $title );
4783
-	$title = esc_html( $title );
4781
+	$title = wptexturize($title);
4782
+	$title = convert_chars($title);
4783
+	$title = esc_html($title);
4784 4784
 
4785 4785
 	/**
4786 4786
 	 * Filter the title variables after standard ones have been filtered.
@@ -4794,7 +4794,7 @@  discard block
 block discarded – undo
4794 4794
 	 * @param string $sep           The separator, default: `|`.
4795 4795
 	 */
4796 4796
 
4797
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4797
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4798 4798
 }
4799 4799
 
4800 4800
 /**
@@ -4807,82 +4807,82 @@  discard block
 block discarded – undo
4807 4807
  *
4808 4808
  * @return array Translation texts.
4809 4809
  */
4810
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4811
-	$gd_post_types = geodir_get_posttypes( 'array' );
4810
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4811
+	$gd_post_types = geodir_get_posttypes('array');
4812 4812
 
4813
-	if ( ! empty( $gd_post_types ) ) {
4814
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4815
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4816
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4817
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4813
+	if (!empty($gd_post_types)) {
4814
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4815
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4816
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4817
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4818 4818
 
4819
-			if ( ! empty( $labels ) ) {
4820
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4819
+			if (!empty($labels)) {
4820
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4821 4821
 					$translation_texts[] = $labels['name'];
4822 4822
 				}
4823
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4823
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4824 4824
 					$translation_texts[] = $labels['singular_name'];
4825 4825
 				}
4826
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4826
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4827 4827
 					$translation_texts[] = $labels['add_new'];
4828 4828
 				}
4829
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4829
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4830 4830
 					$translation_texts[] = $labels['add_new_item'];
4831 4831
 				}
4832
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4832
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4833 4833
 					$translation_texts[] = $labels['edit_item'];
4834 4834
 				}
4835
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4835
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4836 4836
 					$translation_texts[] = $labels['new_item'];
4837 4837
 				}
4838
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4838
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4839 4839
 					$translation_texts[] = $labels['view_item'];
4840 4840
 				}
4841
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4841
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4842 4842
 					$translation_texts[] = $labels['search_items'];
4843 4843
 				}
4844
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4844
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4845 4845
 					$translation_texts[] = $labels['not_found'];
4846 4846
 				}
4847
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4847
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4848 4848
 					$translation_texts[] = $labels['not_found_in_trash'];
4849 4849
 				}
4850
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4850
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4851 4851
 					$translation_texts[] = $labels['label_post_profile'];
4852 4852
 				}
4853
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4853
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4854 4854
 					$translation_texts[] = $labels['label_post_info'];
4855 4855
 				}
4856
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4856
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4857 4857
 					$translation_texts[] = $labels['label_post_images'];
4858 4858
 				}
4859
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4859
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4860 4860
 					$translation_texts[] = $labels['label_post_map'];
4861 4861
 				}
4862
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4862
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4863 4863
 					$translation_texts[] = $labels['label_reviews'];
4864 4864
 				}
4865
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4865
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4866 4866
 					$translation_texts[] = $labels['label_related_listing'];
4867 4867
 				}
4868 4868
 			}
4869 4869
 
4870
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4871
-				$translation_texts[] = normalize_whitespace( $description );
4870
+			if ($description != '' && !in_array($description, $translation_texts)) {
4871
+				$translation_texts[] = normalize_whitespace($description);
4872 4872
 			}
4873 4873
 
4874
-			if ( ! empty( $seo ) ) {
4875
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4876
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4874
+			if (!empty($seo)) {
4875
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4876
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4877 4877
 				}
4878 4878
 
4879
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4880
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4879
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4880
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4881 4881
 				}
4882 4882
 			}
4883 4883
 		}
4884 4884
 	}
4885
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4885
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4886 4886
 
4887 4887
 	return $translation_texts;
4888 4888
 }
@@ -4897,27 +4897,27 @@  discard block
 block discarded – undo
4897 4897
  *
4898 4898
  * @return array Location terms.
4899 4899
  */
4900
-function geodir_remove_location_terms( $location_terms = array() ) {
4901
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
4900
+function geodir_remove_location_terms($location_terms = array()) {
4901
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4902 4902
 
4903
-	if ( ! empty( $location_terms ) && $location_manager ) {
4904
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
4905
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
4903
+	if (!empty($location_terms) && $location_manager) {
4904
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4905
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
4906 4906
 
4907
-		if ( $hide_region_part && $hide_country_part ) {
4908
-			if ( isset( $location_terms['gd_country'] ) ) {
4909
-				unset( $location_terms['gd_country'] );
4907
+		if ($hide_region_part && $hide_country_part) {
4908
+			if (isset($location_terms['gd_country'])) {
4909
+				unset($location_terms['gd_country']);
4910 4910
 			}
4911
-			if ( isset( $location_terms['gd_region'] ) ) {
4912
-				unset( $location_terms['gd_region'] );
4911
+			if (isset($location_terms['gd_region'])) {
4912
+				unset($location_terms['gd_region']);
4913 4913
 			}
4914
-		} else if ( $hide_region_part && ! $hide_country_part ) {
4915
-			if ( isset( $location_terms['gd_region'] ) ) {
4916
-				unset( $location_terms['gd_region'] );
4914
+		} else if ($hide_region_part && !$hide_country_part) {
4915
+			if (isset($location_terms['gd_region'])) {
4916
+				unset($location_terms['gd_region']);
4917 4917
 			}
4918
-		} else if ( ! $hide_region_part && $hide_country_part ) {
4919
-			if ( isset( $location_terms['gd_country'] ) ) {
4920
-				unset( $location_terms['gd_country'] );
4918
+		} else if (!$hide_region_part && $hide_country_part) {
4919
+			if (isset($location_terms['gd_country'])) {
4920
+				unset($location_terms['gd_country']);
4921 4921
 			}
4922 4922
 		}
4923 4923
 	}
@@ -4935,33 +4935,33 @@  discard block
 block discarded – undo
4935 4935
  * @param WP_Post $post Post object.
4936 4936
  * @param bool $update  Whether this is an existing listing being updated or not.
4937 4937
  */
4938
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
4939
-	if ( ! $update ) {
4938
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
4939
+	if (!$update) {
4940 4940
 		return;
4941 4941
 	}
4942 4942
 
4943
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
4944
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
4943
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
4944
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
4945 4945
 	$inline_save = $action == 'inline-save' ? true : false;
4946 4946
 
4947
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
4947
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
4948 4948
 		return;
4949 4949
 	}
4950 4950
 
4951
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
4951
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
4952 4952
 		return;
4953 4953
 	}
4954 4954
 
4955 4955
 	$user_id = (int) get_current_user_id();
4956 4956
 
4957
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4958
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
4957
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
4958
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
4959 4959
 
4960
-		if ( $user_id == $author_id && ! is_super_admin() ) {
4961
-			$from_email   = get_option( 'site_email' );
4960
+		if ($user_id == $author_id && !is_super_admin()) {
4961
+			$from_email   = get_option('site_email');
4962 4962
 			$from_name    = get_site_emailName();
4963
-			$to_email     = get_option( 'admin_email' );
4964
-			$to_name      = get_option( 'name' );
4963
+			$to_email     = get_option('admin_email');
4964
+			$to_name      = get_option('name');
4965 4965
 			$message_type = 'listing_edited';
4966 4966
 
4967 4967
 			$notify_edited = true;
@@ -4973,9 +4973,9 @@  discard block
 block discarded – undo
4973 4973
 			 * @param bool $notify_edited Notify on listing edited by author?
4974 4974
 			 * @param object $post        The current post object.
4975 4975
 			 */
4976
-			$notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post );
4976
+			$notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
4977 4977
 
4978
-			geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
4978
+			geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
4979 4979
 		}
4980 4980
 	}
4981 4981
 }
@@ -4990,14 +4990,14 @@  discard block
 block discarded – undo
4990 4990
  *
4991 4991
  * @return string|null The current page start & end numbering.
4992 4992
  */
4993
-function geodir_title_meta_page( $sep ) {
4993
+function geodir_title_meta_page($sep) {
4994 4994
 	$replacement = null;
4995 4995
 
4996
-	$max = geodir_title_meta_pagenumbering( 'max' );
4997
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
4996
+	$max = geodir_title_meta_pagenumbering('max');
4997
+	$nr  = geodir_title_meta_pagenumbering('nr');
4998 4998
 
4999
-	if ( $max > 1 && $nr > 1 ) {
5000
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
4999
+	if ($max > 1 && $nr > 1) {
5000
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
5001 5001
 	}
5002 5002
 
5003 5003
 	return $replacement;
@@ -5014,8 +5014,8 @@  discard block
 block discarded – undo
5014 5014
 function geodir_title_meta_pagenumber() {
5015 5015
 	$replacement = null;
5016 5016
 
5017
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5018
-	if ( isset( $nr ) && $nr > 0 ) {
5017
+	$nr = geodir_title_meta_pagenumbering('nr');
5018
+	if (isset($nr) && $nr > 0) {
5019 5019
 		$replacement = (string) $nr;
5020 5020
 	}
5021 5021
 
@@ -5033,8 +5033,8 @@  discard block
 block discarded – undo
5033 5033
 function geodir_title_meta_pagetotal() {
5034 5034
 	$replacement = null;
5035 5035
 
5036
-	$max = geodir_title_meta_pagenumbering( 'max' );
5037
-	if ( isset( $max ) && $max > 0 ) {
5036
+	$max = geodir_title_meta_pagenumbering('max');
5037
+	if (isset($max) && $max > 0) {
5038 5038
 		$replacement = (string) $max;
5039 5039
 	}
5040 5040
 
@@ -5054,36 +5054,36 @@  discard block
 block discarded – undo
5054 5054
  *
5055 5055
  * @return int|null The current page numbering.
5056 5056
  */
5057
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5057
+function geodir_title_meta_pagenumbering($request = 'nr') {
5058 5058
 	global $wp_query, $post;
5059 5059
 	$max_num_pages = null;
5060 5060
 	$page_number   = null;
5061 5061
 
5062 5062
 	$max_num_pages = 1;
5063 5063
 
5064
-	if ( ! is_singular() ) {
5065
-		$page_number = get_query_var( 'paged' );
5066
-		if ( $page_number === 0 || $page_number === '' ) {
5064
+	if (!is_singular()) {
5065
+		$page_number = get_query_var('paged');
5066
+		if ($page_number === 0 || $page_number === '') {
5067 5067
 			$page_number = 1;
5068 5068
 		}
5069 5069
 
5070
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5070
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5071 5071
 			$max_num_pages = $wp_query->max_num_pages;
5072 5072
 		}
5073 5073
 	} else {
5074
-		$page_number = get_query_var( 'page' );
5075
-		if ( $page_number === 0 || $page_number === '' ) {
5074
+		$page_number = get_query_var('page');
5075
+		if ($page_number === 0 || $page_number === '') {
5076 5076
 			$page_number = 1;
5077 5077
 		}
5078 5078
 
5079
-		if ( isset( $post->post_content ) ) {
5080
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5079
+		if (isset($post->post_content)) {
5080
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5081 5081
 		}
5082 5082
 	}
5083 5083
 
5084 5084
 	$return = null;
5085 5085
 
5086
-	switch ( $request ) {
5086
+	switch ($request) {
5087 5087
 		case 'nr':
5088 5088
 			$return = $page_number;
5089 5089
 			break;
@@ -5104,14 +5104,14 @@  discard block
 block discarded – undo
5104 5104
  *
5105 5105
  * @return array Terms.
5106 5106
  */
5107
-function geodir_filter_empty_terms( $terms ) {
5108
-	if ( empty( $terms ) ) {
5107
+function geodir_filter_empty_terms($terms) {
5108
+	if (empty($terms)) {
5109 5109
 		return $terms;
5110 5110
 	}
5111 5111
 
5112 5112
 	$return = array();
5113
-	foreach ( $terms as $term ) {
5114
-		if ( isset( $term->count ) && $term->count > 0 ) {
5113
+	foreach ($terms as $term) {
5114
+		if (isset($term->count) && $term->count > 0) {
5115 5115
 			$return[] = $term;
5116 5116
 		} else {
5117 5117
 			/**
@@ -5122,7 +5122,7 @@  discard block
 block discarded – undo
5122 5122
 			 * @param array $return The array of terms to return.
5123 5123
 			 * @param object $term  The term object.
5124 5124
 			 */
5125
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5125
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5126 5126
 		}
5127 5127
 	}
5128 5128
 
@@ -5139,15 +5139,15 @@  discard block
 block discarded – undo
5139 5139
  *
5140 5140
  * @return array
5141 5141
  */
5142
-function geodir_remove_hentry( $class ) {
5143
-	if ( geodir_is_page( 'detail' ) ) {
5144
-		$class = array_diff( $class, array( 'hentry' ) );
5142
+function geodir_remove_hentry($class) {
5143
+	if (geodir_is_page('detail')) {
5144
+		$class = array_diff($class, array('hentry'));
5145 5145
 	}
5146 5146
 
5147 5147
 	return $class;
5148 5148
 }
5149 5149
 
5150
-add_filter( 'post_class', 'geodir_remove_hentry' );
5150
+add_filter('post_class', 'geodir_remove_hentry');
5151 5151
 
5152 5152
 /**
5153 5153
  * Registers a individual text string for WPML translation.
@@ -5159,8 +5159,8 @@  discard block
 block discarded – undo
5159 5159
  * @param string $domain The plugin domain. Default geodirectory.
5160 5160
  * @param string $name The name of the string which helps to know what's being translated.
5161 5161
  */
5162
-function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5163
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5162
+function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
5163
+    do_action('wpml_register_single_string', $domain, $name, $string);
5164 5164
 }
5165 5165
 
5166 5166
 /**
@@ -5175,6 +5175,6 @@  discard block
 block discarded – undo
5175 5175
  * @param string $language_code Return the translation in this language. Default is NULL which returns the current language.
5176 5176
  * @return string The translated string.
5177 5177
  */
5178
-function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5179
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5178
+function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
5179
+    return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
5180 5180
 }
5181 5181
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory_template_actions.php 2 patches
Indentation   +1817 added lines, -1817 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@  discard block
 block discarded – undo
17 17
  */
18 18
 function gd_compat_styles()
19 19
 {
20
-    $tc = get_option('theme_compatibility_setting');
21
-    echo "<style id='gd-compat-styles' type='text/css'>";
22
-    echo $tc['geodir_theme_compat_css'];
23
-    echo "</style>";
20
+	$tc = get_option('theme_compatibility_setting');
21
+	echo "<style id='gd-compat-styles' type='text/css'>";
22
+	echo $tc['geodir_theme_compat_css'];
23
+	echo "</style>";
24 24
 }
25 25
 
26 26
 /**
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
  */
32 32
 function gd_compat_script()
33 33
 {
34
-    $tc = get_option('theme_compatibility_setting');
35
-    echo "<script>";
36
-    echo $tc['geodir_theme_compat_js'];
37
-    echo " </script>";
34
+	$tc = get_option('theme_compatibility_setting');
35
+	echo "<script>";
36
+	echo $tc['geodir_theme_compat_js'];
37
+	echo " </script>";
38 38
 }
39 39
 
40 40
 /**
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
  */
48 48
 function geodir_top_content_add_dynamic()
49 49
 {
50
-    $tc = get_option('theme_compatibility_setting');
51
-    echo $tc['geodir_top_content_add'];
50
+	$tc = get_option('theme_compatibility_setting');
51
+	echo $tc['geodir_top_content_add'];
52 52
 }
53 53
 
54 54
 /**
@@ -61,8 +61,8 @@  discard block
 block discarded – undo
61 61
  */
62 62
 function geodir_before_main_content_add_dynamic()
63 63
 {
64
-    $tc = get_option('theme_compatibility_setting');
65
-    echo $tc['geodir_before_main_content_add'];
64
+	$tc = get_option('theme_compatibility_setting');
65
+	echo $tc['geodir_before_main_content_add'];
66 66
 }
67 67
 
68 68
 /**
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
  */
76 76
 function geodir_full_page_class_dynamic()
77 77
 {
78
-    $tc = get_option('theme_compatibility_setting');
79
-    return $tc['geodir_full_page_class_filter'];
78
+	$tc = get_option('theme_compatibility_setting');
79
+	return $tc['geodir_full_page_class_filter'];
80 80
 }
81 81
 
82 82
 /**
@@ -89,8 +89,8 @@  discard block
 block discarded – undo
89 89
  */
90 90
 function geodir_before_widget_dynamic()
91 91
 {
92
-    $tc = get_option('theme_compatibility_setting');
93
-    return $tc['geodir_before_widget_filter'];
92
+	$tc = get_option('theme_compatibility_setting');
93
+	return $tc['geodir_before_widget_filter'];
94 94
 }
95 95
 
96 96
 /**
@@ -103,8 +103,8 @@  discard block
 block discarded – undo
103 103
  */
104 104
 function geodir_after_widget_dynamic()
105 105
 {
106
-    $tc = get_option('theme_compatibility_setting');
107
-    return $tc['geodir_after_widget_filter'];
106
+	$tc = get_option('theme_compatibility_setting');
107
+	return $tc['geodir_after_widget_filter'];
108 108
 }
109 109
 
110 110
 /**
@@ -117,8 +117,8 @@  discard block
 block discarded – undo
117 117
  */
118 118
 function geodir_before_title_dynamic()
119 119
 {
120
-    $tc = get_option('theme_compatibility_setting');
121
-    return $tc['geodir_before_title_filter'];
120
+	$tc = get_option('theme_compatibility_setting');
121
+	return $tc['geodir_before_title_filter'];
122 122
 }
123 123
 
124 124
 /**
@@ -131,8 +131,8 @@  discard block
 block discarded – undo
131 131
  */
132 132
 function geodir_after_title_dynamic()
133 133
 {
134
-    $tc = get_option('theme_compatibility_setting');
135
-    return $tc['geodir_after_title_filter'];
134
+	$tc = get_option('theme_compatibility_setting');
135
+	return $tc['geodir_after_title_filter'];
136 136
 }
137 137
 
138 138
 /**
@@ -145,8 +145,8 @@  discard block
 block discarded – undo
145 145
  */
146 146
 function geodir_menu_li_class_dynamic()
147 147
 {
148
-    $tc = get_option('theme_compatibility_setting');
149
-    return $tc['geodir_menu_li_class_filter'];
148
+	$tc = get_option('theme_compatibility_setting');
149
+	return $tc['geodir_menu_li_class_filter'];
150 150
 }
151 151
 
152 152
 /**
@@ -159,8 +159,8 @@  discard block
 block discarded – undo
159 159
  */
160 160
 function geodir_sub_menu_ul_class_dynamic()
161 161
 {
162
-    $tc = get_option('theme_compatibility_setting');
163
-    return $tc['geodir_sub_menu_ul_class_filter'];
162
+	$tc = get_option('theme_compatibility_setting');
163
+	return $tc['geodir_sub_menu_ul_class_filter'];
164 164
 }
165 165
 
166 166
 /**
@@ -173,8 +173,8 @@  discard block
 block discarded – undo
173 173
  */
174 174
 function geodir_sub_menu_li_class_dynamic()
175 175
 {
176
-    $tc = get_option('theme_compatibility_setting');
177
-    return $tc['geodir_sub_menu_li_class_filter'];
176
+	$tc = get_option('theme_compatibility_setting');
177
+	return $tc['geodir_sub_menu_li_class_filter'];
178 178
 }
179 179
 
180 180
 /**
@@ -187,8 +187,8 @@  discard block
 block discarded – undo
187 187
  */
188 188
 function geodir_menu_a_class_dynamic()
189 189
 {
190
-    $tc = get_option('theme_compatibility_setting');
191
-    return $tc['geodir_menu_a_class_filter'];
190
+	$tc = get_option('theme_compatibility_setting');
191
+	return $tc['geodir_menu_a_class_filter'];
192 192
 }
193 193
 
194 194
 /**
@@ -201,8 +201,8 @@  discard block
 block discarded – undo
201 201
  */
202 202
 function geodir_sub_menu_a_class_dynamic()
203 203
 {
204
-    $tc = get_option('theme_compatibility_setting');
205
-    return $tc['geodir_sub_menu_a_class_filter'];
204
+	$tc = get_option('theme_compatibility_setting');
205
+	return $tc['geodir_sub_menu_a_class_filter'];
206 206
 }
207 207
 
208 208
 /**
@@ -215,8 +215,8 @@  discard block
 block discarded – undo
215 215
  */
216 216
 function geodir_location_switcher_menu_li_class_dynamic()
217 217
 {
218
-    $tc = get_option('theme_compatibility_setting');
219
-    return $tc['geodir_location_switcher_menu_li_class_filter'];
218
+	$tc = get_option('theme_compatibility_setting');
219
+	return $tc['geodir_location_switcher_menu_li_class_filter'];
220 220
 }
221 221
 
222 222
 /**
@@ -229,8 +229,8 @@  discard block
 block discarded – undo
229 229
  */
230 230
 function geodir_location_switcher_menu_a_class_dynamic()
231 231
 {
232
-    $tc = get_option('theme_compatibility_setting');
233
-    return $tc['geodir_location_switcher_menu_a_class_filter'];
232
+	$tc = get_option('theme_compatibility_setting');
233
+	return $tc['geodir_location_switcher_menu_a_class_filter'];
234 234
 }
235 235
 
236 236
 /**
@@ -243,8 +243,8 @@  discard block
 block discarded – undo
243 243
  */
244 244
 function geodir_location_switcher_menu_sub_ul_class_dynamic()
245 245
 {
246
-    $tc = get_option('theme_compatibility_setting');
247
-    return $tc['geodir_location_switcher_menu_sub_ul_class_filter'];
246
+	$tc = get_option('theme_compatibility_setting');
247
+	return $tc['geodir_location_switcher_menu_sub_ul_class_filter'];
248 248
 }
249 249
 
250 250
 /**
@@ -257,8 +257,8 @@  discard block
 block discarded – undo
257 257
  */
258 258
 function geodir_location_switcher_menu_sub_li_class_dynamic()
259 259
 {
260
-    $tc = get_option('theme_compatibility_setting');
261
-    return $tc['geodir_location_switcher_menu_sub_li_class_filter'];
260
+	$tc = get_option('theme_compatibility_setting');
261
+	return $tc['geodir_location_switcher_menu_sub_li_class_filter'];
262 262
 }
263 263
 
264 264
 
@@ -275,107 +275,107 @@  discard block
 block discarded – undo
275 275
 function geodir_content_actions_dynamic()
276 276
 {
277 277
 
278
-    $tc = get_option('theme_compatibility_setting');
278
+	$tc = get_option('theme_compatibility_setting');
279 279
 //print_r($tc);
280
-    if (empty($tc)) {
281
-        return;
282
-    }
283
-
284
-    //php
285
-    if (!empty($tc['geodir_theme_compat_code'])) {
286
-        include_once('geodirectory-functions/compatibility/' . $tc['geodir_theme_compat_code'] . '.php');
287
-    }
288
-
289
-    //geodir_full_page_class
290
-    if (!empty($tc['geodir_full_page_class_filter'])) {
291
-        add_filter('geodir_full_page_class', 'geodir_full_page_class_dynamic', 10);
292
-    }
293
-
294
-    //widget before filter
295
-    if (!empty($tc['geodir_before_widget_filter'])) {
296
-        add_filter('geodir_before_widget', 'geodir_before_widget_dynamic', 10);
297
-    }
298
-
299
-    //widget after filter
300
-    if (!empty($tc['geodir_after_widget_filter'])) {
301
-        add_filter('geodir_after_widget', 'geodir_after_widget_dynamic', 10);
302
-    }
303
-
304
-    //widget before title filter
305
-    if (!empty($tc['geodir_before_title_filter'])) {
306
-        add_filter('geodir_before_title', 'geodir_before_title_dynamic', 10);
307
-    }
308
-
309
-    //widget before title filter
310
-    if (!empty($tc['geodir_after_title_filter'])) {
311
-        add_filter('geodir_after_title', 'geodir_after_title_dynamic', 10);
312
-    }
313
-
314
-    //menu li class
315
-    if (!empty($tc['geodir_menu_li_class_filter'])) {
316
-        add_filter('geodir_menu_li_class', 'geodir_menu_li_class_dynamic', 10);
317
-    }
318
-
319
-    //menu ul class
320
-    if (!empty($tc['geodir_sub_menu_ul_class_filter'])) {
321
-        add_filter('geodir_sub_menu_ul_class', 'geodir_sub_menu_ul_class_dynamic', 10);
322
-    }
323
-
324
-    //menu sub li class
325
-    if (!empty($tc['geodir_sub_menu_li_class_filter'])) {
326
-        add_filter('geodir_sub_menu_li_class', 'geodir_sub_menu_li_class_dynamic', 10);
327
-    }
328
-
329
-    //menu a class
330
-    if (!empty($tc['geodir_menu_a_class_filter'])) {
331
-        add_filter('geodir_menu_a_class', 'geodir_menu_a_class_dynamic', 10);
332
-    }
333
-
334
-    //menu sub a class
335
-    if (!empty($tc['geodir_sub_menu_a_class_filter'])) {
336
-        add_filter('geodir_sub_menu_a_class', 'geodir_sub_menu_a_class_dynamic', 10);
337
-    }
338
-
339
-    //location menu li class
340
-    if (!empty($tc['geodir_location_switcher_menu_li_class_filter'])) {
341
-        add_filter('geodir_location_switcher_menu_li_class', 'geodir_location_switcher_menu_li_class_dynamic', 10);
342
-    }
343
-
344
-    //location menu sub ul class
345
-    if (!empty($tc['geodir_location_switcher_menu_sub_ul_class_filter'])) {
346
-        add_filter('geodir_location_switcher_menu_sub_ul_class', 'geodir_location_switcher_menu_sub_ul_class_dynamic', 10);
347
-    }
348
-
349
-    //location menu sub li class
350
-    if (!empty($tc['geodir_location_switcher_menu_sub_li_class_filter'])) {
351
-        add_filter('geodir_location_switcher_menu_sub_li_class', 'geodir_location_switcher_menu_sub_li_class_dynamic', 10);
352
-    }
353
-
354
-    //location menu a class
355
-    if (!empty($tc['geodir_location_switcher_menu_a_class_filter'])) {
356
-        add_filter('geodir_location_switcher_menu_a_class', 'geodir_location_switcher_menu_a_class_dynamic', 10);
357
-    }
358
-
359
-    // compat styles
360
-    if (!empty($tc['geodir_theme_compat_css'])) {
361
-        add_action('wp_head', 'gd_compat_styles');
362
-    }
363
-
364
-    // compat js
365
-    if (!empty($tc['geodir_theme_compat_js'])) {
366
-        add_action('wp_footer', 'gd_compat_script');
367
-    }
368
-
369
-
370
-    // geodir_top_content_add
371
-    if (!empty($tc['geodir_top_content_add'])) {
372
-        add_action('geodir_top_content', 'geodir_top_content_add_dynamic', 10, 1);
373
-    }
374
-
375
-    // geodir_before_main_content_add
376
-    if (!empty($tc['geodir_before_main_content_add'])) {
377
-        add_action('geodir_before_main_content', 'geodir_before_main_content_add_dynamic', 10, 1);
378
-    }
280
+	if (empty($tc)) {
281
+		return;
282
+	}
283
+
284
+	//php
285
+	if (!empty($tc['geodir_theme_compat_code'])) {
286
+		include_once('geodirectory-functions/compatibility/' . $tc['geodir_theme_compat_code'] . '.php');
287
+	}
288
+
289
+	//geodir_full_page_class
290
+	if (!empty($tc['geodir_full_page_class_filter'])) {
291
+		add_filter('geodir_full_page_class', 'geodir_full_page_class_dynamic', 10);
292
+	}
293
+
294
+	//widget before filter
295
+	if (!empty($tc['geodir_before_widget_filter'])) {
296
+		add_filter('geodir_before_widget', 'geodir_before_widget_dynamic', 10);
297
+	}
298
+
299
+	//widget after filter
300
+	if (!empty($tc['geodir_after_widget_filter'])) {
301
+		add_filter('geodir_after_widget', 'geodir_after_widget_dynamic', 10);
302
+	}
303
+
304
+	//widget before title filter
305
+	if (!empty($tc['geodir_before_title_filter'])) {
306
+		add_filter('geodir_before_title', 'geodir_before_title_dynamic', 10);
307
+	}
308
+
309
+	//widget before title filter
310
+	if (!empty($tc['geodir_after_title_filter'])) {
311
+		add_filter('geodir_after_title', 'geodir_after_title_dynamic', 10);
312
+	}
313
+
314
+	//menu li class
315
+	if (!empty($tc['geodir_menu_li_class_filter'])) {
316
+		add_filter('geodir_menu_li_class', 'geodir_menu_li_class_dynamic', 10);
317
+	}
318
+
319
+	//menu ul class
320
+	if (!empty($tc['geodir_sub_menu_ul_class_filter'])) {
321
+		add_filter('geodir_sub_menu_ul_class', 'geodir_sub_menu_ul_class_dynamic', 10);
322
+	}
323
+
324
+	//menu sub li class
325
+	if (!empty($tc['geodir_sub_menu_li_class_filter'])) {
326
+		add_filter('geodir_sub_menu_li_class', 'geodir_sub_menu_li_class_dynamic', 10);
327
+	}
328
+
329
+	//menu a class
330
+	if (!empty($tc['geodir_menu_a_class_filter'])) {
331
+		add_filter('geodir_menu_a_class', 'geodir_menu_a_class_dynamic', 10);
332
+	}
333
+
334
+	//menu sub a class
335
+	if (!empty($tc['geodir_sub_menu_a_class_filter'])) {
336
+		add_filter('geodir_sub_menu_a_class', 'geodir_sub_menu_a_class_dynamic', 10);
337
+	}
338
+
339
+	//location menu li class
340
+	if (!empty($tc['geodir_location_switcher_menu_li_class_filter'])) {
341
+		add_filter('geodir_location_switcher_menu_li_class', 'geodir_location_switcher_menu_li_class_dynamic', 10);
342
+	}
343
+
344
+	//location menu sub ul class
345
+	if (!empty($tc['geodir_location_switcher_menu_sub_ul_class_filter'])) {
346
+		add_filter('geodir_location_switcher_menu_sub_ul_class', 'geodir_location_switcher_menu_sub_ul_class_dynamic', 10);
347
+	}
348
+
349
+	//location menu sub li class
350
+	if (!empty($tc['geodir_location_switcher_menu_sub_li_class_filter'])) {
351
+		add_filter('geodir_location_switcher_menu_sub_li_class', 'geodir_location_switcher_menu_sub_li_class_dynamic', 10);
352
+	}
353
+
354
+	//location menu a class
355
+	if (!empty($tc['geodir_location_switcher_menu_a_class_filter'])) {
356
+		add_filter('geodir_location_switcher_menu_a_class', 'geodir_location_switcher_menu_a_class_dynamic', 10);
357
+	}
358
+
359
+	// compat styles
360
+	if (!empty($tc['geodir_theme_compat_css'])) {
361
+		add_action('wp_head', 'gd_compat_styles');
362
+	}
363
+
364
+	// compat js
365
+	if (!empty($tc['geodir_theme_compat_js'])) {
366
+		add_action('wp_footer', 'gd_compat_script');
367
+	}
368
+
369
+
370
+	// geodir_top_content_add
371
+	if (!empty($tc['geodir_top_content_add'])) {
372
+		add_action('geodir_top_content', 'geodir_top_content_add_dynamic', 10, 1);
373
+	}
374
+
375
+	// geodir_before_main_content_add
376
+	if (!empty($tc['geodir_before_main_content_add'])) {
377
+		add_action('geodir_before_main_content', 'geodir_before_main_content_add_dynamic', 10, 1);
378
+	}
379 379
 
380 380
 
381 381
 }
@@ -398,23 +398,23 @@  discard block
 block discarded – undo
398 398
  */
399 399
 function geodir_action_wrapper_open($type = '', $id = '', $class = '')
400 400
 {
401
-    $tc = get_option('theme_compatibility_setting');
402
-    if (!empty($tc['geodir_wrapper_open_replace'])) {
403
-        $text = $tc['geodir_wrapper_open_replace'];
404
-    } else {
405
-        $text = '<div id="[id]" class="[class]">';
406
-    }
401
+	$tc = get_option('theme_compatibility_setting');
402
+	if (!empty($tc['geodir_wrapper_open_replace'])) {
403
+		$text = $tc['geodir_wrapper_open_replace'];
404
+	} else {
405
+		$text = '<div id="[id]" class="[class]">';
406
+	}
407 407
 
408
-    if (!empty($tc['geodir_wrapper_open_id'])) {
409
-        $id = $tc['geodir_wrapper_open_id'];
410
-    }
411
-    if (!empty($tc['geodir_wrapper_open_class'])) {
412
-        $class = $tc['geodir_wrapper_open_class'];
413
-    }
408
+	if (!empty($tc['geodir_wrapper_open_id'])) {
409
+		$id = $tc['geodir_wrapper_open_id'];
410
+	}
411
+	if (!empty($tc['geodir_wrapper_open_class'])) {
412
+		$class = $tc['geodir_wrapper_open_class'];
413
+	}
414 414
 
415
-    $text = str_replace(array("[id]", "[class]"), array($id, $class), $text);
415
+	$text = str_replace(array("[id]", "[class]"), array($id, $class), $text);
416 416
 
417
-    echo $text;
417
+	echo $text;
418 418
 }
419 419
 
420 420
 // action for adding the wrapperdiv closing tag
@@ -429,14 +429,14 @@  discard block
 block discarded – undo
429 429
  */
430 430
 function geodir_action_wrapper_close($type = '')
431 431
 {
432
-    $tc = get_option('theme_compatibility_setting');
433
-    if (!empty($tc['geodir_wrapper_close_replace'])) {
434
-        $text = $tc['geodir_wrapper_close_replace'];
435
-    } else {
436
-        $text = '</div><!-- wrapper ends here-->';
437
-    }
432
+	$tc = get_option('theme_compatibility_setting');
433
+	if (!empty($tc['geodir_wrapper_close_replace'])) {
434
+		$text = $tc['geodir_wrapper_close_replace'];
435
+	} else {
436
+		$text = '</div><!-- wrapper ends here-->';
437
+	}
438 438
 
439
-    echo $text;
439
+	echo $text;
440 440
 }
441 441
 
442 442
 // action for adding the content div opening tag
@@ -452,35 +452,35 @@  discard block
 block discarded – undo
452 452
  */
453 453
 function geodir_action_wrapper_content_open($type = '', $id = '', $class = '')
454 454
 {
455
-    if ($type == 'home-page' && $width = get_option('geodir_width_home_contant_section')) {
456
-        $width_css = 'style="width:' . $width . '%;"';
457
-    } elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_contant_section')) {
458
-        $width_css = 'style="width:' . $width . '%;"';
459
-    } elseif ($type == 'search-page' && $width = get_option('geodir_width_search_contant_section')) {
460
-        $width_css = 'style="width:' . $width . '%;"';
461
-    } elseif ($type == 'author-page' && $width = get_option('geodir_width_author_contant_section')) {
462
-        $width_css = 'style="width:' . $width . '%;"';
463
-    } else {
464
-        $width_css = '';
465
-    }
466
-
467
-    $tc = get_option('theme_compatibility_setting');
468
-    if (!empty($tc['geodir_wrapper_content_open_replace'])) {
469
-        $text = $tc['geodir_wrapper_content_open_replace'];
470
-    } else {
471
-        $text = '<div id="[id]" class="[class]" role="main" [width_css]>';
472
-    }
473
-
474
-    if (!empty($tc['geodir_wrapper_content_open_id'])) {
475
-        $id = $tc['geodir_wrapper_content_open_id'];
476
-    }
477
-    if (!empty($tc['geodir_wrapper_content_open_class'])) {
478
-        $class = $tc['geodir_wrapper_content_open_class'];
479
-    }
480
-
481
-    $text = str_replace(array("[id]", "[class]", "[width_css]"), array($id, $class, $width_css), $text);
482
-
483
-    echo $text;
455
+	if ($type == 'home-page' && $width = get_option('geodir_width_home_contant_section')) {
456
+		$width_css = 'style="width:' . $width . '%;"';
457
+	} elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_contant_section')) {
458
+		$width_css = 'style="width:' . $width . '%;"';
459
+	} elseif ($type == 'search-page' && $width = get_option('geodir_width_search_contant_section')) {
460
+		$width_css = 'style="width:' . $width . '%;"';
461
+	} elseif ($type == 'author-page' && $width = get_option('geodir_width_author_contant_section')) {
462
+		$width_css = 'style="width:' . $width . '%;"';
463
+	} else {
464
+		$width_css = '';
465
+	}
466
+
467
+	$tc = get_option('theme_compatibility_setting');
468
+	if (!empty($tc['geodir_wrapper_content_open_replace'])) {
469
+		$text = $tc['geodir_wrapper_content_open_replace'];
470
+	} else {
471
+		$text = '<div id="[id]" class="[class]" role="main" [width_css]>';
472
+	}
473
+
474
+	if (!empty($tc['geodir_wrapper_content_open_id'])) {
475
+		$id = $tc['geodir_wrapper_content_open_id'];
476
+	}
477
+	if (!empty($tc['geodir_wrapper_content_open_class'])) {
478
+		$class = $tc['geodir_wrapper_content_open_class'];
479
+	}
480
+
481
+	$text = str_replace(array("[id]", "[class]", "[width_css]"), array($id, $class, $width_css), $text);
482
+
483
+	echo $text;
484 484
 }
485 485
 
486 486
 // action for adding the primary div closing tag
@@ -494,13 +494,13 @@  discard block
 block discarded – undo
494 494
  */
495 495
 function geodir_action_wrapper_content_close($type = '')
496 496
 {
497
-    $tc = get_option('theme_compatibility_setting');
498
-    if (!empty($tc['geodir_wrapper_content_close_replace'])) {
499
-        $text = $tc['geodir_wrapper_content_close_replace'];
500
-    } else {
501
-        $text = '</div><!-- content ends here-->';
502
-    }
503
-    echo $text;
497
+	$tc = get_option('theme_compatibility_setting');
498
+	if (!empty($tc['geodir_wrapper_content_close_replace'])) {
499
+		$text = $tc['geodir_wrapper_content_close_replace'];
500
+	} else {
501
+		$text = '</div><!-- content ends here-->';
502
+	}
503
+	echo $text;
504 504
 }
505 505
 
506 506
 // action for adding the <article> opening tag
@@ -518,24 +518,24 @@  discard block
 block discarded – undo
518 518
  */
519 519
 function geodir_action_article_open($type = '', $id = '', $class = '', $itemtype = '')
520 520
 {
521
-    $class = implode(" ", $class);
522
-    $tc = get_option('theme_compatibility_setting');
523
-    if (!empty($tc['geodir_article_open_replace'])) {
524
-        $text = $tc['geodir_article_open_replace'];
525
-    } else {
526
-        $text = '<article  id="[id]" class="[class]" >';
527
-    }
521
+	$class = implode(" ", $class);
522
+	$tc = get_option('theme_compatibility_setting');
523
+	if (!empty($tc['geodir_article_open_replace'])) {
524
+		$text = $tc['geodir_article_open_replace'];
525
+	} else {
526
+		$text = '<article  id="[id]" class="[class]" >';
527
+	}
528 528
 
529
-    if (!empty($tc['geodir_article_open_id'])) {
530
-        $id = $tc['geodir_article_open_id'];
531
-    }
532
-    if (!empty($tc['geodir_article_open_class'])) {
533
-        $class = $tc['geodir_article_open_class'];
534
-    }
529
+	if (!empty($tc['geodir_article_open_id'])) {
530
+		$id = $tc['geodir_article_open_id'];
531
+	}
532
+	if (!empty($tc['geodir_article_open_class'])) {
533
+		$class = $tc['geodir_article_open_class'];
534
+	}
535 535
 
536
-    $text = str_replace(array("[id]", "[class]", "[itemtype]"), array($id, $class, $itemtype), $text);
536
+	$text = str_replace(array("[id]", "[class]", "[itemtype]"), array($id, $class, $itemtype), $text);
537 537
 
538
-    echo $text;
538
+	echo $text;
539 539
 }
540 540
 
541 541
 // action for adding the primary div closing tag
@@ -549,13 +549,13 @@  discard block
 block discarded – undo
549 549
  */
550 550
 function geodir_action_article_close($type = '')
551 551
 {
552
-    $tc = get_option('theme_compatibility_setting');
553
-    if (!empty($tc['geodir_article_close_replace'])) {
554
-        $text = $tc['geodir_article_close_replace'];
555
-    } else {
556
-        $text = '</article><!-- article ends here-->';
557
-    }
558
-    echo $text;
552
+	$tc = get_option('theme_compatibility_setting');
553
+	if (!empty($tc['geodir_article_close_replace'])) {
554
+		$text = $tc['geodir_article_close_replace'];
555
+	} else {
556
+		$text = '</article><!-- article ends here-->';
557
+	}
558
+	echo $text;
559 559
 }
560 560
 
561 561
 // action for adding the sidebar opening tag
@@ -572,35 +572,35 @@  discard block
 block discarded – undo
572 572
  */
573 573
 function geodir_action_sidebar_right_open($type = '', $id = '', $class = '', $itemtype = '')
574 574
 {
575
-    if ($type == 'home-page' && $width = get_option('geodir_width_home_right_section')) {
576
-        $width_css = 'style="width:' . $width . '%;"';
577
-    } elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_right_section')) {
578
-        $width_css = 'style="width:' . $width . '%;"';
579
-    } elseif ($type == 'search-page' && $width = get_option('geodir_width_search_right_section')) {
580
-        $width_css = 'style="width:' . $width . '%;"';
581
-    } elseif ($type == 'author-page' && $width = get_option('geodir_width_author_right_section')) {
582
-        $width_css = 'style="width:' . $width . '%;"';
583
-    } else {
584
-        $width_css = '';
585
-    }
586
-
587
-    $tc = get_option('theme_compatibility_setting');
588
-    if (!empty($tc['geodir_sidebar_right_open_replace'])) {
589
-        $text = $tc['geodir_sidebar_right_open_replace'];
590
-    } else {
591
-        $text = '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>';
592
-    }
593
-
594
-    if (!empty($tc['geodir_sidebar_right_open_id'])) {
595
-        $id = $tc['geodir_sidebar_right_open_id'];
596
-    }
597
-    if (!empty($tc['geodir_sidebar_right_open_class'])) {
598
-        $class = $tc['geodir_sidebar_right_open_class'];
599
-    }
600
-
601
-    $text = str_replace(array("[id]", "[class]", "[itemtype]", "[width_css]"), array($id, $class, $itemtype, $width_css), $text);
602
-
603
-    echo $text;
575
+	if ($type == 'home-page' && $width = get_option('geodir_width_home_right_section')) {
576
+		$width_css = 'style="width:' . $width . '%;"';
577
+	} elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_right_section')) {
578
+		$width_css = 'style="width:' . $width . '%;"';
579
+	} elseif ($type == 'search-page' && $width = get_option('geodir_width_search_right_section')) {
580
+		$width_css = 'style="width:' . $width . '%;"';
581
+	} elseif ($type == 'author-page' && $width = get_option('geodir_width_author_right_section')) {
582
+		$width_css = 'style="width:' . $width . '%;"';
583
+	} else {
584
+		$width_css = '';
585
+	}
586
+
587
+	$tc = get_option('theme_compatibility_setting');
588
+	if (!empty($tc['geodir_sidebar_right_open_replace'])) {
589
+		$text = $tc['geodir_sidebar_right_open_replace'];
590
+	} else {
591
+		$text = '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>';
592
+	}
593
+
594
+	if (!empty($tc['geodir_sidebar_right_open_id'])) {
595
+		$id = $tc['geodir_sidebar_right_open_id'];
596
+	}
597
+	if (!empty($tc['geodir_sidebar_right_open_class'])) {
598
+		$class = $tc['geodir_sidebar_right_open_class'];
599
+	}
600
+
601
+	$text = str_replace(array("[id]", "[class]", "[itemtype]", "[width_css]"), array($id, $class, $itemtype, $width_css), $text);
602
+
603
+	echo $text;
604 604
 }
605 605
 
606 606
 // action for adding the primary div closing tag
@@ -614,13 +614,13 @@  discard block
 block discarded – undo
614 614
  */
615 615
 function geodir_action_sidebar_right_close($type = '')
616 616
 {
617
-    $tc = get_option('theme_compatibility_setting');
618
-    if (!empty($tc['geodir_sidebar_right_close_replace'])) {
619
-        $text = $tc['geodir_sidebar_right_close_replace'];
620
-    } else {
621
-        $text = '</aside><!-- sidebar ends here-->';
622
-    }
623
-    echo $text;
617
+	$tc = get_option('theme_compatibility_setting');
618
+	if (!empty($tc['geodir_sidebar_right_close_replace'])) {
619
+		$text = $tc['geodir_sidebar_right_close_replace'];
620
+	} else {
621
+		$text = '</aside><!-- sidebar ends here-->';
622
+	}
623
+	echo $text;
624 624
 }
625 625
 
626 626
 
@@ -641,121 +641,121 @@  discard block
 block discarded – undo
641 641
  */
642 642
 function geodir_action_geodir_set_preview_post()
643 643
 {
644
-    global $post, $preview, $gd_session;
645
-    $is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
646
-    if (!$preview || $is_backend_preview) {
647
-        return;
648
-    }// bail if not previewing
649
-
650
-    $listing_type = isset($_REQUEST['listing_type']) ? sanitize_text_field($_REQUEST['listing_type']) : '';
651
-
652
-    $fields_info = geodir_get_custom_fields_type($listing_type);
653
-
654
-    foreach ($_REQUEST as $pkey => $pval) {
655
-        if ($pkey == 'geodir_video') {
656
-            $tags = '<iframe>';
657
-        } else if ($pkey == 'post_desc') {
658
-            $tags = '<p><a><b><i><em><h1><h2><h3><h4><h5><ul><ol><li><img><div><del><ins><span><cite><code><strike><strong><blockquote>';
659
-        } else if (is_array($fields_info) && isset($fields_info[$pkey]) && ($fields_info[$pkey] == 'textarea' || $fields_info[$pkey] == 'html')) {
660
-            $tags = '<p><a><b><i><em><h1><h2><h3><h4><h5><ul><ol><li><img><div><del><ins><span><cite><code><strike><strong><blockquote>';
661
-        } else if (is_array($_REQUEST[$pkey])) {
662
-            $tags = 'skip_field';
663
-        } else {
664
-            $tags = '';
665
-        }
666
-        /**
667
-         * Allows the filtering of the allowed HTML tags per field when submitting from frontend add listing page.
668
-         *
669
-         * @since 1.0.0
670
-         * @param string $tags The allowed HTML tags for the field. Can be many things, for example the description allows these tags '<p><a><b><i><em><h1><h2><h3><h4><h5><ul><ol><li><img><div><del><ins><span><cite><code><strike><strong><blockquote>'.
671
-         * @param string|array $pkey The field id/name. If array then value is set as "skip_field".
672
-         */
673
-        $tags = apply_filters('geodir_save_post_key', $tags, $pkey);
674
-
675
-        if ($tags != 'skip_field') {
676
-            $_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags);
677
-        }
678
-    }
679
-
680
-    $post = (object)$_REQUEST;
681
-
682
-
683
-    if (isset($post->video)) {
684
-        $post->video = stripslashes($post->video);
685
-    }
686
-
687
-    if (isset($post->Video2)) {
688
-        $post->Video2 = stripslashes($post->Video2);
689
-    }
690
-
691
-    $post_type = $post->listing_type;
692
-    $post_type_info = get_post_type_object($post_type);
693
-
694
-    $listing_label = $post_type_info->labels->singular_name;
695
-
696
-    $term_icon = '';
697
-
698
-    if (!empty($post->post_category)) {
699
-        foreach ($post->post_category as $post_taxonomy => $post_term) {
700
-
701
-            if ($post_term != '' && !is_array($post_term)) {
702
-                $post_term = explode(',', trim($post_term, ','));
703
-            }
644
+	global $post, $preview, $gd_session;
645
+	$is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
646
+	if (!$preview || $is_backend_preview) {
647
+		return;
648
+	}// bail if not previewing
649
+
650
+	$listing_type = isset($_REQUEST['listing_type']) ? sanitize_text_field($_REQUEST['listing_type']) : '';
651
+
652
+	$fields_info = geodir_get_custom_fields_type($listing_type);
653
+
654
+	foreach ($_REQUEST as $pkey => $pval) {
655
+		if ($pkey == 'geodir_video') {
656
+			$tags = '<iframe>';
657
+		} else if ($pkey == 'post_desc') {
658
+			$tags = '<p><a><b><i><em><h1><h2><h3><h4><h5><ul><ol><li><img><div><del><ins><span><cite><code><strike><strong><blockquote>';
659
+		} else if (is_array($fields_info) && isset($fields_info[$pkey]) && ($fields_info[$pkey] == 'textarea' || $fields_info[$pkey] == 'html')) {
660
+			$tags = '<p><a><b><i><em><h1><h2><h3><h4><h5><ul><ol><li><img><div><del><ins><span><cite><code><strike><strong><blockquote>';
661
+		} else if (is_array($_REQUEST[$pkey])) {
662
+			$tags = 'skip_field';
663
+		} else {
664
+			$tags = '';
665
+		}
666
+		/**
667
+		 * Allows the filtering of the allowed HTML tags per field when submitting from frontend add listing page.
668
+		 *
669
+		 * @since 1.0.0
670
+		 * @param string $tags The allowed HTML tags for the field. Can be many things, for example the description allows these tags '<p><a><b><i><em><h1><h2><h3><h4><h5><ul><ol><li><img><div><del><ins><span><cite><code><strike><strong><blockquote>'.
671
+		 * @param string|array $pkey The field id/name. If array then value is set as "skip_field".
672
+		 */
673
+		$tags = apply_filters('geodir_save_post_key', $tags, $pkey);
674
+
675
+		if ($tags != 'skip_field') {
676
+			$_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags);
677
+		}
678
+	}
679
+
680
+	$post = (object)$_REQUEST;
681
+
682
+
683
+	if (isset($post->video)) {
684
+		$post->video = stripslashes($post->video);
685
+	}
686
+
687
+	if (isset($post->Video2)) {
688
+		$post->Video2 = stripslashes($post->Video2);
689
+	}
690
+
691
+	$post_type = $post->listing_type;
692
+	$post_type_info = get_post_type_object($post_type);
693
+
694
+	$listing_label = $post_type_info->labels->singular_name;
695
+
696
+	$term_icon = '';
697
+
698
+	if (!empty($post->post_category)) {
699
+		foreach ($post->post_category as $post_taxonomy => $post_term) {
700
+
701
+			if ($post_term != '' && !is_array($post_term)) {
702
+				$post_term = explode(',', trim($post_term, ','));
703
+			}
704 704
 
705
-            if (is_array($post_term)) {
706
-                $post_term = array_unique($post_term);
707
-            }
705
+			if (is_array($post_term)) {
706
+				$post_term = array_unique($post_term);
707
+			}
708 708
 
709
-            if (!empty($post_term)) {
710
-                foreach ($post_term as $cat_id) {
711
-                    $cat_id = trim($cat_id);
712
-
713
-                    if ($cat_id != '') {
714
-                        $term_icon = get_option('geodir_default_marker_icon');
715
-
716
-                        if (isset($post->post_default_category) && $post->post_default_category == $cat_id) {
717
-                            if ($term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type)) {
718
-                                if (isset($term_icon_url['src']) && $term_icon_url['src'] != '')
719
-                                    $term_icon = $term_icon_url['src'];
720
-                                break;
721
-                            }
722
-                        }
723
-                    }
724
-                }
725
-            }
726
-        }
727
-    }
709
+			if (!empty($post_term)) {
710
+				foreach ($post_term as $cat_id) {
711
+					$cat_id = trim($cat_id);
712
+
713
+					if ($cat_id != '') {
714
+						$term_icon = get_option('geodir_default_marker_icon');
715
+
716
+						if (isset($post->post_default_category) && $post->post_default_category == $cat_id) {
717
+							if ($term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type)) {
718
+								if (isset($term_icon_url['src']) && $term_icon_url['src'] != '')
719
+									$term_icon = $term_icon_url['src'];
720
+								break;
721
+							}
722
+						}
723
+					}
724
+				}
725
+			}
726
+		}
727
+	}
728 728
 
729
-    $post_latitude = isset($post->post_latitude) ? $post->post_latitude : '';
730
-    $post_longitude = isset($post->post_longitude) ? $post->post_longitude : '';
729
+	$post_latitude = isset($post->post_latitude) ? $post->post_latitude : '';
730
+	$post_longitude = isset($post->post_longitude) ? $post->post_longitude : '';
731 731
 
732
-    $srcharr = array("'", "/", "-", '"', '\\');
733
-    $replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
732
+	$srcharr = array("'", "/", "-", '"', '\\');
733
+	$replarr = array("&prime;", "&frasl;", "&ndash;", "&ldquo;", '');
734 734
 
735
-    $json_title = str_replace($srcharr, $replarr, $post->post_title);
735
+	$json_title = str_replace($srcharr, $replarr, $post->post_title);
736 736
 
737
-    $json = '{';
738
-    $json .= '"post_preview": "1",';
739
-    $json .= '"t": "' . $json_title . '",';
740
-    $json .= '"lt": "' . $post_latitude . '",';
741
-    $json .= '"ln": "' . $post_longitude . '",';
742
-    $json .= '"i":"' . $term_icon . '"';
743
-    $json .= '}';
737
+	$json = '{';
738
+	$json .= '"post_preview": "1",';
739
+	$json .= '"t": "' . $json_title . '",';
740
+	$json .= '"lt": "' . $post_latitude . '",';
741
+	$json .= '"ln": "' . $post_longitude . '",';
742
+	$json .= '"i":"' . $term_icon . '"';
743
+	$json .= '}';
744 744
 
745
-    $post->marker_json = $json;
745
+	$post->marker_json = $json;
746 746
 
747
-    $gd_session->set('listing', $_REQUEST);
747
+	$gd_session->set('listing', $_REQUEST);
748 748
 
749
-    // we need to define a few things to trick the setup_postdata
750
-    if (!isset($post->ID)) {
751
-        $post->ID = '';
752
-        $post->post_author = '';
753
-        $post->post_date = '';
754
-        $post->post_content = '';
755
-        $post->default_category = '';
756
-        $post->post_type = '';
757
-    }
758
-    setup_postdata($post);
749
+	// we need to define a few things to trick the setup_postdata
750
+	if (!isset($post->ID)) {
751
+		$post->ID = '';
752
+		$post->post_author = '';
753
+		$post->post_date = '';
754
+		$post->post_content = '';
755
+		$post->default_category = '';
756
+		$post->post_type = '';
757
+	}
758
+	setup_postdata($post);
759 759
 }
760 760
 
761 761
 /**
@@ -767,15 +767,15 @@  discard block
 block discarded – undo
767 767
  */
768 768
 function geodir_action_geodir_preview_code()
769 769
 {
770
-    global $preview;
770
+	global $preview;
771 771
 
772
-    $is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
772
+	$is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
773 773
 
774
-    if (!$preview || $is_backend_preview) {
775
-        return;
776
-    }// bail if not previewing
774
+	if (!$preview || $is_backend_preview) {
775
+		return;
776
+	}// bail if not previewing
777 777
 
778
-    geodir_get_template_part('preview', 'buttons');
778
+	geodir_get_template_part('preview', 'buttons');
779 779
 }
780 780
 
781 781
 // action for adding the details page top widget area
@@ -791,20 +791,20 @@  discard block
 block discarded – undo
791 791
  */
792 792
 function geodir_action_geodir_sidebar_detail_top($class = '')
793 793
 {
794
-    if (get_option('geodir_show_detail_top_section')) { ?>
794
+	if (get_option('geodir_show_detail_top_section')) { ?>
795 795
         <div
796 796
             class="<?php
797
-            /**
798
-             * Filter the div class for the wrapper of the full width widget areas.
799
-             *
800
-             * Allows you to filter the class of the div for the HTML Container wrapper for the full width widget areas referred to as "Top Section" or "Bottom Section" in the widget areas.
801
-             *
802
-             * @since 1.0.0
803
-             * @param string $class The class of the div.
804
-             * @param string $type The page type the widget area is being used on. Values can be 'geodir_detail_top', 'geodir_detail_bottom', 'geodir_listing_top', 'geodir_listing_bottom', 'Reg/Login Top Section',
805
-             *               'geodir_author_top','geodir_author_bottom', 'geodir_search_top', 'geodir_search_bottom', 'geodir_home_top' or 'geodir_home_bottom'.
806
-             */
807
-            echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_detail_top'); ?> <?php echo $class; ?>">
797
+			/**
798
+			 * Filter the div class for the wrapper of the full width widget areas.
799
+			 *
800
+			 * Allows you to filter the class of the div for the HTML Container wrapper for the full width widget areas referred to as "Top Section" or "Bottom Section" in the widget areas.
801
+			 *
802
+			 * @since 1.0.0
803
+			 * @param string $class The class of the div.
804
+			 * @param string $type The page type the widget area is being used on. Values can be 'geodir_detail_top', 'geodir_detail_bottom', 'geodir_listing_top', 'geodir_listing_bottom', 'Reg/Login Top Section',
805
+			 *               'geodir_author_top','geodir_author_bottom', 'geodir_search_top', 'geodir_search_bottom', 'geodir_home_top' or 'geodir_home_bottom'.
806
+			 */
807
+			echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_detail_top'); ?> <?php echo $class; ?>">
808 808
             <?php dynamic_sidebar('geodir_detail_top'); ?>
809 809
         </div>
810 810
     <?php }
@@ -828,11 +828,11 @@  discard block
 block discarded – undo
828 828
  */
829 829
 function geodir_action_geodir_sidebar_detail_bottom_section($class = '')
830 830
 {
831
-    if (get_option('geodir_show_detail_bottom_section')) { ?>
831
+	if (get_option('geodir_show_detail_bottom_section')) { ?>
832 832
         <div
833 833
             class="<?php
834
-            /** This action is documented in geodirectory_template_actions.php */
835
-            echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_detail_bottom'); ?> <?php echo $class; ?>">
834
+			/** This action is documented in geodirectory_template_actions.php */
835
+			echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_detail_bottom'); ?> <?php echo $class; ?>">
836 836
             <?php dynamic_sidebar('geodir_detail_bottom'); ?>
837 837
         </div><!-- clearfix ends here-->
838 838
     <?php }
@@ -846,7 +846,7 @@  discard block
 block discarded – undo
846 846
  */
847 847
 function geodir_details_sidebar_widget_area()
848 848
 {
849
-    dynamic_sidebar('geodir_detail_sidebar');
849
+	dynamic_sidebar('geodir_detail_sidebar');
850 850
 }
851 851
 
852 852
 /**
@@ -857,12 +857,12 @@  discard block
 block discarded – undo
857 857
  */
858 858
 function geodir_details_sidebar_place_details()
859 859
 {
860
-    /**
861
-     * Used to add items to the details page sidebar.
862
-     *
863
-     * @since 1.0.0
864
-     */
865
-    do_action('geodir_detail_page_sidebar');
860
+	/**
861
+	 * Used to add items to the details page sidebar.
862
+	 *
863
+	 * @since 1.0.0
864
+	 */
865
+	do_action('geodir_detail_page_sidebar');
866 866
 }
867 867
 
868 868
 add_action('geodir_detail_sidebar_inside', 'geodir_details_sidebar_place_details', 10);
@@ -877,68 +877,68 @@  discard block
 block discarded – undo
877 877
  */
878 878
 function geodir_action_details_sidebar()
879 879
 {
880
-    // this adds the opening html tags to the primary div, this required the closing tag below :: ($type='',$id='',$class='',$itemtype='')
881
-    if (get_option('geodir_detail_sidebar_left_section')) {
882
-        /**
883
-         * Called before the details page left sidebar is opened.
884
-         *
885
-         * This is used to add opening wrapper HTML to the details page left sidebar.
886
-         *
887
-         * @since 1.0.0
888
-         * @param string $type The current page type. Values can be 'details-page', 'listings-page', 'author-page', 'search-page' or 'home-page'.
889
-         * @param string $id Usually the ID of the sidebar wrapper. Values can be 'geodir-sidebar' or 'geodir-sidebar-left'.
890
-         * @param string $class The class of the sidebar wrapper. 'geodir-sidebar-left geodir-details-sidebar-left'.
891
-         * @param string $itemtype HTML itemtype 'http://schema.org/WPSideBar'.
892
-         */
893
-        do_action('geodir_sidebar_left_open', 'details-page', 'geodir-sidebar', 'geodir-sidebar-left geodir-details-sidebar-left', 'https://schema.org/WPSideBar');
894
-        ?>
880
+	// this adds the opening html tags to the primary div, this required the closing tag below :: ($type='',$id='',$class='',$itemtype='')
881
+	if (get_option('geodir_detail_sidebar_left_section')) {
882
+		/**
883
+		 * Called before the details page left sidebar is opened.
884
+		 *
885
+		 * This is used to add opening wrapper HTML to the details page left sidebar.
886
+		 *
887
+		 * @since 1.0.0
888
+		 * @param string $type The current page type. Values can be 'details-page', 'listings-page', 'author-page', 'search-page' or 'home-page'.
889
+		 * @param string $id Usually the ID of the sidebar wrapper. Values can be 'geodir-sidebar' or 'geodir-sidebar-left'.
890
+		 * @param string $class The class of the sidebar wrapper. 'geodir-sidebar-left geodir-details-sidebar-left'.
891
+		 * @param string $itemtype HTML itemtype 'http://schema.org/WPSideBar'.
892
+		 */
893
+		do_action('geodir_sidebar_left_open', 'details-page', 'geodir-sidebar', 'geodir-sidebar-left geodir-details-sidebar-left', 'https://schema.org/WPSideBar');
894
+		?>
895 895
         <div class="geodir-content-left geodir-sidebar-wrap"><?php
896
-        /**
897
-         * Called inside the HTML wrapper of the details sidebar for either the left and right sidebar.
898
-         *
899
-         * This is used to add all info to the details page sidebars.
900
-         *
901
-         * @since 1.0.0
902
-         */
903
-        do_action('geodir_detail_sidebar_inside');
904
-        ?></div><!-- end geodir-content-left --><?php
905
-        /**
906
-         * Called after the details page left sidebar.
907
-         *
908
-         * This is used to add closing wrapper HTML to the details page left sidebar.
909
-         *
910
-         * @since 1.0.0
911
-         * @param string $type The current page type. Values can be 'details-page', 'listings-page', 'author-page', 'search-page' or 'home-page'.
912
-         */
913
-        do_action('geodir_sidebar_left_close', 'details-page');
914
-    } else {
915
-        /**
916
-         * Called before the details page right sidebar is opened.
917
-         *
918
-         * This is used to add opening wrapper HTML to the details page right sidebar.
919
-         *
920
-         * @since 1.0.0
921
-         * @param string $type The current page type. Values can be 'details-page', 'listings-page', 'add-listing-page', 'author-page', 'search-page' or 'home-page'.
922
-         * @param string $id Usually the ID of the sidebar wrapper. Values can be 'geodir-sidebar' or 'geodir-sidebar-right'.
923
-         * @param string $class The class of the sidebar wrapper. 'geodir-sidebar-right geodir-details-sidebar-right'.
924
-         * @param string $itemtype HTML itemtype 'http://schema.org/WPSideBar'.
925
-         */
926
-        do_action('geodir_sidebar_right_open', 'details-page', 'geodir-sidebar', 'geodir-sidebar-right geodir-details-sidebar-right', 'http://schema.org/WPSideBar');
927
-        ?>
896
+		/**
897
+		 * Called inside the HTML wrapper of the details sidebar for either the left and right sidebar.
898
+		 *
899
+		 * This is used to add all info to the details page sidebars.
900
+		 *
901
+		 * @since 1.0.0
902
+		 */
903
+		do_action('geodir_detail_sidebar_inside');
904
+		?></div><!-- end geodir-content-left --><?php
905
+		/**
906
+		 * Called after the details page left sidebar.
907
+		 *
908
+		 * This is used to add closing wrapper HTML to the details page left sidebar.
909
+		 *
910
+		 * @since 1.0.0
911
+		 * @param string $type The current page type. Values can be 'details-page', 'listings-page', 'author-page', 'search-page' or 'home-page'.
912
+		 */
913
+		do_action('geodir_sidebar_left_close', 'details-page');
914
+	} else {
915
+		/**
916
+		 * Called before the details page right sidebar is opened.
917
+		 *
918
+		 * This is used to add opening wrapper HTML to the details page right sidebar.
919
+		 *
920
+		 * @since 1.0.0
921
+		 * @param string $type The current page type. Values can be 'details-page', 'listings-page', 'add-listing-page', 'author-page', 'search-page' or 'home-page'.
922
+		 * @param string $id Usually the ID of the sidebar wrapper. Values can be 'geodir-sidebar' or 'geodir-sidebar-right'.
923
+		 * @param string $class The class of the sidebar wrapper. 'geodir-sidebar-right geodir-details-sidebar-right'.
924
+		 * @param string $itemtype HTML itemtype 'http://schema.org/WPSideBar'.
925
+		 */
926
+		do_action('geodir_sidebar_right_open', 'details-page', 'geodir-sidebar', 'geodir-sidebar-right geodir-details-sidebar-right', 'http://schema.org/WPSideBar');
927
+		?>
928 928
         <div class="geodir-content-right geodir-sidebar-wrap"><?php
929
-        /** This action is documented in geodirectory_template_actions.php */
930
-        do_action('geodir_detail_sidebar_inside');
931
-        ?></div><!-- end geodir-content-right --><?php
932
-        /**
933
-         * Called after the details page right sidebar.
934
-         *
935
-         * This is used to add closing wrapper HTML to the details page right sidebar.
936
-         *
937
-         * @since 1.0.0
938
-         * @param string $type The current page type. Values can be 'details-page', 'listings-page', 'author-page', 'search-page' or 'home-page'.
939
-         */
940
-        do_action('geodir_sidebar_right_close', 'details-page');
941
-    }
929
+		/** This action is documented in geodirectory_template_actions.php */
930
+		do_action('geodir_detail_sidebar_inside');
931
+		?></div><!-- end geodir-content-right --><?php
932
+		/**
933
+		 * Called after the details page right sidebar.
934
+		 *
935
+		 * This is used to add closing wrapper HTML to the details page right sidebar.
936
+		 *
937
+		 * @since 1.0.0
938
+		 * @param string $type The current page type. Values can be 'details-page', 'listings-page', 'author-page', 'search-page' or 'home-page'.
939
+		 */
940
+		do_action('geodir_sidebar_right_close', 'details-page');
941
+	}
942 942
 }
943 943
 
944 944
 add_action('geodir_page_title', 'geodir_action_page_title', 10);
@@ -952,21 +952,21 @@  discard block
 block discarded – undo
952 952
  */
953 953
 function geodir_action_page_title()
954 954
 {
955
-    /**
956
-     * Filter the page title HTML h1 class.
957
-     *
958
-     * @since 1.0.0
959
-     * @param string $class The class to use. Default is 'entry-title fn'.
960
-     */
961
-    $class = apply_filters('geodir_page_title_class', 'entry-title fn');
962
-    /**
963
-     * Filter the page title HTML header wrapper class.
964
-     *
965
-     * @since 1.0.0
966
-     * @param string $class The class to use. Default is 'entry-header'.
967
-     */
968
-    $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
969
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' . stripslashes(get_the_title()) . '</h1></header>';
955
+	/**
956
+	 * Filter the page title HTML h1 class.
957
+	 *
958
+	 * @since 1.0.0
959
+	 * @param string $class The class to use. Default is 'entry-title fn'.
960
+	 */
961
+	$class = apply_filters('geodir_page_title_class', 'entry-title fn');
962
+	/**
963
+	 * Filter the page title HTML header wrapper class.
964
+	 *
965
+	 * @since 1.0.0
966
+	 * @param string $class The class to use. Default is 'entry-header'.
967
+	 */
968
+	$class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
969
+	echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' . stripslashes(get_the_title()) . '</h1></header>';
970 970
 }
971 971
 
972 972
 
@@ -983,94 +983,94 @@  discard block
 block discarded – undo
983 983
  */
984 984
 function geodir_action_details_slider()
985 985
 {
986
-    global $preview, $post;
986
+	global $preview, $post;
987 987
 
988
-    $is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // preview from backend
988
+	$is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // preview from backend
989 989
 
990
-    if ($is_backend_preview && !empty($post) && !empty($post->ID) && !isset($post->post_images)) {
991
-        $preview_get_images = geodir_get_images($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
990
+	if ($is_backend_preview && !empty($post) && !empty($post->ID) && !isset($post->post_images)) {
991
+		$preview_get_images = geodir_get_images($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
992 992
 
993
-        $preview_post_images = array();
994
-        if ($preview_get_images) {
995
-            foreach ($preview_get_images as $row) {
996
-                $preview_post_images[] = $row->src;
997
-            }
998
-        }
999
-        if (!empty($preview_post_images)) {
1000
-            $post->post_images = implode(',', $preview_post_images);
1001
-        }
1002
-    }
1003
-
1004
-    if ($preview) {
1005
-        $post_images = array();
1006
-        if (isset($post->post_images) && !empty($post->post_images)) {
1007
-            $post->post_images = trim($post->post_images, ",");
1008
-            $post_images = explode(",", $post->post_images);
1009
-        }
1010
-
1011
-        $main_slides = '';
1012
-        $nav_slides = '';
1013
-        $slides = 0;
1014
-
1015
-        if (!empty($post_images)) {
1016
-            foreach ($post_images as $image) {
1017
-                if (!empty($image)) {
1018
-                    $sizes = getimagesize(trim($image));
1019
-                    $width = !empty($sizes) && isset($sizes[0]) ? $sizes[0] : 0;
1020
-                    $height = !empty($sizes) && isset($sizes[1]) ? $sizes[1] : 0;
1021
-
1022
-                    if ($image && $width && $height) {
1023
-                        $image = (object)array('src' => $image, 'width' => $width, 'height' => $height);
1024
-                    }
1025
-
1026
-                    if (isset($image->src)) {
1027
-                        if ($image->height >= 400) {
1028
-                            $spacer_height = 0;
1029
-                        } else {
1030
-                            $spacer_height = ((400 - $image->height) / 2);
1031
-                        }
1032
-
1033
-                        $image_title = isset($image->title) ? $image->title : '';
1034
-
1035
-                        $main_slides .= '<li><img src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:' . $spacer_height . 'px;margin:0 auto;" />';
1036
-                        $main_slides .= '<img src="' . $image->src . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:400px;margin:0 auto;" /></li>';
1037
-                        $nav_slides .= '<li><img src="' . $image->src . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:48px;margin:0 auto;" /></li>';
1038
-                        $slides++;
1039
-                    }
1040
-                }
1041
-            }// endfore
1042
-        } //end if
1043
-    } else {
1044
-        $main_slides = '';
1045
-        $nav_slides = '';
1046
-        /**
1047
-         * Filter if default images should show on the details page.
1048
-         *
1049
-         * @param bool $use_default_image Default false.
1050
-         * @since 1.6.16
1051
-         */
1052
-        $use_default_image = apply_filters('geodir_details_default_image_show', false);
1053
-        $post_images = geodir_get_images($post->ID, 'thumbnail', $use_default_image); // Hide default image on listing preview/detail page.
1054
-        $slides = 0;
1055
-
1056
-        if (!empty($post_images)) {
1057
-            foreach ($post_images as $image) {
1058
-                if ($image->height >= 400) {
1059
-                    $spacer_height = 0;
1060
-                } else {
1061
-                    $spacer_height = ((400 - $image->height) / 2);
1062
-                }
1063
-                $caption = '';//(!empty($image->caption)) ? '<p class="flex-caption">'.$image->caption.'</p>' : '';
1064
-                $main_slides .= '<li><img src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:' . $spacer_height . 'px;margin:0 auto;" />';
1065
-                $main_slides .= '<img src="' . $image->src . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:400px;margin:0 auto;" />'.$caption.'</li>';
1066
-                $nav_slides .= '<li><img src="' . $image->src . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
1067
-                $slides++;
1068
-            }
1069
-        }// endfore
1070
-    }
993
+		$preview_post_images = array();
994
+		if ($preview_get_images) {
995
+			foreach ($preview_get_images as $row) {
996
+				$preview_post_images[] = $row->src;
997
+			}
998
+		}
999
+		if (!empty($preview_post_images)) {
1000
+			$post->post_images = implode(',', $preview_post_images);
1001
+		}
1002
+	}
1003
+
1004
+	if ($preview) {
1005
+		$post_images = array();
1006
+		if (isset($post->post_images) && !empty($post->post_images)) {
1007
+			$post->post_images = trim($post->post_images, ",");
1008
+			$post_images = explode(",", $post->post_images);
1009
+		}
1010
+
1011
+		$main_slides = '';
1012
+		$nav_slides = '';
1013
+		$slides = 0;
1014
+
1015
+		if (!empty($post_images)) {
1016
+			foreach ($post_images as $image) {
1017
+				if (!empty($image)) {
1018
+					$sizes = getimagesize(trim($image));
1019
+					$width = !empty($sizes) && isset($sizes[0]) ? $sizes[0] : 0;
1020
+					$height = !empty($sizes) && isset($sizes[1]) ? $sizes[1] : 0;
1021
+
1022
+					if ($image && $width && $height) {
1023
+						$image = (object)array('src' => $image, 'width' => $width, 'height' => $height);
1024
+					}
1025
+
1026
+					if (isset($image->src)) {
1027
+						if ($image->height >= 400) {
1028
+							$spacer_height = 0;
1029
+						} else {
1030
+							$spacer_height = ((400 - $image->height) / 2);
1031
+						}
1032
+
1033
+						$image_title = isset($image->title) ? $image->title : '';
1034
+
1035
+						$main_slides .= '<li><img src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:' . $spacer_height . 'px;margin:0 auto;" />';
1036
+						$main_slides .= '<img src="' . $image->src . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:400px;margin:0 auto;" /></li>';
1037
+						$nav_slides .= '<li><img src="' . $image->src . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:48px;margin:0 auto;" /></li>';
1038
+						$slides++;
1039
+					}
1040
+				}
1041
+			}// endfore
1042
+		} //end if
1043
+	} else {
1044
+		$main_slides = '';
1045
+		$nav_slides = '';
1046
+		/**
1047
+		 * Filter if default images should show on the details page.
1048
+		 *
1049
+		 * @param bool $use_default_image Default false.
1050
+		 * @since 1.6.16
1051
+		 */
1052
+		$use_default_image = apply_filters('geodir_details_default_image_show', false);
1053
+		$post_images = geodir_get_images($post->ID, 'thumbnail', $use_default_image); // Hide default image on listing preview/detail page.
1054
+		$slides = 0;
1055
+
1056
+		if (!empty($post_images)) {
1057
+			foreach ($post_images as $image) {
1058
+				if ($image->height >= 400) {
1059
+					$spacer_height = 0;
1060
+				} else {
1061
+					$spacer_height = ((400 - $image->height) / 2);
1062
+				}
1063
+				$caption = '';//(!empty($image->caption)) ? '<p class="flex-caption">'.$image->caption.'</p>' : '';
1064
+				$main_slides .= '<li><img src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:' . $spacer_height . 'px;margin:0 auto;" />';
1065
+				$main_slides .= '<img src="' . $image->src . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:400px;margin:0 auto;" />'.$caption.'</li>';
1066
+				$nav_slides .= '<li><img src="' . $image->src . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
1067
+				$slides++;
1068
+			}
1069
+		}// endfore
1070
+	}
1071 1071
 
1072
-    if (!empty($post_images)) {
1073
-        ?>
1072
+	if (!empty($post_images)) {
1073
+		?>
1074 1074
         <div class="geodir_flex-container">
1075 1075
             <div class="geodir_flex-loader"><i class="fa fa-refresh fa-spin"></i></div>
1076 1076
             <div id="geodir_slider" class="geodir_flexslider ">
@@ -1083,7 +1083,7 @@  discard block
 block discarded – undo
1083 1083
             <?php } ?>
1084 1084
         </div>
1085 1085
     <?php
1086
-    }
1086
+	}
1087 1087
 }
1088 1088
 
1089 1089
 add_action('geodir_details_taxonomies', 'geodir_action_details_taxonomies', 10);
@@ -1098,177 +1098,177 @@  discard block
 block discarded – undo
1098 1098
  */
1099 1099
 function geodir_action_details_taxonomies()
1100 1100
 {
1101
-    global $preview, $post;?>
1101
+	global $preview, $post;?>
1102 1102
     <p class="geodir_post_taxomomies clearfix">
1103 1103
     <?php
1104
-    $taxonomies = array();
1105
-
1106
-    $is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
1107
-
1108
-    if ($preview && !$is_backend_preview) {
1109
-        $post_type = $post->listing_type;
1110
-        $post_taxonomy = $post_type . 'category';
1111
-        $post->{$post_taxonomy} = $post->post_category[$post_taxonomy];
1112
-    } else {
1113
-        $post_type = $post->post_type;
1114
-        $post_taxonomy = $post_type . 'category';
1115
-    }
1104
+	$taxonomies = array();
1105
+
1106
+	$is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
1107
+
1108
+	if ($preview && !$is_backend_preview) {
1109
+		$post_type = $post->listing_type;
1110
+		$post_taxonomy = $post_type . 'category';
1111
+		$post->{$post_taxonomy} = $post->post_category[$post_taxonomy];
1112
+	} else {
1113
+		$post_type = $post->post_type;
1114
+		$post_taxonomy = $post_type . 'category';
1115
+	}
1116 1116
 //{
1117
-    $post_type_info = get_post_type_object($post_type);
1118
-    $listing_label = __($post_type_info->labels->singular_name, 'geodirectory');
1119
-
1120
-    if (!empty($post->post_tags)) {
1121
-
1122
-        if (taxonomy_exists($post_type . '_tags')):
1123
-            $links = array();
1124
-            $terms = array();
1125
-            // to limit post tags
1126
-            $post_tags = trim($post->post_tags, ",");
1127
-            $post_id = isset($post->ID) ? $post->ID : '';
1128
-            /**
1129
-             * Filter the post tags.
1130
-             *
1131
-             * Allows you to filter the post tags output on the details page of a post.
1132
-             *
1133
-             * @since 1.0.0
1134
-             * @param string $post_tags A comma seperated list of tags.
1135
-             * @param int $post_id The current post id.
1136
-             */
1137
-            $post_tags = apply_filters('geodir_action_details_post_tags', $post_tags, $post_id);
1138
-
1139
-            $post->post_tags = $post_tags;
1140
-            $post_tags = explode(",", trim($post->post_tags, ","));
1141
-
1142
-
1143
-            foreach ($post_tags as $post_term) {
1144
-
1145
-                // fix slug creation order for tags & location
1146
-                $post_term = trim($post_term);
1147
-
1148
-                $priority_location = false;
1149
-                if ($insert_term = term_exists($post_term, $post_type . '_tags')) {
1150
-                    $term = get_term_by('id', $insert_term['term_id'], $post_type . '_tags');
1151
-                } else {
1152
-                    $post_country = isset($_REQUEST['post_country']) && $_REQUEST['post_country'] != '' ? sanitize_text_field($_REQUEST['post_country']) : NULL;
1153
-                    $post_region = isset($_REQUEST['post_region']) && $_REQUEST['post_region'] != '' ? sanitize_text_field($_REQUEST['post_region']) : NULL;
1154
-                    $post_city = isset($_REQUEST['post_city']) && $_REQUEST['post_city'] != '' ? sanitize_text_field($_REQUEST['post_city']) : NULL;
1155
-                    $match_country = $post_country && sanitize_title($post_term) == sanitize_title($post_country) ? true : false;
1156
-                    $match_region = $post_region && sanitize_title($post_term) == sanitize_title($post_region) ? true : false;
1157
-                    $match_city = $post_city && sanitize_title($post_term) == sanitize_title($post_city) ? true : false;
1158
-                    if ($match_country || $match_region || $match_city) {
1159
-                        $priority_location = true;
1160
-                        $term = get_term_by('name', $post_term, $post_type . '_tags');
1161
-                    } else {
1162
-                        $insert_term = wp_insert_term($post_term, $post_type . '_tags');
1163
-                        $term = get_term_by('name', $post_term, $post_type . '_tags');
1164
-                    }
1165
-                }
1166
-
1167
-                if (!is_wp_error($term) && is_object($term)) {
1168
-
1169
-                    // fix tag link on detail page
1170
-                    if ($priority_location) {
1171
-
1172
-                        $tag_link = "<a href=''>$post_term</a>";
1173
-                        /**
1174
-                         * Filter the tag name on the details page.
1175
-                         *
1176
-                         * @since 1.5.6
1177
-                         * @param string $tag_link The tag link html.
1178
-                         * @param object $term The tag term object.
1179
-                         */
1180
-                        $tag_link = apply_filters('geodir_details_taxonomies_tag_link',$tag_link,$term);
1181
-                        $links[] = $tag_link;
1182
-                    } else {
1183
-                        $tag_link = "<a href='" . esc_attr(get_term_link($term->term_id, $term->taxonomy)) . "'>$term->name</a>";
1184
-                        /** This action is documented in geodirectory-template_actions.php */
1185
-                        $tag_link = apply_filters('geodir_details_taxonomies_tag_link',$tag_link,$term);
1186
-                        $links[] = $tag_link;
1187
-                    }
1188
-                    $terms[] = $term;
1189
-                }
1190
-                //
1191
-            }
1192
-            if (!isset($listing_label)) {
1193
-                $listing_label = '';
1194
-            }
1195
-            $taxonomies[$post_type . '_tags'] = wp_sprintf(__('%s Tags: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object)$terms);
1196
-        endif;
1117
+	$post_type_info = get_post_type_object($post_type);
1118
+	$listing_label = __($post_type_info->labels->singular_name, 'geodirectory');
1119
+
1120
+	if (!empty($post->post_tags)) {
1121
+
1122
+		if (taxonomy_exists($post_type . '_tags')):
1123
+			$links = array();
1124
+			$terms = array();
1125
+			// to limit post tags
1126
+			$post_tags = trim($post->post_tags, ",");
1127
+			$post_id = isset($post->ID) ? $post->ID : '';
1128
+			/**
1129
+			 * Filter the post tags.
1130
+			 *
1131
+			 * Allows you to filter the post tags output on the details page of a post.
1132
+			 *
1133
+			 * @since 1.0.0
1134
+			 * @param string $post_tags A comma seperated list of tags.
1135
+			 * @param int $post_id The current post id.
1136
+			 */
1137
+			$post_tags = apply_filters('geodir_action_details_post_tags', $post_tags, $post_id);
1138
+
1139
+			$post->post_tags = $post_tags;
1140
+			$post_tags = explode(",", trim($post->post_tags, ","));
1141
+
1142
+
1143
+			foreach ($post_tags as $post_term) {
1144
+
1145
+				// fix slug creation order for tags & location
1146
+				$post_term = trim($post_term);
1147
+
1148
+				$priority_location = false;
1149
+				if ($insert_term = term_exists($post_term, $post_type . '_tags')) {
1150
+					$term = get_term_by('id', $insert_term['term_id'], $post_type . '_tags');
1151
+				} else {
1152
+					$post_country = isset($_REQUEST['post_country']) && $_REQUEST['post_country'] != '' ? sanitize_text_field($_REQUEST['post_country']) : NULL;
1153
+					$post_region = isset($_REQUEST['post_region']) && $_REQUEST['post_region'] != '' ? sanitize_text_field($_REQUEST['post_region']) : NULL;
1154
+					$post_city = isset($_REQUEST['post_city']) && $_REQUEST['post_city'] != '' ? sanitize_text_field($_REQUEST['post_city']) : NULL;
1155
+					$match_country = $post_country && sanitize_title($post_term) == sanitize_title($post_country) ? true : false;
1156
+					$match_region = $post_region && sanitize_title($post_term) == sanitize_title($post_region) ? true : false;
1157
+					$match_city = $post_city && sanitize_title($post_term) == sanitize_title($post_city) ? true : false;
1158
+					if ($match_country || $match_region || $match_city) {
1159
+						$priority_location = true;
1160
+						$term = get_term_by('name', $post_term, $post_type . '_tags');
1161
+					} else {
1162
+						$insert_term = wp_insert_term($post_term, $post_type . '_tags');
1163
+						$term = get_term_by('name', $post_term, $post_type . '_tags');
1164
+					}
1165
+				}
1166
+
1167
+				if (!is_wp_error($term) && is_object($term)) {
1168
+
1169
+					// fix tag link on detail page
1170
+					if ($priority_location) {
1171
+
1172
+						$tag_link = "<a href=''>$post_term</a>";
1173
+						/**
1174
+						 * Filter the tag name on the details page.
1175
+						 *
1176
+						 * @since 1.5.6
1177
+						 * @param string $tag_link The tag link html.
1178
+						 * @param object $term The tag term object.
1179
+						 */
1180
+						$tag_link = apply_filters('geodir_details_taxonomies_tag_link',$tag_link,$term);
1181
+						$links[] = $tag_link;
1182
+					} else {
1183
+						$tag_link = "<a href='" . esc_attr(get_term_link($term->term_id, $term->taxonomy)) . "'>$term->name</a>";
1184
+						/** This action is documented in geodirectory-template_actions.php */
1185
+						$tag_link = apply_filters('geodir_details_taxonomies_tag_link',$tag_link,$term);
1186
+						$links[] = $tag_link;
1187
+					}
1188
+					$terms[] = $term;
1189
+				}
1190
+				//
1191
+			}
1192
+			if (!isset($listing_label)) {
1193
+				$listing_label = '';
1194
+			}
1195
+			$taxonomies[$post_type . '_tags'] = wp_sprintf(__('%s Tags: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object)$terms);
1196
+		endif;
1197 1197
 
1198
-    }
1198
+	}
1199 1199
 
1200
-    if (!empty($post->{$post_taxonomy})) {
1201
-        $links = array();
1202
-        $terms = array();
1203
-        $termsOrdered = array();
1204
-        if (!is_array($post->{$post_taxonomy})) {
1205
-            $post_term = explode(",", trim($post->{$post_taxonomy}, ","));
1206
-        } else {
1207
-            $post_term = $post->{$post_taxonomy};
1200
+	if (!empty($post->{$post_taxonomy})) {
1201
+		$links = array();
1202
+		$terms = array();
1203
+		$termsOrdered = array();
1204
+		if (!is_array($post->{$post_taxonomy})) {
1205
+			$post_term = explode(",", trim($post->{$post_taxonomy}, ","));
1206
+		} else {
1207
+			$post_term = $post->{$post_taxonomy};
1208 1208
 
1209 1209
 			if ($preview && !$is_backend_preview) {
1210 1210
 				$post_term = geodir_add_parent_terms($post_term, $post_taxonomy);
1211 1211
 			}
1212
-        }
1213
-
1214
-        $post_term = array_unique($post_term);
1215
-        if (!empty($post_term)) {
1216
-            foreach ($post_term as $post_term) {
1217
-                $post_term = trim($post_term);
1218
-
1219
-                if ($post_term != ''):
1220
-                    $term = get_term_by('id', $post_term, $post_taxonomy);
1221
-
1222
-                    if (is_object($term)) {
1223
-                        $term_link = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>$term->name</a>";
1224
-                        /**
1225
-                         * Filter the category name on the details page.
1226
-                         *
1227
-                         * @since 1.5.6
1228
-                         * @param string $term_link The link html to the category.
1229
-                         * @param object $term The category term object.
1230
-                         */
1231
-                        $term_link = apply_filters('geodir_details_taxonomies_cat_link',$term_link,$term);
1232
-                        $links[] = $term_link;
1233
-                        $terms[] = $term;
1234
-                    }
1235
-                endif;
1236
-            }
1237
-            // order alphabetically
1238
-            asort($links);
1239
-            foreach (array_keys($links) as $key) {
1240
-                $termsOrdered[$key] = $terms[$key];
1241
-            }
1242
-            $terms = $termsOrdered;
1212
+		}
1213
+
1214
+		$post_term = array_unique($post_term);
1215
+		if (!empty($post_term)) {
1216
+			foreach ($post_term as $post_term) {
1217
+				$post_term = trim($post_term);
1218
+
1219
+				if ($post_term != ''):
1220
+					$term = get_term_by('id', $post_term, $post_taxonomy);
1221
+
1222
+					if (is_object($term)) {
1223
+						$term_link = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>$term->name</a>";
1224
+						/**
1225
+						 * Filter the category name on the details page.
1226
+						 *
1227
+						 * @since 1.5.6
1228
+						 * @param string $term_link The link html to the category.
1229
+						 * @param object $term The category term object.
1230
+						 */
1231
+						$term_link = apply_filters('geodir_details_taxonomies_cat_link',$term_link,$term);
1232
+						$links[] = $term_link;
1233
+						$terms[] = $term;
1234
+					}
1235
+				endif;
1236
+			}
1237
+			// order alphabetically
1238
+			asort($links);
1239
+			foreach (array_keys($links) as $key) {
1240
+				$termsOrdered[$key] = $terms[$key];
1241
+			}
1242
+			$terms = $termsOrdered;
1243 1243
 
1244
-        }
1244
+		}
1245 1245
 
1246
-        if (!isset($listing_label)) {
1247
-            $listing_label = '';
1248
-        }
1249
-        $taxonomies[$post_taxonomy] = wp_sprintf(__('%s Category: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object)$terms);
1246
+		if (!isset($listing_label)) {
1247
+			$listing_label = '';
1248
+		}
1249
+		$taxonomies[$post_taxonomy] = wp_sprintf(__('%s Category: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object)$terms);
1250 1250
 
1251
-    }
1251
+	}
1252 1252
 
1253
-    /**
1254
-     * Filter the taxonomies array before output.
1255
-     *
1256
-     * @since 1.5.9
1257
-     * @param array $taxonomies The array of cats and tags.
1258
-     * @param string $post_type The post type being output.
1259
-     * @param string $listing_label The post type label.
1260
-     * @param string $listing_label The post type label with ucwords function.
1261
-     */
1262
-    $taxonomies = apply_filters('geodir_details_taxonomies_output',$taxonomies,$post_type,$listing_label,geodir_ucwords($listing_label));
1253
+	/**
1254
+	 * Filter the taxonomies array before output.
1255
+	 *
1256
+	 * @since 1.5.9
1257
+	 * @param array $taxonomies The array of cats and tags.
1258
+	 * @param string $post_type The post type being output.
1259
+	 * @param string $listing_label The post type label.
1260
+	 * @param string $listing_label The post type label with ucwords function.
1261
+	 */
1262
+	$taxonomies = apply_filters('geodir_details_taxonomies_output',$taxonomies,$post_type,$listing_label,geodir_ucwords($listing_label));
1263 1263
 
1264
-    if (isset($taxonomies[$post_taxonomy])) {
1265
-        echo '<span class="geodir-category">' . $taxonomies[$post_taxonomy] . '</span>';
1266
-    }
1264
+	if (isset($taxonomies[$post_taxonomy])) {
1265
+		echo '<span class="geodir-category">' . $taxonomies[$post_taxonomy] . '</span>';
1266
+	}
1267 1267
 
1268
-    if (isset($taxonomies[$post_type . '_tags']))
1269
-        echo '<span class="geodir-tags">' . $taxonomies[$post_type . '_tags'] . '</span>';
1268
+	if (isset($taxonomies[$post_type . '_tags']))
1269
+		echo '<span class="geodir-tags">' . $taxonomies[$post_type . '_tags'] . '</span>';
1270 1270
 
1271
-    ?>
1271
+	?>
1272 1272
     </p><?php
1273 1273
 }
1274 1274
 
@@ -1290,140 +1290,140 @@  discard block
 block discarded – undo
1290 1290
 function geodir_action_details_micordata($post='')
1291 1291
 {
1292 1292
 
1293
-    global $preview;
1294
-    if(empty($post)){global $post;}
1295
-    if ($preview || !geodir_is_page('detail')) {
1296
-        return;
1297
-    }
1298
-
1299
-    // url
1300
-    $c_url = geodir_curPageURL();
1301
-
1302
-    // post reviews
1303
-    $post_reviews = get_comments(array('post_id' => $post->ID, 'status' => 'approve'));
1304
-    if (empty($post_reviews)) {
1305
-        $reviews = '';
1306
-    } else {
1307
-        foreach ($post_reviews as $review) {
1308
-            $reviews[] = array(
1309
-                "@type" => "Review",
1310
-                "author" => $review->comment_author,
1311
-                "datePublished" => $review->comment_date,
1312
-                "description" => $review->comment_content,
1313
-                "reviewRating" => array(
1314
-                    "@type" => "Rating",
1315
-                    "bestRating" => "5",// @todo this will need to be filtered for review manager if user changes the score.
1316
-                    "ratingValue" => geodir_get_commentoverall($review->comment_ID),
1317
-                    "worstRating" => "1"
1318
-                )
1319
-            );
1320
-        }
1321
-
1322
-    }
1323
-
1324
-    // post images
1325
-    $post_images = geodir_get_images($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
1326
-    if (empty($post_images)) {
1327
-        $images = '';
1328
-    } else {
1329
-        $i_arr = array();
1330
-        foreach ($post_images as $img) {
1331
-            $i_arr[] = $img->src;
1332
-        }
1333
-
1334
-        if (count($i_arr) == 1) {
1335
-            $images = $i_arr[0];
1336
-        } else {
1337
-            $images = $i_arr;
1338
-        }
1339
-
1340
-    }
1341
-    //print_r($post);
1342
-    // external links
1343
-    $external_links =  array();
1344
-    $external_links[] = $post->geodir_website;
1345
-    $external_links[] = $post->geodir_twitter;
1346
-    $external_links[] = $post->geodir_facebook;
1347
-    $external_links = array_filter($external_links);
1348
-
1349
-    if(!empty($external_links)){
1350
-        $external_links = array_values($external_links);
1351
-    }
1352
-
1353
-    // reviews
1354
-    $comment_count = geodir_get_review_count_total($post->ID);
1355
-    $post_avgratings = geodir_get_post_rating($post->ID);
1356
-
1357
-    // schema type
1358
-    $schema_type = 'LocalBusiness';
1359
-    if(isset($post->default_category) && $post->default_category){
1360
-        $cat_schema = get_tax_meta($post->default_category, 'ct_cat_schema', false, $post->post_type);
1361
-        if($cat_schema){$schema_type = $cat_schema;}
1362
-        if(!$schema_type && $post->post_type=='gd_event'){$schema_type = 'Event';}
1363
-    }
1364
-
1365
-    $schema = array();
1366
-    $schema['@context'] = "https://schema.org";
1367
-    $schema['@type'] = $schema_type;
1368
-    $schema['name'] = $post->post_title;
1369
-    $schema['description'] = wp_strip_all_tags( $post->post_content, true );
1370
-    $schema['telephone'] = $post->geodir_contact;
1371
-    $schema['url'] = $c_url;
1372
-    $schema['sameAs'] = $external_links;
1373
-    $schema['image'] = $images;
1374
-    $schema['address'] = array(
1375
-        "@type" => "PostalAddress",
1376
-        "streetAddress" => $post->post_address,
1377
-        "addressLocality" => $post->post_city,
1378
-        "addressRegion" => $post->post_region,
1379
-        "addressCountry" => $post->post_country,
1380
-        "postalCode" => $post->post_zip
1381
-    );
1382
-
1383
-    if($post->post_latitude && $post->post_longitude) {
1384
-        $schema['geo'] = array(
1385
-            "@type" => "GeoCoordinates",
1386
-            "latitude" => $post->post_latitude,
1387
-            "longitude" => $post->post_longitude
1388
-        );
1389
-    }
1390
-
1391
-    if($post_avgratings) {
1392
-        $schema['aggregateRating'] = array(
1393
-            "@type" => "AggregateRating",
1394
-            "ratingValue" => $post_avgratings,
1395
-            "bestRating" => "5", // @todo this will need to be filtered for review manager if user changes the score.
1396
-            "worstRating" => "1",
1397
-            "ratingCount" => $comment_count
1398
-        );
1399
-    }
1400
-    $schema['review'] = $reviews;
1401
-
1402
-    /**
1403
-     * Allow the schema JSON-LD info to be filtered.
1404
-     *
1405
-     * @since 1.5.4
1406
-     * @since 1.5.7 Added $post variable.
1407
-     * @param array $schema The array of schema data to be filtered.
1408
-     * @param object $post The post object.
1409
-     */
1410
-    $schema = apply_filters('geodir_details_schema', $schema,$post);
1411
-
1412
-
1413
-    echo '<script type="application/ld+json">' . json_encode($schema) . '</script>';
1414
-
1415
-
1416
-    $uploads = wp_upload_dir();
1417
-    $facebook_og = (isset($post->featured_image) && $post->featured_image) ? '<meta property="og:image" content="'.$uploads['baseurl'].$post->featured_image.'"/>' : '';
1418
-
1419
-    /**
1420
-     * Show facebook open graph meta info
1421
-     *
1422
-     * @since 1.6.6
1423
-     * @param string $facebook_og The open graph html to be filtered.
1424
-     * @param object $post The post object.
1425
-     */
1426
-    echo apply_filters('geodir_details_facebook_og', $facebook_og,$post);
1293
+	global $preview;
1294
+	if(empty($post)){global $post;}
1295
+	if ($preview || !geodir_is_page('detail')) {
1296
+		return;
1297
+	}
1298
+
1299
+	// url
1300
+	$c_url = geodir_curPageURL();
1301
+
1302
+	// post reviews
1303
+	$post_reviews = get_comments(array('post_id' => $post->ID, 'status' => 'approve'));
1304
+	if (empty($post_reviews)) {
1305
+		$reviews = '';
1306
+	} else {
1307
+		foreach ($post_reviews as $review) {
1308
+			$reviews[] = array(
1309
+				"@type" => "Review",
1310
+				"author" => $review->comment_author,
1311
+				"datePublished" => $review->comment_date,
1312
+				"description" => $review->comment_content,
1313
+				"reviewRating" => array(
1314
+					"@type" => "Rating",
1315
+					"bestRating" => "5",// @todo this will need to be filtered for review manager if user changes the score.
1316
+					"ratingValue" => geodir_get_commentoverall($review->comment_ID),
1317
+					"worstRating" => "1"
1318
+				)
1319
+			);
1320
+		}
1321
+
1322
+	}
1323
+
1324
+	// post images
1325
+	$post_images = geodir_get_images($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
1326
+	if (empty($post_images)) {
1327
+		$images = '';
1328
+	} else {
1329
+		$i_arr = array();
1330
+		foreach ($post_images as $img) {
1331
+			$i_arr[] = $img->src;
1332
+		}
1333
+
1334
+		if (count($i_arr) == 1) {
1335
+			$images = $i_arr[0];
1336
+		} else {
1337
+			$images = $i_arr;
1338
+		}
1339
+
1340
+	}
1341
+	//print_r($post);
1342
+	// external links
1343
+	$external_links =  array();
1344
+	$external_links[] = $post->geodir_website;
1345
+	$external_links[] = $post->geodir_twitter;
1346
+	$external_links[] = $post->geodir_facebook;
1347
+	$external_links = array_filter($external_links);
1348
+
1349
+	if(!empty($external_links)){
1350
+		$external_links = array_values($external_links);
1351
+	}
1352
+
1353
+	// reviews
1354
+	$comment_count = geodir_get_review_count_total($post->ID);
1355
+	$post_avgratings = geodir_get_post_rating($post->ID);
1356
+
1357
+	// schema type
1358
+	$schema_type = 'LocalBusiness';
1359
+	if(isset($post->default_category) && $post->default_category){
1360
+		$cat_schema = get_tax_meta($post->default_category, 'ct_cat_schema', false, $post->post_type);
1361
+		if($cat_schema){$schema_type = $cat_schema;}
1362
+		if(!$schema_type && $post->post_type=='gd_event'){$schema_type = 'Event';}
1363
+	}
1364
+
1365
+	$schema = array();
1366
+	$schema['@context'] = "https://schema.org";
1367
+	$schema['@type'] = $schema_type;
1368
+	$schema['name'] = $post->post_title;
1369
+	$schema['description'] = wp_strip_all_tags( $post->post_content, true );
1370
+	$schema['telephone'] = $post->geodir_contact;
1371
+	$schema['url'] = $c_url;
1372
+	$schema['sameAs'] = $external_links;
1373
+	$schema['image'] = $images;
1374
+	$schema['address'] = array(
1375
+		"@type" => "PostalAddress",
1376
+		"streetAddress" => $post->post_address,
1377
+		"addressLocality" => $post->post_city,
1378
+		"addressRegion" => $post->post_region,
1379
+		"addressCountry" => $post->post_country,
1380
+		"postalCode" => $post->post_zip
1381
+	);
1382
+
1383
+	if($post->post_latitude && $post->post_longitude) {
1384
+		$schema['geo'] = array(
1385
+			"@type" => "GeoCoordinates",
1386
+			"latitude" => $post->post_latitude,
1387
+			"longitude" => $post->post_longitude
1388
+		);
1389
+	}
1390
+
1391
+	if($post_avgratings) {
1392
+		$schema['aggregateRating'] = array(
1393
+			"@type" => "AggregateRating",
1394
+			"ratingValue" => $post_avgratings,
1395
+			"bestRating" => "5", // @todo this will need to be filtered for review manager if user changes the score.
1396
+			"worstRating" => "1",
1397
+			"ratingCount" => $comment_count
1398
+		);
1399
+	}
1400
+	$schema['review'] = $reviews;
1401
+
1402
+	/**
1403
+	 * Allow the schema JSON-LD info to be filtered.
1404
+	 *
1405
+	 * @since 1.5.4
1406
+	 * @since 1.5.7 Added $post variable.
1407
+	 * @param array $schema The array of schema data to be filtered.
1408
+	 * @param object $post The post object.
1409
+	 */
1410
+	$schema = apply_filters('geodir_details_schema', $schema,$post);
1411
+
1412
+
1413
+	echo '<script type="application/ld+json">' . json_encode($schema) . '</script>';
1414
+
1415
+
1416
+	$uploads = wp_upload_dir();
1417
+	$facebook_og = (isset($post->featured_image) && $post->featured_image) ? '<meta property="og:image" content="'.$uploads['baseurl'].$post->featured_image.'"/>' : '';
1418
+
1419
+	/**
1420
+	 * Show facebook open graph meta info
1421
+	 *
1422
+	 * @since 1.6.6
1423
+	 * @param string $facebook_og The open graph html to be filtered.
1424
+	 * @param object $post The post object.
1425
+	 */
1426
+	echo apply_filters('geodir_details_facebook_og', $facebook_og,$post);
1427 1427
 
1428 1428
 
1429 1429
 
@@ -1443,7 +1443,7 @@  discard block
 block discarded – undo
1443 1443
  */
1444 1444
 function geodir_action_details_next_prev()
1445 1445
 {
1446
-    ?>
1446
+	?>
1447 1447
     <div class="geodir-pos_navigation clearfix">
1448 1448
     <div
1449 1449
         class="geodir-post_left"><?php previous_post_link('%link', '' . __('Previous', 'geodirectory'), false) ?></div>
@@ -1461,15 +1461,15 @@  discard block
 block discarded – undo
1461 1461
  */
1462 1462
 function geodir_action_before_single_post()
1463 1463
 {
1464
-    global $post;
1465
-    /**
1466
-     * Called at the very start of the details page output, before the title section.
1467
-     *
1468
-     * @since 1.0.0
1469
-     * @param object $post The current post object.
1470
-     * @global WP_Post|null $post The current post, if available.
1471
-     */
1472
-    do_action('geodir_before_single_post', $post); // extra action
1464
+	global $post;
1465
+	/**
1466
+	 * Called at the very start of the details page output, before the title section.
1467
+	 *
1468
+	 * @since 1.0.0
1469
+	 * @param object $post The current post object.
1470
+	 * @global WP_Post|null $post The current post, if available.
1471
+	 */
1472
+	do_action('geodir_before_single_post', $post); // extra action
1473 1473
 }
1474 1474
 
1475 1475
 /**
@@ -1480,13 +1480,13 @@  discard block
 block discarded – undo
1480 1480
  */
1481 1481
 function geodir_action_after_single_post($post)
1482 1482
 {
1483
-    /**
1484
-     * Called on the details page after the details page tabs section and before the next/prev buttons.
1485
-     *
1486
-     * @since 1.0.0
1487
-     * @param object $post The current post object.
1488
-     */
1489
-    do_action('geodir_after_single_post', $post); // extra action
1483
+	/**
1484
+	 * Called on the details page after the details page tabs section and before the next/prev buttons.
1485
+	 *
1486
+	 * @since 1.0.0
1487
+	 * @param object $post The current post object.
1488
+	 */
1489
+	do_action('geodir_after_single_post', $post); // extra action
1490 1490
 }
1491 1491
 
1492 1492
 add_action('geodir_details_main_content', 'geodir_action_before_single_post', 10);
@@ -1512,168 +1512,168 @@  discard block
 block discarded – undo
1512 1512
  */
1513 1513
 function geodir_action_listings_title()
1514 1514
 {
1515
-    global $wp, $term;
1516
-
1517
-    $gd_post_type = geodir_get_current_posttype();
1518
-    $post_type_info = get_post_type_object($gd_post_type);
1515
+	global $wp, $term;
1519 1516
 
1520
-    $add_string_in_title = __('All', 'geodirectory') . ' ';
1521
-    if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
1522
-        $add_string_in_title = __('My Favorite', 'geodirectory') . ' ';
1523
-    }
1517
+	$gd_post_type = geodir_get_current_posttype();
1518
+	$post_type_info = get_post_type_object($gd_post_type);
1524 1519
 
1525
-    $list_title = $add_string_in_title . __($post_type_info->labels->name, 'geodirectory');
1526
-    $single_name = $post_type_info->labels->singular_name;
1520
+	$add_string_in_title = __('All', 'geodirectory') . ' ';
1521
+	if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
1522
+		$add_string_in_title = __('My Favorite', 'geodirectory') . ' ';
1523
+	}
1527 1524
 
1528
-    $taxonomy = geodir_get_taxonomies($gd_post_type, true);
1525
+	$list_title = $add_string_in_title . __($post_type_info->labels->name, 'geodirectory');
1526
+	$single_name = $post_type_info->labels->singular_name;
1529 1527
 
1530
-    $gd_country = get_query_var('gd_country');
1531
-    $gd_region = get_query_var('gd_region');
1532
-    $gd_city = get_query_var('gd_city');
1528
+	$taxonomy = geodir_get_taxonomies($gd_post_type, true);
1533 1529
 
1534
-    if (!empty($term)) {
1535
-        $location_name = '';
1536
-        if ($gd_country != '' || $gd_region != '' || $gd_city != '') {
1537
-            if ($gd_country != '') {
1538
-                $location_name = geodir_sanitize_location_name('gd_country', $gd_country);
1539
-            }
1540
-
1541
-            if ($gd_region != '') {
1542
-                $location_name = geodir_sanitize_location_name('gd_region', $gd_region);
1543
-            }
1544
-
1545
-            if ($gd_city != '') {
1546
-                $location_name = geodir_sanitize_location_name('gd_city', $gd_city);
1547
-            }
1548
-        }
1530
+	$gd_country = get_query_var('gd_country');
1531
+	$gd_region = get_query_var('gd_region');
1532
+	$gd_city = get_query_var('gd_city');
1549 1533
 
1550
-        $current_term = get_term_by('slug', $term, $taxonomy[0]);
1551
-        if (!empty($current_term)) {
1552
-            $current_term_name = __(ucfirst($current_term->name), 'geodirectory');
1553
-            if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type . 'category') {
1554
-                $location_last_char = substr($location_name, -1);
1555
-                $location_name_attach = geodir_strtolower($location_last_char) == 's' ? __("'", 'geodirectory') : __("'s", 'geodirectory');
1556
-                $list_title .= __(' in', 'geodirectory') . ' ' . $location_name . $location_name_attach . ' ' . $current_term_name;
1557
-            } else {
1558
-                $list_title .= __(' in', 'geodirectory') . " '" . $current_term_name . "'";
1559
-            }
1560
-        } else {
1561
-            if (count($taxonomy) > 1) {
1562
-                $current_term = get_term_by('slug', $term, $taxonomy[1]);
1563
-
1564
-                if (!empty($current_term)) {
1565
-                    $current_term_name = __(ucfirst($current_term->name), 'geodirectory');
1566
-                    if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type . 'category') {
1567
-                        $location_last_char = substr($location_name, -1);
1568
-                        $location_name_attach = geodir_strtolower($location_last_char) == 's' ? __("'", 'geodirectory') : __("'s", 'geodirectory');
1569
-                        $list_title .= __(' in', 'geodirectory') . ' ' . $location_name . $location_name_attach . ' ' . $current_term_name;
1570
-                    } else {
1571
-                        $list_title .= __(' in', 'geodirectory') . " '" . $current_term_name . "'";
1572
-                    }
1573
-                }
1574
-            }
1575
-        }
1576
-
1577
-    } else {
1578
-        $gd_country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
1579
-        $gd_region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
1580
-        $gd_city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
1581
-
1582
-        $gd_country_actual = $gd_region_actual = $gd_city_actual = '';
1583
-
1584
-        if (function_exists('get_actual_location_name')) {
1585
-            $gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
1586
-            $gd_region_actual = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
1587
-            $gd_city_actual = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
1588
-        }
1589
-
1590
-        if ($gd_city != '') {
1591
-            if ($gd_city_actual != '') {
1592
-                $gd_city = $gd_city_actual;
1593
-            } else {
1594
-                $gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
1595
-                $gd_city = preg_replace('/[_-]/', ' ', $gd_city);
1596
-                $gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
1597
-            }
1598
-
1599
-            $list_title .= __(' in', 'geodirectory') . " '" . $gd_city . "'";
1600
-        } else if ($gd_region != '') {
1601
-            if ($gd_region_actual != '') {
1602
-                $gd_region = $gd_region_actual;
1603
-            } else {
1604
-                $gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
1605
-                $gd_region = preg_replace('/[_-]/', ' ', $gd_region);
1606
-                $gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
1607
-            }
1608
-
1609
-            $list_title .= __(' in', 'geodirectory') . " '" . $gd_region . "'";
1610
-        } else if ($gd_country != '') {
1611
-            if ($gd_country_actual != '') {
1612
-                $gd_country = $gd_country_actual;
1613
-            } else {
1614
-                $gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
1615
-                $gd_country = preg_replace('/[_-]/', ' ', $gd_country);
1616
-                $gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
1617
-            }
1618
-
1619
-            $list_title .= __(' in', 'geodirectory') . " '" . $gd_country . "'";
1620
-        }
1621
-    }
1622
-
1623
-    if (is_search()) {
1624
-        $list_title = __('Search', 'geodirectory') . ' ' . __(ucfirst($post_type_info->labels->name), 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
1625
-    }
1626
-    /** This action is documented in geodirectory_template_actions.php */
1627
-    $class = apply_filters('geodir_page_title_class', 'entry-title fn');
1628
-    /** This action is documented in geodirectory_template_actions.php */
1629
-    $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
1630
-
1631
-
1632
-    $title = $list_title;
1633
-    $gd_page = '';
1634
-    if(geodir_is_page('pt')){
1635
-        $gd_page = 'pt';
1636
-        $title  = (get_option('geodir_page_title_pt')) ? get_option('geodir_page_title_pt') : $title;
1637
-    }
1638
-    elseif(geodir_is_page('listing')){
1639
-        $gd_page = 'listing';
1640
-        global $wp_query;
1641
-        $current_term = $wp_query->get_queried_object();
1642
-        if (strpos($current_term->taxonomy,'_tags') !== false) {
1643
-            $title = (get_option('geodir_page_title_tag-listing')) ? get_option('geodir_page_title_tag-listing') : $title;
1644
-        }else{
1645
-            $title = (get_option('geodir_page_title_cat-listing')) ? get_option('geodir_page_title_cat-listing') : $title;
1646
-        }
1534
+	if (!empty($term)) {
1535
+		$location_name = '';
1536
+		if ($gd_country != '' || $gd_region != '' || $gd_city != '') {
1537
+			if ($gd_country != '') {
1538
+				$location_name = geodir_sanitize_location_name('gd_country', $gd_country);
1539
+			}
1647 1540
 
1648
-    }
1649
-    elseif(geodir_is_page('author')){
1650
-        $gd_page = 'author';
1651
-        if(isset($_REQUEST['list']) && $_REQUEST['list']=='favourite'){
1652
-            $title = (get_option('geodir_page_title_favorite')) ? get_option('geodir_page_title_favorite') : $title;
1653
-        }else{
1654
-            $title = (get_option('geodir_page_title_author')) ? get_option('geodir_page_title_author') : $title;
1655
-        }
1541
+			if ($gd_region != '') {
1542
+				$location_name = geodir_sanitize_location_name('gd_region', $gd_region);
1543
+			}
1656 1544
 
1657
-    }
1545
+			if ($gd_city != '') {
1546
+				$location_name = geodir_sanitize_location_name('gd_city', $gd_city);
1547
+			}
1548
+		}
1549
+
1550
+		$current_term = get_term_by('slug', $term, $taxonomy[0]);
1551
+		if (!empty($current_term)) {
1552
+			$current_term_name = __(ucfirst($current_term->name), 'geodirectory');
1553
+			if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type . 'category') {
1554
+				$location_last_char = substr($location_name, -1);
1555
+				$location_name_attach = geodir_strtolower($location_last_char) == 's' ? __("'", 'geodirectory') : __("'s", 'geodirectory');
1556
+				$list_title .= __(' in', 'geodirectory') . ' ' . $location_name . $location_name_attach . ' ' . $current_term_name;
1557
+			} else {
1558
+				$list_title .= __(' in', 'geodirectory') . " '" . $current_term_name . "'";
1559
+			}
1560
+		} else {
1561
+			if (count($taxonomy) > 1) {
1562
+				$current_term = get_term_by('slug', $term, $taxonomy[1]);
1563
+
1564
+				if (!empty($current_term)) {
1565
+					$current_term_name = __(ucfirst($current_term->name), 'geodirectory');
1566
+					if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type . 'category') {
1567
+						$location_last_char = substr($location_name, -1);
1568
+						$location_name_attach = geodir_strtolower($location_last_char) == 's' ? __("'", 'geodirectory') : __("'s", 'geodirectory');
1569
+						$list_title .= __(' in', 'geodirectory') . ' ' . $location_name . $location_name_attach . ' ' . $current_term_name;
1570
+					} else {
1571
+						$list_title .= __(' in', 'geodirectory') . " '" . $current_term_name . "'";
1572
+					}
1573
+				}
1574
+			}
1575
+		}
1576
+
1577
+	} else {
1578
+		$gd_country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
1579
+		$gd_region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
1580
+		$gd_city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
1581
+
1582
+		$gd_country_actual = $gd_region_actual = $gd_city_actual = '';
1583
+
1584
+		if (function_exists('get_actual_location_name')) {
1585
+			$gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
1586
+			$gd_region_actual = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
1587
+			$gd_city_actual = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
1588
+		}
1589
+
1590
+		if ($gd_city != '') {
1591
+			if ($gd_city_actual != '') {
1592
+				$gd_city = $gd_city_actual;
1593
+			} else {
1594
+				$gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
1595
+				$gd_city = preg_replace('/[_-]/', ' ', $gd_city);
1596
+				$gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
1597
+			}
1658 1598
 
1599
+			$list_title .= __(' in', 'geodirectory') . " '" . $gd_city . "'";
1600
+		} else if ($gd_region != '') {
1601
+			if ($gd_region_actual != '') {
1602
+				$gd_region = $gd_region_actual;
1603
+			} else {
1604
+				$gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
1605
+				$gd_region = preg_replace('/[_-]/', ' ', $gd_region);
1606
+				$gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
1607
+			}
1659 1608
 
1660
-    /**
1661
-     * Filter page title to replace variables.
1662
-     *
1663
-     * @since 1.5.4
1664
-     * @param string $title The page title including variables.
1665
-     * @param string $gd_page The GeoDirectory page type if any.
1666
-     */
1667
-    $title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
1609
+			$list_title .= __(' in', 'geodirectory') . " '" . $gd_region . "'";
1610
+		} else if ($gd_country != '') {
1611
+			if ($gd_country_actual != '') {
1612
+				$gd_country = $gd_country_actual;
1613
+			} else {
1614
+				$gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
1615
+				$gd_country = preg_replace('/[_-]/', ' ', $gd_country);
1616
+				$gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
1617
+			}
1668 1618
 
1669
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
1670
-        /**
1671
-         * Filter the listing page title.
1672
-         *
1673
-         * @since 1.0.0
1674
-         * @param string $list_title The title for the category page.
1675
-         */
1676
-        apply_filters('geodir_listing_page_title', $title) . '</h1></header>';
1619
+			$list_title .= __(' in', 'geodirectory') . " '" . $gd_country . "'";
1620
+		}
1621
+	}
1622
+
1623
+	if (is_search()) {
1624
+		$list_title = __('Search', 'geodirectory') . ' ' . __(ucfirst($post_type_info->labels->name), 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
1625
+	}
1626
+	/** This action is documented in geodirectory_template_actions.php */
1627
+	$class = apply_filters('geodir_page_title_class', 'entry-title fn');
1628
+	/** This action is documented in geodirectory_template_actions.php */
1629
+	$class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
1630
+
1631
+
1632
+	$title = $list_title;
1633
+	$gd_page = '';
1634
+	if(geodir_is_page('pt')){
1635
+		$gd_page = 'pt';
1636
+		$title  = (get_option('geodir_page_title_pt')) ? get_option('geodir_page_title_pt') : $title;
1637
+	}
1638
+	elseif(geodir_is_page('listing')){
1639
+		$gd_page = 'listing';
1640
+		global $wp_query;
1641
+		$current_term = $wp_query->get_queried_object();
1642
+		if (strpos($current_term->taxonomy,'_tags') !== false) {
1643
+			$title = (get_option('geodir_page_title_tag-listing')) ? get_option('geodir_page_title_tag-listing') : $title;
1644
+		}else{
1645
+			$title = (get_option('geodir_page_title_cat-listing')) ? get_option('geodir_page_title_cat-listing') : $title;
1646
+		}
1647
+
1648
+	}
1649
+	elseif(geodir_is_page('author')){
1650
+		$gd_page = 'author';
1651
+		if(isset($_REQUEST['list']) && $_REQUEST['list']=='favourite'){
1652
+			$title = (get_option('geodir_page_title_favorite')) ? get_option('geodir_page_title_favorite') : $title;
1653
+		}else{
1654
+			$title = (get_option('geodir_page_title_author')) ? get_option('geodir_page_title_author') : $title;
1655
+		}
1656
+
1657
+	}
1658
+
1659
+
1660
+	/**
1661
+	 * Filter page title to replace variables.
1662
+	 *
1663
+	 * @since 1.5.4
1664
+	 * @param string $title The page title including variables.
1665
+	 * @param string $gd_page The GeoDirectory page type if any.
1666
+	 */
1667
+	$title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
1668
+
1669
+	echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
1670
+		/**
1671
+		 * Filter the listing page title.
1672
+		 *
1673
+		 * @since 1.0.0
1674
+		 * @param string $list_title The title for the category page.
1675
+		 */
1676
+		apply_filters('geodir_listing_page_title', $title) . '</h1></header>';
1677 1677
 }
1678 1678
 
1679 1679
 add_action('geodir_listings_page_description', 'geodir_action_listings_description', 10);
@@ -1686,46 +1686,46 @@  discard block
 block discarded – undo
1686 1686
  */
1687 1687
 function geodir_action_listings_description()
1688 1688
 {
1689
-    global $wp_query;
1690
-    $current_term = $wp_query->get_queried_object();
1689
+	global $wp_query;
1690
+	$current_term = $wp_query->get_queried_object();
1691 1691
 
1692
-    $gd_post_type = geodir_get_current_posttype();
1693
-    if (isset($current_term->term_id) && $current_term->term_id != '') {
1692
+	$gd_post_type = geodir_get_current_posttype();
1693
+	if (isset($current_term->term_id) && $current_term->term_id != '') {
1694 1694
 
1695
-        $term_desc = term_description($current_term->term_id, $gd_post_type . '_tags');
1696
-        $saved_data = stripslashes(get_tax_meta($current_term->term_id, 'ct_cat_top_desc', false, $gd_post_type));
1697
-        if ($term_desc && !$saved_data) {
1698
-            $saved_data = $term_desc;
1699
-        }
1695
+		$term_desc = term_description($current_term->term_id, $gd_post_type . '_tags');
1696
+		$saved_data = stripslashes(get_tax_meta($current_term->term_id, 'ct_cat_top_desc', false, $gd_post_type));
1697
+		if ($term_desc && !$saved_data) {
1698
+			$saved_data = $term_desc;
1699
+		}
1700 1700
 
1701
-        // stop payment manager filtering content length
1702
-        $filter_priority = has_filter( 'the_content', 'geodir_payments_the_content' );
1703
-        if ( false !== $filter_priority ) {
1704
-            remove_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1705
-        }
1701
+		// stop payment manager filtering content length
1702
+		$filter_priority = has_filter( 'the_content', 'geodir_payments_the_content' );
1703
+		if ( false !== $filter_priority ) {
1704
+			remove_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1705
+		}
1706 1706
 
1707
-        /**
1708
-         * Apply the core filter `the_content` filter to the variable string.
1709
-         *
1710
-         * This is a WordPress core filter that does many things.
1711
-         *
1712
-         * @since 1.0.0
1713
-         * @param string $var The string to apply the filter to.
1714
-         */
1715
-        $cat_description = apply_filters('the_content', $saved_data);
1707
+		/**
1708
+		 * Apply the core filter `the_content` filter to the variable string.
1709
+		 *
1710
+		 * This is a WordPress core filter that does many things.
1711
+		 *
1712
+		 * @since 1.0.0
1713
+		 * @param string $var The string to apply the filter to.
1714
+		 */
1715
+		$cat_description = apply_filters('the_content', $saved_data);
1716 1716
 
1717 1717
 
1718
-        if ( false !== $filter_priority ) {
1719
-            add_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1720
-        }
1718
+		if ( false !== $filter_priority ) {
1719
+			add_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1720
+		}
1721 1721
 
1722
-        if ($cat_description) {
1723
-            ?>
1722
+		if ($cat_description) {
1723
+			?>
1724 1724
 
1725 1725
             <div class="term_description"><?php echo $cat_description;?></div> <?php
1726
-        }
1726
+		}
1727 1727
 
1728
-    }
1728
+	}
1729 1729
 }
1730 1730
 
1731 1731
 // action for adding the listings page top widget area
@@ -1744,11 +1744,11 @@  discard block
 block discarded – undo
1744 1744
  */
1745 1745
 function geodir_action_geodir_sidebar_listings_top()
1746 1746
 {
1747
-    if (get_option('geodir_show_listing_top_section')) { ?>
1747
+	if (get_option('geodir_show_listing_top_section')) { ?>
1748 1748
         <div
1749 1749
             class="<?php
1750
-            /** This action is documented in geodirectory_template_actions.php */
1751
-            echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_listing_top'); ?>">
1750
+			/** This action is documented in geodirectory_template_actions.php */
1751
+			echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_listing_top'); ?>">
1752 1752
             <?php dynamic_sidebar('geodir_listing_top'); ?>
1753 1753
         </div><!-- clearfix ends here-->
1754 1754
     <?php }
@@ -1771,35 +1771,35 @@  discard block
 block discarded – undo
1771 1771
  */
1772 1772
 function geodir_action_sidebar_left_open($type = '', $id = '', $class = '', $itemtype = '')
1773 1773
 {
1774
-    if ($type == 'home-page' && $width = get_option('geodir_width_home_left_section')) {
1775
-        $width_css = 'style="width:' . $width . '%;"';
1776
-    } elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_left_section')) {
1777
-        $width_css = 'style="width:' . $width . '%;"';
1778
-    } elseif ($type == 'search-page' && $width = get_option('geodir_width_search_left_section')) {
1779
-        $width_css = 'style="width:' . $width . '%;"';
1780
-    } elseif ($type == 'author-page' && $width = get_option('geodir_width_author_left_section')) {
1781
-        $width_css = 'style="width:' . $width . '%;"';
1782
-    } else {
1783
-        $width_css = '';
1784
-    }
1785
-
1786
-    $tc = get_option('theme_compatibility_setting');
1787
-    if (!empty($tc['geodir_sidebar_left_open_replace'])) {
1788
-        $text = $tc['geodir_sidebar_left_open_replace'];
1789
-    } else {
1790
-        $text = '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>';
1791
-    }
1792
-
1793
-    if (!empty($tc['geodir_sidebar_left_open_id'])) {
1794
-        $id = $tc['geodir_sidebar_left_open_id'];
1795
-    }
1796
-    if (!empty($tc['geodir_sidebar_left_open_class'])) {
1797
-        $class = $tc['geodir_sidebar_left_open_class'];
1798
-    }
1799
-
1800
-    $text = str_replace(array("[id]", "[class]", "[itemtype]", "[width_css]"), array($id, $class, $itemtype, $width_css), $text);
1801
-
1802
-    echo $text;
1774
+	if ($type == 'home-page' && $width = get_option('geodir_width_home_left_section')) {
1775
+		$width_css = 'style="width:' . $width . '%;"';
1776
+	} elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_left_section')) {
1777
+		$width_css = 'style="width:' . $width . '%;"';
1778
+	} elseif ($type == 'search-page' && $width = get_option('geodir_width_search_left_section')) {
1779
+		$width_css = 'style="width:' . $width . '%;"';
1780
+	} elseif ($type == 'author-page' && $width = get_option('geodir_width_author_left_section')) {
1781
+		$width_css = 'style="width:' . $width . '%;"';
1782
+	} else {
1783
+		$width_css = '';
1784
+	}
1785
+
1786
+	$tc = get_option('theme_compatibility_setting');
1787
+	if (!empty($tc['geodir_sidebar_left_open_replace'])) {
1788
+		$text = $tc['geodir_sidebar_left_open_replace'];
1789
+	} else {
1790
+		$text = '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>';
1791
+	}
1792
+
1793
+	if (!empty($tc['geodir_sidebar_left_open_id'])) {
1794
+		$id = $tc['geodir_sidebar_left_open_id'];
1795
+	}
1796
+	if (!empty($tc['geodir_sidebar_left_open_class'])) {
1797
+		$class = $tc['geodir_sidebar_left_open_class'];
1798
+	}
1799
+
1800
+	$text = str_replace(array("[id]", "[class]", "[itemtype]", "[width_css]"), array($id, $class, $itemtype, $width_css), $text);
1801
+
1802
+	echo $text;
1803 1803
 }
1804 1804
 
1805 1805
 // action for adding the primary div closing tag
@@ -1815,13 +1815,13 @@  discard block
 block discarded – undo
1815 1815
  */
1816 1816
 function geodir_action_sidebar_left_close($type = '')
1817 1817
 {
1818
-    $tc = get_option('theme_compatibility_setting');
1819
-    if (!empty($tc['geodir_sidebar_left_close_replace'])) {
1820
-        $text = $tc['geodir_sidebar_left_close_replace'];
1821
-    } else {
1822
-        $text = '</aside><!-- sidebar ends here-->';
1823
-    }
1824
-    echo $text;
1818
+	$tc = get_option('theme_compatibility_setting');
1819
+	if (!empty($tc['geodir_sidebar_left_close_replace'])) {
1820
+		$text = $tc['geodir_sidebar_left_close_replace'];
1821
+	} else {
1822
+		$text = '</aside><!-- sidebar ends here-->';
1823
+	}
1824
+	echo $text;
1825 1825
 }
1826 1826
 
1827 1827
 /**
@@ -1834,7 +1834,7 @@  discard block
 block discarded – undo
1834 1834
  */
1835 1835
 function geodir_listing_left_section()
1836 1836
 {
1837
-    if (get_option('geodir_show_listing_left_section')) { ?>
1837
+	if (get_option('geodir_show_listing_left_section')) { ?>
1838 1838
         <div class="geodir-content-left geodir-sidebar-wrap">
1839 1839
             <?php dynamic_sidebar('geodir_listing_left_sidebar'); ?>
1840 1840
         </div><!-- end geodir-content-left -->
@@ -1852,20 +1852,20 @@  discard block
 block discarded – undo
1852 1852
  */
1853 1853
 function geodir_action_listings_sidebar_left()
1854 1854
 {
1855
-    if (get_option('geodir_show_listing_left_section')) {
1856
-        /** This action is documented in geodirectory_template_actions.php */
1857
-        do_action('geodir_sidebar_left_open', 'listings-page', 'geodir-sidebar-left', 'geodir-sidebar-left geodir-listings-sidebar-left', 'https://schema.org/WPSideBar');
1858
-        /**
1859
-         * Calls the listings page (category) left sidebar content.
1860
-         *
1861
-         * All the content for the listings page left sidebar is added via this hook.
1862
-         *
1863
-         * @since 1.0.0
1864
-         */
1865
-        do_action('geodir_listings_sidebar_left_inside');
1866
-        /** This action is documented in geodirectory_template_actions.php */
1867
-        do_action('geodir_sidebar_left_close', 'listings-page');
1868
-    }
1855
+	if (get_option('geodir_show_listing_left_section')) {
1856
+		/** This action is documented in geodirectory_template_actions.php */
1857
+		do_action('geodir_sidebar_left_open', 'listings-page', 'geodir-sidebar-left', 'geodir-sidebar-left geodir-listings-sidebar-left', 'https://schema.org/WPSideBar');
1858
+		/**
1859
+		 * Calls the listings page (category) left sidebar content.
1860
+		 *
1861
+		 * All the content for the listings page left sidebar is added via this hook.
1862
+		 *
1863
+		 * @since 1.0.0
1864
+		 */
1865
+		do_action('geodir_listings_sidebar_left_inside');
1866
+		/** This action is documented in geodirectory_template_actions.php */
1867
+		do_action('geodir_sidebar_left_close', 'listings-page');
1868
+	}
1869 1869
 }
1870 1870
 
1871 1871
 /**
@@ -1878,7 +1878,7 @@  discard block
 block discarded – undo
1878 1878
  */
1879 1879
 function geodir_listing_right_section()
1880 1880
 {
1881
-    if (get_option('geodir_show_listing_right_section')) { ?>
1881
+	if (get_option('geodir_show_listing_right_section')) { ?>
1882 1882
         <div class="geodir-content-right geodir-sidebar-wrap">
1883 1883
             <?php dynamic_sidebar('geodir_listing_right_sidebar'); ?>
1884 1884
         </div><!-- end geodir-content-right -->
@@ -1896,20 +1896,20 @@  discard block
 block discarded – undo
1896 1896
  */
1897 1897
 function geodir_action_listings_sidebar_right()
1898 1898
 {
1899
-    if (get_option('geodir_show_listing_right_section')) {
1900
-        /** This action is documented in geodirectory_template_actions.php */
1901
-        do_action('geodir_sidebar_right_open', 'listings-page', 'geodir-sidebar-right', 'geodir-sidebar-right geodir-listings-sidebar-right', 'http://schema.org/WPSideBar');
1902
-        /**
1903
-         * Calls the listings page (category) right sidebar content.
1904
-         *
1905
-         * All the content for the listings page right sidebar is added via this hook.
1906
-         *
1907
-         * @since 1.0.0
1908
-         */
1909
-        do_action('geodir_listings_sidebar_right_inside');
1910
-        /** This action is documented in geodirectory_template_actions.php */
1911
-        do_action('geodir_sidebar_right_close', 'listings-page');
1912
-    }
1899
+	if (get_option('geodir_show_listing_right_section')) {
1900
+		/** This action is documented in geodirectory_template_actions.php */
1901
+		do_action('geodir_sidebar_right_open', 'listings-page', 'geodir-sidebar-right', 'geodir-sidebar-right geodir-listings-sidebar-right', 'http://schema.org/WPSideBar');
1902
+		/**
1903
+		 * Calls the listings page (category) right sidebar content.
1904
+		 *
1905
+		 * All the content for the listings page right sidebar is added via this hook.
1906
+		 *
1907
+		 * @since 1.0.0
1908
+		 */
1909
+		do_action('geodir_listings_sidebar_right_inside');
1910
+		/** This action is documented in geodirectory_template_actions.php */
1911
+		do_action('geodir_sidebar_right_close', 'listings-page');
1912
+	}
1913 1913
 }
1914 1914
 
1915 1915
 
@@ -1926,23 +1926,23 @@  discard block
 block discarded – undo
1926 1926
  */
1927 1927
 function geodir_action_main_content_open($type = '', $id = '', $class = '')
1928 1928
 {
1929
-    $tc = get_option('theme_compatibility_setting');
1930
-    if (!empty($tc['geodir_main_content_open_replace'])) {
1931
-        $text = $tc['geodir_main_content_open_replace'];
1932
-    } else {
1933
-        $text = '<main id="[id]" class="[class]" role="main">';
1934
-    }
1929
+	$tc = get_option('theme_compatibility_setting');
1930
+	if (!empty($tc['geodir_main_content_open_replace'])) {
1931
+		$text = $tc['geodir_main_content_open_replace'];
1932
+	} else {
1933
+		$text = '<main id="[id]" class="[class]" role="main">';
1934
+	}
1935 1935
 
1936
-    if (!empty($tc['geodir_main_content_open_id'])) {
1937
-        $id = $tc['geodir_main_content_open_id'];
1938
-    }
1939
-    if (!empty($tc['geodir_main_content_open_class'])) {
1940
-        $class = $tc['geodir_main_content_open_class'];
1941
-    }
1936
+	if (!empty($tc['geodir_main_content_open_id'])) {
1937
+		$id = $tc['geodir_main_content_open_id'];
1938
+	}
1939
+	if (!empty($tc['geodir_main_content_open_class'])) {
1940
+		$class = $tc['geodir_main_content_open_class'];
1941
+	}
1942 1942
 
1943
-    $text = str_replace(array("[id]", "[class]"), array($id, $class), $text);
1943
+	$text = str_replace(array("[id]", "[class]"), array($id, $class), $text);
1944 1944
 
1945
-    echo $text;
1945
+	echo $text;
1946 1946
 }
1947 1947
 
1948 1948
 // action for adding the primary div closing tag
@@ -1955,13 +1955,13 @@  discard block
 block discarded – undo
1955 1955
  */
1956 1956
 function geodir_action_main_content_close()
1957 1957
 {
1958
-    $tc = get_option('theme_compatibility_setting');
1959
-    if (!empty($tc['geodir_main_content_close_replace'])) {
1960
-        $text = $tc['geodir_main_content_close_replace'];
1961
-    } else {
1962
-        $text = '</main><!-- main ends here-->';
1963
-    }
1964
-    echo $text;
1958
+	$tc = get_option('theme_compatibility_setting');
1959
+	if (!empty($tc['geodir_main_content_close_replace'])) {
1960
+		$text = $tc['geodir_main_content_close_replace'];
1961
+	} else {
1962
+		$text = '</main><!-- main ends here-->';
1963
+	}
1964
+	echo $text;
1965 1965
 }
1966 1966
 
1967 1967
 /**
@@ -1973,14 +1973,14 @@  discard block
 block discarded – undo
1973 1973
  */
1974 1974
 function geodir_action_listings_content_inside()
1975 1975
 {
1976
-    global $gridview_columns;
1977
-    $listing_view = get_option('geodir_listing_view');
1978
-    if (strstr($listing_view, 'gridview')) {
1979
-        $gridview_columns = $listing_view;
1980
-        $listing_view_exp = explode('_', $listing_view);
1981
-        $listing_view = $listing_view_exp[0];
1982
-    }
1983
-    geodir_get_template_part('listing', 'listview');
1976
+	global $gridview_columns;
1977
+	$listing_view = get_option('geodir_listing_view');
1978
+	if (strstr($listing_view, 'gridview')) {
1979
+		$gridview_columns = $listing_view;
1980
+		$listing_view_exp = explode('_', $listing_view);
1981
+		$listing_view = $listing_view_exp[0];
1982
+	}
1983
+	geodir_get_template_part('listing', 'listview');
1984 1984
 }
1985 1985
 
1986 1986
 add_action('geodir_listings_content_inside', 'geodir_action_listings_content_inside', 10);
@@ -1996,47 +1996,47 @@  discard block
 block discarded – undo
1996 1996
  */
1997 1997
 function geodir_action_listings_content()
1998 1998
 {
1999
-    /**
2000
-     * This is used to add HTML opening wrappers to the main content of most pages including listings, author, search, home etc.
2001
-     *
2002
-     * @since 1.0.0
2003
-     * @param string $type The page type. Values can be 'listings-page', 'author-page', 'search-page' or 'home-page'.
2004
-     * @param string $id The id for the div. Usually 'geodir-main-content'.
2005
-     * @param string $class The class for the div. Values can be 'listings-page', 'author-page', 'search-page' or 'home-page'.
2006
-     * @see 'geodir_main_content_close' Where the oposing closing tag is added.
2007
-     */
2008
-    do_action('geodir_main_content_open', 'listings-page', 'geodir-main-content', 'listings-page');
2009
-    $extra_class = apply_filters('geodir_before_listing_wrapper_extra_class', '', 'listings-page');
2010
-    echo '<div class="clearfix '.$extra_class.'">';
2011
-    /**
2012
-     * Called before the listings page content, inside the outer wrapper. Used on listings pages and search and author pages.
2013
-     *
2014
-     * @since 1.0.0
2015
-     */
2016
-    do_action('geodir_before_listing');
2017
-    echo '</div>';
2018
-
2019
-    /**
2020
-     * This actions calls the listings list content. Used on listings pages and search and author pages.
2021
-     *
2022
-     * @since 1.0.0
2023
-     */
2024
-    do_action('geodir_listings_content_inside');
2025
-
2026
-    /**
2027
-     * Called after the listings content, inside the outer wrapper HTML. Used on listings pages and search and author pages.
2028
-     *
2029
-     * @since 1.0.0
2030
-     */
2031
-    do_action('geodir_after_listing');
2032
-
2033
-    /**
2034
-     * This is used to add HTML closing wrappers to the main content of most pages including listings, author, search, home etc.
2035
-     *
2036
-     * @since 1.0.0
2037
-     * @see 'geodir_main_content_open' Where the oposing opening tag is added.
2038
-     */
2039
-    do_action('geodir_main_content_close', 'listings-page');
1999
+	/**
2000
+	 * This is used to add HTML opening wrappers to the main content of most pages including listings, author, search, home etc.
2001
+	 *
2002
+	 * @since 1.0.0
2003
+	 * @param string $type The page type. Values can be 'listings-page', 'author-page', 'search-page' or 'home-page'.
2004
+	 * @param string $id The id for the div. Usually 'geodir-main-content'.
2005
+	 * @param string $class The class for the div. Values can be 'listings-page', 'author-page', 'search-page' or 'home-page'.
2006
+	 * @see 'geodir_main_content_close' Where the oposing closing tag is added.
2007
+	 */
2008
+	do_action('geodir_main_content_open', 'listings-page', 'geodir-main-content', 'listings-page');
2009
+	$extra_class = apply_filters('geodir_before_listing_wrapper_extra_class', '', 'listings-page');
2010
+	echo '<div class="clearfix '.$extra_class.'">';
2011
+	/**
2012
+	 * Called before the listings page content, inside the outer wrapper. Used on listings pages and search and author pages.
2013
+	 *
2014
+	 * @since 1.0.0
2015
+	 */
2016
+	do_action('geodir_before_listing');
2017
+	echo '</div>';
2018
+
2019
+	/**
2020
+	 * This actions calls the listings list content. Used on listings pages and search and author pages.
2021
+	 *
2022
+	 * @since 1.0.0
2023
+	 */
2024
+	do_action('geodir_listings_content_inside');
2025
+
2026
+	/**
2027
+	 * Called after the listings content, inside the outer wrapper HTML. Used on listings pages and search and author pages.
2028
+	 *
2029
+	 * @since 1.0.0
2030
+	 */
2031
+	do_action('geodir_after_listing');
2032
+
2033
+	/**
2034
+	 * This is used to add HTML closing wrappers to the main content of most pages including listings, author, search, home etc.
2035
+	 *
2036
+	 * @since 1.0.0
2037
+	 * @see 'geodir_main_content_open' Where the oposing opening tag is added.
2038
+	 */
2039
+	do_action('geodir_main_content_close', 'listings-page');
2040 2040
 }
2041 2041
 
2042 2042
 
@@ -2051,10 +2051,10 @@  discard block
 block discarded – undo
2051 2051
  */
2052 2052
 function geodir_action_sidebar_listings_bottom_section()
2053 2053
 {
2054
-    if (get_option('geodir_show_listing_bottom_section')) { ?>
2054
+	if (get_option('geodir_show_listing_bottom_section')) { ?>
2055 2055
         <div class="<?php
2056
-            /** This action is documented in geodirectory_template_actions.php */
2057
-            echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_listing_bottom'); ?>">
2056
+			/** This action is documented in geodirectory_template_actions.php */
2057
+			echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_listing_bottom'); ?>">
2058 2058
             <?php dynamic_sidebar('geodir_listing_bottom'); ?>
2059 2059
         </div><!-- clearfix ends here-->
2060 2060
     <?php }
@@ -2074,38 +2074,38 @@  discard block
 block discarded – undo
2074 2074
  */
2075 2075
 function geodir_action_add_listing_page_title()
2076 2076
 {
2077
-    if (isset($_REQUEST['listing_type']) && $_REQUEST['listing_type'] != '')
2078
-        $listing_type = sanitize_text_field($_REQUEST['listing_type']);
2079
-    /** This action is documented in geodirectory_template_actions.php */
2080
-    $class = apply_filters('geodir_page_title_class', 'entry-title fn');
2081
-    /** This action is documented in geodirectory_template_actions.php */
2082
-    $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
2083
-
2084
-    $title = apply_filters('geodir_add_listing_page_title_text', get_the_title());
2085
-
2086
-    if(geodir_is_page('add-listing')){
2087
-        $gd_page = 'add-listing';
2088
-        if(isset($_REQUEST['pid']) && $_REQUEST['pid'] != ''){
2089
-            $title = (get_option('geodir_page_title_edit-listing')) ? get_option('geodir_page_title_edit-listing') : $title;
2090
-        }elseif(isset($listing_type)){
2091
-            $title = (get_option('geodir_page_title_add-listing')) ? get_option('geodir_page_title_add-listing') : $title;
2092
-        }
2077
+	if (isset($_REQUEST['listing_type']) && $_REQUEST['listing_type'] != '')
2078
+		$listing_type = sanitize_text_field($_REQUEST['listing_type']);
2079
+	/** This action is documented in geodirectory_template_actions.php */
2080
+	$class = apply_filters('geodir_page_title_class', 'entry-title fn');
2081
+	/** This action is documented in geodirectory_template_actions.php */
2082
+	$class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
2093 2083
 
2094
-    }
2084
+	$title = apply_filters('geodir_add_listing_page_title_text', get_the_title());
2095 2085
 
2086
+	if(geodir_is_page('add-listing')){
2087
+		$gd_page = 'add-listing';
2088
+		if(isset($_REQUEST['pid']) && $_REQUEST['pid'] != ''){
2089
+			$title = (get_option('geodir_page_title_edit-listing')) ? get_option('geodir_page_title_edit-listing') : $title;
2090
+		}elseif(isset($listing_type)){
2091
+			$title = (get_option('geodir_page_title_add-listing')) ? get_option('geodir_page_title_add-listing') : $title;
2092
+		}
2096 2093
 
2097
-    /**
2098
-     * Filter page title to replace variables.
2099
-     *
2100
-     * @since 1.5.4
2101
-     * @param string $title The page title including variables.
2102
-     * @param string $gd_page The GeoDirectory page type if any.
2103
-     */
2104
-    $title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2094
+	}
2105 2095
 
2106
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">';
2107
-    echo $title;
2108
-    echo '</h1></header>';
2096
+
2097
+	/**
2098
+	 * Filter page title to replace variables.
2099
+	 *
2100
+	 * @since 1.5.4
2101
+	 * @param string $title The page title including variables.
2102
+	 * @param string $gd_page The GeoDirectory page type if any.
2103
+	 */
2104
+	$title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2105
+
2106
+	echo '<header class="' . $class_header . '"><h1 class="' . $class . '">';
2107
+	echo $title;
2108
+	echo '</h1></header>';
2109 2109
 }
2110 2110
 
2111 2111
 add_action('geodir_add_listing_page_mandatory', 'geodir_action_add_listing_page_mandatory', 10);
@@ -2136,61 +2136,61 @@  discard block
 block discarded – undo
2136 2136
  */
2137 2137
 function geodir_action_add_listing_form()
2138 2138
 {
2139
-    global $cat_display, $post_cat, $current_user, $gd_session;
2140
-    $page_id = get_the_ID();
2141
-    $post = '';
2142
-    $title = '';
2143
-    $desc = '';
2144
-    $kw_tags = '';
2145
-    $required_msg = '';
2146
-    $submit_button = '';
2147
-
2148
-    $ajax_action = isset($_REQUEST['ajax_action']) ? $_REQUEST['ajax_action'] : 'add';
2149
-
2150
-    $thumb_img_arr = array();
2151
-    $curImages = '';
2152
-
2153
-    if (isset($_REQUEST['backandedit'])) {
2154
-        global $post;
2155
-        $post = (object)$gd_session->get('listing');
2156
-        $listing_type = $post->listing_type;
2157
-        $title = $post->post_title;
2158
-        $desc = $post->post_desc;
2159
-        $post_cat = $post->post_category;
2160
-
2161
-        $kw_tags = $post->post_tags;
2162
-        $curImages = isset($post->post_images) ? $post->post_images : '';
2163
-    } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2164
-        global $post, $post_images;
2165
-
2166
-        $post = geodir_get_post_info($_REQUEST['pid']);
2167
-        $thumb_img_arr = geodir_get_images($post->ID);
2168
-        if ($thumb_img_arr) {
2169
-            foreach ($thumb_img_arr as $post_img) {
2170
-                $curImages .= $post_img->src . ',';
2171
-            }
2172
-        }
2139
+	global $cat_display, $post_cat, $current_user, $gd_session;
2140
+	$page_id = get_the_ID();
2141
+	$post = '';
2142
+	$title = '';
2143
+	$desc = '';
2144
+	$kw_tags = '';
2145
+	$required_msg = '';
2146
+	$submit_button = '';
2147
+
2148
+	$ajax_action = isset($_REQUEST['ajax_action']) ? $_REQUEST['ajax_action'] : 'add';
2149
+
2150
+	$thumb_img_arr = array();
2151
+	$curImages = '';
2152
+
2153
+	if (isset($_REQUEST['backandedit'])) {
2154
+		global $post;
2155
+		$post = (object)$gd_session->get('listing');
2156
+		$listing_type = $post->listing_type;
2157
+		$title = $post->post_title;
2158
+		$desc = $post->post_desc;
2159
+		$post_cat = $post->post_category;
2160
+
2161
+		$kw_tags = $post->post_tags;
2162
+		$curImages = isset($post->post_images) ? $post->post_images : '';
2163
+	} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2164
+		global $post, $post_images;
2165
+
2166
+		$post = geodir_get_post_info($_REQUEST['pid']);
2167
+		$thumb_img_arr = geodir_get_images($post->ID);
2168
+		if ($thumb_img_arr) {
2169
+			foreach ($thumb_img_arr as $post_img) {
2170
+				$curImages .= $post_img->src . ',';
2171
+			}
2172
+		}
2173 2173
 
2174
-        $listing_type = $post->post_type;
2175
-        $title = $post->post_title;
2176
-        $desc = $post->post_content;
2177
-        $kw_tags = $post->post_tags;
2178
-        $kw_tags = implode(",", wp_get_object_terms($post->ID, $listing_type . '_tags', array('fields' => 'names')));
2179
-    } else {
2180
-        $listing_type = sanitize_text_field($_REQUEST['listing_type']);
2181
-    }
2174
+		$listing_type = $post->post_type;
2175
+		$title = $post->post_title;
2176
+		$desc = $post->post_content;
2177
+		$kw_tags = $post->post_tags;
2178
+		$kw_tags = implode(",", wp_get_object_terms($post->ID, $listing_type . '_tags', array('fields' => 'names')));
2179
+	} else {
2180
+		$listing_type = sanitize_text_field($_REQUEST['listing_type']);
2181
+	}
2182 2182
 
2183
-    if ($current_user->ID != '0') {
2184
-        $user_login = true;
2185
-    }
2183
+	if ($current_user->ID != '0') {
2184
+		$user_login = true;
2185
+	}
2186 2186
 
2187
-    $post_type_info = geodir_get_posttype_info($listing_type);
2187
+	$post_type_info = geodir_get_posttype_info($listing_type);
2188 2188
 
2189
-    $cpt_singular_name = (isset($post_type_info['labels']['singular_name']) && $post_type_info['labels']['singular_name']) ? __($post_type_info['labels']['singular_name'], 'geodirectory') : __('Listing','geodirectory');
2189
+	$cpt_singular_name = (isset($post_type_info['labels']['singular_name']) && $post_type_info['labels']['singular_name']) ? __($post_type_info['labels']['singular_name'], 'geodirectory') : __('Listing','geodirectory');
2190 2190
 
2191
-    $package_info = array();
2192
-    $package_info = geodir_post_package_info($package_info, $post);
2193
-    ?>
2191
+	$package_info = array();
2192
+	$package_info = geodir_post_package_info($package_info, $post);
2193
+	?>
2194 2194
     <form name="propertyform" id="propertyform" action="<?php echo get_page_link(geodir_preview_page_id());?>" method="post" enctype="multipart/form-data">
2195 2195
         <input type="hidden" name="preview" value="<?php echo sanitize_text_field($listing_type);?>"/>
2196 2196
         <input type="hidden" name="listing_type" value="<?php echo sanitize_text_field($listing_type);?>"/>
@@ -2201,114 +2201,114 @@  discard block
 block discarded – undo
2201 2201
         <?php } if (isset($_REQUEST['backandedit'])) { ?>
2202 2202
             <input type="hidden" name="backandedit" value="<?php echo sanitize_text_field($_REQUEST['backandedit']);?>"/>
2203 2203
         <?php
2204
-        }
2205
-        /**
2206
-         * Called at the very top of the add listing page form for frontend.
2207
-         *
2208
-         * This is called just before the "Enter Listing Details" text.
2209
-         *
2210
-         * @since 1.0.0
2211
-         */
2212
-        do_action('geodir_before_detail_fields');
2213
-        ?>
2204
+		}
2205
+		/**
2206
+		 * Called at the very top of the add listing page form for frontend.
2207
+		 *
2208
+		 * This is called just before the "Enter Listing Details" text.
2209
+		 *
2210
+		 * @since 1.0.0
2211
+		 */
2212
+		do_action('geodir_before_detail_fields');
2213
+		?>
2214 2214
         <h5 id="geodir_fieldset_details" class="geodir-fieldset-row" gd-fieldset="details"><?php echo LISTING_DETAILS_TEXT;?></h5>
2215 2215
         <?php
2216
-        /**
2217
-         * Called at the top of the add listing page form for frontend.
2218
-         *
2219
-         * This is called after the "Enter Listing Details" text.
2220
-         *
2221
-         * @since 1.0.0
2222
-         */
2223
-        do_action('geodir_before_main_form_fields');
2224
-        ?>
2216
+		/**
2217
+		 * Called at the top of the add listing page form for frontend.
2218
+		 *
2219
+		 * This is called after the "Enter Listing Details" text.
2220
+		 *
2221
+		 * @since 1.0.0
2222
+		 */
2223
+		do_action('geodir_before_main_form_fields');
2224
+		?>
2225 2225
         <div id="geodir_post_title_row" class="required_field geodir_form_row clearfix gd-fieldset-details">
2226 2226
             <label><?php
2227
-                /**
2228
-                 * Filter the add listing page title input label.
2229
-                 *
2230
-                 * @since 1.6.11
2231
-                 * @param string $title The title to be output.
2232
-                 * @param string $cpt_singular_name The singular title of the curent CPT.
2233
-                 * @param string $listing_type The CPT being requested. ie: gd_place.
2234
-                 */
2235
-                echo apply_filters('geodir_add_listing_title_label', sprintf( __('%s Title', 'geodirectory'), $cpt_singular_name ),$cpt_singular_name,$listing_type); ?><span>*</span> </label>
2227
+				/**
2228
+				 * Filter the add listing page title input label.
2229
+				 *
2230
+				 * @since 1.6.11
2231
+				 * @param string $title The title to be output.
2232
+				 * @param string $cpt_singular_name The singular title of the curent CPT.
2233
+				 * @param string $listing_type The CPT being requested. ie: gd_place.
2234
+				 */
2235
+				echo apply_filters('geodir_add_listing_title_label', sprintf( __('%s Title', 'geodirectory'), $cpt_singular_name ),$cpt_singular_name,$listing_type); ?><span>*</span> </label>
2236 2236
             <input type="text" field_type="text" name="post_title" id="post_title" class="geodir_textfield"
2237 2237
                    value="<?php echo esc_attr(stripslashes($title)); ?>"/>
2238 2238
             <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory');?></span>
2239 2239
         </div>
2240 2240
         <?php
2241
-        $show_editor = get_option('geodir_tiny_editor_on_add_listing');
2242
-        $show_editor = !empty($show_editor) && in_array($listing_type, $show_editor) ? true : false;
2243
-        /**
2244
-         * Filter whether to show or don't show the editor.
2245
-         *
2246
-         * @since 1.6.16
2247
-         * @param bool $show_editor If true the editor will be available for description field.
2248
-         * @param object $package_info The listing package.
2249
-         * @param string $listing_type The current post type.
2250
-         * @param object $post The current post object.
2251
-         */
2252
-        $show_editor = apply_filters('geodir_description_field_show_editor', $show_editor, $package_info, $listing_type, $post);
2253
-
2254
-        $desc = $show_editor ? stripslashes($desc) : esc_attr(stripslashes($desc));
2255
-        $desc_limit = '';
2256
-        /**
2257
-         * Filter the add listing description field character limit number.
2258
-         *
2259
-         * @since 1.0.0
2260
-         * @param int $desc_limit The amount of characters to limit the description to.
2261
-         */
2262
-        $desc_limit = apply_filters('geodir_description_field_desc_limit', $desc_limit);
2263
-        /**
2264
-         * Filter the add listing description field text.
2265
-         *
2266
-         * @since 1.0.0
2267
-         * @param string $desc The text for the description field.
2268
-         * @param int $desc_limit The character limit number if any.
2269
-         */
2270
-        $desc = apply_filters('geodir_description_field_desc', $desc, $desc_limit);
2271
-        $desc_limit_msg = '';
2272
-        /**
2273
-         * Filter the add listing description limit message.
2274
-         *
2275
-         * This is the message shown if there is a limit applied to the amount of characters the description can use.
2276
-         *
2277
-         * @since 1.0.0
2278
-         * @param string $desc_limit_msg The limit message string if any.
2279
-         * @param int $desc_limit The character limit numer if any.
2280
-         */
2281
-        $desc_limit_msg = apply_filters('geodir_description_field_desc_limit_msg', $desc_limit_msg, $desc_limit);
2282
-
2283
-        $desc_class = '';
2284
-        if ($desc_limit === '' || (int)$desc_limit > 0) {
2285
-            /**
2286
-             * Called on the add listing page form for frontend just before the description field.
2287
-             *
2288
-             * @since 1.0.0
2289
-             */
2290
-            do_action('geodir_before_description_field');
2291
-
2292
-            $desc_class = ' required_field';
2293
-        } else {
2294
-            $desc_class = ' hidden';
2295
-        }
2296
-        ?>
2241
+		$show_editor = get_option('geodir_tiny_editor_on_add_listing');
2242
+		$show_editor = !empty($show_editor) && in_array($listing_type, $show_editor) ? true : false;
2243
+		/**
2244
+		 * Filter whether to show or don't show the editor.
2245
+		 *
2246
+		 * @since 1.6.16
2247
+		 * @param bool $show_editor If true the editor will be available for description field.
2248
+		 * @param object $package_info The listing package.
2249
+		 * @param string $listing_type The current post type.
2250
+		 * @param object $post The current post object.
2251
+		 */
2252
+		$show_editor = apply_filters('geodir_description_field_show_editor', $show_editor, $package_info, $listing_type, $post);
2253
+
2254
+		$desc = $show_editor ? stripslashes($desc) : esc_attr(stripslashes($desc));
2255
+		$desc_limit = '';
2256
+		/**
2257
+		 * Filter the add listing description field character limit number.
2258
+		 *
2259
+		 * @since 1.0.0
2260
+		 * @param int $desc_limit The amount of characters to limit the description to.
2261
+		 */
2262
+		$desc_limit = apply_filters('geodir_description_field_desc_limit', $desc_limit);
2263
+		/**
2264
+		 * Filter the add listing description field text.
2265
+		 *
2266
+		 * @since 1.0.0
2267
+		 * @param string $desc The text for the description field.
2268
+		 * @param int $desc_limit The character limit number if any.
2269
+		 */
2270
+		$desc = apply_filters('geodir_description_field_desc', $desc, $desc_limit);
2271
+		$desc_limit_msg = '';
2272
+		/**
2273
+		 * Filter the add listing description limit message.
2274
+		 *
2275
+		 * This is the message shown if there is a limit applied to the amount of characters the description can use.
2276
+		 *
2277
+		 * @since 1.0.0
2278
+		 * @param string $desc_limit_msg The limit message string if any.
2279
+		 * @param int $desc_limit The character limit numer if any.
2280
+		 */
2281
+		$desc_limit_msg = apply_filters('geodir_description_field_desc_limit_msg', $desc_limit_msg, $desc_limit);
2282
+
2283
+		$desc_class = '';
2284
+		if ($desc_limit === '' || (int)$desc_limit > 0) {
2285
+			/**
2286
+			 * Called on the add listing page form for frontend just before the description field.
2287
+			 *
2288
+			 * @since 1.0.0
2289
+			 */
2290
+			do_action('geodir_before_description_field');
2291
+
2292
+			$desc_class = ' required_field';
2293
+		} else {
2294
+			$desc_class = ' hidden';
2295
+		}
2296
+		?>
2297 2297
         <div id="geodir_post_desc_row" class="geodir_form_row clearfix gd-fieldset-details<?php echo $desc_class;?>">
2298 2298
             <label><?php
2299
-                /**
2300
-                 * Filter the add listing page description input label.
2301
-                 *
2302
-                 * @since 1.6.11
2303
-                 * @param string $title The title to be output.
2304
-                 * @param string $cpt_singular_name The singular title of the curent CPT.
2305
-                 * @param string $listing_type The CPT being requested. ie: gd_place.
2306
-                 */
2307
-                echo apply_filters('geodir_add_listing_description_label',sprintf( __('%s Description', 'geodirectory'), $cpt_singular_name ),$cpt_singular_name,$listing_type); ?><span><?php if ($desc_limit != '0') { echo '*'; } ?></span> </label>
2299
+				/**
2300
+				 * Filter the add listing page description input label.
2301
+				 *
2302
+				 * @since 1.6.11
2303
+				 * @param string $title The title to be output.
2304
+				 * @param string $cpt_singular_name The singular title of the curent CPT.
2305
+				 * @param string $listing_type The CPT being requested. ie: gd_place.
2306
+				 */
2307
+				echo apply_filters('geodir_add_listing_description_label',sprintf( __('%s Description', 'geodirectory'), $cpt_singular_name ),$cpt_singular_name,$listing_type); ?><span><?php if ($desc_limit != '0') { echo '*'; } ?></span> </label>
2308 2308
             <?php
2309
-            if ($show_editor) {
2310
-                $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
2311
-            ?>
2309
+			if ($show_editor) {
2310
+				$editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
2311
+			?>
2312 2312
                 <div class="editor" field_id="post_desc" field_type="editor">
2313 2313
                     <?php wp_editor($desc, "post_desc", $editor_settings); ?>
2314 2314
                 </div>
@@ -2322,56 +2322,56 @@  discard block
 block discarded – undo
2322 2322
             <span class="geodir_message_error"><?php echo _e($required_msg, 'geodirectory');?></span>
2323 2323
         </div>
2324 2324
         <?php
2325
-        if ($desc_limit === '' || (int)$desc_limit > 0) {
2326
-            /**
2327
-             * Called on the add listing page form for frontend just after the description field.
2328
-             *
2329
-             * @since 1.0.0
2330
-             */
2331
-            do_action('geodir_after_description_field');
2332
-        }
2333
-
2334
-        $kw_tags = esc_attr(stripslashes($kw_tags));
2335
-        $kw_tags_count = TAGKW_TEXT_COUNT;
2336
-        $kw_tags_msg = TAGKW_MSG;
2337
-        /**
2338
-         * Filter the add listing tags character limit.
2339
-         *
2340
-         * @since 1.0.0
2341
-         * @param int $kw_tags_count The character count limit if any.
2342
-         */
2343
-        $kw_tags_count = apply_filters('geodir_listing_tags_field_tags_count', $kw_tags_count);
2344
-        /**
2345
-         * Filter the add listing tags field value.
2346
-         *
2347
-         * You can use the $_REQUEST values to check if this is a go back and edit value etc.
2348
-         *
2349
-         * @since 1.0.0
2350
-         * @param string $kw_tags The tag field value, usually a comma separated list of tags.
2351
-         * @param int $kw_tags_count The character count limit if any.
2352
-         */
2353
-        $kw_tags = apply_filters('geodir_listing_tags_field_tags', $kw_tags, $kw_tags_count);
2354
-        /**
2355
-         * Filter the add listing tags field message text.
2356
-         *
2357
-         * @since 1.0.0
2358
-         * @param string $kw_tags_msg The message shown under the field.
2359
-         * @param int $kw_tags_count The character count limit if any.
2360
-         */
2361
-        $kw_tags_msg = apply_filters('geodir_listing_tags_field_tags_msg', $kw_tags_msg, $kw_tags_count);
2362
-
2363
-        $tags_class = '';
2364
-        if ($kw_tags_count === '' || (int)$kw_tags_count > 0) {
2365
-            /**
2366
-             * Called on the add listing page form for frontend just before the tags field.
2367
-             *
2368
-             * @since 1.0.0
2369
-             */
2370
-            do_action('geodir_before_listing_tags_field');
2371
-        } else {
2372
-            $tags_class = ' hidden';
2373
-        }
2374
-        ?>
2325
+		if ($desc_limit === '' || (int)$desc_limit > 0) {
2326
+			/**
2327
+			 * Called on the add listing page form for frontend just after the description field.
2328
+			 *
2329
+			 * @since 1.0.0
2330
+			 */
2331
+			do_action('geodir_after_description_field');
2332
+		}
2333
+
2334
+		$kw_tags = esc_attr(stripslashes($kw_tags));
2335
+		$kw_tags_count = TAGKW_TEXT_COUNT;
2336
+		$kw_tags_msg = TAGKW_MSG;
2337
+		/**
2338
+		 * Filter the add listing tags character limit.
2339
+		 *
2340
+		 * @since 1.0.0
2341
+		 * @param int $kw_tags_count The character count limit if any.
2342
+		 */
2343
+		$kw_tags_count = apply_filters('geodir_listing_tags_field_tags_count', $kw_tags_count);
2344
+		/**
2345
+		 * Filter the add listing tags field value.
2346
+		 *
2347
+		 * You can use the $_REQUEST values to check if this is a go back and edit value etc.
2348
+		 *
2349
+		 * @since 1.0.0
2350
+		 * @param string $kw_tags The tag field value, usually a comma separated list of tags.
2351
+		 * @param int $kw_tags_count The character count limit if any.
2352
+		 */
2353
+		$kw_tags = apply_filters('geodir_listing_tags_field_tags', $kw_tags, $kw_tags_count);
2354
+		/**
2355
+		 * Filter the add listing tags field message text.
2356
+		 *
2357
+		 * @since 1.0.0
2358
+		 * @param string $kw_tags_msg The message shown under the field.
2359
+		 * @param int $kw_tags_count The character count limit if any.
2360
+		 */
2361
+		$kw_tags_msg = apply_filters('geodir_listing_tags_field_tags_msg', $kw_tags_msg, $kw_tags_count);
2362
+
2363
+		$tags_class = '';
2364
+		if ($kw_tags_count === '' || (int)$kw_tags_count > 0) {
2365
+			/**
2366
+			 * Called on the add listing page form for frontend just before the tags field.
2367
+			 *
2368
+			 * @since 1.0.0
2369
+			 */
2370
+			do_action('geodir_before_listing_tags_field');
2371
+		} else {
2372
+			$tags_class = ' hidden';
2373
+		}
2374
+		?>
2375 2375
         <div id="geodir_post_tags_row" class="geodir_form_row clearfix gd-fieldset-details<?php echo $tags_class;?>">
2376 2376
             <label><?php echo TAGKW_TEXT; ?></label>
2377 2377
             <input name="post_tags" id="post_tags" value="<?php echo $kw_tags; ?>" type="text" class="geodir_textfield"
@@ -2379,90 +2379,90 @@  discard block
 block discarded – undo
2379 2379
             <span class="geodir_message_note"><?php echo $kw_tags_msg;?></span>
2380 2380
         </div>
2381 2381
         <?php
2382
-        if ($kw_tags_count === '' || (int)$kw_tags_count > 0) {
2383
-            /**
2384
-             * Called on the add listing page form for frontend just after the tags field.
2385
-             *
2386
-             * @since 1.0.0
2387
-             */
2388
-            do_action('geodir_after_listing_tags_field');
2389
-        }
2382
+		if ($kw_tags_count === '' || (int)$kw_tags_count > 0) {
2383
+			/**
2384
+			 * Called on the add listing page form for frontend just after the tags field.
2385
+			 *
2386
+			 * @since 1.0.0
2387
+			 */
2388
+			do_action('geodir_after_listing_tags_field');
2389
+		}
2390 2390
 
2391
-        $package_info = array();
2392
-        $package_info = geodir_post_package_info($package_info, $post);
2391
+		$package_info = array();
2392
+		$package_info = geodir_post_package_info($package_info, $post);
2393 2393
 
2394
-        geodir_get_custom_fields_html($package_info->pid, 'all', $listing_type);
2394
+		geodir_get_custom_fields_html($package_info->pid, 'all', $listing_type);
2395 2395
 
2396
-        // adjust values here
2397
-        $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls
2396
+		// adjust values here
2397
+		$id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls
2398 2398
 
2399
-        $multiple = true; // allow multiple files upload
2399
+		$multiple = true; // allow multiple files upload
2400 2400
 
2401
-        $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
2401
+		$width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels)
2402 2402
 
2403
-        $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
2403
+		$height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels)
2404 2404
 
2405
-        $thumb_img_arr = array();
2406
-        $totImg = 0;
2407
-        if (isset($_REQUEST['backandedit']) && empty($_REQUEST['pid'])) {
2408
-            $post = (object)$gd_session->get('listing');
2409
-            if (isset($post->post_images))
2410
-                $curImages = trim($post->post_images, ",");
2405
+		$thumb_img_arr = array();
2406
+		$totImg = 0;
2407
+		if (isset($_REQUEST['backandedit']) && empty($_REQUEST['pid'])) {
2408
+			$post = (object)$gd_session->get('listing');
2409
+			if (isset($post->post_images))
2410
+				$curImages = trim($post->post_images, ",");
2411 2411
 
2412 2412
 
2413
-            if ($curImages != '') {
2414
-                $curImages_array = explode(',', $curImages);
2415
-                $totImg = count($curImages_array);
2416
-            }
2417
-
2418
-            $listing_type = $post->listing_type;
2413
+			if ($curImages != '') {
2414
+				$curImages_array = explode(',', $curImages);
2415
+				$totImg = count($curImages_array);
2416
+			}
2419 2417
 
2420
-        } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2421
-            $post = geodir_get_post_info((int)$_REQUEST['pid']);
2422
-            $listing_type = $post->post_type;
2423
-            $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
2418
+			$listing_type = $post->listing_type;
2424 2419
 
2425
-        } else {
2426
-            $listing_type = sanitize_text_field($_REQUEST['listing_type']);
2427
-        }
2420
+		} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2421
+			$post = geodir_get_post_info((int)$_REQUEST['pid']);
2422
+			$listing_type = $post->post_type;
2423
+			$thumb_img_arr = geodir_get_images($_REQUEST['pid']);
2428 2424
 
2425
+		} else {
2426
+			$listing_type = sanitize_text_field($_REQUEST['listing_type']);
2427
+		}
2429 2428
 
2430
-        if (!empty($thumb_img_arr)) {
2431
-            foreach ($thumb_img_arr as $img) {
2432
-                //$curImages = $img->src.",";
2433
-            }
2434 2429
 
2435
-            $totImg = count((array)$thumb_img_arr);
2436
-        }
2430
+		if (!empty($thumb_img_arr)) {
2431
+			foreach ($thumb_img_arr as $img) {
2432
+				//$curImages = $img->src.",";
2433
+			}
2437 2434
 
2438
-        if ($curImages != '')
2439
-            $svalue = $curImages; // this will be initial value of the above form field. Image urls.
2440
-        else
2441
-            $svalue = '';
2442
-
2443
-        $image_limit = isset($package_info->image_limit) ? $package_info->image_limit : '0';
2444
-        $show_image_input_box = ($image_limit != '0');
2445
-        /**
2446
-         * Filter to be able to show/hide the image upload section of the add listing form.
2447
-         *
2448
-         * @since 1.0.0
2449
-         * @param bool $show_image_input_box Set true to show. Set false to not show.
2450
-         * @param string $listing_type The custom post type slug.
2451
-         */
2452
-        $show_image_input_box = apply_filters('geodir_image_uploader_on_add_listing', $show_image_input_box, $listing_type);
2453
-        if ($show_image_input_box) {
2454
-            ?>
2435
+			$totImg = count((array)$thumb_img_arr);
2436
+		}
2437
+
2438
+		if ($curImages != '')
2439
+			$svalue = $curImages; // this will be initial value of the above form field. Image urls.
2440
+		else
2441
+			$svalue = '';
2442
+
2443
+		$image_limit = isset($package_info->image_limit) ? $package_info->image_limit : '0';
2444
+		$show_image_input_box = ($image_limit != '0');
2445
+		/**
2446
+		 * Filter to be able to show/hide the image upload section of the add listing form.
2447
+		 *
2448
+		 * @since 1.0.0
2449
+		 * @param bool $show_image_input_box Set true to show. Set false to not show.
2450
+		 * @param string $listing_type The custom post type slug.
2451
+		 */
2452
+		$show_image_input_box = apply_filters('geodir_image_uploader_on_add_listing', $show_image_input_box, $listing_type);
2453
+		if ($show_image_input_box) {
2454
+			?>
2455 2455
 
2456 2456
             <h5 id="geodir_form_title_row" class="geodir-form_title"> <?php echo PRO_PHOTO_TEXT;?>
2457 2457
                 <?php if ($image_limit == 1) {
2458
-                    echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
2459
-                } ?>
2458
+					echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
2459
+				} ?>
2460 2460
                 <?php if ($image_limit > 1) {
2461
-                    echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
2462
-                } ?>
2461
+					echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
2462
+				} ?>
2463 2463
                 <?php if ($image_limit == '') {
2464
-                    echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
2465
-                } ?>
2464
+					echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
2465
+				} ?>
2466 2466
             </h5>
2467 2467
 
2468 2468
             <div class="geodir_form_row clearfix" id="<?php echo $id; ?>dropbox"
@@ -2500,12 +2500,12 @@  discard block
 block discarded – undo
2500 2500
         <?php } ?>
2501 2501
 
2502 2502
         <?php
2503
-        /**
2504
-         * Called on the add listing page form for frontend just after the image upload field.
2505
-         *
2506
-         * @since 1.0.0
2507
-         */
2508
-        do_action('geodir_after_main_form_fields');?>
2503
+		/**
2504
+		 * Called on the add listing page form for frontend just after the image upload field.
2505
+		 *
2506
+		 * @since 1.0.0
2507
+		 */
2508
+		do_action('geodir_after_main_form_fields');?>
2509 2509
 
2510 2510
 
2511 2511
         <!-- add captcha code -->
@@ -2534,7 +2534,7 @@  discard block
 block discarded – undo
2534 2534
 
2535 2535
     </form>
2536 2536
     <?php
2537
-    wp_reset_query();
2537
+	wp_reset_query();
2538 2538
 }
2539 2539
 
2540 2540
 /**
@@ -2545,7 +2545,7 @@  discard block
 block discarded – undo
2545 2545
  */
2546 2546
 function geodir_add_listing_sidebar_widget_area()
2547 2547
 {
2548
-    dynamic_sidebar('geodir_add_listing_sidebar');
2548
+	dynamic_sidebar('geodir_add_listing_sidebar');
2549 2549
 }
2550 2550
 
2551 2551
 add_action('geodir_add_listing_sidebar_inside', 'geodir_add_listing_sidebar_widget_area', 10);
@@ -2560,16 +2560,16 @@  discard block
 block discarded – undo
2560 2560
  */
2561 2561
 function geodir_action_add_listing_sidebar()
2562 2562
 {
2563
-    /** This action is documented in geodirectory_template_actions.php */
2564
-    do_action('geodir_sidebar_right_open', 'add-listing-page', 'geodir-sidebar', 'geodir-sidebar-right', 'http://schema.org/WPSideBar');
2565
-    /**
2566
-     * This is used to add the content to the add listing page sidebar.
2567
-     *
2568
-     * @since 1.0.0
2569
-     */
2570
-    do_action('geodir_add_listing_sidebar_inside');
2571
-    /** This action is documented in geodirectory_template_actions.php */
2572
-    do_action('geodir_sidebar_right_close', 'details-page');
2563
+	/** This action is documented in geodirectory_template_actions.php */
2564
+	do_action('geodir_sidebar_right_open', 'add-listing-page', 'geodir-sidebar', 'geodir-sidebar-right', 'http://schema.org/WPSideBar');
2565
+	/**
2566
+	 * This is used to add the content to the add listing page sidebar.
2567
+	 *
2568
+	 * @since 1.0.0
2569
+	 */
2570
+	do_action('geodir_add_listing_sidebar_inside');
2571
+	/** This action is documented in geodirectory_template_actions.php */
2572
+	do_action('geodir_sidebar_right_close', 'details-page');
2573 2573
 }
2574 2574
 
2575 2575
 ###############################################
@@ -2586,11 +2586,11 @@  discard block
 block discarded – undo
2586 2586
  */
2587 2587
 function geodir_action_geodir_sidebar_signup_top()
2588 2588
 {
2589
-    ?>
2589
+	?>
2590 2590
     <div
2591 2591
         class="<?php
2592
-        /** This action is documented in geodirectory_template_actions.php */
2593
-        echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'Reg/Login Top Section'); ?>">
2592
+		/** This action is documented in geodirectory_template_actions.php */
2593
+		echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'Reg/Login Top Section'); ?>">
2594 2594
         <?php dynamic_sidebar('Reg/Login Top Section');?>
2595 2595
     </div><!-- clearfix ends here-->
2596 2596
 <?php
@@ -2609,11 +2609,11 @@  discard block
 block discarded – undo
2609 2609
 function geodir_action_signup_forms()
2610 2610
 {
2611 2611
 
2612
-    global $user_login;
2612
+	global $user_login;
2613 2613
 
2614
-    $is_enable_signup = get_option( 'users_can_register' );
2614
+	$is_enable_signup = get_option( 'users_can_register' );
2615 2615
 
2616
-    ?>
2616
+	?>
2617 2617
     <script type="text/javascript">
2618 2618
         <?php if ( $user_login ) { ?>
2619 2619
         setTimeout(function () {
@@ -2649,67 +2649,67 @@  discard block
 block discarded – undo
2649 2649
         <?php } ?>
2650 2650
     </script><?php
2651 2651
 
2652
-    global $errors;
2653
-    if (isset($_REQUEST['msg']) && $_REQUEST['msg'] == 'claim')
2654
-        $errors->add('claim_login', LOGIN_CLAIM);
2655
-
2656
-    if (!empty($errors)) {
2657
-        foreach ($errors as $errorsObj) {
2658
-            foreach ($errorsObj as $key => $val) {
2659
-                for ($i = 0; $i < count($val); $i++) {
2660
-                    echo "<div class=error_msg_fix>" . $val[$i] . '</div>';
2661
-                    $registration_error_msg = 1;
2662
-                }
2663
-            }
2664
-        }
2665
-    }
2652
+	global $errors;
2653
+	if (isset($_REQUEST['msg']) && $_REQUEST['msg'] == 'claim')
2654
+		$errors->add('claim_login', LOGIN_CLAIM);
2655
+
2656
+	if (!empty($errors)) {
2657
+		foreach ($errors as $errorsObj) {
2658
+			foreach ($errorsObj as $key => $val) {
2659
+				for ($i = 0; $i < count($val); $i++) {
2660
+					echo "<div class=error_msg_fix>" . $val[$i] . '</div>';
2661
+					$registration_error_msg = 1;
2662
+				}
2663
+			}
2664
+		}
2665
+	}
2666 2666
 
2667
-    if (isset($_REQUEST['page']) && $_REQUEST['page'] == 'login' && isset($_REQUEST['page1']) && $_REQUEST['page1'] == 'sign_in') {
2668
-        ?>
2667
+	if (isset($_REQUEST['page']) && $_REQUEST['page'] == 'login' && isset($_REQUEST['page1']) && $_REQUEST['page1'] == 'sign_in') {
2668
+		?>
2669 2669
 
2670 2670
         <div class="login_form">
2671 2671
             <?php
2672
-            /**
2673
-             * Contains login form template.
2674
-             *
2675
-             * @since 1.0.0
2676
-             */
2677
-            include(geodir_plugin_path() . "/geodirectory-templates/login_frm.php"); ?>
2672
+			/**
2673
+			 * Contains login form template.
2674
+			 *
2675
+			 * @since 1.0.0
2676
+			 */
2677
+			include(geodir_plugin_path() . "/geodirectory-templates/login_frm.php"); ?>
2678 2678
         </div>
2679 2679
 
2680 2680
     <?php } elseif (isset($_REQUEST['page']) && $_REQUEST['page'] == 'login' && isset($_REQUEST['page1']) && $_REQUEST['page1'] == 'sign_up' && $is_enable_signup ) { ?>
2681 2681
 
2682 2682
         <div class="registration_form">
2683 2683
             <?php
2684
-            /**
2685
-             * Contains registration form template.
2686
-             *
2687
-             * @since 1.0.0
2688
-             */
2689
-            include(geodir_plugin_path() . "/geodirectory-templates/reg_frm.php"); ?>
2684
+			/**
2685
+			 * Contains registration form template.
2686
+			 *
2687
+			 * @since 1.0.0
2688
+			 */
2689
+			include(geodir_plugin_path() . "/geodirectory-templates/reg_frm.php"); ?>
2690 2690
         </div>
2691 2691
 
2692 2692
     <?php } else { ?>
2693 2693
 
2694 2694
         <div class="login_form_l">
2695 2695
             <?php
2696
-            /**
2697
-             * Contains login form template.
2698
-             *
2699
-             * @since 1.0.0
2700
-             */
2701
-            include(geodir_plugin_path() . "/geodirectory-templates/login_frm.php"); ?>
2696
+			/**
2697
+			 * Contains login form template.
2698
+			 *
2699
+			 * @since 1.0.0
2700
+			 */
2701
+			include(geodir_plugin_path() . "/geodirectory-templates/login_frm.php"); ?>
2702 2702
         </div>
2703 2703
 
2704 2704
         <?php if ( $is_enable_signup ) { ?>
2705 2705
             <div class="registration_form_r">
2706 2706
                 <?php
2707
-                /**
2708
-                 * Contains registration form template.
2709
-                 *
2710
-                 * @since 1.0.0
2711
-                 */
2712
-                include(geodir_plugin_path() . "/geodirectory-templates/reg_frm.php"); ?>
2707
+				/**
2708
+				 * Contains registration form template.
2709
+				 *
2710
+				 * @since 1.0.0
2711
+				 */
2712
+				include(geodir_plugin_path() . "/geodirectory-templates/reg_frm.php"); ?>
2713 2713
             </div>
2714 2714
         <?php } ?>
2715 2715
 
@@ -2741,66 +2741,66 @@  discard block
 block discarded – undo
2741 2741
  */
2742 2742
 function geodir_action_author_page_title()
2743 2743
 {
2744
-    global $term;
2744
+	global $term;
2745 2745
 
2746
-    $gd_post_type = geodir_get_current_posttype();
2747
-    $post_type_info = get_post_type_object($gd_post_type);
2746
+	$gd_post_type = geodir_get_current_posttype();
2747
+	$post_type_info = get_post_type_object($gd_post_type);
2748 2748
 
2749
-    $add_string_in_title = __('All', 'geodirectory') . ' ';
2750
-    if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
2751
-        $add_string_in_title = __('My Favorite', 'geodirectory') . ' ';
2752
-    }
2749
+	$add_string_in_title = __('All', 'geodirectory') . ' ';
2750
+	if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
2751
+		$add_string_in_title = __('My Favorite', 'geodirectory') . ' ';
2752
+	}
2753 2753
 
2754
-    $list_title = $add_string_in_title . $post_type_info->labels->name;
2755
-    $single_name = $post_type_info->labels->singular_name;
2754
+	$list_title = $add_string_in_title . $post_type_info->labels->name;
2755
+	$single_name = $post_type_info->labels->singular_name;
2756 2756
 
2757
-    $taxonomy = geodir_get_taxonomies($gd_post_type);
2757
+	$taxonomy = geodir_get_taxonomies($gd_post_type);
2758 2758
 
2759
-    if (!empty($term)) {
2760
-        $current_term = get_term_by('slug', $term, $taxonomy[0]);
2761
-        if (!empty($current_term))
2762
-            $list_title .= __(' in', 'geodirectory') . " '" . geodir_ucwords($current_term->name) . "'";
2763
-    }
2759
+	if (!empty($term)) {
2760
+		$current_term = get_term_by('slug', $term, $taxonomy[0]);
2761
+		if (!empty($current_term))
2762
+			$list_title .= __(' in', 'geodirectory') . " '" . geodir_ucwords($current_term->name) . "'";
2763
+	}
2764 2764
 
2765 2765
 
2766
-    if (is_search()) {
2767
-        $list_title = __('Search', 'geodirectory') . ' ' . __($post_type_info->labels->name, 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
2766
+	if (is_search()) {
2767
+		$list_title = __('Search', 'geodirectory') . ' ' . __($post_type_info->labels->name, 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
2768 2768
 
2769
-    }
2770
-    /** This action is documented in geodirectory_template_actions.php */
2771
-    $class = apply_filters('geodir_page_title_class', 'entry-title fn');
2772
-    /** This action is documented in geodirectory_template_actions.php */
2773
-    $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
2769
+	}
2770
+	/** This action is documented in geodirectory_template_actions.php */
2771
+	$class = apply_filters('geodir_page_title_class', 'entry-title fn');
2772
+	/** This action is documented in geodirectory_template_actions.php */
2773
+	$class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
2774 2774
 
2775
-    $title = $list_title;
2776
-    if(geodir_is_page('author')){
2777
-        $gd_page = 'author';
2778
-        if(isset($_REQUEST['list']) && $_REQUEST['list']=='favourite'){
2779
-            $title = (get_option('geodir_page_title_favorite')) ? get_option('geodir_page_title_favorite') : $title;
2780
-        }else{
2781
-            $title = (get_option('geodir_page_title_author')) ? get_option('geodir_page_title_author') : $title;
2782
-        }
2775
+	$title = $list_title;
2776
+	if(geodir_is_page('author')){
2777
+		$gd_page = 'author';
2778
+		if(isset($_REQUEST['list']) && $_REQUEST['list']=='favourite'){
2779
+			$title = (get_option('geodir_page_title_favorite')) ? get_option('geodir_page_title_favorite') : $title;
2780
+		}else{
2781
+			$title = (get_option('geodir_page_title_author')) ? get_option('geodir_page_title_author') : $title;
2782
+		}
2783 2783
 
2784
-    }
2784
+	}
2785 2785
 
2786 2786
 
2787
-    /**
2788
-     * Filter page title to replace variables.
2789
-     *
2790
-     * @since 1.5.4
2791
-     * @param string $title The page title including variables.
2792
-     * @param string $gd_page The GeoDirectory page type if any.
2793
-     */
2794
-    $title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2787
+	/**
2788
+	 * Filter page title to replace variables.
2789
+	 *
2790
+	 * @since 1.5.4
2791
+	 * @param string $title The page title including variables.
2792
+	 * @param string $gd_page The GeoDirectory page type if any.
2793
+	 */
2794
+	$title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2795 2795
 
2796
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
2797
-        /**
2798
-         * Filter the author page title text.
2799
-         *
2800
-         * @since 1.0.0
2801
-         * @param string $list_title The title for the page.
2802
-         */
2803
-        apply_filters('geodir_author_page_title_text', $title) . '</h1></header>';
2796
+	echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
2797
+		/**
2798
+		 * Filter the author page title text.
2799
+		 *
2800
+		 * @since 1.0.0
2801
+		 * @param string $list_title The title for the page.
2802
+		 */
2803
+		apply_filters('geodir_author_page_title_text', $title) . '</h1></header>';
2804 2804
 }
2805 2805
 
2806 2806
 
@@ -2818,11 +2818,11 @@  discard block
 block discarded – undo
2818 2818
  */
2819 2819
 function geodir_action_geodir_sidebar_author_top()
2820 2820
 {
2821
-    if (get_option('geodir_show_author_top_section')) { ?>
2821
+	if (get_option('geodir_show_author_top_section')) { ?>
2822 2822
         <div
2823 2823
             class="<?php
2824
-            /** This action is documented in geodirectory_template_actions.php */
2825
-            echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_author_top'); ?>">
2824
+			/** This action is documented in geodirectory_template_actions.php */
2825
+			echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_author_top'); ?>">
2826 2826
             <?php dynamic_sidebar('geodir_author_top'); ?>
2827 2827
         </div><!-- clearfix ends here-->
2828 2828
     <?php }
@@ -2838,7 +2838,7 @@  discard block
 block discarded – undo
2838 2838
  */
2839 2839
 function geodir_author_left_section()
2840 2840
 {
2841
-    if (get_option('geodir_show_author_left_section')) { ?>
2841
+	if (get_option('geodir_show_author_left_section')) { ?>
2842 2842
         <div class="geodir-content-left geodir-sidebar-wrap">
2843 2843
             <?php dynamic_sidebar('geodir_author_left_sidebar'); ?>
2844 2844
         </div><!-- end geodir-content-left -->
@@ -2859,19 +2859,19 @@  discard block
 block discarded – undo
2859 2859
  */
2860 2860
 function geodir_action_author_sidebar_left()
2861 2861
 {
2862
-    if (get_option('geodir_show_author_left_section')) {
2862
+	if (get_option('geodir_show_author_left_section')) {
2863 2863
 // this adds the opening html tags to the primary div, this required the closing tag below :: ($type='',$id='',$class='',$itemtype='')
2864
-        /** This action is documented in geodirectory_template_actions.php */
2865
-        do_action('geodir_sidebar_left_open', 'author-page', 'geodir-sidebar-left', 'geodir-sidebar-left geodir-listings-sidebar-left', 'http://schema.org/WPSideBar');
2866
-        /**
2867
-         * This is used to add the content to the author page left sidebar (if active).
2868
-         *
2869
-         * @since 1.0.0
2870
-         */
2871
-        do_action('geodir_author_sidebar_left_inside');
2872
-        /** This action is documented in geodirectory_template_actions.php */
2873
-        do_action('geodir_sidebar_left_close', 'author-page');
2874
-    }
2864
+		/** This action is documented in geodirectory_template_actions.php */
2865
+		do_action('geodir_sidebar_left_open', 'author-page', 'geodir-sidebar-left', 'geodir-sidebar-left geodir-listings-sidebar-left', 'http://schema.org/WPSideBar');
2866
+		/**
2867
+		 * This is used to add the content to the author page left sidebar (if active).
2868
+		 *
2869
+		 * @since 1.0.0
2870
+		 */
2871
+		do_action('geodir_author_sidebar_left_inside');
2872
+		/** This action is documented in geodirectory_template_actions.php */
2873
+		do_action('geodir_sidebar_left_close', 'author-page');
2874
+	}
2875 2875
 }
2876 2876
 
2877 2877
 /**
@@ -2884,7 +2884,7 @@  discard block
 block discarded – undo
2884 2884
  */
2885 2885
 function geodir_author_right_section()
2886 2886
 {
2887
-    if (get_option('geodir_show_author_right_section')) { ?>
2887
+	if (get_option('geodir_show_author_right_section')) { ?>
2888 2888
         <div class="geodir-content-right geodir-sidebar-wrap">
2889 2889
             <?php dynamic_sidebar('geodir_author_right_sidebar'); ?>
2890 2890
         </div><!-- end geodir-content-right -->
@@ -2904,18 +2904,18 @@  discard block
 block discarded – undo
2904 2904
  */
2905 2905
 function geodir_action_author_sidebar_right()
2906 2906
 {
2907
-    if (get_option('geodir_show_author_right_section')) {
2908
-        /** This action is documented in geodirectory_template_actions.php */
2909
-        do_action('geodir_sidebar_right_open', 'author-page', 'geodir-sidebar-right', 'geodir-sidebar-right geodir-listings-sidebar-right', 'http://schema.org/WPSideBar');
2910
-        /**
2911
-         * This is used to add the content to the author page right sidebar (if active).
2912
-         *
2913
-         * @since 1.0.0
2914
-         */
2915
-        do_action('geodir_author_sidebar_right_inside');
2916
-        /** This action is documented in geodirectory_template_actions.php */
2917
-        do_action('geodir_sidebar_right_close', 'author-page');
2918
-    }
2907
+	if (get_option('geodir_show_author_right_section')) {
2908
+		/** This action is documented in geodirectory_template_actions.php */
2909
+		do_action('geodir_sidebar_right_open', 'author-page', 'geodir-sidebar-right', 'geodir-sidebar-right geodir-listings-sidebar-right', 'http://schema.org/WPSideBar');
2910
+		/**
2911
+		 * This is used to add the content to the author page right sidebar (if active).
2912
+		 *
2913
+		 * @since 1.0.0
2914
+		 */
2915
+		do_action('geodir_author_sidebar_right_inside');
2916
+		/** This action is documented in geodirectory_template_actions.php */
2917
+		do_action('geodir_sidebar_right_close', 'author-page');
2918
+	}
2919 2919
 }
2920 2920
 
2921 2921
 /**
@@ -2927,14 +2927,14 @@  discard block
 block discarded – undo
2927 2927
  */
2928 2928
 function geodir_action_author_content_inside()
2929 2929
 {
2930
-    global $gridview_columns;
2931
-    $listing_view = get_option('geodir_author_view');
2932
-    if (strstr($listing_view, 'gridview')) {
2933
-        $gridview_columns = $listing_view;
2934
-        $listing_view_exp = explode('_', $listing_view);
2935
-        $listing_view = $listing_view_exp[0];
2936
-    }
2937
-    geodir_get_template_part('listing', 'listview');
2930
+	global $gridview_columns;
2931
+	$listing_view = get_option('geodir_author_view');
2932
+	if (strstr($listing_view, 'gridview')) {
2933
+		$gridview_columns = $listing_view;
2934
+		$listing_view_exp = explode('_', $listing_view);
2935
+		$listing_view = $listing_view_exp[0];
2936
+	}
2937
+	geodir_get_template_part('listing', 'listview');
2938 2938
 }
2939 2939
 
2940 2940
 add_action('geodir_author_content_inside', 'geodir_action_author_content_inside', 10);
@@ -2949,22 +2949,22 @@  discard block
 block discarded – undo
2949 2949
  */
2950 2950
 function geodir_action_author_content()
2951 2951
 {
2952
-    /** This action is documented in geodirectory_template_actions.php */
2953
-    do_action('geodir_main_content_open', 'author-page', 'geodir-main-content', 'author-page');
2954
-    echo '<div class="clearfix">';
2955
-    /** This action is documented in geodirectory_template_actions.php */
2956
-    do_action('geodir_before_listing');
2957
-    echo '</div>';
2958
-    /**
2959
-     * This is used to add the content to the author page main content.
2960
-     *
2961
-     * @since 1.0.0
2962
-     */
2963
-    do_action('geodir_author_content_inside');
2964
-    /** This action is documented in geodirectory_template_actions.php */
2965
-    do_action('geodir_after_listing');
2966
-    /** This action is documented in geodirectory_template_actions.php */
2967
-    do_action('geodir_main_content_close', 'author-page');
2952
+	/** This action is documented in geodirectory_template_actions.php */
2953
+	do_action('geodir_main_content_open', 'author-page', 'geodir-main-content', 'author-page');
2954
+	echo '<div class="clearfix">';
2955
+	/** This action is documented in geodirectory_template_actions.php */
2956
+	do_action('geodir_before_listing');
2957
+	echo '</div>';
2958
+	/**
2959
+	 * This is used to add the content to the author page main content.
2960
+	 *
2961
+	 * @since 1.0.0
2962
+	 */
2963
+	do_action('geodir_author_content_inside');
2964
+	/** This action is documented in geodirectory_template_actions.php */
2965
+	do_action('geodir_after_listing');
2966
+	/** This action is documented in geodirectory_template_actions.php */
2967
+	do_action('geodir_main_content_close', 'author-page');
2968 2968
 }
2969 2969
 
2970 2970
 add_action('geodir_sidebar_author_bottom_section', 'geodir_action_sidebar_author_bottom_section', 10);
@@ -2978,11 +2978,11 @@  discard block
 block discarded – undo
2978 2978
  */
2979 2979
 function geodir_action_sidebar_author_bottom_section()
2980 2980
 {
2981
-    if (get_option('geodir_show_author_bottom_section')) { ?>
2981
+	if (get_option('geodir_show_author_bottom_section')) { ?>
2982 2982
         <div
2983 2983
             class="<?php
2984
-            /** This action is documented in geodirectory_template_actions.php */
2985
-            echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_author_bottom'); ?>">
2984
+			/** This action is documented in geodirectory_template_actions.php */
2985
+			echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_author_bottom'); ?>">
2986 2986
             <?php dynamic_sidebar('geodir_author_bottom'); ?>
2987 2987
         </div><!-- clearfix ends here-->
2988 2988
     <?php }
@@ -3001,23 +3001,23 @@  discard block
 block discarded – undo
3001 3001
  */
3002 3002
 function geodir_action_search_page_title()
3003 3003
 {
3004
-    $gd_post_type = geodir_get_current_posttype();
3005
-    $post_type_info = get_post_type_object($gd_post_type);
3004
+	$gd_post_type = geodir_get_current_posttype();
3005
+	$post_type_info = get_post_type_object($gd_post_type);
3006 3006
 
3007
-    $pt_name = '';
3008
-    if(isset($post_type_info->labels->name)){$pt_name=$post_type_info->labels->name;}
3007
+	$pt_name = '';
3008
+	if(isset($post_type_info->labels->name)){$pt_name=$post_type_info->labels->name;}
3009 3009
 
3010
-    if (is_search()) {
3011
-        $list_title = __('Search', 'geodirectory') . ' ' . __($pt_name, 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
3010
+	if (is_search()) {
3011
+		$list_title = __('Search', 'geodirectory') . ' ' . __($pt_name, 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
3012 3012
 
3013
-    }
3014
-    /** This action is documented in geodirectory_template_actions.php */
3015
-    $class = apply_filters('geodir_page_title_class', 'entry-title fn');
3016
-    /** This action is documented in geodirectory_template_actions.php */
3017
-    $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
3018
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
3019
-        /** This action is documented in geodirectory_template_actions.php */
3020
-        apply_filters('geodir_listing_page_title', wptexturize($list_title)) . '</h1></header>';
3013
+	}
3014
+	/** This action is documented in geodirectory_template_actions.php */
3015
+	$class = apply_filters('geodir_page_title_class', 'entry-title fn');
3016
+	/** This action is documented in geodirectory_template_actions.php */
3017
+	$class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
3018
+	echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
3019
+		/** This action is documented in geodirectory_template_actions.php */
3020
+		apply_filters('geodir_listing_page_title', wptexturize($list_title)) . '</h1></header>';
3021 3021
 }
3022 3022
 
3023 3023
 // action for adding the listings page top widget area
@@ -3033,11 +3033,11 @@  discard block
 block discarded – undo
3033 3033
  */
3034 3034
 function geodir_action_geodir_sidebar_search_top()
3035 3035
 {
3036
-    if (get_option('geodir_show_search_top_section')) { ?>
3036
+	if (get_option('geodir_show_search_top_section')) { ?>
3037 3037
         <div
3038 3038
             class="<?php
3039
-            /** This action is documented in geodirectory_template_actions.php */
3040
-            echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_search_top'); ?>">
3039
+			/** This action is documented in geodirectory_template_actions.php */
3040
+			echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_search_top'); ?>">
3041 3041
             <?php dynamic_sidebar('geodir_search_top'); ?>
3042 3042
         </div><!-- clearfix ends here-->
3043 3043
     <?php }
@@ -3053,7 +3053,7 @@  discard block
 block discarded – undo
3053 3053
  */
3054 3054
 function geodir_search_left_section()
3055 3055
 {
3056
-    if (get_option('geodir_show_search_left_section')) { ?>
3056
+	if (get_option('geodir_show_search_left_section')) { ?>
3057 3057
         <div class="geodir-content-left geodir-sidebar-wrap">
3058 3058
             <?php dynamic_sidebar('geodir_search_left_sidebar'); ?>
3059 3059
         </div><!-- end geodir-content-left -->
@@ -3073,19 +3073,19 @@  discard block
 block discarded – undo
3073 3073
  */
3074 3074
 function geodir_action_search_sidebar_left()
3075 3075
 {
3076
-    if (get_option('geodir_show_search_left_section')) {
3076
+	if (get_option('geodir_show_search_left_section')) {
3077 3077
 // this adds the opening html tags to the primary div, this required the closing tag below :: ($type='',$id='',$class='',$itemtype='')
3078
-        /** This action is documented in geodirectory_template_actions.php */
3079
-        do_action('geodir_sidebar_left_open', 'search-page', 'geodir-sidebar-left', 'geodir-sidebar-left geodir-listings-sidebar-left', 'http://schema.org/WPSideBar');
3080
-        /**
3081
-         * This is used to add the content to the search page left sidebar (if active).
3082
-         *
3083
-         * @since 1.0.0
3084
-         */
3085
-        do_action('geodir_search_sidebar_left_inside');
3086
-        /** This action is documented in geodirectory_template_actions.php */
3087
-        do_action('geodir_sidebar_left_close', 'search-page');
3088
-    }
3078
+		/** This action is documented in geodirectory_template_actions.php */
3079
+		do_action('geodir_sidebar_left_open', 'search-page', 'geodir-sidebar-left', 'geodir-sidebar-left geodir-listings-sidebar-left', 'http://schema.org/WPSideBar');
3080
+		/**
3081
+		 * This is used to add the content to the search page left sidebar (if active).
3082
+		 *
3083
+		 * @since 1.0.0
3084
+		 */
3085
+		do_action('geodir_search_sidebar_left_inside');
3086
+		/** This action is documented in geodirectory_template_actions.php */
3087
+		do_action('geodir_sidebar_left_close', 'search-page');
3088
+	}
3089 3089
 }
3090 3090
 
3091 3091
 /**
@@ -3098,7 +3098,7 @@  discard block
 block discarded – undo
3098 3098
  */
3099 3099
 function geodir_search_right_section()
3100 3100
 {
3101
-    if (get_option('geodir_show_search_right_section')) { ?>
3101
+	if (get_option('geodir_show_search_right_section')) { ?>
3102 3102
         <div class="geodir-content-right geodir-sidebar-wrap">
3103 3103
             <?php dynamic_sidebar('geodir_search_right_sidebar'); ?>
3104 3104
         </div><!-- end geodir-content-right -->
@@ -3118,18 +3118,18 @@  discard block
 block discarded – undo
3118 3118
  */
3119 3119
 function geodir_action_search_sidebar_right()
3120 3120
 {
3121
-    if (get_option('geodir_show_search_right_section')) {
3122
-        /** This action is documented in geodirectory_template_actions.php */
3123
-        do_action('geodir_sidebar_right_open', 'search-page', 'geodir-sidebar-right', 'geodir-sidebar-right geodir-listings-sidebar-right', 'http://schema.org/WPSideBar');
3124
-        /**
3125
-         * This is used to add the content to the search page right sidebar (if active).
3126
-         *
3127
-         * @since 1.0.0
3128
-         */
3129
-        do_action('geodir_search_sidebar_right_inside');
3130
-        /** This action is documented in geodirectory_template_actions.php */
3131
-        do_action('geodir_sidebar_right_close', 'search-page');
3132
-    }
3121
+	if (get_option('geodir_show_search_right_section')) {
3122
+		/** This action is documented in geodirectory_template_actions.php */
3123
+		do_action('geodir_sidebar_right_open', 'search-page', 'geodir-sidebar-right', 'geodir-sidebar-right geodir-listings-sidebar-right', 'http://schema.org/WPSideBar');
3124
+		/**
3125
+		 * This is used to add the content to the search page right sidebar (if active).
3126
+		 *
3127
+		 * @since 1.0.0
3128
+		 */
3129
+		do_action('geodir_search_sidebar_right_inside');
3130
+		/** This action is documented in geodirectory_template_actions.php */
3131
+		do_action('geodir_sidebar_right_close', 'search-page');
3132
+	}
3133 3133
 }
3134 3134
 
3135 3135
 
@@ -3144,11 +3144,11 @@  discard block
 block discarded – undo
3144 3144
  */
3145 3145
 function geodir_action_sidebar_search_bottom_section()
3146 3146
 {
3147
-    if (get_option('geodir_show_search_bottom_section')) { ?>
3147
+	if (get_option('geodir_show_search_bottom_section')) { ?>
3148 3148
         <div
3149 3149
             class="<?php
3150
-            /** This action is documented in geodirectory_template_actions.php */
3151
-            echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_search_bottom'); ?>">
3150
+			/** This action is documented in geodirectory_template_actions.php */
3151
+			echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_search_bottom'); ?>">
3152 3152
             <?php dynamic_sidebar('geodir_search_bottom'); ?>
3153 3153
         </div><!-- clearfix ends here-->
3154 3154
     <?php }
@@ -3163,14 +3163,14 @@  discard block
 block discarded – undo
3163 3163
  */
3164 3164
 function geodir_action_search_content_inside()
3165 3165
 {
3166
-    global $gridview_columns;
3167
-    $listing_view = get_option('geodir_search_view');
3168
-    if (strstr($listing_view, 'gridview')) {
3169
-        $gridview_columns = $listing_view;
3170
-        $listing_view_exp = explode('_', $listing_view);
3171
-        $listing_view = $listing_view_exp[0];
3172
-    }
3173
-    geodir_get_template_part('listing', 'listview');
3166
+	global $gridview_columns;
3167
+	$listing_view = get_option('geodir_search_view');
3168
+	if (strstr($listing_view, 'gridview')) {
3169
+		$gridview_columns = $listing_view;
3170
+		$listing_view_exp = explode('_', $listing_view);
3171
+		$listing_view = $listing_view_exp[0];
3172
+	}
3173
+	geodir_get_template_part('listing', 'listview');
3174 3174
 }
3175 3175
 
3176 3176
 add_action('geodir_search_content_inside', 'geodir_action_search_content_inside', 10);
@@ -3186,22 +3186,22 @@  discard block
 block discarded – undo
3186 3186
  */
3187 3187
 function geodir_action_search_content()
3188 3188
 {
3189
-    /** This action is documented in geodirectory_template_actions.php */
3190
-    do_action('geodir_main_content_open', 'search-page', 'geodir-main-content', 'search-page');
3191
-    echo '<div class="clearfix">';
3192
-    /** This action is documented in geodirectory_template_actions.php */
3193
-    do_action('geodir_before_listing');
3194
-    echo '</div>';
3195
-    /**
3196
-     * This is used to add the content to the search page main content.
3197
-     *
3198
-     * @since 1.0.0
3199
-     */
3200
-    do_action('geodir_search_content_inside');
3201
-    /** This action is documented in geodirectory_template_actions.php */
3202
-    do_action('geodir_after_listing');
3203
-    /** This action is documented in geodirectory_template_actions.php */
3204
-    do_action('geodir_main_content_close', 'search-page');
3189
+	/** This action is documented in geodirectory_template_actions.php */
3190
+	do_action('geodir_main_content_open', 'search-page', 'geodir-main-content', 'search-page');
3191
+	echo '<div class="clearfix">';
3192
+	/** This action is documented in geodirectory_template_actions.php */
3193
+	do_action('geodir_before_listing');
3194
+	echo '</div>';
3195
+	/**
3196
+	 * This is used to add the content to the search page main content.
3197
+	 *
3198
+	 * @since 1.0.0
3199
+	 */
3200
+	do_action('geodir_search_content_inside');
3201
+	/** This action is documented in geodirectory_template_actions.php */
3202
+	do_action('geodir_after_listing');
3203
+	/** This action is documented in geodirectory_template_actions.php */
3204
+	do_action('geodir_main_content_close', 'search-page');
3205 3205
 }
3206 3206
 
3207 3207
 ###############################################
@@ -3224,11 +3224,11 @@  discard block
 block discarded – undo
3224 3224
  */
3225 3225
 function geodir_action_geodir_sidebar_home_top()
3226 3226
 {
3227
-    if (get_option('geodir_show_home_top_section')) { ?>
3227
+	if (get_option('geodir_show_home_top_section')) { ?>
3228 3228
         <div
3229 3229
             class="<?php
3230
-            /** This action is documented in geodirectory_template_actions.php */
3231
-            echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_home_top'); ?>">
3230
+			/** This action is documented in geodirectory_template_actions.php */
3231
+			echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_home_top'); ?>">
3232 3232
             <?php dynamic_sidebar('geodir_home_top'); ?>
3233 3233
         </div><!-- clearfix ends here-->
3234 3234
     <?php }
@@ -3244,7 +3244,7 @@  discard block
 block discarded – undo
3244 3244
  */
3245 3245
 function geodir_home_left_section()
3246 3246
 {
3247
-    if (get_option('geodir_show_home_left_section')) { ?>
3247
+	if (get_option('geodir_show_home_left_section')) { ?>
3248 3248
         <div class="geodir-content-left geodir-sidebar-wrap">
3249 3249
             <?php dynamic_sidebar('geodir_home_left'); ?>
3250 3250
         </div><!-- end geodir-content-left -->
@@ -3266,19 +3266,19 @@  discard block
 block discarded – undo
3266 3266
  */
3267 3267
 function geodir_action_home_sidebar_left()
3268 3268
 {
3269
-    if (get_option('geodir_show_home_left_section')) {
3269
+	if (get_option('geodir_show_home_left_section')) {
3270 3270
 // this adds the opening html tags to the primary div, this required the closing tag below :: ($type='',$id='',$class='',$itemtype='')
3271
-        /** This action is documented in geodirectory_template_actions.php */
3272
-        do_action('geodir_sidebar_left_open', 'home-page', 'geodir-sidebar-left', 'geodir-sidebar geodir-sidebar-left geodir-listings-sidebar-left', 'http://schema.org/WPSideBar');
3273
-        /**
3274
-         * This is used to add the content to the home page left sidebar (if active).
3275
-         *
3276
-         * @since 1.0.0
3277
-         */
3278
-        do_action('geodir_home_sidebar_left_inside');
3279
-        /** This action is documented in geodirectory_template_actions.php */
3280
-        do_action('geodir_sidebar_left_close', 'home-page');
3281
-    }
3271
+		/** This action is documented in geodirectory_template_actions.php */
3272
+		do_action('geodir_sidebar_left_open', 'home-page', 'geodir-sidebar-left', 'geodir-sidebar geodir-sidebar-left geodir-listings-sidebar-left', 'http://schema.org/WPSideBar');
3273
+		/**
3274
+		 * This is used to add the content to the home page left sidebar (if active).
3275
+		 *
3276
+		 * @since 1.0.0
3277
+		 */
3278
+		do_action('geodir_home_sidebar_left_inside');
3279
+		/** This action is documented in geodirectory_template_actions.php */
3280
+		do_action('geodir_sidebar_left_close', 'home-page');
3281
+	}
3282 3282
 }
3283 3283
 
3284 3284
 /**
@@ -3291,7 +3291,7 @@  discard block
 block discarded – undo
3291 3291
  */
3292 3292
 function geodir_home_right_section()
3293 3293
 {
3294
-    if (get_option('geodir_show_home_right_section')) { ?>
3294
+	if (get_option('geodir_show_home_right_section')) { ?>
3295 3295
         <div class="geodir-content-right geodir-sidebar-wrap">
3296 3296
             <?php dynamic_sidebar('geodir_home_right'); ?>
3297 3297
         </div><!-- end geodir-content-right -->
@@ -3312,18 +3312,18 @@  discard block
 block discarded – undo
3312 3312
  */
3313 3313
 function geodir_action_home_sidebar_right()
3314 3314
 {
3315
-    if (get_option('geodir_show_home_right_section')) {
3316
-        /** This action is documented in geodirectory_template_actions.php */
3317
-        do_action('geodir_sidebar_right_open', 'home-page', 'geodir-sidebar-right', 'geodir-sidebar-right geodir-listings-sidebar-right', 'http://schema.org/WPSideBar');
3318
-        /**
3319
-         * This is used to add the content to the home page right sidebar (if active).
3320
-         *
3321
-         * @since 1.0.0
3322
-         */
3323
-        do_action('geodir_home_sidebar_right_inside');
3324
-        /** This action is documented in geodirectory_template_actions.php */
3325
-        do_action('geodir_sidebar_right_close', 'home-page');
3326
-    }
3315
+	if (get_option('geodir_show_home_right_section')) {
3316
+		/** This action is documented in geodirectory_template_actions.php */
3317
+		do_action('geodir_sidebar_right_open', 'home-page', 'geodir-sidebar-right', 'geodir-sidebar-right geodir-listings-sidebar-right', 'http://schema.org/WPSideBar');
3318
+		/**
3319
+		 * This is used to add the content to the home page right sidebar (if active).
3320
+		 *
3321
+		 * @since 1.0.0
3322
+		 */
3323
+		do_action('geodir_home_sidebar_right_inside');
3324
+		/** This action is documented in geodirectory_template_actions.php */
3325
+		do_action('geodir_sidebar_right_close', 'home-page');
3326
+	}
3327 3327
 }
3328 3328
 
3329 3329
 /**
@@ -3334,7 +3334,7 @@  discard block
 block discarded – undo
3334 3334
  */
3335 3335
 function geodir_action_home_content_inside()
3336 3336
 {
3337
-    dynamic_sidebar('geodir_home_content');
3337
+	dynamic_sidebar('geodir_home_content');
3338 3338
 }
3339 3339
 
3340 3340
 add_action('geodir_home_content_inside', 'geodir_action_home_content_inside', 10);
@@ -3349,28 +3349,28 @@  discard block
 block discarded – undo
3349 3349
  */
3350 3350
 function geodir_action_home_content()
3351 3351
 {
3352
-    /** This action is documented in geodirectory_template_actions.php */
3353
-    do_action('geodir_main_content_open', 'home-page', 'geodir-main-content', 'home-page');
3354
-    /**
3355
-     * This called before the home page main content.
3356
-     *
3357
-     * @since 1.0.0
3358
-     */
3359
-    do_action('geodir_before_home_content');
3360
-    /**
3361
-     * This is used to add the content to the home page main content.
3362
-     *
3363
-     * @since 1.0.0
3364
-     */
3365
-    do_action('geodir_home_content_inside');
3366
-    /**
3367
-     * This is called after the homepage main content.
3368
-     *
3369
-     * @since 1.0.0
3370
-     */
3371
-    do_action('geodir_after_home_content');
3372
-    /** This action is documented in geodirectory_template_actions.php */
3373
-    do_action('geodir_main_content_close', 'home-page');
3352
+	/** This action is documented in geodirectory_template_actions.php */
3353
+	do_action('geodir_main_content_open', 'home-page', 'geodir-main-content', 'home-page');
3354
+	/**
3355
+	 * This called before the home page main content.
3356
+	 *
3357
+	 * @since 1.0.0
3358
+	 */
3359
+	do_action('geodir_before_home_content');
3360
+	/**
3361
+	 * This is used to add the content to the home page main content.
3362
+	 *
3363
+	 * @since 1.0.0
3364
+	 */
3365
+	do_action('geodir_home_content_inside');
3366
+	/**
3367
+	 * This is called after the homepage main content.
3368
+	 *
3369
+	 * @since 1.0.0
3370
+	 */
3371
+	do_action('geodir_after_home_content');
3372
+	/** This action is documented in geodirectory_template_actions.php */
3373
+	do_action('geodir_main_content_close', 'home-page');
3374 3374
 }
3375 3375
 
3376 3376
 add_action('geodir_sidebar_location_bottom_section', 'geodir_action_sidebar_home_bottom_section', 10);
@@ -3385,11 +3385,11 @@  discard block
 block discarded – undo
3385 3385
  */
3386 3386
 function geodir_action_sidebar_home_bottom_section()
3387 3387
 {
3388
-    if (get_option('geodir_show_home_bottom_section')) { ?>
3388
+	if (get_option('geodir_show_home_bottom_section')) { ?>
3389 3389
         <div
3390 3390
             class="<?php
3391
-            /** This action is documented in geodirectory_template_actions.php */
3392
-            echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_home_bottom'); ?>">
3391
+			/** This action is documented in geodirectory_template_actions.php */
3392
+			echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'geodir_home_bottom'); ?>">
3393 3393
             <?php dynamic_sidebar('geodir_home_bottom'); ?>
3394 3394
         </div><!-- clearfix ends here-->
3395 3395
     <?php }
@@ -3417,13 +3417,13 @@  discard block
 block discarded – undo
3417 3417
  */
3418 3418
 function geodir_filter_listing_page_title($list_title)
3419 3419
 {
3420
-    if (is_search() && trim(get_search_query()) == '') {
3421
-        $gd_post_type = geodir_get_current_posttype();
3422
-        $post_type_info = get_post_type_object($gd_post_type);
3420
+	if (is_search() && trim(get_search_query()) == '') {
3421
+		$gd_post_type = geodir_get_current_posttype();
3422
+		$post_type_info = get_post_type_object($gd_post_type);
3423 3423
 
3424
-        $list_title = __('Search', 'geodirectory') . ' ' . __(ucfirst($post_type_info->labels->name), 'geodirectory') . __(' :', 'geodirectory');
3425
-    }
3426
-    return $list_title;
3424
+		$list_title = __('Search', 'geodirectory') . ' ' . __(ucfirst($post_type_info->labels->name), 'geodirectory') . __(' :', 'geodirectory');
3425
+	}
3426
+	return $list_title;
3427 3427
 }
3428 3428
 
3429 3429
 add_action('geodir_message_not_found_on_listing', 'geodir_display_message_not_found_on_listing');
@@ -3438,62 +3438,62 @@  discard block
 block discarded – undo
3438 3438
  * @param string $gd_page The geodirectory page type. Default null.
3439 3439
  */
3440 3440
 function geodir_add_page_content( $position = 'before', $gd_page = '' ) {
3441
-    global $post;
3442
-
3443
-    $gd_page_id = NULL;
3444
-    if ($gd_page == 'home-page' && geodir_is_page('home')) {
3445
-        $gd_page_id = geodir_home_page_id();
3446
-    } else if ($gd_page == 'details-page' && geodir_is_page('preview')) {
3447
-        $gd_page_id = geodir_preview_page_id();
3448
-    } else if ($gd_page == 'add-listing-page' && geodir_is_page('add-listing')) {
3449
-        $gd_page_id = geodir_add_listing_page_id();
3450
-    } else if ($gd_page == 'success-page' && geodir_is_page('listing-success')) {
3451
-        $gd_page_id = geodir_success_page_id();
3452
-    } else if ($gd_page == 'location-page' && geodir_is_page('location')) {
3453
-        $gd_page_id = geodir_location_page_id();
3454
-    } else if ($gd_page == 'info-page' && geodir_is_page('info')) {
3455
-        $gd_page_id = geodir_info_page_id();
3456
-    } else if ($gd_page == 'signup-page' && geodir_is_page('login')) {
3457
-        $gd_page_id = geodir_login_page_id();
3458
-    } else if ($gd_page == 'checkout-page' && geodir_is_page('checkout')) {
3459
-        $gd_page_id = geodir_payment_checkout_page_id();
3460
-    } else if ($gd_page == 'invoices-page' && geodir_is_page('invoices')) {
3461
-        $gd_page_id = geodir_payment_invoices_page_id();
3462
-    }
3463
-
3464
-    if (!$gd_page_id > 0) {
3465
-        return;
3466
-    }
3467
-
3468
-    $display = 'before';
3469
-    /**
3470
-     * Filter the position to display the page content.
3471
-     *
3472
-     * @since 1.6.3
3473
-     *
3474
-     * @param string $display Position to add the post content.
3475
-     * @param string $gd_page The geodirectory page type.
3476
-     */
3477
-    $display = apply_filters('geodir_add_page_content_position', $display, $gd_page);
3478
-
3479
-    if ($position !== $display) {
3480
-        return;
3481
-    }
3482
-
3483
-    $gd_post = $post;
3484
-
3485
-    setup_postdata(get_post($gd_page_id));
3486
-
3487
-    if (get_the_content()) {
3488
-        ?>
3441
+	global $post;
3442
+
3443
+	$gd_page_id = NULL;
3444
+	if ($gd_page == 'home-page' && geodir_is_page('home')) {
3445
+		$gd_page_id = geodir_home_page_id();
3446
+	} else if ($gd_page == 'details-page' && geodir_is_page('preview')) {
3447
+		$gd_page_id = geodir_preview_page_id();
3448
+	} else if ($gd_page == 'add-listing-page' && geodir_is_page('add-listing')) {
3449
+		$gd_page_id = geodir_add_listing_page_id();
3450
+	} else if ($gd_page == 'success-page' && geodir_is_page('listing-success')) {
3451
+		$gd_page_id = geodir_success_page_id();
3452
+	} else if ($gd_page == 'location-page' && geodir_is_page('location')) {
3453
+		$gd_page_id = geodir_location_page_id();
3454
+	} else if ($gd_page == 'info-page' && geodir_is_page('info')) {
3455
+		$gd_page_id = geodir_info_page_id();
3456
+	} else if ($gd_page == 'signup-page' && geodir_is_page('login')) {
3457
+		$gd_page_id = geodir_login_page_id();
3458
+	} else if ($gd_page == 'checkout-page' && geodir_is_page('checkout')) {
3459
+		$gd_page_id = geodir_payment_checkout_page_id();
3460
+	} else if ($gd_page == 'invoices-page' && geodir_is_page('invoices')) {
3461
+		$gd_page_id = geodir_payment_invoices_page_id();
3462
+	}
3463
+
3464
+	if (!$gd_page_id > 0) {
3465
+		return;
3466
+	}
3467
+
3468
+	$display = 'before';
3469
+	/**
3470
+	 * Filter the position to display the page content.
3471
+	 *
3472
+	 * @since 1.6.3
3473
+	 *
3474
+	 * @param string $display Position to add the post content.
3475
+	 * @param string $gd_page The geodirectory page type.
3476
+	 */
3477
+	$display = apply_filters('geodir_add_page_content_position', $display, $gd_page);
3478
+
3479
+	if ($position !== $display) {
3480
+		return;
3481
+	}
3482
+
3483
+	$gd_post = $post;
3484
+
3485
+	setup_postdata(get_post($gd_page_id));
3486
+
3487
+	if (get_the_content()) {
3488
+		?>
3489 3489
         <section class="entry-content clearfix" itemprop="articleBody"><?php the_content(); ?></section>
3490 3490
         <?php
3491
-    }
3491
+	}
3492 3492
 
3493
-    $post = $gd_post;
3494
-    if (!empty($gd_post) && is_object($gd_post)) {
3495
-        setup_postdata($gd_post);
3496
-    }
3493
+	$post = $gd_post;
3494
+	if (!empty($gd_post) && is_object($gd_post)) {
3495
+		setup_postdata($gd_post);
3496
+	}
3497 3497
 
3498 3498
 }
3499 3499
 add_action('geodir_add_page_content', 'geodir_add_page_content', 10, 2);
3500 3500
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +167 added lines, -167 removed lines patch added patch discarded remove patch
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
 
284 284
     //php
285 285
     if (!empty($tc['geodir_theme_compat_code'])) {
286
-        include_once('geodirectory-functions/compatibility/' . $tc['geodir_theme_compat_code'] . '.php');
286
+        include_once('geodirectory-functions/compatibility/'.$tc['geodir_theme_compat_code'].'.php');
287 287
     }
288 288
 
289 289
     //geodir_full_page_class
@@ -453,13 +453,13 @@  discard block
 block discarded – undo
453 453
 function geodir_action_wrapper_content_open($type = '', $id = '', $class = '')
454 454
 {
455 455
     if ($type == 'home-page' && $width = get_option('geodir_width_home_contant_section')) {
456
-        $width_css = 'style="width:' . $width . '%;"';
456
+        $width_css = 'style="width:'.$width.'%;"';
457 457
     } elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_contant_section')) {
458
-        $width_css = 'style="width:' . $width . '%;"';
458
+        $width_css = 'style="width:'.$width.'%;"';
459 459
     } elseif ($type == 'search-page' && $width = get_option('geodir_width_search_contant_section')) {
460
-        $width_css = 'style="width:' . $width . '%;"';
460
+        $width_css = 'style="width:'.$width.'%;"';
461 461
     } elseif ($type == 'author-page' && $width = get_option('geodir_width_author_contant_section')) {
462
-        $width_css = 'style="width:' . $width . '%;"';
462
+        $width_css = 'style="width:'.$width.'%;"';
463 463
     } else {
464 464
         $width_css = '';
465 465
     }
@@ -573,13 +573,13 @@  discard block
 block discarded – undo
573 573
 function geodir_action_sidebar_right_open($type = '', $id = '', $class = '', $itemtype = '')
574 574
 {
575 575
     if ($type == 'home-page' && $width = get_option('geodir_width_home_right_section')) {
576
-        $width_css = 'style="width:' . $width . '%;"';
576
+        $width_css = 'style="width:'.$width.'%;"';
577 577
     } elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_right_section')) {
578
-        $width_css = 'style="width:' . $width . '%;"';
578
+        $width_css = 'style="width:'.$width.'%;"';
579 579
     } elseif ($type == 'search-page' && $width = get_option('geodir_width_search_right_section')) {
580
-        $width_css = 'style="width:' . $width . '%;"';
580
+        $width_css = 'style="width:'.$width.'%;"';
581 581
     } elseif ($type == 'author-page' && $width = get_option('geodir_width_author_right_section')) {
582
-        $width_css = 'style="width:' . $width . '%;"';
582
+        $width_css = 'style="width:'.$width.'%;"';
583 583
     } else {
584 584
         $width_css = '';
585 585
     }
@@ -677,7 +677,7 @@  discard block
 block discarded – undo
677 677
         }
678 678
     }
679 679
 
680
-    $post = (object)$_REQUEST;
680
+    $post = (object) $_REQUEST;
681 681
 
682 682
 
683 683
     if (isset($post->video)) {
@@ -736,10 +736,10 @@  discard block
 block discarded – undo
736 736
 
737 737
     $json = '{';
738 738
     $json .= '"post_preview": "1",';
739
-    $json .= '"t": "' . $json_title . '",';
740
-    $json .= '"lt": "' . $post_latitude . '",';
741
-    $json .= '"ln": "' . $post_longitude . '",';
742
-    $json .= '"i":"' . $term_icon . '"';
739
+    $json .= '"t": "'.$json_title.'",';
740
+    $json .= '"lt": "'.$post_latitude.'",';
741
+    $json .= '"ln": "'.$post_longitude.'",';
742
+    $json .= '"i":"'.$term_icon.'"';
743 743
     $json .= '}';
744 744
 
745 745
     $post->marker_json = $json;
@@ -966,7 +966,7 @@  discard block
 block discarded – undo
966 966
      * @param string $class The class to use. Default is 'entry-header'.
967 967
      */
968 968
     $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
969
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' . stripslashes(get_the_title()) . '</h1></header>';
969
+    echo '<header class="'.$class_header.'"><h1 class="'.$class.'">'.stripslashes(get_the_title()).'</h1></header>';
970 970
 }
971 971
 
972 972
 
@@ -1020,7 +1020,7 @@  discard block
 block discarded – undo
1020 1020
                     $height = !empty($sizes) && isset($sizes[1]) ? $sizes[1] : 0;
1021 1021
 
1022 1022
                     if ($image && $width && $height) {
1023
-                        $image = (object)array('src' => $image, 'width' => $width, 'height' => $height);
1023
+                        $image = (object) array('src' => $image, 'width' => $width, 'height' => $height);
1024 1024
                     }
1025 1025
 
1026 1026
                     if (isset($image->src)) {
@@ -1032,9 +1032,9 @@  discard block
 block discarded – undo
1032 1032
 
1033 1033
                         $image_title = isset($image->title) ? $image->title : '';
1034 1034
 
1035
-                        $main_slides .= '<li><img src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:' . $spacer_height . 'px;margin:0 auto;" />';
1036
-                        $main_slides .= '<img src="' . $image->src . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:400px;margin:0 auto;" /></li>';
1037
-                        $nav_slides .= '<li><img src="' . $image->src . '" alt="' . $image_title . '" title="' . $image_title . '" style="max-height:48px;margin:0 auto;" /></li>';
1035
+                        $main_slides .= '<li><img src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$image_title.'" title="'.$image_title.'" style="max-height:'.$spacer_height.'px;margin:0 auto;" />';
1036
+                        $main_slides .= '<img src="'.$image->src.'" alt="'.$image_title.'" title="'.$image_title.'" style="max-height:400px;margin:0 auto;" /></li>';
1037
+                        $nav_slides .= '<li><img src="'.$image->src.'" alt="'.$image_title.'" title="'.$image_title.'" style="max-height:48px;margin:0 auto;" /></li>';
1038 1038
                         $slides++;
1039 1039
                     }
1040 1040
                 }
@@ -1060,10 +1060,10 @@  discard block
 block discarded – undo
1060 1060
                 } else {
1061 1061
                     $spacer_height = ((400 - $image->height) / 2);
1062 1062
                 }
1063
-                $caption = '';//(!empty($image->caption)) ? '<p class="flex-caption">'.$image->caption.'</p>' : '';
1064
-                $main_slides .= '<li><img src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:' . $spacer_height . 'px;margin:0 auto;" />';
1065
-                $main_slides .= '<img src="' . $image->src . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:400px;margin:0 auto;" />'.$caption.'</li>';
1066
-                $nav_slides .= '<li><img src="' . $image->src . '" alt="' . $image->title . '" title="' . $image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
1063
+                $caption = ''; //(!empty($image->caption)) ? '<p class="flex-caption">'.$image->caption.'</p>' : '';
1064
+                $main_slides .= '<li><img src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$image->title.'" title="'.$image->title.'" style="max-height:'.$spacer_height.'px;margin:0 auto;" />';
1065
+                $main_slides .= '<img src="'.$image->src.'" alt="'.$image->title.'" title="'.$image->title.'" style="max-height:400px;margin:0 auto;" />'.$caption.'</li>';
1066
+                $nav_slides .= '<li><img src="'.$image->src.'" alt="'.$image->title.'" title="'.$image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
1067 1067
                 $slides++;
1068 1068
             }
1069 1069
         }// endfore
@@ -1098,7 +1098,7 @@  discard block
 block discarded – undo
1098 1098
  */
1099 1099
 function geodir_action_details_taxonomies()
1100 1100
 {
1101
-    global $preview, $post;?>
1101
+    global $preview, $post; ?>
1102 1102
     <p class="geodir_post_taxomomies clearfix">
1103 1103
     <?php
1104 1104
     $taxonomies = array();
@@ -1107,11 +1107,11 @@  discard block
 block discarded – undo
1107 1107
 
1108 1108
     if ($preview && !$is_backend_preview) {
1109 1109
         $post_type = $post->listing_type;
1110
-        $post_taxonomy = $post_type . 'category';
1110
+        $post_taxonomy = $post_type.'category';
1111 1111
         $post->{$post_taxonomy} = $post->post_category[$post_taxonomy];
1112 1112
     } else {
1113 1113
         $post_type = $post->post_type;
1114
-        $post_taxonomy = $post_type . 'category';
1114
+        $post_taxonomy = $post_type.'category';
1115 1115
     }
1116 1116
 //{
1117 1117
     $post_type_info = get_post_type_object($post_type);
@@ -1119,7 +1119,7 @@  discard block
 block discarded – undo
1119 1119
 
1120 1120
     if (!empty($post->post_tags)) {
1121 1121
 
1122
-        if (taxonomy_exists($post_type . '_tags')):
1122
+        if (taxonomy_exists($post_type.'_tags')):
1123 1123
             $links = array();
1124 1124
             $terms = array();
1125 1125
             // to limit post tags
@@ -1146,8 +1146,8 @@  discard block
 block discarded – undo
1146 1146
                 $post_term = trim($post_term);
1147 1147
 
1148 1148
                 $priority_location = false;
1149
-                if ($insert_term = term_exists($post_term, $post_type . '_tags')) {
1150
-                    $term = get_term_by('id', $insert_term['term_id'], $post_type . '_tags');
1149
+                if ($insert_term = term_exists($post_term, $post_type.'_tags')) {
1150
+                    $term = get_term_by('id', $insert_term['term_id'], $post_type.'_tags');
1151 1151
                 } else {
1152 1152
                     $post_country = isset($_REQUEST['post_country']) && $_REQUEST['post_country'] != '' ? sanitize_text_field($_REQUEST['post_country']) : NULL;
1153 1153
                     $post_region = isset($_REQUEST['post_region']) && $_REQUEST['post_region'] != '' ? sanitize_text_field($_REQUEST['post_region']) : NULL;
@@ -1157,10 +1157,10 @@  discard block
 block discarded – undo
1157 1157
                     $match_city = $post_city && sanitize_title($post_term) == sanitize_title($post_city) ? true : false;
1158 1158
                     if ($match_country || $match_region || $match_city) {
1159 1159
                         $priority_location = true;
1160
-                        $term = get_term_by('name', $post_term, $post_type . '_tags');
1160
+                        $term = get_term_by('name', $post_term, $post_type.'_tags');
1161 1161
                     } else {
1162
-                        $insert_term = wp_insert_term($post_term, $post_type . '_tags');
1163
-                        $term = get_term_by('name', $post_term, $post_type . '_tags');
1162
+                        $insert_term = wp_insert_term($post_term, $post_type.'_tags');
1163
+                        $term = get_term_by('name', $post_term, $post_type.'_tags');
1164 1164
                     }
1165 1165
                 }
1166 1166
 
@@ -1177,12 +1177,12 @@  discard block
 block discarded – undo
1177 1177
                          * @param string $tag_link The tag link html.
1178 1178
                          * @param object $term The tag term object.
1179 1179
                          */
1180
-                        $tag_link = apply_filters('geodir_details_taxonomies_tag_link',$tag_link,$term);
1180
+                        $tag_link = apply_filters('geodir_details_taxonomies_tag_link', $tag_link, $term);
1181 1181
                         $links[] = $tag_link;
1182 1182
                     } else {
1183
-                        $tag_link = "<a href='" . esc_attr(get_term_link($term->term_id, $term->taxonomy)) . "'>$term->name</a>";
1183
+                        $tag_link = "<a href='".esc_attr(get_term_link($term->term_id, $term->taxonomy))."'>$term->name</a>";
1184 1184
                         /** This action is documented in geodirectory-template_actions.php */
1185
-                        $tag_link = apply_filters('geodir_details_taxonomies_tag_link',$tag_link,$term);
1185
+                        $tag_link = apply_filters('geodir_details_taxonomies_tag_link', $tag_link, $term);
1186 1186
                         $links[] = $tag_link;
1187 1187
                     }
1188 1188
                     $terms[] = $term;
@@ -1192,7 +1192,7 @@  discard block
 block discarded – undo
1192 1192
             if (!isset($listing_label)) {
1193 1193
                 $listing_label = '';
1194 1194
             }
1195
-            $taxonomies[$post_type . '_tags'] = wp_sprintf(__('%s Tags: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object)$terms);
1195
+            $taxonomies[$post_type.'_tags'] = wp_sprintf(__('%s Tags: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object) $terms);
1196 1196
         endif;
1197 1197
 
1198 1198
     }
@@ -1220,7 +1220,7 @@  discard block
 block discarded – undo
1220 1220
                     $term = get_term_by('id', $post_term, $post_taxonomy);
1221 1221
 
1222 1222
                     if (is_object($term)) {
1223
-                        $term_link = "<a href='" . esc_attr(get_term_link($term, $post_taxonomy)) . "'>$term->name</a>";
1223
+                        $term_link = "<a href='".esc_attr(get_term_link($term, $post_taxonomy))."'>$term->name</a>";
1224 1224
                         /**
1225 1225
                          * Filter the category name on the details page.
1226 1226
                          *
@@ -1228,7 +1228,7 @@  discard block
 block discarded – undo
1228 1228
                          * @param string $term_link The link html to the category.
1229 1229
                          * @param object $term The category term object.
1230 1230
                          */
1231
-                        $term_link = apply_filters('geodir_details_taxonomies_cat_link',$term_link,$term);
1231
+                        $term_link = apply_filters('geodir_details_taxonomies_cat_link', $term_link, $term);
1232 1232
                         $links[] = $term_link;
1233 1233
                         $terms[] = $term;
1234 1234
                     }
@@ -1246,7 +1246,7 @@  discard block
 block discarded – undo
1246 1246
         if (!isset($listing_label)) {
1247 1247
             $listing_label = '';
1248 1248
         }
1249
-        $taxonomies[$post_taxonomy] = wp_sprintf(__('%s Category: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object)$terms);
1249
+        $taxonomies[$post_taxonomy] = wp_sprintf(__('%s Category: %l', 'geodirectory'), geodir_ucwords($listing_label), $links, (object) $terms);
1250 1250
 
1251 1251
     }
1252 1252
 
@@ -1259,14 +1259,14 @@  discard block
 block discarded – undo
1259 1259
      * @param string $listing_label The post type label.
1260 1260
      * @param string $listing_label The post type label with ucwords function.
1261 1261
      */
1262
-    $taxonomies = apply_filters('geodir_details_taxonomies_output',$taxonomies,$post_type,$listing_label,geodir_ucwords($listing_label));
1262
+    $taxonomies = apply_filters('geodir_details_taxonomies_output', $taxonomies, $post_type, $listing_label, geodir_ucwords($listing_label));
1263 1263
 
1264 1264
     if (isset($taxonomies[$post_taxonomy])) {
1265
-        echo '<span class="geodir-category">' . $taxonomies[$post_taxonomy] . '</span>';
1265
+        echo '<span class="geodir-category">'.$taxonomies[$post_taxonomy].'</span>';
1266 1266
     }
1267 1267
 
1268
-    if (isset($taxonomies[$post_type . '_tags']))
1269
-        echo '<span class="geodir-tags">' . $taxonomies[$post_type . '_tags'] . '</span>';
1268
+    if (isset($taxonomies[$post_type.'_tags']))
1269
+        echo '<span class="geodir-tags">'.$taxonomies[$post_type.'_tags'].'</span>';
1270 1270
 
1271 1271
     ?>
1272 1272
     </p><?php
@@ -1287,11 +1287,11 @@  discard block
 block discarded – undo
1287 1287
  * @param object $post Optional. The post object or blank.
1288 1288
  * @package GeoDirectory
1289 1289
  */
1290
-function geodir_action_details_micordata($post='')
1290
+function geodir_action_details_micordata($post = '')
1291 1291
 {
1292 1292
 
1293 1293
     global $preview;
1294
-    if(empty($post)){global $post;}
1294
+    if (empty($post)) {global $post; }
1295 1295
     if ($preview || !geodir_is_page('detail')) {
1296 1296
         return;
1297 1297
     }
@@ -1312,7 +1312,7 @@  discard block
 block discarded – undo
1312 1312
                 "description" => $review->comment_content,
1313 1313
                 "reviewRating" => array(
1314 1314
                     "@type" => "Rating",
1315
-                    "bestRating" => "5",// @todo this will need to be filtered for review manager if user changes the score.
1315
+                    "bestRating" => "5", // @todo this will need to be filtered for review manager if user changes the score.
1316 1316
                     "ratingValue" => geodir_get_commentoverall($review->comment_ID),
1317 1317
                     "worstRating" => "1"
1318 1318
                 )
@@ -1340,13 +1340,13 @@  discard block
 block discarded – undo
1340 1340
     }
1341 1341
     //print_r($post);
1342 1342
     // external links
1343
-    $external_links =  array();
1343
+    $external_links = array();
1344 1344
     $external_links[] = $post->geodir_website;
1345 1345
     $external_links[] = $post->geodir_twitter;
1346 1346
     $external_links[] = $post->geodir_facebook;
1347 1347
     $external_links = array_filter($external_links);
1348 1348
 
1349
-    if(!empty($external_links)){
1349
+    if (!empty($external_links)) {
1350 1350
         $external_links = array_values($external_links);
1351 1351
     }
1352 1352
 
@@ -1356,17 +1356,17 @@  discard block
 block discarded – undo
1356 1356
 
1357 1357
     // schema type
1358 1358
     $schema_type = 'LocalBusiness';
1359
-    if(isset($post->default_category) && $post->default_category){
1359
+    if (isset($post->default_category) && $post->default_category) {
1360 1360
         $cat_schema = get_tax_meta($post->default_category, 'ct_cat_schema', false, $post->post_type);
1361
-        if($cat_schema){$schema_type = $cat_schema;}
1362
-        if(!$schema_type && $post->post_type=='gd_event'){$schema_type = 'Event';}
1361
+        if ($cat_schema) {$schema_type = $cat_schema; }
1362
+        if (!$schema_type && $post->post_type == 'gd_event') {$schema_type = 'Event'; }
1363 1363
     }
1364 1364
 
1365 1365
     $schema = array();
1366 1366
     $schema['@context'] = "https://schema.org";
1367 1367
     $schema['@type'] = $schema_type;
1368 1368
     $schema['name'] = $post->post_title;
1369
-    $schema['description'] = wp_strip_all_tags( $post->post_content, true );
1369
+    $schema['description'] = wp_strip_all_tags($post->post_content, true);
1370 1370
     $schema['telephone'] = $post->geodir_contact;
1371 1371
     $schema['url'] = $c_url;
1372 1372
     $schema['sameAs'] = $external_links;
@@ -1380,7 +1380,7 @@  discard block
 block discarded – undo
1380 1380
         "postalCode" => $post->post_zip
1381 1381
     );
1382 1382
 
1383
-    if($post->post_latitude && $post->post_longitude) {
1383
+    if ($post->post_latitude && $post->post_longitude) {
1384 1384
         $schema['geo'] = array(
1385 1385
             "@type" => "GeoCoordinates",
1386 1386
             "latitude" => $post->post_latitude,
@@ -1388,7 +1388,7 @@  discard block
 block discarded – undo
1388 1388
         );
1389 1389
     }
1390 1390
 
1391
-    if($post_avgratings) {
1391
+    if ($post_avgratings) {
1392 1392
         $schema['aggregateRating'] = array(
1393 1393
             "@type" => "AggregateRating",
1394 1394
             "ratingValue" => $post_avgratings,
@@ -1407,10 +1407,10 @@  discard block
 block discarded – undo
1407 1407
      * @param array $schema The array of schema data to be filtered.
1408 1408
      * @param object $post The post object.
1409 1409
      */
1410
-    $schema = apply_filters('geodir_details_schema', $schema,$post);
1410
+    $schema = apply_filters('geodir_details_schema', $schema, $post);
1411 1411
 
1412 1412
 
1413
-    echo '<script type="application/ld+json">' . json_encode($schema) . '</script>';
1413
+    echo '<script type="application/ld+json">'.json_encode($schema).'</script>';
1414 1414
 
1415 1415
 
1416 1416
     $uploads = wp_upload_dir();
@@ -1423,7 +1423,7 @@  discard block
 block discarded – undo
1423 1423
      * @param string $facebook_og The open graph html to be filtered.
1424 1424
      * @param object $post The post object.
1425 1425
      */
1426
-    echo apply_filters('geodir_details_facebook_og', $facebook_og,$post);
1426
+    echo apply_filters('geodir_details_facebook_og', $facebook_og, $post);
1427 1427
 
1428 1428
 
1429 1429
 
@@ -1446,9 +1446,9 @@  discard block
 block discarded – undo
1446 1446
     ?>
1447 1447
     <div class="geodir-pos_navigation clearfix">
1448 1448
     <div
1449
-        class="geodir-post_left"><?php previous_post_link('%link', '' . __('Previous', 'geodirectory'), false) ?></div>
1449
+        class="geodir-post_left"><?php previous_post_link('%link', ''.__('Previous', 'geodirectory'), false) ?></div>
1450 1450
     <div
1451
-        class="geodir-post_right"><?php next_post_link('%link', __('Next', 'geodirectory') . '', false) ?></div>
1451
+        class="geodir-post_right"><?php next_post_link('%link', __('Next', 'geodirectory').'', false) ?></div>
1452 1452
     </div><?php
1453 1453
 }
1454 1454
 
@@ -1517,12 +1517,12 @@  discard block
 block discarded – undo
1517 1517
     $gd_post_type = geodir_get_current_posttype();
1518 1518
     $post_type_info = get_post_type_object($gd_post_type);
1519 1519
 
1520
-    $add_string_in_title = __('All', 'geodirectory') . ' ';
1520
+    $add_string_in_title = __('All', 'geodirectory').' ';
1521 1521
     if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
1522
-        $add_string_in_title = __('My Favorite', 'geodirectory') . ' ';
1522
+        $add_string_in_title = __('My Favorite', 'geodirectory').' ';
1523 1523
     }
1524 1524
 
1525
-    $list_title = $add_string_in_title . __($post_type_info->labels->name, 'geodirectory');
1525
+    $list_title = $add_string_in_title.__($post_type_info->labels->name, 'geodirectory');
1526 1526
     $single_name = $post_type_info->labels->singular_name;
1527 1527
 
1528 1528
     $taxonomy = geodir_get_taxonomies($gd_post_type, true);
@@ -1550,12 +1550,12 @@  discard block
 block discarded – undo
1550 1550
         $current_term = get_term_by('slug', $term, $taxonomy[0]);
1551 1551
         if (!empty($current_term)) {
1552 1552
             $current_term_name = __(ucfirst($current_term->name), 'geodirectory');
1553
-            if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type . 'category') {
1553
+            if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type.'category') {
1554 1554
                 $location_last_char = substr($location_name, -1);
1555 1555
                 $location_name_attach = geodir_strtolower($location_last_char) == 's' ? __("'", 'geodirectory') : __("'s", 'geodirectory');
1556
-                $list_title .= __(' in', 'geodirectory') . ' ' . $location_name . $location_name_attach . ' ' . $current_term_name;
1556
+                $list_title .= __(' in', 'geodirectory').' '.$location_name.$location_name_attach.' '.$current_term_name;
1557 1557
             } else {
1558
-                $list_title .= __(' in', 'geodirectory') . " '" . $current_term_name . "'";
1558
+                $list_title .= __(' in', 'geodirectory')." '".$current_term_name."'";
1559 1559
             }
1560 1560
         } else {
1561 1561
             if (count($taxonomy) > 1) {
@@ -1563,12 +1563,12 @@  discard block
 block discarded – undo
1563 1563
 
1564 1564
                 if (!empty($current_term)) {
1565 1565
                     $current_term_name = __(ucfirst($current_term->name), 'geodirectory');
1566
-                    if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type . 'category') {
1566
+                    if ($current_term_name != '' && $location_name != '' && isset($current_term->taxonomy) && $current_term->taxonomy == $gd_post_type.'category') {
1567 1567
                         $location_last_char = substr($location_name, -1);
1568 1568
                         $location_name_attach = geodir_strtolower($location_last_char) == 's' ? __("'", 'geodirectory') : __("'s", 'geodirectory');
1569
-                        $list_title .= __(' in', 'geodirectory') . ' ' . $location_name . $location_name_attach . ' ' . $current_term_name;
1569
+                        $list_title .= __(' in', 'geodirectory').' '.$location_name.$location_name_attach.' '.$current_term_name;
1570 1570
                     } else {
1571
-                        $list_title .= __(' in', 'geodirectory') . " '" . $current_term_name . "'";
1571
+                        $list_title .= __(' in', 'geodirectory')." '".$current_term_name."'";
1572 1572
                     }
1573 1573
                 }
1574 1574
             }
@@ -1596,7 +1596,7 @@  discard block
 block discarded – undo
1596 1596
                 $gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
1597 1597
             }
1598 1598
 
1599
-            $list_title .= __(' in', 'geodirectory') . " '" . $gd_city . "'";
1599
+            $list_title .= __(' in', 'geodirectory')." '".$gd_city."'";
1600 1600
         } else if ($gd_region != '') {
1601 1601
             if ($gd_region_actual != '') {
1602 1602
                 $gd_region = $gd_region_actual;
@@ -1606,7 +1606,7 @@  discard block
 block discarded – undo
1606 1606
                 $gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
1607 1607
             }
1608 1608
 
1609
-            $list_title .= __(' in', 'geodirectory') . " '" . $gd_region . "'";
1609
+            $list_title .= __(' in', 'geodirectory')." '".$gd_region."'";
1610 1610
         } else if ($gd_country != '') {
1611 1611
             if ($gd_country_actual != '') {
1612 1612
                 $gd_country = $gd_country_actual;
@@ -1616,12 +1616,12 @@  discard block
 block discarded – undo
1616 1616
                 $gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
1617 1617
             }
1618 1618
 
1619
-            $list_title .= __(' in', 'geodirectory') . " '" . $gd_country . "'";
1619
+            $list_title .= __(' in', 'geodirectory')." '".$gd_country."'";
1620 1620
         }
1621 1621
     }
1622 1622
 
1623 1623
     if (is_search()) {
1624
-        $list_title = __('Search', 'geodirectory') . ' ' . __(ucfirst($post_type_info->labels->name), 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
1624
+        $list_title = __('Search', 'geodirectory').' '.__(ucfirst($post_type_info->labels->name), 'geodirectory').__(' For :', 'geodirectory')." '".get_search_query()."'";
1625 1625
     }
1626 1626
     /** This action is documented in geodirectory_template_actions.php */
1627 1627
     $class = apply_filters('geodir_page_title_class', 'entry-title fn');
@@ -1631,26 +1631,26 @@  discard block
 block discarded – undo
1631 1631
 
1632 1632
     $title = $list_title;
1633 1633
     $gd_page = '';
1634
-    if(geodir_is_page('pt')){
1634
+    if (geodir_is_page('pt')) {
1635 1635
         $gd_page = 'pt';
1636
-        $title  = (get_option('geodir_page_title_pt')) ? get_option('geodir_page_title_pt') : $title;
1636
+        $title = (get_option('geodir_page_title_pt')) ? get_option('geodir_page_title_pt') : $title;
1637 1637
     }
1638
-    elseif(geodir_is_page('listing')){
1638
+    elseif (geodir_is_page('listing')) {
1639 1639
         $gd_page = 'listing';
1640 1640
         global $wp_query;
1641 1641
         $current_term = $wp_query->get_queried_object();
1642
-        if (strpos($current_term->taxonomy,'_tags') !== false) {
1642
+        if (strpos($current_term->taxonomy, '_tags') !== false) {
1643 1643
             $title = (get_option('geodir_page_title_tag-listing')) ? get_option('geodir_page_title_tag-listing') : $title;
1644
-        }else{
1644
+        } else {
1645 1645
             $title = (get_option('geodir_page_title_cat-listing')) ? get_option('geodir_page_title_cat-listing') : $title;
1646 1646
         }
1647 1647
 
1648 1648
     }
1649
-    elseif(geodir_is_page('author')){
1649
+    elseif (geodir_is_page('author')) {
1650 1650
         $gd_page = 'author';
1651
-        if(isset($_REQUEST['list']) && $_REQUEST['list']=='favourite'){
1651
+        if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
1652 1652
             $title = (get_option('geodir_page_title_favorite')) ? get_option('geodir_page_title_favorite') : $title;
1653
-        }else{
1653
+        } else {
1654 1654
             $title = (get_option('geodir_page_title_author')) ? get_option('geodir_page_title_author') : $title;
1655 1655
         }
1656 1656
 
@@ -1664,16 +1664,16 @@  discard block
 block discarded – undo
1664 1664
      * @param string $title The page title including variables.
1665 1665
      * @param string $gd_page The GeoDirectory page type if any.
1666 1666
      */
1667
-    $title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
1667
+    $title = apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
1668 1668
 
1669
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
1669
+    echo '<header class="'.$class_header.'"><h1 class="'.$class.'">'.
1670 1670
         /**
1671 1671
          * Filter the listing page title.
1672 1672
          *
1673 1673
          * @since 1.0.0
1674 1674
          * @param string $list_title The title for the category page.
1675 1675
          */
1676
-        apply_filters('geodir_listing_page_title', $title) . '</h1></header>';
1676
+        apply_filters('geodir_listing_page_title', $title).'</h1></header>';
1677 1677
 }
1678 1678
 
1679 1679
 add_action('geodir_listings_page_description', 'geodir_action_listings_description', 10);
@@ -1692,16 +1692,16 @@  discard block
 block discarded – undo
1692 1692
     $gd_post_type = geodir_get_current_posttype();
1693 1693
     if (isset($current_term->term_id) && $current_term->term_id != '') {
1694 1694
 
1695
-        $term_desc = term_description($current_term->term_id, $gd_post_type . '_tags');
1695
+        $term_desc = term_description($current_term->term_id, $gd_post_type.'_tags');
1696 1696
         $saved_data = stripslashes(get_tax_meta($current_term->term_id, 'ct_cat_top_desc', false, $gd_post_type));
1697 1697
         if ($term_desc && !$saved_data) {
1698 1698
             $saved_data = $term_desc;
1699 1699
         }
1700 1700
 
1701 1701
         // stop payment manager filtering content length
1702
-        $filter_priority = has_filter( 'the_content', 'geodir_payments_the_content' );
1703
-        if ( false !== $filter_priority ) {
1704
-            remove_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1702
+        $filter_priority = has_filter('the_content', 'geodir_payments_the_content');
1703
+        if (false !== $filter_priority) {
1704
+            remove_filter('the_content', 'geodir_payments_the_content', $filter_priority);
1705 1705
         }
1706 1706
 
1707 1707
         /**
@@ -1715,14 +1715,14 @@  discard block
 block discarded – undo
1715 1715
         $cat_description = apply_filters('the_content', $saved_data);
1716 1716
 
1717 1717
 
1718
-        if ( false !== $filter_priority ) {
1719
-            add_filter( 'the_content', 'geodir_payments_the_content', $filter_priority );
1718
+        if (false !== $filter_priority) {
1719
+            add_filter('the_content', 'geodir_payments_the_content', $filter_priority);
1720 1720
         }
1721 1721
 
1722 1722
         if ($cat_description) {
1723 1723
             ?>
1724 1724
 
1725
-            <div class="term_description"><?php echo $cat_description;?></div> <?php
1725
+            <div class="term_description"><?php echo $cat_description; ?></div> <?php
1726 1726
         }
1727 1727
 
1728 1728
     }
@@ -1772,13 +1772,13 @@  discard block
 block discarded – undo
1772 1772
 function geodir_action_sidebar_left_open($type = '', $id = '', $class = '', $itemtype = '')
1773 1773
 {
1774 1774
     if ($type == 'home-page' && $width = get_option('geodir_width_home_left_section')) {
1775
-        $width_css = 'style="width:' . $width . '%;"';
1775
+        $width_css = 'style="width:'.$width.'%;"';
1776 1776
     } elseif ($type == 'listings-page' && $width = get_option('geodir_width_listing_left_section')) {
1777
-        $width_css = 'style="width:' . $width . '%;"';
1777
+        $width_css = 'style="width:'.$width.'%;"';
1778 1778
     } elseif ($type == 'search-page' && $width = get_option('geodir_width_search_left_section')) {
1779
-        $width_css = 'style="width:' . $width . '%;"';
1779
+        $width_css = 'style="width:'.$width.'%;"';
1780 1780
     } elseif ($type == 'author-page' && $width = get_option('geodir_width_author_left_section')) {
1781
-        $width_css = 'style="width:' . $width . '%;"';
1781
+        $width_css = 'style="width:'.$width.'%;"';
1782 1782
     } else {
1783 1783
         $width_css = '';
1784 1784
     }
@@ -2083,11 +2083,11 @@  discard block
 block discarded – undo
2083 2083
 
2084 2084
     $title = apply_filters('geodir_add_listing_page_title_text', get_the_title());
2085 2085
 
2086
-    if(geodir_is_page('add-listing')){
2086
+    if (geodir_is_page('add-listing')) {
2087 2087
         $gd_page = 'add-listing';
2088
-        if(isset($_REQUEST['pid']) && $_REQUEST['pid'] != ''){
2088
+        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2089 2089
             $title = (get_option('geodir_page_title_edit-listing')) ? get_option('geodir_page_title_edit-listing') : $title;
2090
-        }elseif(isset($listing_type)){
2090
+        }elseif (isset($listing_type)) {
2091 2091
             $title = (get_option('geodir_page_title_add-listing')) ? get_option('geodir_page_title_add-listing') : $title;
2092 2092
         }
2093 2093
 
@@ -2101,9 +2101,9 @@  discard block
 block discarded – undo
2101 2101
      * @param string $title The page title including variables.
2102 2102
      * @param string $gd_page The GeoDirectory page type if any.
2103 2103
      */
2104
-    $title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2104
+    $title = apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2105 2105
 
2106
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">';
2106
+    echo '<header class="'.$class_header.'"><h1 class="'.$class.'">';
2107 2107
     echo $title;
2108 2108
     echo '</h1></header>';
2109 2109
 }
@@ -2117,7 +2117,7 @@  discard block
 block discarded – undo
2117 2117
  */
2118 2118
 function geodir_action_add_listing_page_mandatory()
2119 2119
 {?>
2120
-    <p class="geodir-note "><span class="geodir-required">*</span>&nbsp;<?php echo INDICATES_MANDATORY_FIELDS_TEXT;?></p>
2120
+    <p class="geodir-note "><span class="geodir-required">*</span>&nbsp;<?php echo INDICATES_MANDATORY_FIELDS_TEXT; ?></p>
2121 2121
 <?php
2122 2122
 }
2123 2123
 
@@ -2152,7 +2152,7 @@  discard block
 block discarded – undo
2152 2152
 
2153 2153
     if (isset($_REQUEST['backandedit'])) {
2154 2154
         global $post;
2155
-        $post = (object)$gd_session->get('listing');
2155
+        $post = (object) $gd_session->get('listing');
2156 2156
         $listing_type = $post->listing_type;
2157 2157
         $title = $post->post_title;
2158 2158
         $desc = $post->post_desc;
@@ -2167,7 +2167,7 @@  discard block
 block discarded – undo
2167 2167
         $thumb_img_arr = geodir_get_images($post->ID);
2168 2168
         if ($thumb_img_arr) {
2169 2169
             foreach ($thumb_img_arr as $post_img) {
2170
-                $curImages .= $post_img->src . ',';
2170
+                $curImages .= $post_img->src.',';
2171 2171
             }
2172 2172
         }
2173 2173
 
@@ -2175,7 +2175,7 @@  discard block
 block discarded – undo
2175 2175
         $title = $post->post_title;
2176 2176
         $desc = $post->post_content;
2177 2177
         $kw_tags = $post->post_tags;
2178
-        $kw_tags = implode(",", wp_get_object_terms($post->ID, $listing_type . '_tags', array('fields' => 'names')));
2178
+        $kw_tags = implode(",", wp_get_object_terms($post->ID, $listing_type.'_tags', array('fields' => 'names')));
2179 2179
     } else {
2180 2180
         $listing_type = sanitize_text_field($_REQUEST['listing_type']);
2181 2181
     }
@@ -2186,20 +2186,20 @@  discard block
 block discarded – undo
2186 2186
 
2187 2187
     $post_type_info = geodir_get_posttype_info($listing_type);
2188 2188
 
2189
-    $cpt_singular_name = (isset($post_type_info['labels']['singular_name']) && $post_type_info['labels']['singular_name']) ? __($post_type_info['labels']['singular_name'], 'geodirectory') : __('Listing','geodirectory');
2189
+    $cpt_singular_name = (isset($post_type_info['labels']['singular_name']) && $post_type_info['labels']['singular_name']) ? __($post_type_info['labels']['singular_name'], 'geodirectory') : __('Listing', 'geodirectory');
2190 2190
 
2191 2191
     $package_info = array();
2192 2192
     $package_info = geodir_post_package_info($package_info, $post);
2193 2193
     ?>
2194
-    <form name="propertyform" id="propertyform" action="<?php echo get_page_link(geodir_preview_page_id());?>" method="post" enctype="multipart/form-data">
2195
-        <input type="hidden" name="preview" value="<?php echo sanitize_text_field($listing_type);?>"/>
2196
-        <input type="hidden" name="listing_type" value="<?php echo sanitize_text_field($listing_type);?>"/>
2194
+    <form name="propertyform" id="propertyform" action="<?php echo get_page_link(geodir_preview_page_id()); ?>" method="post" enctype="multipart/form-data">
2195
+        <input type="hidden" name="preview" value="<?php echo sanitize_text_field($listing_type); ?>"/>
2196
+        <input type="hidden" name="listing_type" value="<?php echo sanitize_text_field($listing_type); ?>"/>
2197 2197
         <?php if ($page_id) { ?>
2198
-        <input type="hidden" name="add_listing_page_id" value="<?php echo $page_id;?>"/>
2198
+        <input type="hidden" name="add_listing_page_id" value="<?php echo $page_id; ?>"/>
2199 2199
         <?php } if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { ?>
2200
-            <input type="hidden" name="pid" value="<?php echo sanitize_text_field($_REQUEST['pid']);?>"/>
2200
+            <input type="hidden" name="pid" value="<?php echo sanitize_text_field($_REQUEST['pid']); ?>"/>
2201 2201
         <?php } if (isset($_REQUEST['backandedit'])) { ?>
2202
-            <input type="hidden" name="backandedit" value="<?php echo sanitize_text_field($_REQUEST['backandedit']);?>"/>
2202
+            <input type="hidden" name="backandedit" value="<?php echo sanitize_text_field($_REQUEST['backandedit']); ?>"/>
2203 2203
         <?php
2204 2204
         }
2205 2205
         /**
@@ -2211,7 +2211,7 @@  discard block
 block discarded – undo
2211 2211
          */
2212 2212
         do_action('geodir_before_detail_fields');
2213 2213
         ?>
2214
-        <h5 id="geodir_fieldset_details" class="geodir-fieldset-row" gd-fieldset="details"><?php echo LISTING_DETAILS_TEXT;?></h5>
2214
+        <h5 id="geodir_fieldset_details" class="geodir-fieldset-row" gd-fieldset="details"><?php echo LISTING_DETAILS_TEXT; ?></h5>
2215 2215
         <?php
2216 2216
         /**
2217 2217
          * Called at the top of the add listing page form for frontend.
@@ -2232,10 +2232,10 @@  discard block
 block discarded – undo
2232 2232
                  * @param string $cpt_singular_name The singular title of the curent CPT.
2233 2233
                  * @param string $listing_type The CPT being requested. ie: gd_place.
2234 2234
                  */
2235
-                echo apply_filters('geodir_add_listing_title_label', sprintf( __('%s Title', 'geodirectory'), $cpt_singular_name ),$cpt_singular_name,$listing_type); ?><span>*</span> </label>
2235
+                echo apply_filters('geodir_add_listing_title_label', sprintf(__('%s Title', 'geodirectory'), $cpt_singular_name), $cpt_singular_name, $listing_type); ?><span>*</span> </label>
2236 2236
             <input type="text" field_type="text" name="post_title" id="post_title" class="geodir_textfield"
2237 2237
                    value="<?php echo esc_attr(stripslashes($title)); ?>"/>
2238
-            <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory');?></span>
2238
+            <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span>
2239 2239
         </div>
2240 2240
         <?php
2241 2241
         $show_editor = get_option('geodir_tiny_editor_on_add_listing');
@@ -2281,7 +2281,7 @@  discard block
 block discarded – undo
2281 2281
         $desc_limit_msg = apply_filters('geodir_description_field_desc_limit_msg', $desc_limit_msg, $desc_limit);
2282 2282
 
2283 2283
         $desc_class = '';
2284
-        if ($desc_limit === '' || (int)$desc_limit > 0) {
2284
+        if ($desc_limit === '' || (int) $desc_limit > 0) {
2285 2285
             /**
2286 2286
              * Called on the add listing page form for frontend just before the description field.
2287 2287
              *
@@ -2294,7 +2294,7 @@  discard block
 block discarded – undo
2294 2294
             $desc_class = ' hidden';
2295 2295
         }
2296 2296
         ?>
2297
-        <div id="geodir_post_desc_row" class="geodir_form_row clearfix gd-fieldset-details<?php echo $desc_class;?>">
2297
+        <div id="geodir_post_desc_row" class="geodir_form_row clearfix gd-fieldset-details<?php echo $desc_class; ?>">
2298 2298
             <label><?php
2299 2299
                 /**
2300 2300
                  * Filter the add listing page description input label.
@@ -2304,7 +2304,7 @@  discard block
 block discarded – undo
2304 2304
                  * @param string $cpt_singular_name The singular title of the curent CPT.
2305 2305
                  * @param string $listing_type The CPT being requested. ie: gd_place.
2306 2306
                  */
2307
-                echo apply_filters('geodir_add_listing_description_label',sprintf( __('%s Description', 'geodirectory'), $cpt_singular_name ),$cpt_singular_name,$listing_type); ?><span><?php if ($desc_limit != '0') { echo '*'; } ?></span> </label>
2307
+                echo apply_filters('geodir_add_listing_description_label', sprintf(__('%s Description', 'geodirectory'), $cpt_singular_name), $cpt_singular_name, $listing_type); ?><span><?php if ($desc_limit != '0') { echo '*'; } ?></span> </label>
2308 2308
             <?php
2309 2309
             if ($show_editor) {
2310 2310
                 $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
@@ -2313,16 +2313,16 @@  discard block
 block discarded – undo
2313 2313
                     <?php wp_editor($desc, "post_desc", $editor_settings); ?>
2314 2314
                 </div>
2315 2315
             <?php if ($desc_limit != '') { ?>
2316
-                <script type="text/javascript">jQuery('textarea#post_desc').attr('maxlength', "<?php echo $desc_limit;?>");</script>
2316
+                <script type="text/javascript">jQuery('textarea#post_desc').attr('maxlength', "<?php echo $desc_limit; ?>");</script>
2317 2317
             <?php } } else { ?>
2318 2318
                 <textarea field_type="textarea" name="post_desc" id="post_desc" class="geodir_textarea" maxlength="<?php echo $desc_limit; ?>"><?php echo $desc; ?></textarea>
2319 2319
             <?php } if ($desc_limit_msg != '') { ?>
2320 2320
                 <span class="geodir_message_note"><?php echo $desc_limit_msg; ?></span>
2321 2321
             <?php } ?>
2322
-            <span class="geodir_message_error"><?php echo _e($required_msg, 'geodirectory');?></span>
2322
+            <span class="geodir_message_error"><?php echo _e($required_msg, 'geodirectory'); ?></span>
2323 2323
         </div>
2324 2324
         <?php
2325
-        if ($desc_limit === '' || (int)$desc_limit > 0) {
2325
+        if ($desc_limit === '' || (int) $desc_limit > 0) {
2326 2326
             /**
2327 2327
              * Called on the add listing page form for frontend just after the description field.
2328 2328
              *
@@ -2361,7 +2361,7 @@  discard block
 block discarded – undo
2361 2361
         $kw_tags_msg = apply_filters('geodir_listing_tags_field_tags_msg', $kw_tags_msg, $kw_tags_count);
2362 2362
 
2363 2363
         $tags_class = '';
2364
-        if ($kw_tags_count === '' || (int)$kw_tags_count > 0) {
2364
+        if ($kw_tags_count === '' || (int) $kw_tags_count > 0) {
2365 2365
             /**
2366 2366
              * Called on the add listing page form for frontend just before the tags field.
2367 2367
              *
@@ -2372,14 +2372,14 @@  discard block
 block discarded – undo
2372 2372
             $tags_class = ' hidden';
2373 2373
         }
2374 2374
         ?>
2375
-        <div id="geodir_post_tags_row" class="geodir_form_row clearfix gd-fieldset-details<?php echo $tags_class;?>">
2375
+        <div id="geodir_post_tags_row" class="geodir_form_row clearfix gd-fieldset-details<?php echo $tags_class; ?>">
2376 2376
             <label><?php echo TAGKW_TEXT; ?></label>
2377 2377
             <input name="post_tags" id="post_tags" value="<?php echo $kw_tags; ?>" type="text" class="geodir_textfield"
2378
-                   maxlength="<?php echo $kw_tags_count;?>"/>
2379
-            <span class="geodir_message_note"><?php echo $kw_tags_msg;?></span>
2378
+                   maxlength="<?php echo $kw_tags_count; ?>"/>
2379
+            <span class="geodir_message_note"><?php echo $kw_tags_msg; ?></span>
2380 2380
         </div>
2381 2381
         <?php
2382
-        if ($kw_tags_count === '' || (int)$kw_tags_count > 0) {
2382
+        if ($kw_tags_count === '' || (int) $kw_tags_count > 0) {
2383 2383
             /**
2384 2384
              * Called on the add listing page form for frontend just after the tags field.
2385 2385
              *
@@ -2405,7 +2405,7 @@  discard block
 block discarded – undo
2405 2405
         $thumb_img_arr = array();
2406 2406
         $totImg = 0;
2407 2407
         if (isset($_REQUEST['backandedit']) && empty($_REQUEST['pid'])) {
2408
-            $post = (object)$gd_session->get('listing');
2408
+            $post = (object) $gd_session->get('listing');
2409 2409
             if (isset($post->post_images))
2410 2410
                 $curImages = trim($post->post_images, ",");
2411 2411
 
@@ -2418,7 +2418,7 @@  discard block
 block discarded – undo
2418 2418
             $listing_type = $post->listing_type;
2419 2419
 
2420 2420
         } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
2421
-            $post = geodir_get_post_info((int)$_REQUEST['pid']);
2421
+            $post = geodir_get_post_info((int) $_REQUEST['pid']);
2422 2422
             $listing_type = $post->post_type;
2423 2423
             $thumb_img_arr = geodir_get_images($_REQUEST['pid']);
2424 2424
 
@@ -2432,7 +2432,7 @@  discard block
 block discarded – undo
2432 2432
                 //$curImages = $img->src.",";
2433 2433
             }
2434 2434
 
2435
-            $totImg = count((array)$thumb_img_arr);
2435
+            $totImg = count((array) $thumb_img_arr);
2436 2436
         }
2437 2437
 
2438 2438
         if ($curImages != '')
@@ -2453,15 +2453,15 @@  discard block
 block discarded – undo
2453 2453
         if ($show_image_input_box) {
2454 2454
             ?>
2455 2455
 
2456
-            <h5 id="geodir_form_title_row" class="geodir-form_title"> <?php echo PRO_PHOTO_TEXT;?>
2456
+            <h5 id="geodir_form_title_row" class="geodir-form_title"> <?php echo PRO_PHOTO_TEXT; ?>
2457 2457
                 <?php if ($image_limit == 1) {
2458
-                    echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
2458
+                    echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('image with this package', 'geodirectory').')</small>';
2459 2459
                 } ?>
2460 2460
                 <?php if ($image_limit > 1) {
2461
-                    echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
2461
+                    echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('images with this package', 'geodirectory').')</small>';
2462 2462
                 } ?>
2463 2463
                 <?php if ($image_limit == '') {
2464
-                    echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
2464
+                    echo '<br /><small>('.__('You can upload unlimited images with this package', 'geodirectory').')</small>';
2465 2465
                 } ?>
2466 2466
             </h5>
2467 2467
 
@@ -2476,11 +2476,11 @@  discard block
 block discarded – undo
2476 2476
                 <div
2477 2477
                     class="plupload-upload-uic hide-if-no-js <?php if ($multiple): ?>plupload-upload-uic-multiple<?php endif; ?>"
2478 2478
                     id="<?php echo $id; ?>plupload-upload-ui">
2479
-                    <h4><?php _e('Drop files to upload', 'geodirectory');?></h4><br/>
2479
+                    <h4><?php _e('Drop files to upload', 'geodirectory'); ?></h4><br/>
2480 2480
                     <input id="<?php echo $id; ?>plupload-browse-button" type="button"
2481 2481
                            value="<?php esc_attr_e('Select Files', 'geodirectory'); ?>" class="geodir_button"/>
2482 2482
                     <span class="ajaxnonceplu"
2483
-                          id="ajaxnonceplu<?php echo wp_create_nonce($id . 'pluploadan'); ?>"></span>
2483
+                          id="ajaxnonceplu<?php echo wp_create_nonce($id.'pluploadan'); ?>"></span>
2484 2484
                     <?php if ($width && $height): ?>
2485 2485
                         <span class="plupload-resize"></span>
2486 2486
                         <span class="plupload-width" id="plupload-width<?php echo $width; ?>"></span>
@@ -2493,7 +2493,7 @@  discard block
 block discarded – undo
2493 2493
                      id="<?php echo $id; ?>plupload-thumbs" style="border-top:1px solid #ccc; padding-top:10px;">
2494 2494
                 </div>
2495 2495
                 <span
2496
-                    id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory');?></span>
2496
+                    id="upload-msg"><?php _e('Please drag &amp; drop the images to rearrange the order', 'geodirectory'); ?></span>
2497 2497
                 <span id="<?php echo $id; ?>upload-error" style="display:none"></span>
2498 2498
             </div>
2499 2499
 
@@ -2505,7 +2505,7 @@  discard block
 block discarded – undo
2505 2505
          *
2506 2506
          * @since 1.0.0
2507 2507
          */
2508
-        do_action('geodir_after_main_form_fields');?>
2508
+        do_action('geodir_after_main_form_fields'); ?>
2509 2509
 
2510 2510
 
2511 2511
         <!-- add captcha code -->
@@ -2516,7 +2516,7 @@  discard block
 block discarded – undo
2516 2516
         </script>
2517 2517
         <noscript>
2518 2518
             <div>
2519
-                <label><?php _e('Type 64 into this box', 'geodirectory');?></label>
2519
+                <label><?php _e('Type 64 into this box', 'geodirectory'); ?></label>
2520 2520
                 <input type="text" id="geodir_spamblocker_top_form" name="geodir_spamblocker" value="" maxlength="10"/>
2521 2521
             </div>
2522 2522
         </noscript>
@@ -2526,10 +2526,10 @@  discard block
 block discarded – undo
2526 2526
         <!-- end captcha code -->
2527 2527
 
2528 2528
         <div id="geodir-add-listing-submit" class="geodir_form_row clear_both" style="padding:2px;text-align:center;">
2529
-            <input type="submit" value="<?php echo PRO_PREVIEW_BUTTON;?>"
2530
-                   class="geodir_button" <?php echo $submit_button;?>/>
2529
+            <input type="submit" value="<?php echo PRO_PREVIEW_BUTTON; ?>"
2530
+                   class="geodir_button" <?php echo $submit_button; ?>/>
2531 2531
             <span class="geodir_message_note"
2532
-                  style="padding-left:0px;"> <?php _e('Note: You will be able to see a preview in the next page', 'geodirectory');?></span>
2532
+                  style="padding-left:0px;"> <?php _e('Note: You will be able to see a preview in the next page', 'geodirectory'); ?></span>
2533 2533
         </div>
2534 2534
 
2535 2535
     </form>
@@ -2591,7 +2591,7 @@  discard block
 block discarded – undo
2591 2591
         class="<?php
2592 2592
         /** This action is documented in geodirectory_template_actions.php */
2593 2593
         echo apply_filters('geodir_full_page_class', 'geodir_full_page clearfix', 'Reg/Login Top Section'); ?>">
2594
-        <?php dynamic_sidebar('Reg/Login Top Section');?>
2594
+        <?php dynamic_sidebar('Reg/Login Top Section'); ?>
2595 2595
     </div><!-- clearfix ends here-->
2596 2596
 <?php
2597 2597
 }
@@ -2611,11 +2611,11 @@  discard block
 block discarded – undo
2611 2611
 
2612 2612
     global $user_login;
2613 2613
 
2614
-    $is_enable_signup = get_option( 'users_can_register' );
2614
+    $is_enable_signup = get_option('users_can_register');
2615 2615
 
2616 2616
     ?>
2617 2617
     <script type="text/javascript">
2618
-        <?php if ( $user_login ) { ?>
2618
+        <?php if ($user_login) { ?>
2619 2619
         setTimeout(function () {
2620 2620
             try {
2621 2621
                 d = document.getElementById('user_pass');
@@ -2632,7 +2632,7 @@  discard block
 block discarded – undo
2632 2632
         <?php } ?>
2633 2633
     </script>
2634 2634
     <script type="text/javascript">
2635
-        <?php if ( $user_login ) { ?>
2635
+        <?php if ($user_login) { ?>
2636 2636
         setTimeout(function () {
2637 2637
             try {
2638 2638
                 d = document.getElementById('user_pass');
@@ -2657,7 +2657,7 @@  discard block
 block discarded – undo
2657 2657
         foreach ($errors as $errorsObj) {
2658 2658
             foreach ($errorsObj as $key => $val) {
2659 2659
                 for ($i = 0; $i < count($val); $i++) {
2660
-                    echo "<div class=error_msg_fix>" . $val[$i] . '</div>';
2660
+                    echo "<div class=error_msg_fix>".$val[$i].'</div>';
2661 2661
                     $registration_error_msg = 1;
2662 2662
                 }
2663 2663
             }
@@ -2674,10 +2674,10 @@  discard block
 block discarded – undo
2674 2674
              *
2675 2675
              * @since 1.0.0
2676 2676
              */
2677
-            include(geodir_plugin_path() . "/geodirectory-templates/login_frm.php"); ?>
2677
+            include(geodir_plugin_path()."/geodirectory-templates/login_frm.php"); ?>
2678 2678
         </div>
2679 2679
 
2680
-    <?php } elseif (isset($_REQUEST['page']) && $_REQUEST['page'] == 'login' && isset($_REQUEST['page1']) && $_REQUEST['page1'] == 'sign_up' && $is_enable_signup ) { ?>
2680
+    <?php } elseif (isset($_REQUEST['page']) && $_REQUEST['page'] == 'login' && isset($_REQUEST['page1']) && $_REQUEST['page1'] == 'sign_up' && $is_enable_signup) { ?>
2681 2681
 
2682 2682
         <div class="registration_form">
2683 2683
             <?php
@@ -2686,7 +2686,7 @@  discard block
 block discarded – undo
2686 2686
              *
2687 2687
              * @since 1.0.0
2688 2688
              */
2689
-            include(geodir_plugin_path() . "/geodirectory-templates/reg_frm.php"); ?>
2689
+            include(geodir_plugin_path()."/geodirectory-templates/reg_frm.php"); ?>
2690 2690
         </div>
2691 2691
 
2692 2692
     <?php } else { ?>
@@ -2698,10 +2698,10 @@  discard block
 block discarded – undo
2698 2698
              *
2699 2699
              * @since 1.0.0
2700 2700
              */
2701
-            include(geodir_plugin_path() . "/geodirectory-templates/login_frm.php"); ?>
2701
+            include(geodir_plugin_path()."/geodirectory-templates/login_frm.php"); ?>
2702 2702
         </div>
2703 2703
 
2704
-        <?php if ( $is_enable_signup ) { ?>
2704
+        <?php if ($is_enable_signup) { ?>
2705 2705
             <div class="registration_form_r">
2706 2706
                 <?php
2707 2707
                 /**
@@ -2709,7 +2709,7 @@  discard block
 block discarded – undo
2709 2709
                  *
2710 2710
                  * @since 1.0.0
2711 2711
                  */
2712
-                include(geodir_plugin_path() . "/geodirectory-templates/reg_frm.php"); ?>
2712
+                include(geodir_plugin_path()."/geodirectory-templates/reg_frm.php"); ?>
2713 2713
             </div>
2714 2714
         <?php } ?>
2715 2715
 
@@ -2746,12 +2746,12 @@  discard block
 block discarded – undo
2746 2746
     $gd_post_type = geodir_get_current_posttype();
2747 2747
     $post_type_info = get_post_type_object($gd_post_type);
2748 2748
 
2749
-    $add_string_in_title = __('All', 'geodirectory') . ' ';
2749
+    $add_string_in_title = __('All', 'geodirectory').' ';
2750 2750
     if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
2751
-        $add_string_in_title = __('My Favorite', 'geodirectory') . ' ';
2751
+        $add_string_in_title = __('My Favorite', 'geodirectory').' ';
2752 2752
     }
2753 2753
 
2754
-    $list_title = $add_string_in_title . $post_type_info->labels->name;
2754
+    $list_title = $add_string_in_title.$post_type_info->labels->name;
2755 2755
     $single_name = $post_type_info->labels->singular_name;
2756 2756
 
2757 2757
     $taxonomy = geodir_get_taxonomies($gd_post_type);
@@ -2759,12 +2759,12 @@  discard block
 block discarded – undo
2759 2759
     if (!empty($term)) {
2760 2760
         $current_term = get_term_by('slug', $term, $taxonomy[0]);
2761 2761
         if (!empty($current_term))
2762
-            $list_title .= __(' in', 'geodirectory') . " '" . geodir_ucwords($current_term->name) . "'";
2762
+            $list_title .= __(' in', 'geodirectory')." '".geodir_ucwords($current_term->name)."'";
2763 2763
     }
2764 2764
 
2765 2765
 
2766 2766
     if (is_search()) {
2767
-        $list_title = __('Search', 'geodirectory') . ' ' . __($post_type_info->labels->name, 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
2767
+        $list_title = __('Search', 'geodirectory').' '.__($post_type_info->labels->name, 'geodirectory').__(' For :', 'geodirectory')." '".get_search_query()."'";
2768 2768
 
2769 2769
     }
2770 2770
     /** This action is documented in geodirectory_template_actions.php */
@@ -2773,11 +2773,11 @@  discard block
 block discarded – undo
2773 2773
     $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
2774 2774
 
2775 2775
     $title = $list_title;
2776
-    if(geodir_is_page('author')){
2776
+    if (geodir_is_page('author')) {
2777 2777
         $gd_page = 'author';
2778
-        if(isset($_REQUEST['list']) && $_REQUEST['list']=='favourite'){
2778
+        if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
2779 2779
             $title = (get_option('geodir_page_title_favorite')) ? get_option('geodir_page_title_favorite') : $title;
2780
-        }else{
2780
+        } else {
2781 2781
             $title = (get_option('geodir_page_title_author')) ? get_option('geodir_page_title_author') : $title;
2782 2782
         }
2783 2783
 
@@ -2791,16 +2791,16 @@  discard block
 block discarded – undo
2791 2791
      * @param string $title The page title including variables.
2792 2792
      * @param string $gd_page The GeoDirectory page type if any.
2793 2793
      */
2794
-    $title =  apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2794
+    $title = apply_filters('geodir_seo_page_title', __($title, 'geodirectory'), $gd_page);
2795 2795
 
2796
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
2796
+    echo '<header class="'.$class_header.'"><h1 class="'.$class.'">'.
2797 2797
         /**
2798 2798
          * Filter the author page title text.
2799 2799
          *
2800 2800
          * @since 1.0.0
2801 2801
          * @param string $list_title The title for the page.
2802 2802
          */
2803
-        apply_filters('geodir_author_page_title_text', $title) . '</h1></header>';
2803
+        apply_filters('geodir_author_page_title_text', $title).'</h1></header>';
2804 2804
 }
2805 2805
 
2806 2806
 
@@ -3005,19 +3005,19 @@  discard block
 block discarded – undo
3005 3005
     $post_type_info = get_post_type_object($gd_post_type);
3006 3006
 
3007 3007
     $pt_name = '';
3008
-    if(isset($post_type_info->labels->name)){$pt_name=$post_type_info->labels->name;}
3008
+    if (isset($post_type_info->labels->name)) {$pt_name = $post_type_info->labels->name; }
3009 3009
 
3010 3010
     if (is_search()) {
3011
-        $list_title = __('Search', 'geodirectory') . ' ' . __($pt_name, 'geodirectory') . __(' For :', 'geodirectory') . " '" . get_search_query() . "'";
3011
+        $list_title = __('Search', 'geodirectory').' '.__($pt_name, 'geodirectory').__(' For :', 'geodirectory')." '".get_search_query()."'";
3012 3012
 
3013 3013
     }
3014 3014
     /** This action is documented in geodirectory_template_actions.php */
3015 3015
     $class = apply_filters('geodir_page_title_class', 'entry-title fn');
3016 3016
     /** This action is documented in geodirectory_template_actions.php */
3017 3017
     $class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
3018
-    echo '<header class="' . $class_header . '"><h1 class="' . $class . '">' .
3018
+    echo '<header class="'.$class_header.'"><h1 class="'.$class.'">'.
3019 3019
         /** This action is documented in geodirectory_template_actions.php */
3020
-        apply_filters('geodir_listing_page_title', wptexturize($list_title)) . '</h1></header>';
3020
+        apply_filters('geodir_listing_page_title', wptexturize($list_title)).'</h1></header>';
3021 3021
 }
3022 3022
 
3023 3023
 // action for adding the listings page top widget area
@@ -3421,7 +3421,7 @@  discard block
 block discarded – undo
3421 3421
         $gd_post_type = geodir_get_current_posttype();
3422 3422
         $post_type_info = get_post_type_object($gd_post_type);
3423 3423
 
3424
-        $list_title = __('Search', 'geodirectory') . ' ' . __(ucfirst($post_type_info->labels->name), 'geodirectory') . __(' :', 'geodirectory');
3424
+        $list_title = __('Search', 'geodirectory').' '.__(ucfirst($post_type_info->labels->name), 'geodirectory').__(' :', 'geodirectory');
3425 3425
     }
3426 3426
     return $list_title;
3427 3427
 }
@@ -3437,7 +3437,7 @@  discard block
 block discarded – undo
3437 3437
  * @param string $position Position to add the post content. 'before' or 'after'. Default 'before'.
3438 3438
  * @param string $gd_page The geodirectory page type. Default null.
3439 3439
  */
3440
-function geodir_add_page_content( $position = 'before', $gd_page = '' ) {
3440
+function geodir_add_page_content($position = 'before', $gd_page = '') {
3441 3441
     global $post;
3442 3442
 
3443 3443
     $gd_page_id = NULL;
Please login to merge, or discard this patch.