Test Failed
Pull Request — master (#265)
by Viruthagiri
09:18
created
geodirectory-functions/general_functions.php 1 patch
Indentation   +3382 added lines, -3382 removed lines patch added patch discarded remove patch
@@ -28,11 +28,11 @@  discard block
 block discarded – undo
28 28
 function geodir_plugin_url()
29 29
 {
30 30
 
31
-    if (is_ssl()) :
32
-        return str_replace('http://', 'https://', WP_PLUGIN_URL) . "/" . plugin_basename(dirname(dirname(__FILE__)));
33
-    else :
34
-        return WP_PLUGIN_URL . "/" . plugin_basename(dirname(dirname(__FILE__)));
35
-    endif;
31
+	if (is_ssl()) :
32
+		return str_replace('http://', 'https://', WP_PLUGIN_URL) . "/" . plugin_basename(dirname(dirname(__FILE__)));
33
+	else :
34
+		return WP_PLUGIN_URL . "/" . plugin_basename(dirname(dirname(__FILE__)));
35
+	endif;
36 36
 }
37 37
 
38 38
 
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
  */
48 48
 function geodir_plugin_path()
49 49
 {
50
-    if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
51
-        return dirname(dirname(__FILE__));
52
-    } else {
53
-        return WP_PLUGIN_DIR . "/" . plugin_basename(dirname(dirname(__FILE__)));
54
-    }
50
+	if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
51
+		return dirname(dirname(__FILE__));
52
+	} else {
53
+		return WP_PLUGIN_DIR . "/" . plugin_basename(dirname(dirname(__FILE__)));
54
+	}
55 55
 }
56 56
 
57 57
 /**
@@ -65,11 +65,11 @@  discard block
 block discarded – undo
65 65
  */
66 66
 function geodir_is_plugin_active($plugin)
67 67
 {
68
-    $active_plugins = get_option('active_plugins');
69
-    foreach ($active_plugins as $key => $active_plugin) {
70
-        if (strstr($active_plugin, $plugin)) return true;
71
-    }
72
-    return false;
68
+	$active_plugins = get_option('active_plugins');
69
+	foreach ($active_plugins as $key => $active_plugin) {
70
+		if (strstr($active_plugin, $plugin)) return true;
71
+	}
72
+	return false;
73 73
 }
74 74
 
75 75
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
  */
86 86
 function geodir_get_formated_date($date)
87 87
 {
88
-    return mysql2date(get_option('date_format'), $date);
88
+	return mysql2date(get_option('date_format'), $date);
89 89
 }
90 90
 
91 91
 /**
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
  */
101 101
 function geodir_get_formated_time($time)
102 102
 {
103
-    return mysql2date(get_option('time_format'), $time, $translate = true);
103
+	return mysql2date(get_option('time_format'), $time, $translate = true);
104 104
 }
105 105
 
106 106
 
@@ -118,26 +118,26 @@  discard block
 block discarded – undo
118 118
  */
119 119
 function geodir_getlink($url, $params = array(), $use_existing_arguments = false)
120 120
 {
121
-    if ($use_existing_arguments) $params = $params + $_GET;
122
-    if (!$params) return $url;
123
-    $link = $url;
124
-    if (strpos($link, '?') === false) $link .= '?'; //If there is no '?' add one at the end
125
-    elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) $link .= '&'; //If there is no '&' at the END, add one.
126
-    elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) $link .= '&'; //If there is no '&' at the END, add one.
127
-
128
-    $params_arr = array();
129
-    foreach ($params as $key => $value) {
130
-        if (gettype($value) == 'array') { //Handle array data properly
131
-            foreach ($value as $val) {
132
-                $params_arr[] = $key . '[]=' . urlencode($val);
133
-            }
134
-        } else {
135
-            $params_arr[] = $key . '=' . urlencode($value);
136
-        }
137
-    }
138
-    $link .= implode('&', $params_arr);
139
-
140
-    return $link;
121
+	if ($use_existing_arguments) $params = $params + $_GET;
122
+	if (!$params) return $url;
123
+	$link = $url;
124
+	if (strpos($link, '?') === false) $link .= '?'; //If there is no '?' add one at the end
125
+	elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) $link .= '&'; //If there is no '&' at the END, add one.
126
+	elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) $link .= '&'; //If there is no '&' at the END, add one.
127
+
128
+	$params_arr = array();
129
+	foreach ($params as $key => $value) {
130
+		if (gettype($value) == 'array') { //Handle array data properly
131
+			foreach ($value as $val) {
132
+				$params_arr[] = $key . '[]=' . urlencode($val);
133
+			}
134
+		} else {
135
+			$params_arr[] = $key . '=' . urlencode($value);
136
+		}
137
+	}
138
+	$link .= implode('&', $params_arr);
139
+
140
+	return $link;
141 141
 }
142 142
 
143 143
 
@@ -152,17 +152,17 @@  discard block
 block discarded – undo
152 152
  */
153 153
 function geodir_get_addlisting_link($post_type = '')
154 154
 {
155
-    global $wpdb;
155
+	global $wpdb;
156 156
 
157
-    //$check_pkg  = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
158
-    $check_pkg = 1;
159
-    if (post_type_exists($post_type) && $check_pkg) {
157
+	//$check_pkg  = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
158
+	$check_pkg = 1;
159
+	if (post_type_exists($post_type) && $check_pkg) {
160 160
 
161
-        $add_listing_link = get_page_link(geodir_add_listing_page_id());
161
+		$add_listing_link = get_page_link(geodir_add_listing_page_id());
162 162
 
163
-        return esc_url( add_query_arg(array('listing_type' => $post_type), $add_listing_link) );
164
-    } else
165
-        return get_bloginfo('url');
163
+		return esc_url( add_query_arg(array('listing_type' => $post_type), $add_listing_link) );
164
+	} else
165
+		return get_bloginfo('url');
166 166
 }
167 167
 
168 168
 /**
@@ -175,19 +175,19 @@  discard block
 block discarded – undo
175 175
  */
176 176
 function geodir_curPageURL()
177 177
 {
178
-    $pageURL = 'http';
179
-    if (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on") {
180
-        $pageURL .= "s";
181
-    }
182
-    $pageURL .= "://";
183
-    $pageURL .= $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
184
-    /**
185
-     * Filter the current page URL returned by function geodir_curPageURL().
186
-     *
187
-     * @since 1.4.1
188
-     * @param string $pageURL The URL of the current page.
189
-     */
190
-    return apply_filters('geodir_curPageURL', $pageURL);
178
+	$pageURL = 'http';
179
+	if (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on") {
180
+		$pageURL .= "s";
181
+	}
182
+	$pageURL .= "://";
183
+	$pageURL .= $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
184
+	/**
185
+	 * Filter the current page URL returned by function geodir_curPageURL().
186
+	 *
187
+	 * @since 1.4.1
188
+	 * @param string $pageURL The URL of the current page.
189
+	 */
190
+	return apply_filters('geodir_curPageURL', $pageURL);
191 191
 }
192 192
 
193 193
 
@@ -204,12 +204,12 @@  discard block
 block discarded – undo
204 204
 function geodir_clean($string)
205 205
 {
206 206
 
207
-    $string = trim(strip_tags(stripslashes($string)));
208
-    $string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
209
-    $string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
210
-    $string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
207
+	$string = trim(strip_tags(stripslashes($string)));
208
+	$string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
209
+	$string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
210
+	$string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
211 211
 
212
-    return $string;
212
+	return $string;
213 213
 }
214 214
 
215 215
 /**
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
  */
222 222
 function geodir_get_weekday()
223 223
 {
224
-    return array(__('Sunday', 'geodirectory'), __('Monday', 'geodirectory'), __('Tuesday', 'geodirectory'), __('Wednesday', 'geodirectory'), __('Thursday', 'geodirectory'), __('Friday', 'geodirectory'), __('Saturday', 'geodirectory'));
224
+	return array(__('Sunday', 'geodirectory'), __('Monday', 'geodirectory'), __('Tuesday', 'geodirectory'), __('Wednesday', 'geodirectory'), __('Thursday', 'geodirectory'), __('Friday', 'geodirectory'), __('Saturday', 'geodirectory'));
225 225
 }
226 226
 
227 227
 /**
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
  */
234 234
 function geodir_get_weeks()
235 235
 {
236
-    return array(__('First', 'geodirectory'), __('Second', 'geodirectory'), __('Third', 'geodirectory'), __('Fourth', 'geodirectory'), __('Last', 'geodirectory'));
236
+	return array(__('First', 'geodirectory'), __('Second', 'geodirectory'), __('Third', 'geodirectory'), __('Fourth', 'geodirectory'), __('Last', 'geodirectory'));
237 237
 }
238 238
 
239 239
 
@@ -252,103 +252,103 @@  discard block
 block discarded – undo
252 252
 function geodir_is_page($gdpage = '')
253 253
 {
254 254
 
255
-    global $wp_query, $post,$wp;
256
-    //if(!is_admin()):
257
-
258
-    switch ($gdpage):
259
-        case 'add-listing':
260
-
261
-            if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
262
-                return true;
263
-            } elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
264
-                return true;
265
-            }
266
-
267
-            break;
268
-        case 'preview':
269
-            if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
270
-                && in_array($_REQUEST['listing_type'], geodir_get_posttypes())
271
-            )
272
-                return true;
273
-            break;
274
-        case 'listing-success':
275
-            if (is_page() && get_query_var('page_id') == geodir_success_page_id())
276
-                return true;
277
-            break;
278
-        case 'detail':
279
-            $post_type = get_query_var('post_type');
280
-            if(is_array($post_type)){$post_type = reset($post_type);}
281
-            if (is_single() && in_array($post_type, geodir_get_posttypes()))
282
-                return true;
283
-            break;
284
-        case 'pt':
285
-            $post_type = get_query_var('post_type');
286
-            if(is_array($post_type)){$post_type = reset($post_type);}
287
-            if (is_post_type_archive() && in_array($post_type , geodir_get_posttypes()) && !is_tax())
288
-                return true;
289
-
290
-            break;
291
-        case 'listing':
292
-            if (is_tax() && geodir_get_taxonomy_posttype()) {
293
-                global $current_term, $taxonomy, $term;
294
-
295
-                return true;
296
-            }
297
-            $post_type = get_query_var('post_type');
298
-            if(is_array($post_type)){$post_type = reset($post_type);}
299
-            if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()))
300
-                return true;
301
-
302
-            break;
303
-        case 'home':
304
-
305
-            if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home())
306
-                return true;
307
-
308
-            break;
309
-        case 'location':
310
-            if (is_page() && get_query_var('page_id') == geodir_location_page_id())
311
-                return true;
312
-            break;
313
-        case 'author':
314
-            if (is_author() && isset($_REQUEST['geodir_dashbord']))
315
-                return true;
255
+	global $wp_query, $post,$wp;
256
+	//if(!is_admin()):
257
+
258
+	switch ($gdpage):
259
+		case 'add-listing':
260
+
261
+			if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
262
+				return true;
263
+			} elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
264
+				return true;
265
+			}
266
+
267
+			break;
268
+		case 'preview':
269
+			if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
270
+				&& in_array($_REQUEST['listing_type'], geodir_get_posttypes())
271
+			)
272
+				return true;
273
+			break;
274
+		case 'listing-success':
275
+			if (is_page() && get_query_var('page_id') == geodir_success_page_id())
276
+				return true;
277
+			break;
278
+		case 'detail':
279
+			$post_type = get_query_var('post_type');
280
+			if(is_array($post_type)){$post_type = reset($post_type);}
281
+			if (is_single() && in_array($post_type, geodir_get_posttypes()))
282
+				return true;
283
+			break;
284
+		case 'pt':
285
+			$post_type = get_query_var('post_type');
286
+			if(is_array($post_type)){$post_type = reset($post_type);}
287
+			if (is_post_type_archive() && in_array($post_type , geodir_get_posttypes()) && !is_tax())
288
+				return true;
289
+
290
+			break;
291
+		case 'listing':
292
+			if (is_tax() && geodir_get_taxonomy_posttype()) {
293
+				global $current_term, $taxonomy, $term;
294
+
295
+				return true;
296
+			}
297
+			$post_type = get_query_var('post_type');
298
+			if(is_array($post_type)){$post_type = reset($post_type);}
299
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()))
300
+				return true;
301
+
302
+			break;
303
+		case 'home':
304
+
305
+			if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home())
306
+				return true;
307
+
308
+			break;
309
+		case 'location':
310
+			if (is_page() && get_query_var('page_id') == geodir_location_page_id())
311
+				return true;
312
+			break;
313
+		case 'author':
314
+			if (is_author() && isset($_REQUEST['geodir_dashbord']))
315
+				return true;
316 316
 			
317 317
 			if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int)bp_loggedin_user_id()) {
318 318
 				if (((bool)bp_is_current_component('listings') || (bool)bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int)bp_displayed_user_id()) {
319 319
 					return true;
320 320
 				}
321 321
 			}
322
-            break;
323
-        case 'search':
324
-            if (is_search() && isset($_REQUEST['geodir_search']))
325
-                return true;
326
-            break;
327
-        case 'info':
328
-            if (is_page() && get_query_var('page_id') == geodir_info_page_id())
329
-                return true;
330
-            break;
331
-        case 'login':
332
-            if (is_page() && get_query_var('page_id') == geodir_login_page_id())
333
-                return true;
334
-            break;
335
-        case 'checkout':
336
-            if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id())
337
-                return true;
338
-            break;
339
-        case 'invoices':
340
-            if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id())
341
-                return true;
342
-            break;
343
-        default:
344
-            return false;
345
-            break;
346
-
347
-    endswitch;
348
-
349
-    //endif;
350
-
351
-    return false;
322
+			break;
323
+		case 'search':
324
+			if (is_search() && isset($_REQUEST['geodir_search']))
325
+				return true;
326
+			break;
327
+		case 'info':
328
+			if (is_page() && get_query_var('page_id') == geodir_info_page_id())
329
+				return true;
330
+			break;
331
+		case 'login':
332
+			if (is_page() && get_query_var('page_id') == geodir_login_page_id())
333
+				return true;
334
+			break;
335
+		case 'checkout':
336
+			if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id())
337
+				return true;
338
+			break;
339
+		case 'invoices':
340
+			if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id())
341
+				return true;
342
+			break;
343
+		default:
344
+			return false;
345
+			break;
346
+
347
+	endswitch;
348
+
349
+	//endif;
350
+
351
+	return false;
352 352
 }
353 353
 
354 354
 /**
@@ -362,97 +362,97 @@  discard block
 block discarded – undo
362 362
  */
363 363
 function geodir_set_is_geodir_page($wp)
364 364
 {
365
-    if (!is_admin()) {
366
-        //$wp->query_vars['gd_is_geodir_page'] = false;
367
-        //print_r()
368
-        if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array('preview', 'page', 'paged', 'cpage'))) {
369
-            if (get_option('geodir_set_as_home'))
370
-                $wp->query_vars['gd_is_geodir_page'] = true;
371
-            if(geodir_is_page('home')){
372
-                $wp->query_vars['gd_is_geodir_page'] = true;
373
-            }
374
-
375
-
376
-        }
377
-
378
-        if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
379
-            if (
380
-                $wp->query_vars['page_id'] == geodir_add_listing_page_id()
381
-                || $wp->query_vars['page_id'] == geodir_preview_page_id()
382
-                || $wp->query_vars['page_id'] == geodir_success_page_id()
383
-                || $wp->query_vars['page_id'] == geodir_location_page_id()
384
-                || $wp->query_vars['page_id'] == geodir_home_page_id()
385
-                || $wp->query_vars['page_id'] == geodir_info_page_id()
386
-                || $wp->query_vars['page_id'] == geodir_login_page_id()
387
-                || (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
388
-                || (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
389
-            )
390
-                $wp->query_vars['gd_is_geodir_page'] = true;
391
-        }
392
-
393
-        if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
394
-            $page = get_page_by_path($wp->query_vars['pagename']);
395
-
396
-            if (!empty($page) && (
397
-                    $page->ID == geodir_add_listing_page_id()
398
-                    || $page->ID == geodir_preview_page_id()
399
-                    || $page->ID == geodir_success_page_id()
400
-                    || $page->ID == geodir_location_page_id()
401
-                    || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id())
402
-                    || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id())
403
-                    || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id())
404
-                    || (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
405
-                    || (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
406
-                )
407
-            )
408
-                $wp->query_vars['gd_is_geodir_page'] = true;
409
-        }
410
-
411
-
412
-        if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
413
-            $requested_post_type = $wp->query_vars['post_type'];
414
-            // check if this post type is geodirectory post types 
415
-            $post_type_array = geodir_get_posttypes();
416
-            if (in_array($requested_post_type, $post_type_array)) {
417
-                $wp->query_vars['gd_is_geodir_page'] = true;
418
-            }
419
-        }
420
-
421
-        if (!isset($wp->query_vars['gd_is_geodir_page'])) {
422
-            $geodir_taxonomis = geodir_get_taxonomies('', true);
423
-            if(!empty($geodir_taxonomis)){
424
-                foreach ($geodir_taxonomis as $taxonomy) {
425
-                    if (array_key_exists($taxonomy, $wp->query_vars)) {
426
-                        $wp->query_vars['gd_is_geodir_page'] = true;
427
-                        break;
428
-                    }
429
-                }
430
-            }
431
-
432
-        }
433
-
434
-        if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord']))
435
-            $wp->query_vars['gd_is_geodir_page'] = true;
436
-
437
-
438
-        if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search']))
439
-            $wp->query_vars['gd_is_geodir_page'] = true;
365
+	if (!is_admin()) {
366
+		//$wp->query_vars['gd_is_geodir_page'] = false;
367
+		//print_r()
368
+		if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array('preview', 'page', 'paged', 'cpage'))) {
369
+			if (get_option('geodir_set_as_home'))
370
+				$wp->query_vars['gd_is_geodir_page'] = true;
371
+			if(geodir_is_page('home')){
372
+				$wp->query_vars['gd_is_geodir_page'] = true;
373
+			}
374
+
375
+
376
+		}
377
+
378
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
379
+			if (
380
+				$wp->query_vars['page_id'] == geodir_add_listing_page_id()
381
+				|| $wp->query_vars['page_id'] == geodir_preview_page_id()
382
+				|| $wp->query_vars['page_id'] == geodir_success_page_id()
383
+				|| $wp->query_vars['page_id'] == geodir_location_page_id()
384
+				|| $wp->query_vars['page_id'] == geodir_home_page_id()
385
+				|| $wp->query_vars['page_id'] == geodir_info_page_id()
386
+				|| $wp->query_vars['page_id'] == geodir_login_page_id()
387
+				|| (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
388
+				|| (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
389
+			)
390
+				$wp->query_vars['gd_is_geodir_page'] = true;
391
+		}
392
+
393
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
394
+			$page = get_page_by_path($wp->query_vars['pagename']);
395
+
396
+			if (!empty($page) && (
397
+					$page->ID == geodir_add_listing_page_id()
398
+					|| $page->ID == geodir_preview_page_id()
399
+					|| $page->ID == geodir_success_page_id()
400
+					|| $page->ID == geodir_location_page_id()
401
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id())
402
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id())
403
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id())
404
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
405
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
406
+				)
407
+			)
408
+				$wp->query_vars['gd_is_geodir_page'] = true;
409
+		}
410
+
411
+
412
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
413
+			$requested_post_type = $wp->query_vars['post_type'];
414
+			// check if this post type is geodirectory post types 
415
+			$post_type_array = geodir_get_posttypes();
416
+			if (in_array($requested_post_type, $post_type_array)) {
417
+				$wp->query_vars['gd_is_geodir_page'] = true;
418
+			}
419
+		}
420
+
421
+		if (!isset($wp->query_vars['gd_is_geodir_page'])) {
422
+			$geodir_taxonomis = geodir_get_taxonomies('', true);
423
+			if(!empty($geodir_taxonomis)){
424
+				foreach ($geodir_taxonomis as $taxonomy) {
425
+					if (array_key_exists($taxonomy, $wp->query_vars)) {
426
+						$wp->query_vars['gd_is_geodir_page'] = true;
427
+						break;
428
+					}
429
+				}
430
+			}
431
+
432
+		}
433
+
434
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord']))
435
+			$wp->query_vars['gd_is_geodir_page'] = true;
436
+
437
+
438
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search']))
439
+			$wp->query_vars['gd_is_geodir_page'] = true;
440 440
 
441 441
 
442 442
 //check if homepage
443
-        if(!isset($wp->query_vars['gd_is_geodir_page'])
444
-            && !isset($wp->query_vars['page_id'])
445
-            && !isset($wp->query_vars['pagename'])
446
-            && is_page_geodir_home()){
447
-            $wp->query_vars['gd_is_geodir_page'] = true;
448
-        }
449
-        //echo $wp->query_vars['gd_is_geodir_page'] ;
450
-        /*echo "<pre>" ;
443
+		if(!isset($wp->query_vars['gd_is_geodir_page'])
444
+			&& !isset($wp->query_vars['page_id'])
445
+			&& !isset($wp->query_vars['pagename'])
446
+			&& is_page_geodir_home()){
447
+			$wp->query_vars['gd_is_geodir_page'] = true;
448
+		}
449
+		//echo $wp->query_vars['gd_is_geodir_page'] ;
450
+		/*echo "<pre>" ;
451 451
 		print_r($wp) ;
452 452
 		echo "</pre>" ;
453 453
 	//	exit();
454 454
 			*/
455
-    } // end of is admin
455
+	} // end of is admin
456 456
 }
457 457
 
458 458
 /**
@@ -465,56 +465,56 @@  discard block
 block discarded – undo
465 465
  */
466 466
 function geodir_is_geodir_page()
467 467
 {
468
-    global $wp;
469
-    if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page'])
470
-        return true;
471
-    else
472
-        return false;
468
+	global $wp;
469
+	if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page'])
470
+		return true;
471
+	else
472
+		return false;
473 473
 }
474 474
 
475 475
 if (!function_exists('geodir_get_imagesize')) {
476
-    /**
477
-     * Get image size using the size key .
478
-     *
479
-     * @since 1.0.0
480
-     * @package GeoDirectory
481
-     * @param string $size The image size key.
482
-     * @return array|mixed|void|WP_Error If valid returns image size. Else returns error.
483
-     */
484
-    function geodir_get_imagesize($size = '')
485
-    {
486
-
487
-        $imagesizes = array('list-thumb' => array('w' => 283, 'h' => 188),
488
-            'thumbnail' => array('w' => 125, 'h' => 125),
489
-            'widget-thumb' => array('w' => 50, 'h' => 50),
490
-            'slider-thumb' => array('w' => 100, 'h' => 100)
491
-        );
492
-
493
-        /**
494
-         * Filter the image sizes array.
495
-         *
496
-         * @since 1.0.0
497
-         * @param array $imagesizes Image size array.
498
-         */
499
-        $imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
500
-
501
-        if (!empty($size) && array_key_exists($size, $imagesizes)) {
502
-            /**
503
-             * Filters image size of the passed key.
504
-             *
505
-             * @since 1.0.0
506
-             * @param array $imagesizes[$size] Image size array of the passed key.
507
-             */
508
-            return apply_filters('geodir_get_imagesize_' . $size, $imagesizes[$size]);
509
-
510
-        } elseif (!empty($size)) {
511
-
512
-            return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
513
-
514
-        }
515
-
516
-        return $imagesizes;
517
-    }
476
+	/**
477
+	 * Get image size using the size key .
478
+	 *
479
+	 * @since 1.0.0
480
+	 * @package GeoDirectory
481
+	 * @param string $size The image size key.
482
+	 * @return array|mixed|void|WP_Error If valid returns image size. Else returns error.
483
+	 */
484
+	function geodir_get_imagesize($size = '')
485
+	{
486
+
487
+		$imagesizes = array('list-thumb' => array('w' => 283, 'h' => 188),
488
+			'thumbnail' => array('w' => 125, 'h' => 125),
489
+			'widget-thumb' => array('w' => 50, 'h' => 50),
490
+			'slider-thumb' => array('w' => 100, 'h' => 100)
491
+		);
492
+
493
+		/**
494
+		 * Filter the image sizes array.
495
+		 *
496
+		 * @since 1.0.0
497
+		 * @param array $imagesizes Image size array.
498
+		 */
499
+		$imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
500
+
501
+		if (!empty($size) && array_key_exists($size, $imagesizes)) {
502
+			/**
503
+			 * Filters image size of the passed key.
504
+			 *
505
+			 * @since 1.0.0
506
+			 * @param array $imagesizes[$size] Image size array of the passed key.
507
+			 */
508
+			return apply_filters('geodir_get_imagesize_' . $size, $imagesizes[$size]);
509
+
510
+		} elseif (!empty($size)) {
511
+
512
+			return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
513
+
514
+		}
515
+
516
+		return $imagesizes;
517
+	}
518 518
 }
519 519
 
520 520
 /**
@@ -534,151 +534,151 @@  discard block
 block discarded – undo
534 534
 
535 535
 
536 536
 if (!function_exists('createRandomString')) {
537
-    /**
538
-     * Creates random string.
539
-     *
540
-     * @since 1.0.0
541
-     * @package GeoDirectory
542
-     * @return string Random string.
543
-     */
544
-    function createRandomString()
545
-    {
546
-        $chars = "abcdefghijkmlnopqrstuvwxyz1023456789";
547
-        srand((double)microtime() * 1000000);
548
-        $i = 0;
549
-        $rstring = '';
550
-        while ($i <= 25) {
551
-            $num = rand() % 33;
552
-            $tmp = substr($chars, $num, 1);
553
-            $rstring = $rstring . $tmp;
554
-            $i++;
555
-        }
556
-        return $rstring;
557
-    }
537
+	/**
538
+	 * Creates random string.
539
+	 *
540
+	 * @since 1.0.0
541
+	 * @package GeoDirectory
542
+	 * @return string Random string.
543
+	 */
544
+	function createRandomString()
545
+	{
546
+		$chars = "abcdefghijkmlnopqrstuvwxyz1023456789";
547
+		srand((double)microtime() * 1000000);
548
+		$i = 0;
549
+		$rstring = '';
550
+		while ($i <= 25) {
551
+			$num = rand() % 33;
552
+			$tmp = substr($chars, $num, 1);
553
+			$rstring = $rstring . $tmp;
554
+			$i++;
555
+		}
556
+		return $rstring;
557
+	}
558 558
 }
559 559
 
560 560
 if (!function_exists('geodir_getDistanceRadius')) {
561
-    /**
562
-     * Calculates the distance radius.
563
-     *
564
-     * @since 1.0.0
565
-     * @package GeoDirectory
566
-     * @param string $uom Measurement unit type.
567
-     * @return float The mean radius.
568
-     */
569
-    function geodir_getDistanceRadius($uom = 'km')
570
-    {
561
+	/**
562
+	 * Calculates the distance radius.
563
+	 *
564
+	 * @since 1.0.0
565
+	 * @package GeoDirectory
566
+	 * @param string $uom Measurement unit type.
567
+	 * @return float The mean radius.
568
+	 */
569
+	function geodir_getDistanceRadius($uom = 'km')
570
+	{
571 571
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
572
-        switch (geodir_strtolower($uom)):
573
-            case 'km'    :
574
-                $earthMeanRadius = 6371.009; // km
575
-                break;
576
-            case 'm'    :
577
-            case 'meters'    :
578
-                $earthMeanRadius = 6371.009 * 1000; // km
579
-                break;
580
-            case 'miles'    :
581
-                $earthMeanRadius = 3958.761; // miles
582
-                break;
583
-            case 'yards'    :
584
-            case 'yds'    :
585
-                $earthMeanRadius = 3958.761 * 1760; // yards
586
-                break;
587
-            case 'feet'    :
588
-            case 'ft'    :
589
-                $earthMeanRadius = 3958.761 * 1760 * 3; // feet
590
-                break;
591
-            case 'nm'    :
592
-                $earthMeanRadius = 3440.069; //  miles
593
-                break;
594
-            default:
595
-                $earthMeanRadius = 3958.761; // miles
596
-                break;
597
-        endswitch;
598
-        return $earthMeanRadius;
599
-    }
572
+		switch (geodir_strtolower($uom)):
573
+			case 'km'    :
574
+				$earthMeanRadius = 6371.009; // km
575
+				break;
576
+			case 'm'    :
577
+			case 'meters'    :
578
+				$earthMeanRadius = 6371.009 * 1000; // km
579
+				break;
580
+			case 'miles'    :
581
+				$earthMeanRadius = 3958.761; // miles
582
+				break;
583
+			case 'yards'    :
584
+			case 'yds'    :
585
+				$earthMeanRadius = 3958.761 * 1760; // yards
586
+				break;
587
+			case 'feet'    :
588
+			case 'ft'    :
589
+				$earthMeanRadius = 3958.761 * 1760 * 3; // feet
590
+				break;
591
+			case 'nm'    :
592
+				$earthMeanRadius = 3440.069; //  miles
593
+				break;
594
+			default:
595
+				$earthMeanRadius = 3958.761; // miles
596
+				break;
597
+		endswitch;
598
+		return $earthMeanRadius;
599
+	}
600 600
 }
601 601
 
602 602
 
603 603
 if (!function_exists('geodir_calculateDistanceFromLatLong')) {
604
-    /**
605
-     * Calculate the great circle distance between two points identified by longitude and latitude.
606
-     *
607
-     * @since 1.0.0
608
-     * @package GeoDirectory
609
-     * @param array $point1 Latitude and Longitude of point 1.
610
-     * @param array $point2 Latitude and Longitude of point 2.
611
-     * @param string $uom Unit of measurement.
612
-     * @return float The distance.
613
-     */
614
-    function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km')
615
-    {
604
+	/**
605
+	 * Calculate the great circle distance between two points identified by longitude and latitude.
606
+	 *
607
+	 * @since 1.0.0
608
+	 * @package GeoDirectory
609
+	 * @param array $point1 Latitude and Longitude of point 1.
610
+	 * @param array $point2 Latitude and Longitude of point 2.
611
+	 * @param string $uom Unit of measurement.
612
+	 * @return float The distance.
613
+	 */
614
+	function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km')
615
+	{
616 616
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
617 617
 
618
-        $earthMeanRadius = geodir_getDistanceRadius($uom);
618
+		$earthMeanRadius = geodir_getDistanceRadius($uom);
619 619
 
620
-        $deltaLatitude = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']);
621
-        $deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']);
622
-        $a = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) +
623
-            cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) *
624
-            sin($deltaLongitude / 2) * sin($deltaLongitude / 2);
625
-        $c = 2 * atan2(sqrt($a), sqrt(1 - $a));
626
-        $distance = $earthMeanRadius * $c;
627
-        return $distance;
620
+		$deltaLatitude = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']);
621
+		$deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']);
622
+		$a = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) +
623
+			cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) *
624
+			sin($deltaLongitude / 2) * sin($deltaLongitude / 2);
625
+		$c = 2 * atan2(sqrt($a), sqrt(1 - $a));
626
+		$distance = $earthMeanRadius * $c;
627
+		return $distance;
628 628
 
629
-    }
629
+	}
630 630
 }
631 631
 
632 632
 
633 633
 if (!function_exists('geodir_sendEmail')) {
634
-    /**
635
-     * The main function that send transactional emails using the args provided.
636
-     *
637
-     * @since 1.0.0
638
-     * @since 1.5.7 Added db translations for notifications subject and content.
639
-     * @package GeoDirectory
640
-     * @param string $fromEmail Sender email address.
641
-     * @param string $fromEmailName Sender name.
642
-     * @param string $toEmail Receiver email address.
643
-     * @param string $toEmailName Receiver name.
644
-     * @param string $to_subject Email subject.
645
-     * @param string $to_message Email content.
646
-     * @param string $extra Not being used.
647
-     * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration, post_submit, listing_published.
648
-     * @param string $post_id The post ID.
649
-     * @param string $user_id The user ID.
650
-     */
651
-    function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
652
-        $login_details = '';
653
-
654
-        // strip slashes from subject & message text
655
-        $to_subject = stripslashes_deep($to_subject);
656
-        $to_message = stripslashes_deep($to_message);
657
-
658
-        if ($message_type == 'send_friend') {
659
-            $subject = get_option('geodir_email_friend_subject');
660
-            $message = get_option('geodir_email_friend_content');
661
-        } elseif ($message_type == 'send_enquiry') {
662
-            $subject = get_option('geodir_email_enquiry_subject');
663
-            $message = get_option('geodir_email_enquiry_content');
664
-        } elseif ($message_type == 'forgot_password') {
665
-            $subject = get_option('geodir_forgot_password_subject');
666
-            $message = get_option('geodir_forgot_password_content');
667
-            $login_details = $to_message;
668
-        } elseif ($message_type == 'registration') {
669
-            $subject = get_option('geodir_registration_success_email_subject');
670
-            $message = get_option('geodir_registration_success_email_content');
671
-            $login_details = $to_message;
672
-        } elseif ($message_type == 'post_submit') {
673
-            $subject = get_option('geodir_post_submited_success_email_subject');
674
-            $message = get_option('geodir_post_submited_success_email_content');
675
-        } elseif ($message_type == 'listing_published') {
676
-            $subject = get_option('geodir_post_published_email_subject');
677
-            $message = get_option('geodir_post_published_email_content');
678
-        } elseif ($message_type == 'listing_edited') {
679
-            $subject = get_option('geodir_post_edited_email_subject_admin');
680
-            $message = get_option('geodir_post_edited_email_content_admin');
681
-        }
634
+	/**
635
+	 * The main function that send transactional emails using the args provided.
636
+	 *
637
+	 * @since 1.0.0
638
+	 * @since 1.5.7 Added db translations for notifications subject and content.
639
+	 * @package GeoDirectory
640
+	 * @param string $fromEmail Sender email address.
641
+	 * @param string $fromEmailName Sender name.
642
+	 * @param string $toEmail Receiver email address.
643
+	 * @param string $toEmailName Receiver name.
644
+	 * @param string $to_subject Email subject.
645
+	 * @param string $to_message Email content.
646
+	 * @param string $extra Not being used.
647
+	 * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration, post_submit, listing_published.
648
+	 * @param string $post_id The post ID.
649
+	 * @param string $user_id The user ID.
650
+	 */
651
+	function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
652
+		$login_details = '';
653
+
654
+		// strip slashes from subject & message text
655
+		$to_subject = stripslashes_deep($to_subject);
656
+		$to_message = stripslashes_deep($to_message);
657
+
658
+		if ($message_type == 'send_friend') {
659
+			$subject = get_option('geodir_email_friend_subject');
660
+			$message = get_option('geodir_email_friend_content');
661
+		} elseif ($message_type == 'send_enquiry') {
662
+			$subject = get_option('geodir_email_enquiry_subject');
663
+			$message = get_option('geodir_email_enquiry_content');
664
+		} elseif ($message_type == 'forgot_password') {
665
+			$subject = get_option('geodir_forgot_password_subject');
666
+			$message = get_option('geodir_forgot_password_content');
667
+			$login_details = $to_message;
668
+		} elseif ($message_type == 'registration') {
669
+			$subject = get_option('geodir_registration_success_email_subject');
670
+			$message = get_option('geodir_registration_success_email_content');
671
+			$login_details = $to_message;
672
+		} elseif ($message_type == 'post_submit') {
673
+			$subject = get_option('geodir_post_submited_success_email_subject');
674
+			$message = get_option('geodir_post_submited_success_email_content');
675
+		} elseif ($message_type == 'listing_published') {
676
+			$subject = get_option('geodir_post_published_email_subject');
677
+			$message = get_option('geodir_post_published_email_content');
678
+		} elseif ($message_type == 'listing_edited') {
679
+			$subject = get_option('geodir_post_edited_email_subject_admin');
680
+			$message = get_option('geodir_post_edited_email_content_admin');
681
+		}
682 682
 		
683 683
 		if (!empty($subject)) {
684 684
 			$subject = __(stripslashes_deep($subject),'geodirectory');
@@ -688,203 +688,203 @@  discard block
 block discarded – undo
688 688
 			$message = __(stripslashes_deep($message),'geodirectory');
689 689
 		}
690 690
 
691
-        $to_message = nl2br($to_message);
692
-        $sitefromEmail = get_option('site_email');
693
-        $sitefromEmailName = get_site_emailName();
694
-        $productlink = get_permalink($post_id);
695
-
696
-        $user_login = '';
697
-        if ($user_id > 0 && $user_info = get_userdata($user_id)) {
698
-            $user_login = $user_info->user_login;
699
-        }
700
-
701
-        $posted_date = '';
702
-        $listingLink = '';
703
-
704
-        $post_info = get_post($post_id);
705
-
706
-        if ($post_info) {
707
-            $posted_date = $post_info->post_date;
708
-            $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
709
-        }
710
-        $siteurl = home_url();
711
-        $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
712
-        $loginurl = geodir_login_url();
713
-        $loginurl_link = '<a href="' . $loginurl . '">login</a>';
691
+		$to_message = nl2br($to_message);
692
+		$sitefromEmail = get_option('site_email');
693
+		$sitefromEmailName = get_site_emailName();
694
+		$productlink = get_permalink($post_id);
695
+
696
+		$user_login = '';
697
+		if ($user_id > 0 && $user_info = get_userdata($user_id)) {
698
+			$user_login = $user_info->user_login;
699
+		}
700
+
701
+		$posted_date = '';
702
+		$listingLink = '';
703
+
704
+		$post_info = get_post($post_id);
705
+
706
+		if ($post_info) {
707
+			$posted_date = $post_info->post_date;
708
+			$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
709
+		}
710
+		$siteurl = home_url();
711
+		$siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
712
+		$loginurl = geodir_login_url();
713
+		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
714 714
         
715
-        $post_author_id = !empty($post_info) ? $post_info->post_author : 0;
716
-        $post_author_name = geodir_get_client_name($post_author_id);
717
-        $current_date = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
718
-
719
-        if ($fromEmail == '') {
720
-            $fromEmail = get_option('site_email');
721
-        }
722
-
723
-        if ($fromEmailName == '') {
724
-            $fromEmailName = get_option('site_email_name');
725
-        }
726
-
727
-        $search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#comments#]', '[#login_url#]', '[#login_details#]', '[#client_name#]', '[#posted_date#]','[#from_email#]','[#user_login#]','[#username#]','[#post_author_id#]','[#post_author_name#]','[#current_date#]');
728
-        $replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $to_message, $loginurl_link, $login_details, $toEmailName, $posted_date,$fromEmail, $user_login, $user_login, $post_author_id, $post_author_name, $current_date);
729
-        $message = str_replace($search_array, $replace_array, $message);
730
-
731
-        $search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#client_name#]', '[#posted_date#]','[#from_email#]','[#user_login#]','[#username#]','[#post_author_id#]','[#post_author_name#]','[#current_date#]');
732
-        $replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $toEmailName, $posted_date,$fromEmail, $user_login, $user_login, $post_author_id, $post_author_name, $current_date);
733
-        $subject = str_replace($search_array, $replace_array, $subject);
734
-
735
-        $headers = 'MIME-Version: 1.0' . "\r\n";
736
-        $headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
737
-        $headers .= "Reply-To: " . $fromEmail . "\r\n";
738
-        $headers .= 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>' . "\r\n";
739
-
740
-        $to = $toEmail;
741
-
742
-        /**
743
-         * Filter the client email to address.
744
-         *
745
-         * @since 1.6.1
746
-         * @package GeoDirectory
747
-         * @param string $to The email address the email is being sent to.
748
-         * @param string $fromEmail Sender email address.
749
-         * @param string $fromEmailName Sender name.
750
-         * @param string $toEmail Receiver email address.
751
-         * @param string $toEmailName Receiver name.
752
-         * @param string $to_subject Email subject.
753
-         * @param string $to_message Email content.
754
-         * @param string $extra Not being used.
755
-         * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration, post_submit, listing_published.
756
-         * @param string $post_id The post ID.
757
-         * @param string $user_id The user ID.
758
-         */
759
-        $to = apply_filters('geodir_sendEmail_to',$to,$fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
760
-        /**
761
-         * Filter the client email subject.
762
-         *
763
-         * @since 1.6.1
764
-         * @package GeoDirectory_Payment_Manager
765
-         * @param string $subject The email subject.
766
-         * @param string $fromEmail Sender email address.
767
-         * @param string $fromEmailName Sender name.
768
-         * @param string $toEmail Receiver email address.
769
-         * @param string $toEmailName Receiver name.
770
-         * @param string $to_subject Email subject.
771
-         * @param string $to_message Email content.
772
-         * @param string $extra Not being used.
773
-         * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration, post_submit, listing_published.
774
-         * @param string $post_id The post ID.
775
-         * @param string $user_id The user ID.
776
-         */
777
-        $subject = apply_filters('geodir_sendEmail_subject',$subject,$fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
778
-        /**
779
-         * Filter the client email message.
780
-         *
781
-         * @since 1.6.1
782
-         * @package GeoDirectory_Payment_Manager
783
-         * @param string $message The email message text.
784
-         * @param string $fromEmail Sender email address.
785
-         * @param string $fromEmailName Sender name.
786
-         * @param string $toEmail Receiver email address.
787
-         * @param string $toEmailName Receiver name.
788
-         * @param string $to_subject Email subject.
789
-         * @param string $to_message Email content.
790
-         * @param string $extra Not being used.
791
-         * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration, post_submit, listing_published.
792
-         * @param string $post_id The post ID.
793
-         * @param string $user_id The user ID.
794
-         */
795
-        $message = apply_filters('geodir_sendEmail_message',$message,$fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
796
-        /**
797
-         * Filter the client email headers.
798
-         *
799
-         * @since 1.6.1
800
-         * @package GeoDirectory_Payment_Manager
801
-         * @param string $headers The email headers.
802
-         * @param string $fromEmail Sender email address.
803
-         * @param string $fromEmailName Sender name.
804
-         * @param string $toEmail Receiver email address.
805
-         * @param string $toEmailName Receiver name.
806
-         * @param string $to_subject Email subject.
807
-         * @param string $to_message Email content.
808
-         * @param string $extra Not being used.
809
-         * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration, post_submit, listing_published.
810
-         * @param string $post_id The post ID.
811
-         * @param string $user_id The user ID.
812
-         */
813
-        $headers = apply_filters('geodir_sendEmail_headers',$headers,$fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
814
-
815
-        $sent = wp_mail($to, $subject, $message, $headers);
816
-
817
-        if( ! $sent ) {
818
-            if ( is_array( $to ) ) {
819
-                $to = implode( ',', $to );
820
-            }
821
-            $log_message = sprintf(
822
-                __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
823
-                $message_type,
824
-                date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
825
-                $to,
826
-                $subject
827
-            );
828
-            geodir_error_log( $log_message );
829
-        }
830
-
831
-        ///////// ADMIN BCC EMIALS
832
-        $adminEmail = get_bloginfo('admin_email');
833
-        $to = $adminEmail;
834
-
835
-        $admin_bcc = false;
836
-        if ($message_type == 'post_submit') {
837
-            $subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
838
-            $message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
839
-
840
-            $search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#comments#]', '[#login_url#]', '[#login_details#]', '[#client_name#]', '[#posted_date#]','[#user_login#]','[#username#]');
841
-            $replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $to_message, $loginurl_link, $login_details, $toEmailName, $posted_date, $user_login, $user_login);
842
-            $message = str_replace($search_array, $replace_array, $message);
843
-
844
-            $search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#client_name#]', '[#posted_date#]','[#user_login#]','[#username#]');
845
-            $replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $toEmailName, $posted_date, $user_login, $user_login);
846
-            $subject = str_replace($search_array, $replace_array, $subject);
847
-
848
-            $subject .= ' - ADMIN BCC COPY';
849
-            $admin_bcc = true;
850
-
851
-        }
852
-        elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
853
-            $subject .= ' - ADMIN BCC COPY';
854
-            $admin_bcc = true;
855
-        }
856
-        elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
857
-            $subject .= ' - ADMIN BCC COPY';
858
-            $admin_bcc = true;
859
-        }
860
-        elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
861
-            $subject .= ' - ADMIN BCC COPY';
862
-            $admin_bcc = true;
863
-        }
864
-        elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
865
-            $subject .= ' - ADMIN BCC COPY';
866
-            $admin_bcc = true;
867
-        }
868
-
869
-        if($admin_bcc===true){
870
-            $sent = wp_mail($to, $subject, $message, $headers);
871
-
872
-            if( ! $sent ) {
873
-                if ( is_array( $to ) ) {
874
-                    $to = implode( ',', $to );
875
-                }
876
-                $log_message = sprintf(
877
-                    __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
878
-                    $message_type,
879
-                    date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
880
-                    $to,
881
-                    $subject
882
-                );
883
-                geodir_error_log( $log_message );
884
-            }
885
-        }
886
-
887
-    }
715
+		$post_author_id = !empty($post_info) ? $post_info->post_author : 0;
716
+		$post_author_name = geodir_get_client_name($post_author_id);
717
+		$current_date = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
718
+
719
+		if ($fromEmail == '') {
720
+			$fromEmail = get_option('site_email');
721
+		}
722
+
723
+		if ($fromEmailName == '') {
724
+			$fromEmailName = get_option('site_email_name');
725
+		}
726
+
727
+		$search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#comments#]', '[#login_url#]', '[#login_details#]', '[#client_name#]', '[#posted_date#]','[#from_email#]','[#user_login#]','[#username#]','[#post_author_id#]','[#post_author_name#]','[#current_date#]');
728
+		$replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $to_message, $loginurl_link, $login_details, $toEmailName, $posted_date,$fromEmail, $user_login, $user_login, $post_author_id, $post_author_name, $current_date);
729
+		$message = str_replace($search_array, $replace_array, $message);
730
+
731
+		$search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#client_name#]', '[#posted_date#]','[#from_email#]','[#user_login#]','[#username#]','[#post_author_id#]','[#post_author_name#]','[#current_date#]');
732
+		$replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $toEmailName, $posted_date,$fromEmail, $user_login, $user_login, $post_author_id, $post_author_name, $current_date);
733
+		$subject = str_replace($search_array, $replace_array, $subject);
734
+
735
+		$headers = 'MIME-Version: 1.0' . "\r\n";
736
+		$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
737
+		$headers .= "Reply-To: " . $fromEmail . "\r\n";
738
+		$headers .= 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>' . "\r\n";
739
+
740
+		$to = $toEmail;
741
+
742
+		/**
743
+		 * Filter the client email to address.
744
+		 *
745
+		 * @since 1.6.1
746
+		 * @package GeoDirectory
747
+		 * @param string $to The email address the email is being sent to.
748
+		 * @param string $fromEmail Sender email address.
749
+		 * @param string $fromEmailName Sender name.
750
+		 * @param string $toEmail Receiver email address.
751
+		 * @param string $toEmailName Receiver name.
752
+		 * @param string $to_subject Email subject.
753
+		 * @param string $to_message Email content.
754
+		 * @param string $extra Not being used.
755
+		 * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration, post_submit, listing_published.
756
+		 * @param string $post_id The post ID.
757
+		 * @param string $user_id The user ID.
758
+		 */
759
+		$to = apply_filters('geodir_sendEmail_to',$to,$fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
760
+		/**
761
+		 * Filter the client email subject.
762
+		 *
763
+		 * @since 1.6.1
764
+		 * @package GeoDirectory_Payment_Manager
765
+		 * @param string $subject The email subject.
766
+		 * @param string $fromEmail Sender email address.
767
+		 * @param string $fromEmailName Sender name.
768
+		 * @param string $toEmail Receiver email address.
769
+		 * @param string $toEmailName Receiver name.
770
+		 * @param string $to_subject Email subject.
771
+		 * @param string $to_message Email content.
772
+		 * @param string $extra Not being used.
773
+		 * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration, post_submit, listing_published.
774
+		 * @param string $post_id The post ID.
775
+		 * @param string $user_id The user ID.
776
+		 */
777
+		$subject = apply_filters('geodir_sendEmail_subject',$subject,$fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
778
+		/**
779
+		 * Filter the client email message.
780
+		 *
781
+		 * @since 1.6.1
782
+		 * @package GeoDirectory_Payment_Manager
783
+		 * @param string $message The email message text.
784
+		 * @param string $fromEmail Sender email address.
785
+		 * @param string $fromEmailName Sender name.
786
+		 * @param string $toEmail Receiver email address.
787
+		 * @param string $toEmailName Receiver name.
788
+		 * @param string $to_subject Email subject.
789
+		 * @param string $to_message Email content.
790
+		 * @param string $extra Not being used.
791
+		 * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration, post_submit, listing_published.
792
+		 * @param string $post_id The post ID.
793
+		 * @param string $user_id The user ID.
794
+		 */
795
+		$message = apply_filters('geodir_sendEmail_message',$message,$fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
796
+		/**
797
+		 * Filter the client email headers.
798
+		 *
799
+		 * @since 1.6.1
800
+		 * @package GeoDirectory_Payment_Manager
801
+		 * @param string $headers The email headers.
802
+		 * @param string $fromEmail Sender email address.
803
+		 * @param string $fromEmailName Sender name.
804
+		 * @param string $toEmail Receiver email address.
805
+		 * @param string $toEmailName Receiver name.
806
+		 * @param string $to_subject Email subject.
807
+		 * @param string $to_message Email content.
808
+		 * @param string $extra Not being used.
809
+		 * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration, post_submit, listing_published.
810
+		 * @param string $post_id The post ID.
811
+		 * @param string $user_id The user ID.
812
+		 */
813
+		$headers = apply_filters('geodir_sendEmail_headers',$headers,$fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
814
+
815
+		$sent = wp_mail($to, $subject, $message, $headers);
816
+
817
+		if( ! $sent ) {
818
+			if ( is_array( $to ) ) {
819
+				$to = implode( ',', $to );
820
+			}
821
+			$log_message = sprintf(
822
+				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
823
+				$message_type,
824
+				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
825
+				$to,
826
+				$subject
827
+			);
828
+			geodir_error_log( $log_message );
829
+		}
830
+
831
+		///////// ADMIN BCC EMIALS
832
+		$adminEmail = get_bloginfo('admin_email');
833
+		$to = $adminEmail;
834
+
835
+		$admin_bcc = false;
836
+		if ($message_type == 'post_submit') {
837
+			$subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
838
+			$message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
839
+
840
+			$search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#comments#]', '[#login_url#]', '[#login_details#]', '[#client_name#]', '[#posted_date#]','[#user_login#]','[#username#]');
841
+			$replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $to_message, $loginurl_link, $login_details, $toEmailName, $posted_date, $user_login, $user_login);
842
+			$message = str_replace($search_array, $replace_array, $message);
843
+
844
+			$search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#client_name#]', '[#posted_date#]','[#user_login#]','[#username#]');
845
+			$replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $toEmailName, $posted_date, $user_login, $user_login);
846
+			$subject = str_replace($search_array, $replace_array, $subject);
847
+
848
+			$subject .= ' - ADMIN BCC COPY';
849
+			$admin_bcc = true;
850
+
851
+		}
852
+		elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
853
+			$subject .= ' - ADMIN BCC COPY';
854
+			$admin_bcc = true;
855
+		}
856
+		elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
857
+			$subject .= ' - ADMIN BCC COPY';
858
+			$admin_bcc = true;
859
+		}
860
+		elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
861
+			$subject .= ' - ADMIN BCC COPY';
862
+			$admin_bcc = true;
863
+		}
864
+		elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
865
+			$subject .= ' - ADMIN BCC COPY';
866
+			$admin_bcc = true;
867
+		}
868
+
869
+		if($admin_bcc===true){
870
+			$sent = wp_mail($to, $subject, $message, $headers);
871
+
872
+			if( ! $sent ) {
873
+				if ( is_array( $to ) ) {
874
+					$to = implode( ',', $to );
875
+				}
876
+				$log_message = sprintf(
877
+					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
878
+					$message_type,
879
+					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
880
+					$to,
881
+					$subject
882
+				);
883
+				geodir_error_log( $log_message );
884
+			}
885
+		}
886
+
887
+	}
888 888
 }
889 889
 
890 890
 
@@ -897,27 +897,27 @@  discard block
 block discarded – undo
897 897
 function geodir_taxonomy_breadcrumb()
898 898
 {
899 899
 
900
-    $term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
901
-    $parent = $term->parent;
900
+	$term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
901
+	$parent = $term->parent;
902 902
 
903
-    while ($parent):
904
-        $parents[] = $parent;
905
-        $new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
906
-        $parent = $new_parent->parent;
907
-    endwhile;
903
+	while ($parent):
904
+		$parents[] = $parent;
905
+		$new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
906
+		$parent = $new_parent->parent;
907
+	endwhile;
908 908
 
909
-    if (!empty($parents)):
910
-        $parents = array_reverse($parents);
909
+	if (!empty($parents)):
910
+		$parents = array_reverse($parents);
911 911
 
912
-        foreach ($parents as $parent):
913
-            $item = get_term_by('id', $parent, get_query_var('taxonomy'));
914
-            $url = get_term_link($item, get_query_var('taxonomy'));
915
-            echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
916
-        endforeach;
912
+		foreach ($parents as $parent):
913
+			$item = get_term_by('id', $parent, get_query_var('taxonomy'));
914
+			$url = get_term_link($item, get_query_var('taxonomy'));
915
+			echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
916
+		endforeach;
917 917
 
918
-    endif;
918
+	endif;
919 919
 
920
-    echo '<li> > ' . $term->name . '</li>';
920
+	echo '<li> > ' . $term->name . '</li>';
921 921
 }
922 922
 
923 923
 
@@ -933,369 +933,369 @@  discard block
 block discarded – undo
933 933
  */
934 934
 function geodir_breadcrumb()
935 935
 {
936
-    global $wp_query, $geodir_add_location_url;
937
-
938
-    /**
939
-     * Filter breadcrumb separator.
940
-     *
941
-     * @since 1.0.0
942
-     */
943
-    $separator = apply_filters('geodir_breadcrumb_separator', ' > ');
944
-
945
-    if (!geodir_is_page('home')) {
946
-        $breadcrumb = '';
947
-        $url_categoris = '';
948
-        $breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
949
-        /**
950
-         * Filter breadcrumb's first link.
951
-         *
952
-         * @since 1.0.0
953
-         */
954
-        $breadcrumb .= '<li>' . apply_filters('geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __('Home', 'geodirectory') . '</a>') . '</li>';
955
-
956
-        $gd_post_type = geodir_get_current_posttype();
957
-        $post_type_info = get_post_type_object($gd_post_type);
958
-
959
-        remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
960
-
961
-        $listing_link = get_post_type_archive_link($gd_post_type);
962
-
963
-        add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
964
-        $listing_link = rtrim($listing_link, '/');
965
-        $listing_link .= '/';
966
-
967
-        $post_type_for_location_link = $listing_link;
968
-        $location_terms = geodir_get_current_location_terms('query_vars', $gd_post_type);
969
-
970
-        global $wp, $gd_session;
971
-        $location_link = $post_type_for_location_link;
972
-
973
-        if (geodir_is_page('detail') || geodir_is_page('listing')) {
974
-            global $post;
975
-            $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
936
+	global $wp_query, $geodir_add_location_url;
937
+
938
+	/**
939
+	 * Filter breadcrumb separator.
940
+	 *
941
+	 * @since 1.0.0
942
+	 */
943
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
944
+
945
+	if (!geodir_is_page('home')) {
946
+		$breadcrumb = '';
947
+		$url_categoris = '';
948
+		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
949
+		/**
950
+		 * Filter breadcrumb's first link.
951
+		 *
952
+		 * @since 1.0.0
953
+		 */
954
+		$breadcrumb .= '<li>' . apply_filters('geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __('Home', 'geodirectory') . '</a>') . '</li>';
955
+
956
+		$gd_post_type = geodir_get_current_posttype();
957
+		$post_type_info = get_post_type_object($gd_post_type);
958
+
959
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
960
+
961
+		$listing_link = get_post_type_archive_link($gd_post_type);
962
+
963
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
964
+		$listing_link = rtrim($listing_link, '/');
965
+		$listing_link .= '/';
966
+
967
+		$post_type_for_location_link = $listing_link;
968
+		$location_terms = geodir_get_current_location_terms('query_vars', $gd_post_type);
969
+
970
+		global $wp, $gd_session;
971
+		$location_link = $post_type_for_location_link;
972
+
973
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
974
+			global $post;
975
+			$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
976 976
 			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
977 977
 				
978 978
 			if(geodir_is_page('detail') && isset($post->country_slug)){
979
-                $location_terms = array(
980
-                    'gd_country' => $post->country_slug,
981
-                    'gd_region' => $post->region_slug,
982
-                    'gd_city' => $post->city_slug
983
-                );
979
+				$location_terms = array(
980
+					'gd_country' => $post->country_slug,
981
+					'gd_region' => $post->region_slug,
982
+					'gd_city' => $post->city_slug
983
+				);
984 984
 				
985 985
 				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
986 986
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
987 987
 				}
988
-            }
989
-
990
-            $geodir_show_location_url = get_option('geodir_show_location_url');
991
-
992
-            $hide_url_part = array();
993
-            if ($location_manager) {
994
-                $hide_country_part = get_option('geodir_location_hide_country_part');
995
-                $hide_region_part = get_option('geodir_location_hide_region_part');
996
-
997
-                if ($hide_region_part && $hide_country_part) {
998
-                    $hide_url_part = array('gd_country', 'gd_region');
999
-                } else if ($hide_region_part && !$hide_country_part) {
1000
-                    $hide_url_part = array('gd_region');
1001
-                } else if (!$hide_region_part && $hide_country_part) {
1002
-                    $hide_url_part = array('gd_country');
1003
-                }
1004
-            }
1005
-
1006
-            $hide_text_part = array();
1007
-            if ($geodir_show_location_url == 'country_city') {
1008
-                $hide_text_part = array('gd_region');
1009
-
1010
-                if (isset($location_terms['gd_region']) && !$location_manager) {
1011
-                    unset($location_terms['gd_region']);
1012
-                }
1013
-            } else if ($geodir_show_location_url == 'region_city') {
1014
-                $hide_text_part = array('gd_country');
1015
-
1016
-                if (isset($location_terms['gd_country']) && !$location_manager) {
1017
-                    unset($location_terms['gd_country']);
1018
-                }
1019
-            } else if ($geodir_show_location_url == 'city') {
1020
-                $hide_text_part = array('gd_country', 'gd_region');
1021
-
1022
-                if (isset($location_terms['gd_country']) && !$location_manager) {
1023
-                    unset($location_terms['gd_country']);
1024
-                }
1025
-                if (isset($location_terms['gd_region']) && !$location_manager) {
1026
-                    unset($location_terms['gd_region']);
1027
-                }
1028
-            }
1029
-
1030
-            $is_location_last = '';
1031
-            $is_taxonomy_last = '';
1032
-            $breadcrumb .= '<li>';
1033
-            if (get_query_var($gd_post_type . 'category'))
1034
-                $gd_taxonomy = $gd_post_type . 'category';
1035
-            elseif (get_query_var($gd_post_type . '_tags'))
1036
-                $gd_taxonomy = $gd_post_type . '_tags';
1037
-
1038
-            $breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __(ucfirst($post_type_info->label), 'geodirectory') . '</a>';
1039
-            if (!empty($gd_taxonomy) || geodir_is_page('detail'))
1040
-                $is_location_last = false;
1041
-            else
1042
-                $is_location_last = true;
1043
-
1044
-            if (!empty($gd_taxonomy) && geodir_is_page('listing'))
1045
-                $is_taxonomy_last = true;
1046
-            else
1047
-                $is_taxonomy_last = false;
1048
-
1049
-            if (!empty($location_terms)) {
1050
-                $geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1051
-
1052
-                foreach ($location_terms as $key => $location_term) {
1053
-                    if ($location_term != '') {
1054
-                        if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1055
-                            continue;
1056
-                        }
988
+			}
1057 989
 
1058
-                        $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1059
-                        $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1060
-                        $gd_location_link_text = ucfirst($gd_location_link_text);
1061
-
1062
-                        $location_term_actual_country = '';
1063
-                        $location_term_actual_region = '';
1064
-                        $location_term_actual_city = '';
1065
-                        if ($geodir_get_locations) {
1066
-                            if ($key == 'gd_country') {
1067
-                                $location_term_actual_country = get_actual_location_name('country', $location_term, true);
1068
-                            } else if ($key == 'gd_region') {
1069
-                                $location_term_actual_region = get_actual_location_name('region', $location_term, true);
1070
-                            } else if ($key == 'gd_city') {
1071
-                                $location_term_actual_city = get_actual_location_name('city', $location_term, true);
1072
-                            }
1073
-                        } else {
1074
-                            $location_info = geodir_get_location();
1075
-
1076
-                            if (!empty($location_info) && isset($location_info->location_id)) {
1077
-                                if ($key == 'gd_country') {
1078
-                                    $location_term_actual_country = __($location_info->country, 'geodirectory');
1079
-                                } else if ($key == 'gd_region') {
1080
-                                    $location_term_actual_region = __($location_info->region, 'geodirectory');
1081
-                                } else if ($key == 'gd_city') {
1082
-                                    $location_term_actual_city = __($location_info->city, 'geodirectory');
1083
-                                }
1084
-                            }
1085
-                        }
990
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1086 991
 
1087
-                        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'] != '')) {
1088
-                            $breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1089
-                        } else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1090
-                            $breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1091
-                        } else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1092
-                            $breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1093
-                        } else if ($is_location_last && $key == 'gd_neighbourhood') {
1094
-                            $breadcrumb .= $separator . $gd_location_link_text;
1095
-                        } else {
1096
-                            if (get_option('permalink_structure') != '') {
1097
-                                $location_link .= $location_term . '/';
1098
-                            } else {
1099
-                                $location_link .= "&$key=" . $location_term;
1100
-                            }
992
+			$hide_url_part = array();
993
+			if ($location_manager) {
994
+				$hide_country_part = get_option('geodir_location_hide_country_part');
995
+				$hide_region_part = get_option('geodir_location_hide_region_part');
1101 996
 
1102
-                            if ($key == 'gd_country' && $location_term_actual_country != '') {
1103
-                                $gd_location_link_text = $location_term_actual_country;
1104
-                            } else if ($key == 'gd_region' && $location_term_actual_region != '') {
1105
-                                $gd_location_link_text = $location_term_actual_region;
1106
-                            } else if ($key == 'gd_city' && $location_term_actual_city != '') {
1107
-                                $gd_location_link_text = $location_term_actual_city;
1108
-                            }
997
+				if ($hide_region_part && $hide_country_part) {
998
+					$hide_url_part = array('gd_country', 'gd_region');
999
+				} else if ($hide_region_part && !$hide_country_part) {
1000
+					$hide_url_part = array('gd_region');
1001
+				} else if (!$hide_region_part && $hide_country_part) {
1002
+					$hide_url_part = array('gd_country');
1003
+				}
1004
+			}
1005
+
1006
+			$hide_text_part = array();
1007
+			if ($geodir_show_location_url == 'country_city') {
1008
+				$hide_text_part = array('gd_region');
1009
+
1010
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1011
+					unset($location_terms['gd_region']);
1012
+				}
1013
+			} else if ($geodir_show_location_url == 'region_city') {
1014
+				$hide_text_part = array('gd_country');
1015
+
1016
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1017
+					unset($location_terms['gd_country']);
1018
+				}
1019
+			} else if ($geodir_show_location_url == 'city') {
1020
+				$hide_text_part = array('gd_country', 'gd_region');
1021
+
1022
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1023
+					unset($location_terms['gd_country']);
1024
+				}
1025
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1026
+					unset($location_terms['gd_region']);
1027
+				}
1028
+			}
1109 1029
 
1110
-                            /*
1030
+			$is_location_last = '';
1031
+			$is_taxonomy_last = '';
1032
+			$breadcrumb .= '<li>';
1033
+			if (get_query_var($gd_post_type . 'category'))
1034
+				$gd_taxonomy = $gd_post_type . 'category';
1035
+			elseif (get_query_var($gd_post_type . '_tags'))
1036
+				$gd_taxonomy = $gd_post_type . '_tags';
1037
+
1038
+			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __(ucfirst($post_type_info->label), 'geodirectory') . '</a>';
1039
+			if (!empty($gd_taxonomy) || geodir_is_page('detail'))
1040
+				$is_location_last = false;
1041
+			else
1042
+				$is_location_last = true;
1043
+
1044
+			if (!empty($gd_taxonomy) && geodir_is_page('listing'))
1045
+				$is_taxonomy_last = true;
1046
+			else
1047
+				$is_taxonomy_last = false;
1048
+
1049
+			if (!empty($location_terms)) {
1050
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1051
+
1052
+				foreach ($location_terms as $key => $location_term) {
1053
+					if ($location_term != '') {
1054
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1055
+							continue;
1056
+						}
1057
+
1058
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1059
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1060
+						$gd_location_link_text = ucfirst($gd_location_link_text);
1061
+
1062
+						$location_term_actual_country = '';
1063
+						$location_term_actual_region = '';
1064
+						$location_term_actual_city = '';
1065
+						if ($geodir_get_locations) {
1066
+							if ($key == 'gd_country') {
1067
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1068
+							} else if ($key == 'gd_region') {
1069
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1070
+							} else if ($key == 'gd_city') {
1071
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1072
+							}
1073
+						} else {
1074
+							$location_info = geodir_get_location();
1075
+
1076
+							if (!empty($location_info) && isset($location_info->location_id)) {
1077
+								if ($key == 'gd_country') {
1078
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1079
+								} else if ($key == 'gd_region') {
1080
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1081
+								} else if ($key == 'gd_city') {
1082
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1083
+								}
1084
+							}
1085
+						}
1086
+
1087
+						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'] != '')) {
1088
+							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1089
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1090
+							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1091
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1092
+							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1093
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1094
+							$breadcrumb .= $separator . $gd_location_link_text;
1095
+						} else {
1096
+							if (get_option('permalink_structure') != '') {
1097
+								$location_link .= $location_term . '/';
1098
+							} else {
1099
+								$location_link .= "&$key=" . $location_term;
1100
+							}
1101
+
1102
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1103
+								$gd_location_link_text = $location_term_actual_country;
1104
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1105
+								$gd_location_link_text = $location_term_actual_region;
1106
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1107
+								$gd_location_link_text = $location_term_actual_city;
1108
+							}
1109
+
1110
+							/*
1111 1111
                             if (geodir_is_page('detail') && !empty($hide_text_part) && in_array($key, $hide_text_part)) {
1112 1112
                                 continue;
1113 1113
                             }
1114 1114
                             */
1115 1115
 
1116
-                            $breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1117
-                        }
1118
-                    }
1119
-                }
1120
-            }
1121
-
1122
-            if (!empty($gd_taxonomy)) {
1123
-                $term_index = 1;
1124
-
1125
-                //if(get_option('geodir_add_categories_url'))
1126
-                {
1127
-                    if (get_query_var($gd_post_type . '_tags')) {
1128
-                        $cat_link = $listing_link . 'tags/';
1129
-                    } else
1130
-                        $cat_link = $listing_link;
1131
-
1132
-                    foreach ($location_terms as $key => $location_term) {
1133
-                        if ($location_manager && in_array($key, $hide_url_part)) {
1134
-                            continue;
1135
-                        }
1116
+							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1117
+						}
1118
+					}
1119
+				}
1120
+			}
1136 1121
 
1137
-                        if ($location_term != '') {
1138
-                            if (get_option('permalink_structure') != '') {
1139
-                                $cat_link .= $location_term . '/';
1140
-                            }
1141
-                        }
1142
-                    }
1143
-
1144
-                    $term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1145
-                    foreach ($term_array as $term) {
1146
-                        $term_link_text = preg_replace('/-(\d+)$/', '', $term);
1147
-                        $term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1148
-
1149
-                        // get term actual name
1150
-                        $term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1151
-                        if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1152
-                            $term_link_text = urldecode($term_info['name']);
1153
-                        } else {
1154
-                            $term_link_text = geodir_ucwords(urldecode($term_link_text));
1155
-                        }
1122
+			if (!empty($gd_taxonomy)) {
1123
+				$term_index = 1;
1156 1124
 
1157
-                        if ($term_index == count($term_array) && $is_taxonomy_last)
1158
-                            $breadcrumb .= $separator . $term_link_text;
1159
-                        else {
1160
-                            $cat_link .= $term . '/';
1161
-                            $breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1162
-                        }
1163
-                        $term_index++;
1164
-                    }
1165
-                }
1166
-
1167
-
1168
-            }
1169
-
1170
-            if (geodir_is_page('detail'))
1171
-                $breadcrumb .= $separator . get_the_title();
1172
-
1173
-            $breadcrumb .= '</li>';
1174
-
1175
-
1176
-        } elseif (geodir_is_page('author')) {
1177
-            $user_id = get_current_user_id();
1178
-            $author_link = get_author_posts_url($user_id);
1179
-            $default_author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true', 'stype' => 'gd_place'), false);
1180
-
1181
-            /**
1182
-             * Filter author page link.
1183
-             *
1184
-             * @since 1.0.0
1185
-             * @param string $default_author_link Default author link.
1186
-             * @param int $user_id Author ID.
1187
-             */
1188
-            $default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1189
-
1190
-            $breadcrumb .= '<li>';
1191
-            $breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __('My Dashboard', 'geodirectory') . '</a>';
1192
-
1193
-            if (isset($_REQUEST['list'])) {
1194
-                $author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true', 'stype' => $_REQUEST['stype']), false);
1195
-
1196
-                /**
1197
-                 * Filter author page link.
1198
-                 *
1199
-                 * @since 1.0.0
1200
-                 * @param string $author_link Author page link.
1201
-                 * @param int $user_id Author ID.
1202
-                 * @param string $_REQUEST['stype'] Post type.
1203
-                 */
1204
-                $author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1205
-
1206
-                $breadcrumb .= $separator . '<a href="' . $author_link . '">' . __(ucfirst($post_type_info->label), 'geodirectory') . '</a>';
1207
-                $breadcrumb .= $separator . ucfirst(__('My', 'geodirectory') . ' ' . $_REQUEST['list']);
1208
-            } else
1209
-                $breadcrumb .= $separator . __(ucfirst($post_type_info->label), 'geodirectory');
1210
-
1211
-            $breadcrumb .= '</li>';
1212
-        } elseif (is_category() || is_single()) {
1213
-            $category = get_the_category();
1214
-            if (is_category()) {
1215
-                $breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1216
-            }
1217
-            if (is_single()) {
1218
-                $breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link($category[0]->term_id) . '">' . $category[0]->cat_name . '</a></li>';
1219
-                $breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1220
-            }
1221
-            /* End of my version ##################################################### */
1222
-        } else if (is_page()) {
1223
-            $page_title = get_the_title();
1224
-
1225
-            if (geodir_is_page('location')) {
1226
-                $location_page_id = geodir_location_page_id();
1227
-                $loc_post = get_post( $location_page_id );
1228
-                $post_name = $loc_post->post_name;
1229
-                $slug= ucwords(str_replace('-',' ',$post_name));
1230
-                $page_title = !empty($slug )? $slug : __('Location', 'geodirectory');
1231
-            }
1232
-
1233
-            $breadcrumb .= '<li>' . $separator;
1234
-            $breadcrumb .= stripslashes_deep($page_title);
1235
-            $breadcrumb .= '</li>';
1236
-        } else if (is_tag()) {
1237
-            $breadcrumb .=  "<li> " . $separator . single_tag_title('',false) . '</li>';
1238
-        } else if (is_day()) {
1239
-            $breadcrumb .= "<li> " . $separator . __(" Archive for", 'geodirectory') . " ";
1240
-            the_time('F jS, Y');
1241
-            $breadcrumb .= '</li>';
1242
-        } else if (is_month()) {
1243
-            $breadcrumb .= "<li> " . $separator . __(" Archive for", 'geodirectory') . " ";
1244
-            the_time('F, Y');
1245
-            $breadcrumb .= '</li>';
1246
-        } else if (is_year()) {
1247
-            $breadcrumb .= "<li> " . $separator . __(" Archive for", 'geodirectory') . " ";
1248
-            the_time('Y');
1249
-            $breadcrumb .= '</li>';
1250
-        } else if (is_author()) {
1251
-            $breadcrumb .= "<li> " . $separator . __(" Author Archive", 'geodirectory');
1252
-            $breadcrumb .= '</li>';
1253
-        } else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1254
-            $breadcrumb .= "<li>" . $separator . __("Blog Archives", 'geodirectory');
1255
-            $breadcrumb .= '</li>';
1256
-        } else if (is_search()) {
1257
-            $breadcrumb .= "<li> " . $separator . __(" Search Results", 'geodirectory');
1258
-            $breadcrumb .= '</li>';
1259
-        }
1260
-        $breadcrumb .= '</ul></div>';
1261
-
1262
-        /**
1263
-         * Filter breadcrumb html output.
1264
-         *
1265
-         * @since 1.0.0
1266
-         * @param string $breadcrumb Breadcrumb HTML.
1267
-         * @param string $separator Breadcrumb separator.
1268
-         */
1269
-        echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1270
-    }
1125
+				//if(get_option('geodir_add_categories_url'))
1126
+				{
1127
+					if (get_query_var($gd_post_type . '_tags')) {
1128
+						$cat_link = $listing_link . 'tags/';
1129
+					} else
1130
+						$cat_link = $listing_link;
1131
+
1132
+					foreach ($location_terms as $key => $location_term) {
1133
+						if ($location_manager && in_array($key, $hide_url_part)) {
1134
+							continue;
1135
+						}
1136
+
1137
+						if ($location_term != '') {
1138
+							if (get_option('permalink_structure') != '') {
1139
+								$cat_link .= $location_term . '/';
1140
+							}
1141
+						}
1142
+					}
1143
+
1144
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1145
+					foreach ($term_array as $term) {
1146
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1147
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1148
+
1149
+						// get term actual name
1150
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1151
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1152
+							$term_link_text = urldecode($term_info['name']);
1153
+						} else {
1154
+							$term_link_text = geodir_ucwords(urldecode($term_link_text));
1155
+						}
1156
+
1157
+						if ($term_index == count($term_array) && $is_taxonomy_last)
1158
+							$breadcrumb .= $separator . $term_link_text;
1159
+						else {
1160
+							$cat_link .= $term . '/';
1161
+							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1162
+						}
1163
+						$term_index++;
1164
+					}
1165
+				}
1166
+
1167
+
1168
+			}
1169
+
1170
+			if (geodir_is_page('detail'))
1171
+				$breadcrumb .= $separator . get_the_title();
1172
+
1173
+			$breadcrumb .= '</li>';
1174
+
1175
+
1176
+		} elseif (geodir_is_page('author')) {
1177
+			$user_id = get_current_user_id();
1178
+			$author_link = get_author_posts_url($user_id);
1179
+			$default_author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true', 'stype' => 'gd_place'), false);
1180
+
1181
+			/**
1182
+			 * Filter author page link.
1183
+			 *
1184
+			 * @since 1.0.0
1185
+			 * @param string $default_author_link Default author link.
1186
+			 * @param int $user_id Author ID.
1187
+			 */
1188
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1189
+
1190
+			$breadcrumb .= '<li>';
1191
+			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __('My Dashboard', 'geodirectory') . '</a>';
1192
+
1193
+			if (isset($_REQUEST['list'])) {
1194
+				$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true', 'stype' => $_REQUEST['stype']), false);
1195
+
1196
+				/**
1197
+				 * Filter author page link.
1198
+				 *
1199
+				 * @since 1.0.0
1200
+				 * @param string $author_link Author page link.
1201
+				 * @param int $user_id Author ID.
1202
+				 * @param string $_REQUEST['stype'] Post type.
1203
+				 */
1204
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1205
+
1206
+				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __(ucfirst($post_type_info->label), 'geodirectory') . '</a>';
1207
+				$breadcrumb .= $separator . ucfirst(__('My', 'geodirectory') . ' ' . $_REQUEST['list']);
1208
+			} else
1209
+				$breadcrumb .= $separator . __(ucfirst($post_type_info->label), 'geodirectory');
1210
+
1211
+			$breadcrumb .= '</li>';
1212
+		} elseif (is_category() || is_single()) {
1213
+			$category = get_the_category();
1214
+			if (is_category()) {
1215
+				$breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1216
+			}
1217
+			if (is_single()) {
1218
+				$breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link($category[0]->term_id) . '">' . $category[0]->cat_name . '</a></li>';
1219
+				$breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1220
+			}
1221
+			/* End of my version ##################################################### */
1222
+		} else if (is_page()) {
1223
+			$page_title = get_the_title();
1224
+
1225
+			if (geodir_is_page('location')) {
1226
+				$location_page_id = geodir_location_page_id();
1227
+				$loc_post = get_post( $location_page_id );
1228
+				$post_name = $loc_post->post_name;
1229
+				$slug= ucwords(str_replace('-',' ',$post_name));
1230
+				$page_title = !empty($slug )? $slug : __('Location', 'geodirectory');
1231
+			}
1232
+
1233
+			$breadcrumb .= '<li>' . $separator;
1234
+			$breadcrumb .= stripslashes_deep($page_title);
1235
+			$breadcrumb .= '</li>';
1236
+		} else if (is_tag()) {
1237
+			$breadcrumb .=  "<li> " . $separator . single_tag_title('',false) . '</li>';
1238
+		} else if (is_day()) {
1239
+			$breadcrumb .= "<li> " . $separator . __(" Archive for", 'geodirectory') . " ";
1240
+			the_time('F jS, Y');
1241
+			$breadcrumb .= '</li>';
1242
+		} else if (is_month()) {
1243
+			$breadcrumb .= "<li> " . $separator . __(" Archive for", 'geodirectory') . " ";
1244
+			the_time('F, Y');
1245
+			$breadcrumb .= '</li>';
1246
+		} else if (is_year()) {
1247
+			$breadcrumb .= "<li> " . $separator . __(" Archive for", 'geodirectory') . " ";
1248
+			the_time('Y');
1249
+			$breadcrumb .= '</li>';
1250
+		} else if (is_author()) {
1251
+			$breadcrumb .= "<li> " . $separator . __(" Author Archive", 'geodirectory');
1252
+			$breadcrumb .= '</li>';
1253
+		} else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1254
+			$breadcrumb .= "<li>" . $separator . __("Blog Archives", 'geodirectory');
1255
+			$breadcrumb .= '</li>';
1256
+		} else if (is_search()) {
1257
+			$breadcrumb .= "<li> " . $separator . __(" Search Results", 'geodirectory');
1258
+			$breadcrumb .= '</li>';
1259
+		}
1260
+		$breadcrumb .= '</ul></div>';
1261
+
1262
+		/**
1263
+		 * Filter breadcrumb html output.
1264
+		 *
1265
+		 * @since 1.0.0
1266
+		 * @param string $breadcrumb Breadcrumb HTML.
1267
+		 * @param string $separator Breadcrumb separator.
1268
+		 */
1269
+		echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1270
+	}
1271 1271
 }
1272 1272
 
1273 1273
 
1274 1274
 add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
1275 1275
 if (!function_exists('geodir_allow_wpadmin')) {
1276
-    /**
1277
-     * Allow only admins to access wp-admin.
1278
-     *
1279
-     * Normal users will be redirected to home page.
1280
-     *
1281
-     * @since 1.0.0
1282
-     * @package GeoDirectory
1283
-     * @global object $wpdb WordPress Database object.
1284
-     */
1285
-    function geodir_allow_wpadmin()
1286
-    {
1287
-        global $wpdb;
1288
-        if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!isset($_REQUEST['action']))) // checking action in request to allow ajax request go through
1289
-        {
1290
-            if (current_user_can('manage_options')) {
1291
-            } else {
1292
-
1293
-                wp_redirect(home_url());
1294
-                exit;
1295
-            }
1296
-
1297
-        }
1298
-    }
1276
+	/**
1277
+	 * Allow only admins to access wp-admin.
1278
+	 *
1279
+	 * Normal users will be redirected to home page.
1280
+	 *
1281
+	 * @since 1.0.0
1282
+	 * @package GeoDirectory
1283
+	 * @global object $wpdb WordPress Database object.
1284
+	 */
1285
+	function geodir_allow_wpadmin()
1286
+	{
1287
+		global $wpdb;
1288
+		if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!isset($_REQUEST['action']))) // checking action in request to allow ajax request go through
1289
+		{
1290
+			if (current_user_can('manage_options')) {
1291
+			} else {
1292
+
1293
+				wp_redirect(home_url());
1294
+				exit;
1295
+			}
1296
+
1297
+		}
1298
+	}
1299 1299
 }
1300 1300
 
1301 1301
 
@@ -1309,84 +1309,84 @@  discard block
 block discarded – undo
1309 1309
  */
1310 1310
 function fetch_remote_file($url)
1311 1311
 {
1312
-    // extract the file name and extension from the url
1313
-    require_once(ABSPATH . 'wp-includes/pluggable.php');
1314
-    $file_name = basename($url);
1315
-    if (strpos($file_name, '?') !== false) {
1316
-        list($file_name) = explode('?', $file_name);
1317
-    }
1318
-    $dummy = false;
1319
-    $add_to_cache = false;
1320
-    $key = null;
1321
-    if (strpos($url, '/dummy/') !== false) {
1322
-        $dummy = true;
1323
-        $key = "dummy_".str_replace('.', '_', $file_name);
1324
-        $value = get_transient('cached_dummy_images');
1325
-        if ($value) {
1326
-            if (isset($value[$key])) {
1327
-                return $value[$key];
1328
-            } else {
1329
-                $add_to_cache = true;
1330
-            }
1331
-        } else {
1332
-            $add_to_cache = true;
1333
-        }
1334
-    }
1335
-
1336
-    // get placeholder file in the upload dir with a unique, sanitized filename
1337
-
1338
-    $post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1339
-
1340
-    $upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1341
-    if ($upload['error'])
1342
-        return new WP_Error('upload_dir_error', $upload['error']);
1343
-
1344
-
1345
-    sleep(0.3);// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1346
-
1347
-    // fetch the remote url and write it to the placeholder file
1348
-    $headers = wp_remote_get($url, array('stream' => true,'filename' => $upload['file']));
1349
-
1350
-    $log_message = '';
1351
-    if( is_wp_error( $headers  ) ) {
1352
-        echo 'file: '.$url;
1353
-        return new WP_Error('import_file_error',$headers->get_error_message());
1354
-    }
1355
-
1356
-    $filesize = filesize($upload['file']);
1357
-    // request failed
1358
-    if (!$headers) {
1359
-        $log_message = __('Remote server did not respond', 'geodirectory');
1360
-    }
1361
-    // make sure the fetch was successful
1362
-    elseif ($headers['response']['code'] != '200') {
1363
-        $log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1364
-    }
1365
-    elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1366
-        $log_message =  __('Remote file is incorrect size', 'geodirectory');
1367
-    }
1368
-    elseif (0 == $filesize) {
1369
-        $log_message = __('Zero size file downloaded', 'geodirectory');
1370
-    }
1371
-
1372
-    if($log_message){
1373
-        $del = unlink($upload['file']);
1374
-        if(!$del){geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));}
1375
-        return new WP_Error('import_file_error',$log_message );
1376
-    }
1377
-
1378
-    if ($dummy && $add_to_cache && is_array($upload)) {
1379
-        $images = get_transient('cached_dummy_images');
1380
-        if(is_array($images))
1381
-            $images[$key] = $upload;
1382
-        else
1383
-            $images = array($key => $upload);
1384
-
1385
-        //setting the cache using the WP Transient API
1386
-        set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1387
-    }
1388
-
1389
-    return $upload;
1312
+	// extract the file name and extension from the url
1313
+	require_once(ABSPATH . 'wp-includes/pluggable.php');
1314
+	$file_name = basename($url);
1315
+	if (strpos($file_name, '?') !== false) {
1316
+		list($file_name) = explode('?', $file_name);
1317
+	}
1318
+	$dummy = false;
1319
+	$add_to_cache = false;
1320
+	$key = null;
1321
+	if (strpos($url, '/dummy/') !== false) {
1322
+		$dummy = true;
1323
+		$key = "dummy_".str_replace('.', '_', $file_name);
1324
+		$value = get_transient('cached_dummy_images');
1325
+		if ($value) {
1326
+			if (isset($value[$key])) {
1327
+				return $value[$key];
1328
+			} else {
1329
+				$add_to_cache = true;
1330
+			}
1331
+		} else {
1332
+			$add_to_cache = true;
1333
+		}
1334
+	}
1335
+
1336
+	// get placeholder file in the upload dir with a unique, sanitized filename
1337
+
1338
+	$post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1339
+
1340
+	$upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1341
+	if ($upload['error'])
1342
+		return new WP_Error('upload_dir_error', $upload['error']);
1343
+
1344
+
1345
+	sleep(0.3);// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1346
+
1347
+	// fetch the remote url and write it to the placeholder file
1348
+	$headers = wp_remote_get($url, array('stream' => true,'filename' => $upload['file']));
1349
+
1350
+	$log_message = '';
1351
+	if( is_wp_error( $headers  ) ) {
1352
+		echo 'file: '.$url;
1353
+		return new WP_Error('import_file_error',$headers->get_error_message());
1354
+	}
1355
+
1356
+	$filesize = filesize($upload['file']);
1357
+	// request failed
1358
+	if (!$headers) {
1359
+		$log_message = __('Remote server did not respond', 'geodirectory');
1360
+	}
1361
+	// make sure the fetch was successful
1362
+	elseif ($headers['response']['code'] != '200') {
1363
+		$log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1364
+	}
1365
+	elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1366
+		$log_message =  __('Remote file is incorrect size', 'geodirectory');
1367
+	}
1368
+	elseif (0 == $filesize) {
1369
+		$log_message = __('Zero size file downloaded', 'geodirectory');
1370
+	}
1371
+
1372
+	if($log_message){
1373
+		$del = unlink($upload['file']);
1374
+		if(!$del){geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));}
1375
+		return new WP_Error('import_file_error',$log_message );
1376
+	}
1377
+
1378
+	if ($dummy && $add_to_cache && is_array($upload)) {
1379
+		$images = get_transient('cached_dummy_images');
1380
+		if(is_array($images))
1381
+			$images[$key] = $upload;
1382
+		else
1383
+			$images = array($key => $upload);
1384
+
1385
+		//setting the cache using the WP Transient API
1386
+		set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1387
+	}
1388
+
1389
+	return $upload;
1390 1390
 }
1391 1391
 
1392 1392
 /**
@@ -1398,21 +1398,21 @@  discard block
 block discarded – undo
1398 1398
  */
1399 1399
 function geodir_max_upload_size()
1400 1400
 {
1401
-    $max_filesize = (float)get_option('geodir_upload_max_filesize', 2);
1402
-
1403
-    if ($max_filesize > 0 && $max_filesize < 1) {
1404
-        $max_filesize = (int)($max_filesize * 1024) . 'kb';
1405
-    } else {
1406
-        $max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1407
-    }
1408
-
1409
-    /**
1410
-     * Filter default image upload size limit.
1411
-     *
1412
-     * @since 1.0.0
1413
-     * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1414
-     */
1415
-    return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1401
+	$max_filesize = (float)get_option('geodir_upload_max_filesize', 2);
1402
+
1403
+	if ($max_filesize > 0 && $max_filesize < 1) {
1404
+		$max_filesize = (int)($max_filesize * 1024) . 'kb';
1405
+	} else {
1406
+		$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1407
+	}
1408
+
1409
+	/**
1410
+	 * Filter default image upload size limit.
1411
+	 *
1412
+	 * @since 1.0.0
1413
+	 * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1414
+	 */
1415
+	return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1416 1416
 }
1417 1417
 
1418 1418
 /**
@@ -1426,11 +1426,11 @@  discard block
 block discarded – undo
1426 1426
  */
1427 1427
 function geodir_dummy_folder_exists()
1428 1428
 {
1429
-    $path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1430
-    if (!is_dir($path))
1431
-        return false;
1432
-    else
1433
-        return true;
1429
+	$path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1430
+	if (!is_dir($path))
1431
+		return false;
1432
+	else
1433
+		return true;
1434 1434
 
1435 1435
 }
1436 1436
 
@@ -1445,290 +1445,290 @@  discard block
 block discarded – undo
1445 1445
  */
1446 1446
 function  geodir_get_author_info($aid)
1447 1447
 {
1448
-    global $wpdb;
1449
-    /*$infosql = "select * from $wpdb->users where ID=$aid";*/
1450
-    $infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1451
-    $info = $wpdb->get_results($infosql);
1452
-    if ($info) {
1453
-        return $info[0];
1454
-    }
1448
+	global $wpdb;
1449
+	/*$infosql = "select * from $wpdb->users where ID=$aid";*/
1450
+	$infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1451
+	$info = $wpdb->get_results($infosql);
1452
+	if ($info) {
1453
+		return $info[0];
1454
+	}
1455 1455
 }
1456 1456
 
1457 1457
 if (!function_exists('adminEmail')) {
1458
-    /**
1459
-     * Send emails to client on post submission, renew etc.
1460
-     *
1461
-     * @since 1.0.0
1462
-     * @package GeoDirectory
1463
-     * @global object $wpdb WordPress Database object.
1464
-     * @param int|string $page_id Page ID.
1465
-     * @param int|string $user_id User ID.
1466
-     * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1467
-     * @param string $custom_1 Custom data to be sent.
1468
-     */
1469
-    function adminEmail($page_id, $user_id, $message_type, $custom_1 = '')
1470
-    {
1471
-        global $wpdb;
1472
-        if ($message_type == 'expiration') {
1473
-            $subject = stripslashes(__(get_option('renew_email_subject'),'geodirectory'));
1474
-            $client_message = stripslashes(__(get_option('renew_email_content'),'geodirectory'));
1475
-        } elseif ($message_type == 'post_submited') {
1476
-            $subject = __(get_option('post_submited_success_email_subject_admin'),'geodirectory');
1477
-            $client_message = __(get_option('post_submited_success_email_content_admin'),'geodirectory');
1478
-        } elseif ($message_type == 'renew') {
1479
-            $subject = __(get_option('post_renew_success_email_subject_admin'),'geodirectory');
1480
-            $client_message = __(get_option('post_renew_success_email_content_admin'),'geodirectory');
1481
-        } elseif ($message_type == 'upgrade') {
1482
-            $subject = __(get_option('post_upgrade_success_email_subject_admin'),'geodirectory');
1483
-            $client_message = __(get_option('post_upgrade_success_email_content_admin'),'geodirectory');
1484
-        } elseif ($message_type == 'claim_approved') {
1485
-            $subject = __(get_option('claim_approved_email_subject'),'geodirectory');
1486
-            $client_message = __(get_option('claim_approved_email_content'),'geodirectory');
1487
-        } elseif ($message_type == 'claim_rejected') {
1488
-            $subject = __(get_option('claim_rejected_email_subject'),'geodirectory');
1489
-            $client_message = __(get_option('claim_rejected_email_content'),'geodirectory');
1490
-        } elseif ($message_type == 'claim_requested') {
1491
-            $subject = __(get_option('claim_email_subject_admin'),'geodirectory');
1492
-            $client_message = __(get_option('claim_email_content_admin'),'geodirectory');
1493
-        } elseif ($message_type == 'auto_claim') {
1494
-            $subject = __(get_option('auto_claim_email_subject'),'geodirectory');
1495
-            $client_message = __(get_option('auto_claim_email_content'),'geodirectory');
1496
-        } elseif ($message_type == 'payment_success') {
1497
-            $subject = __(get_option('post_payment_success_admin_email_subject'),'geodirectory');
1498
-            $client_message = __(get_option('post_payment_success_admin_email_content'),'geodirectory');
1499
-        } elseif ($message_type == 'payment_fail') {
1500
-            $subject = __(get_option('post_payment_fail_admin_email_subject'),'geodirectory');
1501
-            $client_message = __(get_option('post_payment_fail_admin_email_content'),'geodirectory');
1502
-        }
1503
-        $transaction_details = $custom_1;
1504
-        $fromEmail = get_option('site_email');
1505
-        $fromEmailName = get_site_emailName();
1458
+	/**
1459
+	 * Send emails to client on post submission, renew etc.
1460
+	 *
1461
+	 * @since 1.0.0
1462
+	 * @package GeoDirectory
1463
+	 * @global object $wpdb WordPress Database object.
1464
+	 * @param int|string $page_id Page ID.
1465
+	 * @param int|string $user_id User ID.
1466
+	 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1467
+	 * @param string $custom_1 Custom data to be sent.
1468
+	 */
1469
+	function adminEmail($page_id, $user_id, $message_type, $custom_1 = '')
1470
+	{
1471
+		global $wpdb;
1472
+		if ($message_type == 'expiration') {
1473
+			$subject = stripslashes(__(get_option('renew_email_subject'),'geodirectory'));
1474
+			$client_message = stripslashes(__(get_option('renew_email_content'),'geodirectory'));
1475
+		} elseif ($message_type == 'post_submited') {
1476
+			$subject = __(get_option('post_submited_success_email_subject_admin'),'geodirectory');
1477
+			$client_message = __(get_option('post_submited_success_email_content_admin'),'geodirectory');
1478
+		} elseif ($message_type == 'renew') {
1479
+			$subject = __(get_option('post_renew_success_email_subject_admin'),'geodirectory');
1480
+			$client_message = __(get_option('post_renew_success_email_content_admin'),'geodirectory');
1481
+		} elseif ($message_type == 'upgrade') {
1482
+			$subject = __(get_option('post_upgrade_success_email_subject_admin'),'geodirectory');
1483
+			$client_message = __(get_option('post_upgrade_success_email_content_admin'),'geodirectory');
1484
+		} elseif ($message_type == 'claim_approved') {
1485
+			$subject = __(get_option('claim_approved_email_subject'),'geodirectory');
1486
+			$client_message = __(get_option('claim_approved_email_content'),'geodirectory');
1487
+		} elseif ($message_type == 'claim_rejected') {
1488
+			$subject = __(get_option('claim_rejected_email_subject'),'geodirectory');
1489
+			$client_message = __(get_option('claim_rejected_email_content'),'geodirectory');
1490
+		} elseif ($message_type == 'claim_requested') {
1491
+			$subject = __(get_option('claim_email_subject_admin'),'geodirectory');
1492
+			$client_message = __(get_option('claim_email_content_admin'),'geodirectory');
1493
+		} elseif ($message_type == 'auto_claim') {
1494
+			$subject = __(get_option('auto_claim_email_subject'),'geodirectory');
1495
+			$client_message = __(get_option('auto_claim_email_content'),'geodirectory');
1496
+		} elseif ($message_type == 'payment_success') {
1497
+			$subject = __(get_option('post_payment_success_admin_email_subject'),'geodirectory');
1498
+			$client_message = __(get_option('post_payment_success_admin_email_content'),'geodirectory');
1499
+		} elseif ($message_type == 'payment_fail') {
1500
+			$subject = __(get_option('post_payment_fail_admin_email_subject'),'geodirectory');
1501
+			$client_message = __(get_option('post_payment_fail_admin_email_content'),'geodirectory');
1502
+		}
1503
+		$transaction_details = $custom_1;
1504
+		$fromEmail = get_option('site_email');
1505
+		$fromEmailName = get_site_emailName();
1506 1506
 //$alivedays = get_post_meta($page_id,'alive_days',true);
1507
-        $pkg_limit = get_property_price_info_listing($page_id);
1508
-        $alivedays = $pkg_limit['days'];
1509
-        $productlink = get_permalink($page_id);
1510
-        $post_info = get_post($page_id);
1511
-        $post_date = date('dS F,Y', strtotime($post_info->post_date));
1512
-        $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1513
-        $loginurl = geodir_login_url();
1514
-        $loginurl_link = '<a href="' . $loginurl . '">login</a>';
1515
-        $siteurl = home_url();
1516
-        $siteurl_link = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1517
-        $user_info = get_userdata($user_id);
1518
-        $user_email = $user_info->user_email;
1519
-        $display_name = geodir_get_client_name($user_id);
1520
-        $user_login = $user_info->user_login;
1521
-        $number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1522
-        if ($number_of_grace_days == '') {
1523
-            $number_of_grace_days = 1;
1524
-        }
1525
-        if ($post_info->post_type == 'event') {
1526
-            $post_type = 'event';
1527
-        } else {
1528
-            $post_type = 'listing';
1529
-        }
1530
-        $renew_link = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1531
-        $search_array = array('[#client_name#]', '[#listing_link#]', '[#posted_date#]', '[#number_of_days#]', '[#number_of_grace_days#]', '[#login_url#]', '[#username#]', '[#user_email#]', '[#site_name_url#]', '[#renew_link#]', '[#post_id#]', '[#site_name#]', '[#transaction_details#]');
1532
-        $replace_array = array($display_name, $listingLink, $post_date, $alivedays, $number_of_grace_days, $loginurl_link, $user_login, $user_email, $siteurl_link, $renew_link, $page_id, $fromEmailName, $transaction_details);
1533
-        $client_message = str_replace($search_array, $replace_array, $client_message);
1534
-        $subject = str_replace($search_array, $replace_array, $subject);
1535
-        $headers = 'MIME-Version: 1.0' . "\r\n";
1536
-        $headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
1537
-        $headers .= 'From: ' . $fromEmailName . ' <' . $fromEmail . '>' . "\r\n";
1538
-
1539
-        $to = $fromEmail;
1540
-        $message = $client_message;
1541
-
1542
-
1543
-        /**
1544
-         * Filter the admin email to address.
1545
-         *
1546
-         * @since 1.6.1
1547
-         * @package GeoDirectory
1548
-         * @param string $to The email address the email is being sent to.
1549
-         * @param int|string $page_id Page ID.
1550
-         * @param int|string $user_id User ID.
1551
-         * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1552
-         * @param string $custom_1 Custom data to be sent.
1553
-         */
1554
-        $to = apply_filters('geodir_adminEmail_to',$to,$page_id, $user_id, $message_type, $custom_1 );
1555
-        /**
1556
-         * Filter the admin email subject.
1557
-         *
1558
-         * @since 1.6.1
1559
-         * @package GeoDirectory_Payment_Manager
1560
-         * @param string $subject The email subject.
1561
-         * @param int|string $page_id Page ID.
1562
-         * @param int|string $user_id User ID.
1563
-         * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1564
-         * @param string $custom_1 Custom data to be sent.
1565
-         */
1566
-        $subject = apply_filters('geodir_adminEmail_subject',$subject,$page_id, $user_id, $message_type, $custom_1);
1567
-        /**
1568
-         * Filter the admin email message.
1569
-         *
1570
-         * @since 1.6.1
1571
-         * @package GeoDirectory_Payment_Manager
1572
-         * @param string $message The email message text.
1573
-         * @param int|string $page_id Page ID.
1574
-         * @param int|string $user_id User ID.
1575
-         * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1576
-         * @param string $custom_1 Custom data to be sent.
1577
-         */
1578
-        $message = apply_filters('geodir_adminEmail_message',$message,$page_id, $user_id, $message_type, $custom_1);
1579
-        /**
1580
-         * Filter the admin email headers.
1581
-         *
1582
-         * @since 1.6.1
1583
-         * @package GeoDirectory_Payment_Manager
1584
-         * @param string $headers The email headers.
1585
-         * @param int|string $page_id Page ID.
1586
-         * @param int|string $user_id User ID.
1587
-         * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1588
-         * @param string $custom_1 Custom data to be sent.
1589
-         */
1590
-        $headers = apply_filters('geodir_adminEmail_headers',$headers,$page_id, $user_id, $message_type, $custom_1);
1591
-
1592
-
1593
-
1594
-        $sent = wp_mail($to, $subject, $message, $headers);
1595
-        if( ! $sent ) {
1596
-            if ( is_array( $to ) ) {
1597
-                $to = implode( ',', $to );
1598
-            }
1599
-            $log_message = sprintf(
1600
-                __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1601
-                $message_type,
1602
-                date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1603
-                $to,
1604
-                $subject
1605
-            );
1606
-            geodir_error_log( $log_message );
1607
-        }
1608
-    }
1507
+		$pkg_limit = get_property_price_info_listing($page_id);
1508
+		$alivedays = $pkg_limit['days'];
1509
+		$productlink = get_permalink($page_id);
1510
+		$post_info = get_post($page_id);
1511
+		$post_date = date('dS F,Y', strtotime($post_info->post_date));
1512
+		$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1513
+		$loginurl = geodir_login_url();
1514
+		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
1515
+		$siteurl = home_url();
1516
+		$siteurl_link = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1517
+		$user_info = get_userdata($user_id);
1518
+		$user_email = $user_info->user_email;
1519
+		$display_name = geodir_get_client_name($user_id);
1520
+		$user_login = $user_info->user_login;
1521
+		$number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1522
+		if ($number_of_grace_days == '') {
1523
+			$number_of_grace_days = 1;
1524
+		}
1525
+		if ($post_info->post_type == 'event') {
1526
+			$post_type = 'event';
1527
+		} else {
1528
+			$post_type = 'listing';
1529
+		}
1530
+		$renew_link = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1531
+		$search_array = array('[#client_name#]', '[#listing_link#]', '[#posted_date#]', '[#number_of_days#]', '[#number_of_grace_days#]', '[#login_url#]', '[#username#]', '[#user_email#]', '[#site_name_url#]', '[#renew_link#]', '[#post_id#]', '[#site_name#]', '[#transaction_details#]');
1532
+		$replace_array = array($display_name, $listingLink, $post_date, $alivedays, $number_of_grace_days, $loginurl_link, $user_login, $user_email, $siteurl_link, $renew_link, $page_id, $fromEmailName, $transaction_details);
1533
+		$client_message = str_replace($search_array, $replace_array, $client_message);
1534
+		$subject = str_replace($search_array, $replace_array, $subject);
1535
+		$headers = 'MIME-Version: 1.0' . "\r\n";
1536
+		$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
1537
+		$headers .= 'From: ' . $fromEmailName . ' <' . $fromEmail . '>' . "\r\n";
1538
+
1539
+		$to = $fromEmail;
1540
+		$message = $client_message;
1541
+
1542
+
1543
+		/**
1544
+		 * Filter the admin email to address.
1545
+		 *
1546
+		 * @since 1.6.1
1547
+		 * @package GeoDirectory
1548
+		 * @param string $to The email address the email is being sent to.
1549
+		 * @param int|string $page_id Page ID.
1550
+		 * @param int|string $user_id User ID.
1551
+		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1552
+		 * @param string $custom_1 Custom data to be sent.
1553
+		 */
1554
+		$to = apply_filters('geodir_adminEmail_to',$to,$page_id, $user_id, $message_type, $custom_1 );
1555
+		/**
1556
+		 * Filter the admin email subject.
1557
+		 *
1558
+		 * @since 1.6.1
1559
+		 * @package GeoDirectory_Payment_Manager
1560
+		 * @param string $subject The email subject.
1561
+		 * @param int|string $page_id Page ID.
1562
+		 * @param int|string $user_id User ID.
1563
+		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1564
+		 * @param string $custom_1 Custom data to be sent.
1565
+		 */
1566
+		$subject = apply_filters('geodir_adminEmail_subject',$subject,$page_id, $user_id, $message_type, $custom_1);
1567
+		/**
1568
+		 * Filter the admin email message.
1569
+		 *
1570
+		 * @since 1.6.1
1571
+		 * @package GeoDirectory_Payment_Manager
1572
+		 * @param string $message The email message text.
1573
+		 * @param int|string $page_id Page ID.
1574
+		 * @param int|string $user_id User ID.
1575
+		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1576
+		 * @param string $custom_1 Custom data to be sent.
1577
+		 */
1578
+		$message = apply_filters('geodir_adminEmail_message',$message,$page_id, $user_id, $message_type, $custom_1);
1579
+		/**
1580
+		 * Filter the admin email headers.
1581
+		 *
1582
+		 * @since 1.6.1
1583
+		 * @package GeoDirectory_Payment_Manager
1584
+		 * @param string $headers The email headers.
1585
+		 * @param int|string $page_id Page ID.
1586
+		 * @param int|string $user_id User ID.
1587
+		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1588
+		 * @param string $custom_1 Custom data to be sent.
1589
+		 */
1590
+		$headers = apply_filters('geodir_adminEmail_headers',$headers,$page_id, $user_id, $message_type, $custom_1);
1591
+
1592
+
1593
+
1594
+		$sent = wp_mail($to, $subject, $message, $headers);
1595
+		if( ! $sent ) {
1596
+			if ( is_array( $to ) ) {
1597
+				$to = implode( ',', $to );
1598
+			}
1599
+			$log_message = sprintf(
1600
+				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1601
+				$message_type,
1602
+				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1603
+				$to,
1604
+				$subject
1605
+			);
1606
+			geodir_error_log( $log_message );
1607
+		}
1608
+	}
1609 1609
 }
1610 1610
 
1611 1611
 if (!function_exists('sendEmail')) {
1612
-    /**
1613
-     * @todo could be a duplicate of geodir_sendEmail.
1614
-     *
1615
-     * @since 1.0.0
1616
-     * @package GeoDirectory
1617
-     * @param string $fromEmail Sender email address.
1618
-     * @param string $fromEmailName Sender name.
1619
-     * @param string $toEmail Receiver email address.
1620
-     * @param string $toEmailName Receiver name.
1621
-     * @param string $to_subject Email subject.
1622
-     * @param string $to_message Email content.
1623
-     * @param string $extra Not being used.
1624
-     * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration.
1625
-     * @param string $post_id The post ID.
1626
-     * @param string $user_id The user ID.
1627
-     */
1628
-    function sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '')
1629
-    {
1630
-        $login_details = '';
1631
-        if ($message_type == 'send_friend') {
1632
-            $subject = stripslashes(__(get_option('email_friend_subject'),'geodirectory'));
1633
-            $message = stripslashes(__(get_option('email_friend_content'),'geodirectory'));
1634
-        } elseif ($message_type == 'send_enquiry') {
1635
-            $subject = __(get_option('email_enquiry_subject'),'geodirectory');
1636
-            $message = __(get_option('email_enquiry_content'),'geodirectory');
1637
-        } elseif ($message_type == 'forgot_password') {
1638
-            $subject = __(get_option('forgot_password_subject'),'geodirectory');
1639
-            $message = __(get_option('forgot_password_content'),'geodirectory');
1640
-            $login_details = $to_message;
1641
-        } elseif ($message_type == 'registration') {
1642
-            $subject = __(get_option('registration_success_email_subject'),'geodirectory');
1643
-            $message = __(get_option('registration_success_email_content'),'geodirectory');
1644
-            $login_details = $to_message;
1645
-        }
1646
-        $to_message = nl2br($to_message);
1647
-        $sitefromEmail = get_option('site_email');
1648
-        $sitefromEmailName = get_site_emailName();
1649
-        $productlink = get_permalink($post_id);
1650
-        $post_info = get_post($post_id);
1651
-        $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1652
-        $siteurl = home_url();
1653
-        $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
1654
-        $loginurl = geodir_login_url();
1655
-        $loginurl_link = '<a href="' . $loginurl . '">login</a>';
1656
-        if ($fromEmail == '') {
1657
-            $fromEmail = get_option('site_email');
1658
-        }
1659
-        if ($fromEmailName == '') {
1660
-            $fromEmailName = get_option('site_email_name');
1661
-        }
1662
-        $search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#comments#]', '[#login_url#]', '[#login_details#]', '[#client_name#]');
1663
-        $replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $to_message, $loginurl_link, $login_details, $toEmailName);
1664
-        $message = str_replace($search_array, $replace_array, $message);
1665
-
1666
-        $search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#client_name#]');
1667
-        $replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $toEmailName);
1668
-        $subject = str_replace($search_array, $replace_array, $subject);
1669
-        $headers = 'MIME-Version: 1.0' . "\r\n";
1670
-        $headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
1671
-        $headers .= "Reply-To: " . $fromEmail . "\r\n";
1672
-        $headers .= 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>' . "\r\n";
1673
-
1674
-        $to = $toEmail;
1675
-
1676
-        $sent = wp_mail($to, $subject, $message, $headers);
1677
-        if( ! $sent ) {
1678
-            if ( is_array( $to ) ) {
1679
-                $to = implode( ',', $to );
1680
-            }
1681
-            $log_message = sprintf(
1682
-                __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1683
-                $message_type,
1684
-                date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1685
-                $to,
1686
-                $subject
1687
-            );
1688
-            geodir_error_log( $log_message );
1689
-        }
1690
-
1691
-        ///////// ADMIN BCC EMIALS
1692
-        $admin_bcc = false;
1693
-        if ($message_type == 'registration') {
1694
-            $message_raw = explode(__("Password:", 'geodirectory'), $message);
1695
-            $message_raw2 = explode("</p>", $message_raw[1], 2);
1696
-            $message = $message_raw[0] . __('Password:', 'geodirectory') . ' **********</p>' . $message_raw2[1];
1697
-        }
1698
-        $adminEmail = get_bloginfo('admin_email');
1699
-        $to = $adminEmail;
1700
-
1701
-        if ($message_type == 'registration' && get_option('bcc_new_user')) {
1702
-            $subject .= ' - ADMIN BCC COPY';
1703
-            $admin_bcc = true;
1704
-        }
1705
-        elseif ($message_type == 'send_friend' && get_option('bcc_friend')) {
1706
-            $subject .= ' - ADMIN BCC COPY';
1707
-            $admin_bcc = true;
1708
-        }
1709
-        elseif ($message_type == 'send_enquiry' && get_option('bcc_enquiry')) {
1710
-            $subject .= ' - ADMIN BCC COPY';
1711
-            $admin_bcc = true;
1712
-        }
1713
-
1714
-        if($admin_bcc === true){
1715
-            $sent = wp_mail($to, $subject, $message, $headers);
1716
-            if( ! $sent ) {
1717
-                if ( is_array( $to ) ) {
1718
-                    $to = implode( ',', $to );
1719
-                }
1720
-                $log_message = sprintf(
1721
-                    __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1722
-                    $message_type,
1723
-                    date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1724
-                    $to,
1725
-                    $subject
1726
-                );
1727
-                geodir_error_log( $log_message );
1728
-            }
1729
-        }
1730
-
1731
-    }
1612
+	/**
1613
+	 * @todo could be a duplicate of geodir_sendEmail.
1614
+	 *
1615
+	 * @since 1.0.0
1616
+	 * @package GeoDirectory
1617
+	 * @param string $fromEmail Sender email address.
1618
+	 * @param string $fromEmailName Sender name.
1619
+	 * @param string $toEmail Receiver email address.
1620
+	 * @param string $toEmailName Receiver name.
1621
+	 * @param string $to_subject Email subject.
1622
+	 * @param string $to_message Email content.
1623
+	 * @param string $extra Not being used.
1624
+	 * @param string $message_type The message type. Can be send_friend, send_enquiry, forgot_password, registration.
1625
+	 * @param string $post_id The post ID.
1626
+	 * @param string $user_id The user ID.
1627
+	 */
1628
+	function sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '')
1629
+	{
1630
+		$login_details = '';
1631
+		if ($message_type == 'send_friend') {
1632
+			$subject = stripslashes(__(get_option('email_friend_subject'),'geodirectory'));
1633
+			$message = stripslashes(__(get_option('email_friend_content'),'geodirectory'));
1634
+		} elseif ($message_type == 'send_enquiry') {
1635
+			$subject = __(get_option('email_enquiry_subject'),'geodirectory');
1636
+			$message = __(get_option('email_enquiry_content'),'geodirectory');
1637
+		} elseif ($message_type == 'forgot_password') {
1638
+			$subject = __(get_option('forgot_password_subject'),'geodirectory');
1639
+			$message = __(get_option('forgot_password_content'),'geodirectory');
1640
+			$login_details = $to_message;
1641
+		} elseif ($message_type == 'registration') {
1642
+			$subject = __(get_option('registration_success_email_subject'),'geodirectory');
1643
+			$message = __(get_option('registration_success_email_content'),'geodirectory');
1644
+			$login_details = $to_message;
1645
+		}
1646
+		$to_message = nl2br($to_message);
1647
+		$sitefromEmail = get_option('site_email');
1648
+		$sitefromEmailName = get_site_emailName();
1649
+		$productlink = get_permalink($post_id);
1650
+		$post_info = get_post($post_id);
1651
+		$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1652
+		$siteurl = home_url();
1653
+		$siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
1654
+		$loginurl = geodir_login_url();
1655
+		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
1656
+		if ($fromEmail == '') {
1657
+			$fromEmail = get_option('site_email');
1658
+		}
1659
+		if ($fromEmailName == '') {
1660
+			$fromEmailName = get_option('site_email_name');
1661
+		}
1662
+		$search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#comments#]', '[#login_url#]', '[#login_details#]', '[#client_name#]');
1663
+		$replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $to_message, $loginurl_link, $login_details, $toEmailName);
1664
+		$message = str_replace($search_array, $replace_array, $message);
1665
+
1666
+		$search_array = array('[#listing_link#]', '[#site_name_url#]', '[#post_id#]', '[#site_name#]', '[#to_name#]', '[#from_name#]', '[#subject#]', '[#client_name#]');
1667
+		$replace_array = array($listingLink, $siteurl_link, $post_id, $sitefromEmailName, $toEmailName, $fromEmailName, $to_subject, $toEmailName);
1668
+		$subject = str_replace($search_array, $replace_array, $subject);
1669
+		$headers = 'MIME-Version: 1.0' . "\r\n";
1670
+		$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
1671
+		$headers .= "Reply-To: " . $fromEmail . "\r\n";
1672
+		$headers .= 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>' . "\r\n";
1673
+
1674
+		$to = $toEmail;
1675
+
1676
+		$sent = wp_mail($to, $subject, $message, $headers);
1677
+		if( ! $sent ) {
1678
+			if ( is_array( $to ) ) {
1679
+				$to = implode( ',', $to );
1680
+			}
1681
+			$log_message = sprintf(
1682
+				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1683
+				$message_type,
1684
+				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1685
+				$to,
1686
+				$subject
1687
+			);
1688
+			geodir_error_log( $log_message );
1689
+		}
1690
+
1691
+		///////// ADMIN BCC EMIALS
1692
+		$admin_bcc = false;
1693
+		if ($message_type == 'registration') {
1694
+			$message_raw = explode(__("Password:", 'geodirectory'), $message);
1695
+			$message_raw2 = explode("</p>", $message_raw[1], 2);
1696
+			$message = $message_raw[0] . __('Password:', 'geodirectory') . ' **********</p>' . $message_raw2[1];
1697
+		}
1698
+		$adminEmail = get_bloginfo('admin_email');
1699
+		$to = $adminEmail;
1700
+
1701
+		if ($message_type == 'registration' && get_option('bcc_new_user')) {
1702
+			$subject .= ' - ADMIN BCC COPY';
1703
+			$admin_bcc = true;
1704
+		}
1705
+		elseif ($message_type == 'send_friend' && get_option('bcc_friend')) {
1706
+			$subject .= ' - ADMIN BCC COPY';
1707
+			$admin_bcc = true;
1708
+		}
1709
+		elseif ($message_type == 'send_enquiry' && get_option('bcc_enquiry')) {
1710
+			$subject .= ' - ADMIN BCC COPY';
1711
+			$admin_bcc = true;
1712
+		}
1713
+
1714
+		if($admin_bcc === true){
1715
+			$sent = wp_mail($to, $subject, $message, $headers);
1716
+			if( ! $sent ) {
1717
+				if ( is_array( $to ) ) {
1718
+					$to = implode( ',', $to );
1719
+				}
1720
+				$log_message = sprintf(
1721
+					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1722
+					$message_type,
1723
+					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1724
+					$to,
1725
+					$subject
1726
+				);
1727
+				geodir_error_log( $log_message );
1728
+			}
1729
+		}
1730
+
1731
+	}
1732 1732
 }
1733 1733
 
1734 1734
 /*
@@ -1746,16 +1746,16 @@  discard block
 block discarded – undo
1746 1746
  */
1747 1747
 function gd_lang_object_ids($ids_array, $type)
1748 1748
 {
1749
-    if (function_exists('icl_object_id')) {
1750
-        $res = array();
1751
-        foreach ($ids_array as $id) {
1752
-            $xlat = icl_object_id($id, $type, false);
1753
-            if (!is_null($xlat)) $res[] = $xlat;
1754
-        }
1755
-        return $res;
1756
-    } else {
1757
-        return $ids_array;
1758
-    }
1749
+	if (function_exists('icl_object_id')) {
1750
+		$res = array();
1751
+		foreach ($ids_array as $id) {
1752
+			$xlat = icl_object_id($id, $type, false);
1753
+			if (!is_null($xlat)) $res[] = $xlat;
1754
+		}
1755
+		return $res;
1756
+	} else {
1757
+		return $ids_array;
1758
+	}
1759 1759
 }
1760 1760
 
1761 1761
 
@@ -1770,31 +1770,31 @@  discard block
 block discarded – undo
1770 1770
  * @return array Modified Body CSS classes.
1771 1771
  */
1772 1772
 function geodir_custom_posts_body_class($classes) {
1773
-    global $wpdb, $wp;
1774
-    $post_types = geodir_get_posttypes('object');
1775
-    if (!empty($post_types) && count((array)$post_types) > 1) {
1776
-        $classes[] = 'geodir_custom_posts';
1777
-    }
1778
-
1779
-    // fix body class for signup page
1780
-    if (geodir_is_page('login')) {
1781
-        $new_classes = array();
1782
-        $new_classes[] = 'signup page-geodir-signup';
1783
-        if (!empty($classes)) {
1784
-            foreach ($classes as $class) {
1785
-                if ($class && $class != 'home' && $class != 'blog') {
1786
-                    $new_classes[] = $class;
1787
-                }
1788
-            }
1789
-        }
1790
-        $classes = $new_classes;
1791
-    }
1792
-
1793
-    if (geodir_is_geodir_page()) {
1794
-        $classes[] = 'geodir-page';
1795
-    }
1796
-
1797
-    return $classes;
1773
+	global $wpdb, $wp;
1774
+	$post_types = geodir_get_posttypes('object');
1775
+	if (!empty($post_types) && count((array)$post_types) > 1) {
1776
+		$classes[] = 'geodir_custom_posts';
1777
+	}
1778
+
1779
+	// fix body class for signup page
1780
+	if (geodir_is_page('login')) {
1781
+		$new_classes = array();
1782
+		$new_classes[] = 'signup page-geodir-signup';
1783
+		if (!empty($classes)) {
1784
+			foreach ($classes as $class) {
1785
+				if ($class && $class != 'home' && $class != 'blog') {
1786
+					$new_classes[] = $class;
1787
+				}
1788
+			}
1789
+		}
1790
+		$classes = $new_classes;
1791
+	}
1792
+
1793
+	if (geodir_is_geodir_page()) {
1794
+		$classes[] = 'geodir-page';
1795
+	}
1796
+
1797
+	return $classes;
1798 1798
 }
1799 1799
 
1800 1800
 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
@@ -1809,12 +1809,12 @@  discard block
 block discarded – undo
1809 1809
  */
1810 1810
 function geodir_map_zoom_level()
1811 1811
 {
1812
-    /**
1813
-     * Filter GD map zoom level.
1814
-     *
1815
-     * @since 1.0.0
1816
-     */
1817
-    return apply_filters('geodir_map_zoom_level', array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19));
1812
+	/**
1813
+	 * Filter GD map zoom level.
1814
+	 *
1815
+	 * @since 1.0.0
1816
+	 */
1817
+	return apply_filters('geodir_map_zoom_level', array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19));
1818 1818
 
1819 1819
 }
1820 1820
 
@@ -1828,12 +1828,12 @@  discard block
 block discarded – undo
1828 1828
  */
1829 1829
 function geodir_option_version_backup($geodir_option_name)
1830 1830
 {
1831
-    $version_date = time();
1832
-    $geodir_option = get_option($geodir_option_name);
1831
+	$version_date = time();
1832
+	$geodir_option = get_option($geodir_option_name);
1833 1833
 
1834
-    if (!empty($geodir_option)) {
1835
-        add_option($geodir_option_name . '_' . $version_date, $geodir_option);
1836
-    }
1834
+	if (!empty($geodir_option)) {
1835
+		add_option($geodir_option_name . '_' . $version_date, $geodir_option);
1836
+	}
1837 1837
 }
1838 1838
 
1839 1839
 /**
@@ -1846,11 +1846,11 @@  discard block
 block discarded – undo
1846 1846
  */
1847 1847
 function get_page_id_geodir_add_listing_page($page_id)
1848 1848
 {
1849
-    if (geodir_wpml_multilingual_status()) {
1850
-        $post_type = 'post_page';
1851
-        $page_id = geodir_get_wpml_element_id($page_id, $post_type);
1852
-    }
1853
-    return $page_id;
1849
+	if (geodir_wpml_multilingual_status()) {
1850
+		$post_type = 'post_page';
1851
+		$page_id = geodir_get_wpml_element_id($page_id, $post_type);
1852
+	}
1853
+	return $page_id;
1854 1854
 }
1855 1855
 
1856 1856
 /**
@@ -1862,10 +1862,10 @@  discard block
 block discarded – undo
1862 1862
  */
1863 1863
 function geodir_wpml_multilingual_status()
1864 1864
 {
1865
-    if (function_exists('icl_object_id')) {
1866
-        return true;
1867
-    }
1868
-    return false;
1865
+	if (function_exists('icl_object_id')) {
1866
+		return true;
1867
+	}
1868
+	return false;
1869 1869
 }
1870 1870
 
1871 1871
 /**
@@ -1879,22 +1879,22 @@  discard block
 block discarded – undo
1879 1879
  */
1880 1880
 function geodir_get_wpml_element_id($page_id, $post_type)
1881 1881
 {
1882
-    global $sitepress;
1883
-    if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
1884
-        $trid = $sitepress->get_element_trid($page_id, $post_type);
1885
-
1886
-        if ($trid > 0) {
1887
-            $translations = $sitepress->get_element_translations($trid, $post_type);
1888
-
1889
-            $lang = $sitepress->get_current_language();
1890
-            $lang = $lang ? $lang : $sitepress->get_default_language();
1891
-
1892
-            if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
1893
-                $page_id = $translations[$lang]->element_id;
1894
-            }
1895
-        }
1896
-    }
1897
-    return $page_id;
1882
+	global $sitepress;
1883
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
1884
+		$trid = $sitepress->get_element_trid($page_id, $post_type);
1885
+
1886
+		if ($trid > 0) {
1887
+			$translations = $sitepress->get_element_translations($trid, $post_type);
1888
+
1889
+			$lang = $sitepress->get_current_language();
1890
+			$lang = $lang ? $lang : $sitepress->get_default_language();
1891
+
1892
+			if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
1893
+				$page_id = $translations[$lang]->element_id;
1894
+			}
1895
+		}
1896
+	}
1897
+	return $page_id;
1898 1898
 }
1899 1899
 
1900 1900
 /**
@@ -1906,20 +1906,20 @@  discard block
 block discarded – undo
1906 1906
  */
1907 1907
 function geodir_wpml_check_element_id()
1908 1908
 {
1909
-    global $sitepress;
1910
-    if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
1911
-        $el_type = 'post_page';
1912
-        $el_id = get_option('geodir_add_listing_page');
1913
-        $default_lang = $sitepress->get_default_language();
1914
-        $el_details = $sitepress->get_element_language_details($el_id, $el_type);
1915
-
1916
-        if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
1917
-            if (!$el_details->source_language_code) {
1918
-                $sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
1919
-                $sitepress->icl_translations_cache->clear();
1920
-            }
1921
-        }
1922
-    }
1909
+	global $sitepress;
1910
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
1911
+		$el_type = 'post_page';
1912
+		$el_id = get_option('geodir_add_listing_page');
1913
+		$default_lang = $sitepress->get_default_language();
1914
+		$el_details = $sitepress->get_element_language_details($el_id, $el_type);
1915
+
1916
+		if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
1917
+			if (!$el_details->source_language_code) {
1918
+				$sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
1919
+				$sitepress->icl_translations_cache->clear();
1920
+			}
1921
+		}
1922
+	}
1923 1923
 }
1924 1924
 
1925 1925
 /**
@@ -1934,44 +1934,44 @@  discard block
 block discarded – undo
1934 1934
  */
1935 1935
 function geodir_widget_listings_get_order($query_args)
1936 1936
 {
1937
-    global $wpdb, $plugin_prefix, $gd_query_args_widgets;
1938
-
1939
-    $query_args = $gd_query_args_widgets;
1940
-    if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
1941
-        return $wpdb->posts . ".post_date DESC, ";
1942
-    }
1943
-
1944
-    $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
1945
-    $table = $plugin_prefix . $post_type . '_detail';
1946
-
1947
-    $sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
1948
-
1949
-    switch ($sort_by) {
1950
-        case 'latest':
1951
-        case 'newest':
1952
-            $orderby = $wpdb->posts . ".post_date DESC, ";
1953
-            break;
1954
-        case 'featured':
1955
-            $orderby = $table . ".is_featured ASC, ";
1956
-            break;
1957
-        case 'az':
1958
-            $orderby = $wpdb->posts . ".post_title ASC, ";
1959
-            break;
1960
-        case 'high_review':
1961
-            $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
1962
-            break;
1963
-        case 'high_rating':
1964
-            $orderby = "( " . $table . ".overall_rating  ) DESC, ";
1965
-            break;
1966
-        case 'random':
1967
-            $orderby = "RAND(), ";
1968
-            break;
1969
-        default:
1970
-            $orderby = $wpdb->posts . ".post_title ASC, ";
1971
-            break;
1972
-    }
1973
-
1974
-    return $orderby;
1937
+	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
1938
+
1939
+	$query_args = $gd_query_args_widgets;
1940
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
1941
+		return $wpdb->posts . ".post_date DESC, ";
1942
+	}
1943
+
1944
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
1945
+	$table = $plugin_prefix . $post_type . '_detail';
1946
+
1947
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
1948
+
1949
+	switch ($sort_by) {
1950
+		case 'latest':
1951
+		case 'newest':
1952
+			$orderby = $wpdb->posts . ".post_date DESC, ";
1953
+			break;
1954
+		case 'featured':
1955
+			$orderby = $table . ".is_featured ASC, ";
1956
+			break;
1957
+		case 'az':
1958
+			$orderby = $wpdb->posts . ".post_title ASC, ";
1959
+			break;
1960
+		case 'high_review':
1961
+			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
1962
+			break;
1963
+		case 'high_rating':
1964
+			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
1965
+			break;
1966
+		case 'random':
1967
+			$orderby = "RAND(), ";
1968
+			break;
1969
+		default:
1970
+			$orderby = $wpdb->posts . ".post_title ASC, ";
1971
+			break;
1972
+	}
1973
+
1974
+	return $orderby;
1975 1975
 }
1976 1976
 
1977 1977
 /**
@@ -1989,126 +1989,126 @@  discard block
 block discarded – undo
1989 1989
  */
1990 1990
 function geodir_get_widget_listings($query_args = array(), $count_only = false)
1991 1991
 {
1992
-    global $wpdb, $plugin_prefix, $table_prefix;
1993
-    $GLOBALS['gd_query_args_widgets'] = $query_args;
1994
-    $gd_query_args_widgets = $query_args;
1995
-
1996
-    $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
1997
-    $table = $plugin_prefix . $post_type . '_detail';
1998
-
1999
-    $fields = $wpdb->posts . ".*, " . $table . ".*";
2000
-    /**
2001
-     * Filter widget listing fields string part that is being used for query.
2002
-     *
2003
-     * @since 1.0.0
2004
-     * @param string $fields Fields string.
2005
-     * @param string $table Table name.
2006
-     * @param string $post_type Post type.
2007
-     */
2008
-    $fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2009
-
2010
-    $join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2011
-
2012
-    ########### WPML ###########
2013
-
2014
-    if (function_exists('icl_object_id')) {
2015
-        global $sitepress;
2016
-        $lang_code = ICL_LANGUAGE_CODE;
2017
-        if ($lang_code) {
2018
-            $join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2019
-        }
2020
-    }
2021
-
2022
-    ########### WPML ###########
2023
-
2024
-    /**
2025
-     * Filter widget listing join clause string part that is being used for query.
2026
-     *
2027
-     * @since 1.0.0
2028
-     * @param string $join Join clause string.
2029
-     * @param string $post_type Post type.
2030
-     */
2031
-    $join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2032
-
2033
-    $post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2034
-
2035
-    $where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2036
-
2037
-    ########### WPML ###########
2038
-    if (function_exists('icl_object_id')) {
2039
-        if ($lang_code) {
2040
-            $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2041
-        }
2042
-    }
2043
-    ########### WPML ###########
2044
-    /**
2045
-     * Filter widget listing where clause string part that is being used for query.
2046
-     *
2047
-     * @since 1.0.0
2048
-     * @param string $where Where clause string.
2049
-     * @param string $post_type Post type.
2050
-     */
2051
-    $where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2052
-    $where = $where != '' ? " WHERE 1=1 " . $where : '';
2053
-
2054
-    $groupby = " GROUP BY $wpdb->posts.ID ";
2055
-    /**
2056
-     * Filter widget listing groupby clause string part that is being used for query.
2057
-     *
2058
-     * @since 1.0.0
2059
-     * @param string $groupby Group by clause string.
2060
-     * @param string $post_type Post type.
2061
-     */
2062
-    $groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2063
-
2064
-    if ($count_only) {
2065
-        $sql = "SELECT COUNT(" . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
1992
+	global $wpdb, $plugin_prefix, $table_prefix;
1993
+	$GLOBALS['gd_query_args_widgets'] = $query_args;
1994
+	$gd_query_args_widgets = $query_args;
1995
+
1996
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
1997
+	$table = $plugin_prefix . $post_type . '_detail';
1998
+
1999
+	$fields = $wpdb->posts . ".*, " . $table . ".*";
2000
+	/**
2001
+	 * Filter widget listing fields string part that is being used for query.
2002
+	 *
2003
+	 * @since 1.0.0
2004
+	 * @param string $fields Fields string.
2005
+	 * @param string $table Table name.
2006
+	 * @param string $post_type Post type.
2007
+	 */
2008
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2009
+
2010
+	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2011
+
2012
+	########### WPML ###########
2013
+
2014
+	if (function_exists('icl_object_id')) {
2015
+		global $sitepress;
2016
+		$lang_code = ICL_LANGUAGE_CODE;
2017
+		if ($lang_code) {
2018
+			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2019
+		}
2020
+	}
2021
+
2022
+	########### WPML ###########
2023
+
2024
+	/**
2025
+	 * Filter widget listing join clause string part that is being used for query.
2026
+	 *
2027
+	 * @since 1.0.0
2028
+	 * @param string $join Join clause string.
2029
+	 * @param string $post_type Post type.
2030
+	 */
2031
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2032
+
2033
+	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2034
+
2035
+	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2036
+
2037
+	########### WPML ###########
2038
+	if (function_exists('icl_object_id')) {
2039
+		if ($lang_code) {
2040
+			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2041
+		}
2042
+	}
2043
+	########### WPML ###########
2044
+	/**
2045
+	 * Filter widget listing where clause string part that is being used for query.
2046
+	 *
2047
+	 * @since 1.0.0
2048
+	 * @param string $where Where clause string.
2049
+	 * @param string $post_type Post type.
2050
+	 */
2051
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2052
+	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2053
+
2054
+	$groupby = " GROUP BY $wpdb->posts.ID ";
2055
+	/**
2056
+	 * Filter widget listing groupby clause string part that is being used for query.
2057
+	 *
2058
+	 * @since 1.0.0
2059
+	 * @param string $groupby Group by clause string.
2060
+	 * @param string $post_type Post type.
2061
+	 */
2062
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2063
+
2064
+	if ($count_only) {
2065
+		$sql = "SELECT COUNT(" . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2066 2066
 			" . $join . "
2067 2067
 			" . $where;
2068
-        $rows = (int)$wpdb->get_var($sql);
2069
-    } else {
2070
-        $orderby = geodir_widget_listings_get_order($query_args);
2071
-        /**
2072
-         * Filter widget listing orderby clause string part that is being used for query.
2073
-         *
2074
-         * @since 1.0.0
2075
-         * @param string $orderby Order by clause string.
2076
-         * @param string $table Table name.
2077
-         * @param string $post_type Post type.
2078
-         */
2079
-        $orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2080
-        $orderby .= $wpdb->posts . ".post_title ASC";
2081
-        $orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2082
-
2083
-        $limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2084
-        /**
2085
-         * Filter widget listing limit that is being used for query.
2086
-         *
2087
-         * @since 1.0.0
2088
-         * @param int $limit Query results limit.
2089
-         * @param string $post_type Post type.
2090
-         */
2091
-        $limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2092
-
2093
-        $page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2094
-        if ( !$page )
2095
-            $page = 1;
2096
-
2097
-        $limit = (int)$limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int)$limit ) . ", " . (int)$limit : "";
2098
-
2099
-        $sql = "SELECT SQL_CALC_FOUND_ROWS " . $fields . " FROM " . $wpdb->posts . "
2068
+		$rows = (int)$wpdb->get_var($sql);
2069
+	} else {
2070
+		$orderby = geodir_widget_listings_get_order($query_args);
2071
+		/**
2072
+		 * Filter widget listing orderby clause string part that is being used for query.
2073
+		 *
2074
+		 * @since 1.0.0
2075
+		 * @param string $orderby Order by clause string.
2076
+		 * @param string $table Table name.
2077
+		 * @param string $post_type Post type.
2078
+		 */
2079
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2080
+		$orderby .= $wpdb->posts . ".post_title ASC";
2081
+		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2082
+
2083
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2084
+		/**
2085
+		 * Filter widget listing limit that is being used for query.
2086
+		 *
2087
+		 * @since 1.0.0
2088
+		 * @param int $limit Query results limit.
2089
+		 * @param string $post_type Post type.
2090
+		 */
2091
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2092
+
2093
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2094
+		if ( !$page )
2095
+			$page = 1;
2096
+
2097
+		$limit = (int)$limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int)$limit ) . ", " . (int)$limit : "";
2098
+
2099
+		$sql = "SELECT SQL_CALC_FOUND_ROWS " . $fields . " FROM " . $wpdb->posts . "
2100 2100
 			" . $join . "
2101 2101
 			" . $where . "
2102 2102
 			" . $groupby . "
2103 2103
 			" . $orderby . "
2104 2104
 			" . $limit;
2105
-        $rows = $wpdb->get_results($sql);
2106
-    }
2105
+		$rows = $wpdb->get_results($sql);
2106
+	}
2107 2107
 
2108
-    unset($GLOBALS['gd_query_args_widgets']);
2109
-    unset($gd_query_args_widgets);
2108
+	unset($GLOBALS['gd_query_args_widgets']);
2109
+	unset($gd_query_args_widgets);
2110 2110
 
2111
-    return $rows;
2111
+	return $rows;
2112 2112
 }
2113 2113
 
2114 2114
 /**
@@ -2123,14 +2123,14 @@  discard block
 block discarded – undo
2123 2123
  */
2124 2124
 function geodir_function_widget_listings_fields($fields)
2125 2125
 {
2126
-    global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2126
+	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2127 2127
 
2128
-    $query_args = $gd_query_args_widgets;
2129
-    if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2130
-        return $fields;
2131
-    }
2128
+	$query_args = $gd_query_args_widgets;
2129
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2130
+		return $fields;
2131
+	}
2132 2132
     
2133
-    return $fields;
2133
+	return $fields;
2134 2134
 }
2135 2135
 
2136 2136
 /**
@@ -2145,28 +2145,28 @@  discard block
 block discarded – undo
2145 2145
  */
2146 2146
 function geodir_function_widget_listings_join($join)
2147 2147
 {
2148
-    global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2148
+	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2149 2149
 
2150
-    $query_args = $gd_query_args_widgets;
2151
-    if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2152
-        return $join;
2153
-    }
2150
+	$query_args = $gd_query_args_widgets;
2151
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2152
+		return $join;
2153
+	}
2154 2154
 
2155
-    $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2156
-    $table = $plugin_prefix . $post_type . '_detail';
2155
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2156
+	$table = $plugin_prefix . $post_type . '_detail';
2157 2157
 
2158
-    if (!empty($query_args['with_pics_only'])) {
2159
-        $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2160
-    }
2158
+	if (!empty($query_args['with_pics_only'])) {
2159
+		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2160
+	}
2161 2161
 
2162
-    if (!empty($query_args['tax_query'])) {
2163
-        $tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2164
-        if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2165
-            $join .= $tax_queries['join'];
2166
-        }
2167
-    }
2162
+	if (!empty($query_args['tax_query'])) {
2163
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2164
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2165
+			$join .= $tax_queries['join'];
2166
+		}
2167
+	}
2168 2168
 
2169
-    return $join;
2169
+	return $join;
2170 2170
 }
2171 2171
 
2172 2172
 /**
@@ -2181,54 +2181,54 @@  discard block
 block discarded – undo
2181 2181
  */
2182 2182
 function geodir_function_widget_listings_where($where)
2183 2183
 {
2184
-    global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2185
-
2186
-    $query_args = $gd_query_args_widgets;
2187
-    if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2188
-        return $where;
2189
-    }
2190
-    $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2191
-    $table = $plugin_prefix . $post_type . '_detail';
2192
-
2193
-    if (!empty($query_args)) {
2194
-        if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2195
-            $where = geodir_default_location_where($where, $table);
2196
-        }
2197
-
2198
-        if (!empty($query_args['post_author'])) {
2199
-            $where .= " AND " . $wpdb->posts . ".post_author = " . (int)$query_args['post_author'];
2200
-        }
2184
+	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2185
+
2186
+	$query_args = $gd_query_args_widgets;
2187
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2188
+		return $where;
2189
+	}
2190
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2191
+	$table = $plugin_prefix . $post_type . '_detail';
2192
+
2193
+	if (!empty($query_args)) {
2194
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2195
+			$where = geodir_default_location_where($where, $table);
2196
+		}
2197
+
2198
+		if (!empty($query_args['post_author'])) {
2199
+			$where .= " AND " . $wpdb->posts . ".post_author = " . (int)$query_args['post_author'];
2200
+		}
2201 2201
         
2202
-        if (!empty($query_args['show_featured_only'])) {
2203
-            $where .= " AND " . $table . ".is_featured = '1'";
2204
-        }
2202
+		if (!empty($query_args['show_featured_only'])) {
2203
+			$where .= " AND " . $table . ".is_featured = '1'";
2204
+		}
2205 2205
 
2206
-        if (!empty($query_args['show_special_only'])) {
2207
-            $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2208
-        }
2206
+		if (!empty($query_args['show_special_only'])) {
2207
+			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2208
+		}
2209 2209
 
2210
-        if (!empty($query_args['with_pics_only'])) {
2211
-            $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2212
-        }
2210
+		if (!empty($query_args['with_pics_only'])) {
2211
+			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2212
+		}
2213 2213
 
2214
-        if (!empty($query_args['featured_image_only'])) {
2215
-            $where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2216
-        }
2214
+		if (!empty($query_args['featured_image_only'])) {
2215
+			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2216
+		}
2217 2217
 
2218
-        if (!empty($query_args['with_videos_only'])) {
2219
-            $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2220
-        }
2218
+		if (!empty($query_args['with_videos_only'])) {
2219
+			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2220
+		}
2221 2221
 
2222
-        if (!empty($query_args['tax_query'])) {
2223
-            $tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2222
+		if (!empty($query_args['tax_query'])) {
2223
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2224 2224
 
2225
-            if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2226
-                $where .= $tax_queries['where'];
2227
-            }
2228
-        }
2229
-    }
2225
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2226
+				$where .= $tax_queries['where'];
2227
+			}
2228
+		}
2229
+	}
2230 2230
 
2231
-    return $where;
2231
+	return $where;
2232 2232
 }
2233 2233
 
2234 2234
 /**
@@ -2243,14 +2243,14 @@  discard block
 block discarded – undo
2243 2243
  */
2244 2244
 function geodir_function_widget_listings_orderby($orderby)
2245 2245
 {
2246
-    global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2246
+	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2247 2247
 
2248
-    $query_args = $gd_query_args_widgets;
2249
-    if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2250
-        return $orderby;
2251
-    }
2248
+	$query_args = $gd_query_args_widgets;
2249
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2250
+		return $orderby;
2251
+	}
2252 2252
 
2253
-    return $orderby;
2253
+	return $orderby;
2254 2254
 }
2255 2255
 
2256 2256
 /**
@@ -2265,18 +2265,18 @@  discard block
 block discarded – undo
2265 2265
  */
2266 2266
 function geodir_function_widget_listings_limit($limit)
2267 2267
 {
2268
-    global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2268
+	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2269 2269
 
2270
-    $query_args = $gd_query_args_widgets;
2271
-    if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2272
-        return $limit;
2273
-    }
2270
+	$query_args = $gd_query_args_widgets;
2271
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2272
+		return $limit;
2273
+	}
2274 2274
 
2275
-    if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2276
-        $limit = (int)$query_args['posts_per_page'];
2277
-    }
2275
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2276
+		$limit = (int)$query_args['posts_per_page'];
2277
+	}
2278 2278
 
2279
-    return $limit;
2279
+	return $limit;
2280 2280
 }
2281 2281
 
2282 2282
 /**
@@ -2290,24 +2290,24 @@  discard block
 block discarded – undo
2290 2290
  */
2291 2291
 function geodir_media_image_large_width($default = 800, $params = '')
2292 2292
 {
2293
-    $large_size_w = get_option('large_size_w');
2294
-    $large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2295
-    $large_size_w = absint($large_size_w);
2296
-
2297
-    if (!get_option('geodir_use_wp_media_large_size')) {
2298
-        $large_size_w = 800;
2299
-    }
2300
-
2301
-    /**
2302
-     * Filter large image width.
2303
-     *
2304
-     * @since 1.0.0
2305
-     * @param int $large_size_w Large image width.
2306
-     * @param int $default Default width.
2307
-     * @param string|array $params Image parameters.
2308
-     */
2309
-    $large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2310
-    return $large_size_w;
2293
+	$large_size_w = get_option('large_size_w');
2294
+	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2295
+	$large_size_w = absint($large_size_w);
2296
+
2297
+	if (!get_option('geodir_use_wp_media_large_size')) {
2298
+		$large_size_w = 800;
2299
+	}
2300
+
2301
+	/**
2302
+	 * Filter large image width.
2303
+	 *
2304
+	 * @since 1.0.0
2305
+	 * @param int $large_size_w Large image width.
2306
+	 * @param int $default Default width.
2307
+	 * @param string|array $params Image parameters.
2308
+	 */
2309
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2310
+	return $large_size_w;
2311 2311
 }
2312 2312
 
2313 2313
 /**
@@ -2321,25 +2321,25 @@  discard block
 block discarded – undo
2321 2321
  */
2322 2322
 function geodir_media_image_large_height($default = 800, $params = '')
2323 2323
 {
2324
-    $large_size_h = get_option('large_size_h');
2325
-    $large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2326
-    $large_size_h = absint($large_size_h);
2327
-
2328
-    if (!get_option('geodir_use_wp_media_large_size')) {
2329
-        $large_size_h = 800;
2330
-    }
2331
-
2332
-    /**
2333
-     * Filter large image height.
2334
-     *
2335
-     * @since 1.0.0
2336
-     * @param int $large_size_h Large image height.
2337
-     * @param int $default Default height.
2338
-     * @param string|array $params Image parameters.
2339
-     */
2340
-    $large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2341
-
2342
-    return $large_size_h;
2324
+	$large_size_h = get_option('large_size_h');
2325
+	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2326
+	$large_size_h = absint($large_size_h);
2327
+
2328
+	if (!get_option('geodir_use_wp_media_large_size')) {
2329
+		$large_size_h = 800;
2330
+	}
2331
+
2332
+	/**
2333
+	 * Filter large image height.
2334
+	 *
2335
+	 * @since 1.0.0
2336
+	 * @param int $large_size_h Large image height.
2337
+	 * @param int $default Default height.
2338
+	 * @param string|array $params Image parameters.
2339
+	 */
2340
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2341
+
2342
+	return $large_size_h;
2343 2343
 }
2344 2344
 
2345 2345
 /**
@@ -2354,25 +2354,25 @@  discard block
 block discarded – undo
2354 2354
  */
2355 2355
 function geodir_sanitize_location_name($type, $name, $translate = true)
2356 2356
 {
2357
-    if ($name == '') {
2358
-        return NULL;
2359
-    }
2360
-
2361
-    $type = $type == 'gd_country' ? 'country' : $type;
2362
-    $type = $type == 'gd_region' ? 'region' : $type;
2363
-    $type = $type == 'gd_city' ? 'city' : $type;
2364
-
2365
-    $return = $name;
2366
-    if (function_exists('get_actual_location_name')) {
2367
-        $return = get_actual_location_name($type, $name, $translate);
2368
-    } else {
2369
-        $return = preg_replace('/-(\d+)$/', '', $return);
2370
-        $return = preg_replace('/[_-]/', ' ', $return);
2371
-        $return = geodir_ucwords($return);
2372
-        $return = $translate ? __($return, 'geodirectory') : $return;
2373
-    }
2374
-
2375
-    return $return;
2357
+	if ($name == '') {
2358
+		return NULL;
2359
+	}
2360
+
2361
+	$type = $type == 'gd_country' ? 'country' : $type;
2362
+	$type = $type == 'gd_region' ? 'region' : $type;
2363
+	$type = $type == 'gd_city' ? 'city' : $type;
2364
+
2365
+	$return = $name;
2366
+	if (function_exists('get_actual_location_name')) {
2367
+		$return = get_actual_location_name($type, $name, $translate);
2368
+	} else {
2369
+		$return = preg_replace('/-(\d+)$/', '', $return);
2370
+		$return = preg_replace('/[_-]/', ' ', $return);
2371
+		$return = geodir_ucwords($return);
2372
+		$return = $translate ? __($return, 'geodirectory') : $return;
2373
+	}
2374
+
2375
+	return $return;
2376 2376
 }
2377 2377
 
2378 2378
 
@@ -2386,14 +2386,14 @@  discard block
 block discarded – undo
2386 2386
 function geodir_comments_number($number)
2387 2387
 {
2388 2388
 
2389
-    if ($number > 1) {
2390
-        $output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2391
-    } elseif ($number == 0 || $number == '') {
2392
-        $output = __('No Reviews', 'geodirectory');
2393
-    } else { // must be one
2394
-        $output = __('1 Review', 'geodirectory');
2395
-    }
2396
-    echo $output;
2389
+	if ($number > 1) {
2390
+		$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2391
+	} elseif ($number == 0 || $number == '') {
2392
+		$output = __('No Reviews', 'geodirectory');
2393
+	} else { // must be one
2394
+		$output = __('1 Review', 'geodirectory');
2395
+	}
2396
+	echo $output;
2397 2397
 }
2398 2398
 
2399 2399
 /**
@@ -2406,23 +2406,23 @@  discard block
 block discarded – undo
2406 2406
  */
2407 2407
 function is_page_geodir_home()
2408 2408
 {
2409
-    global $wpdb;
2410
-    $cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2411
-    if (function_exists('geodir_location_geo_home_link')) {
2412
-        remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2413
-    }
2414
-    $home_url = home_url('', 'http');
2415
-    if (function_exists('geodir_location_geo_home_link')) {
2416
-        add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2417
-    }
2418
-    $home_url = str_replace("www.", "", $home_url);
2419
-    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')) ) {
2420
-        return true;
2421
-    }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')){
2422
-        return true;
2423
-    } else {
2424
-        return false;
2425
-    }
2409
+	global $wpdb;
2410
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2411
+	if (function_exists('geodir_location_geo_home_link')) {
2412
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2413
+	}
2414
+	$home_url = home_url('', 'http');
2415
+	if (function_exists('geodir_location_geo_home_link')) {
2416
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2417
+	}
2418
+	$home_url = str_replace("www.", "", $home_url);
2419
+	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')) ) {
2420
+		return true;
2421
+	}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')){
2422
+		return true;
2423
+	} else {
2424
+		return false;
2425
+	}
2426 2426
 
2427 2427
 }
2428 2428
 
@@ -2438,13 +2438,13 @@  discard block
 block discarded – undo
2438 2438
  */
2439 2439
 function geodir_wpseo_homepage_canonical($url)
2440 2440
 {
2441
-    global $post;
2441
+	global $post;
2442 2442
 
2443
-    if (is_page_geodir_home()) {
2444
-        return home_url();
2445
-    }
2443
+	if (is_page_geodir_home()) {
2444
+		return home_url();
2445
+	}
2446 2446
 
2447
-    return $url;
2447
+	return $url;
2448 2448
 }
2449 2449
 
2450 2450
 add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
@@ -2461,16 +2461,16 @@  discard block
 block discarded – undo
2461 2461
  */
2462 2462
 function geodir_googlemap_script_extra_details_page($extra)
2463 2463
 {
2464
-    global $post;
2465
-    $add_google_places_api = false;
2466
-    if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2467
-        $add_google_places_api = true;
2468
-    }
2469
-    if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2470
-        $extra .= "&amp;libraries=places";
2471
-    }
2472
-
2473
-    return $extra;
2464
+	global $post;
2465
+	$add_google_places_api = false;
2466
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2467
+		$add_google_places_api = true;
2468
+	}
2469
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2470
+		$extra .= "&amp;libraries=places";
2471
+	}
2472
+
2473
+	return $extra;
2474 2474
 }
2475 2475
 
2476 2476
 add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
@@ -2490,98 +2490,98 @@  discard block
 block discarded – undo
2490 2490
  */
2491 2491
 function geodir_popular_post_category_output($args = '', $instance = '')
2492 2492
 {
2493
-    // prints the widget
2494
-    global $wpdb, $plugin_prefix, $geodir_post_category_str;
2495
-    extract($args, EXTR_SKIP);
2496
-
2497
-    echo $before_widget;
2498
-
2499
-    /** This filter is documented in geodirectory_widgets.php */
2500
-    $title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2501
-
2502
-    $gd_post_type = geodir_get_current_posttype();
2503
-
2504
-    $category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int)$instance['category_limit'] : 15;
2505
-    if(!empty($gd_post_type)){
2506
-        $default_post_type = $gd_post_type;
2507
-    }elseif(isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type']) ){
2508
-        $default_post_type = $instance['default_post_type'];
2509
-    }else{
2510
-        $all_gd_post_type = geodir_get_posttypes();
2511
-        $default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2512
-    }
2513
-
2514
-    $taxonomy = array();
2515
-    if (!empty($gd_post_type)) {
2516
-        $taxonomy[] = $gd_post_type . "category";
2517
-    } else {
2518
-        $taxonomy = geodir_get_taxonomies($gd_post_type);
2519
-    }
2520
-
2521
-    $terms = get_terms($taxonomy);
2522
-    $a_terms = array();
2523
-    $b_terms = array();
2524
-
2525
-    foreach ($terms as $term) {
2526
-        if ($term->count > 0) {
2527
-            $a_terms[$term->taxonomy][] = $term;
2528
-        }
2529
-    }
2530
-
2531
-    if (!empty($a_terms)) {
2532
-        foreach ($a_terms as $b_key => $b_val) {
2533
-            $b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2534
-        }
2535
-
2536
-        $default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type . 'category']) ? $default_post_type . 'category' : '';
2537
-
2538
-        $tax_change_output = '';
2539
-        if (count($b_terms) > 1) {
2540
-            $tax_change_output .= "<select data-limit='$category_limit' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2541
-            foreach ($b_terms as $key => $val) {
2542
-                $ptype = get_post_type_object(str_replace("category", "", $key));
2543
-                $cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2544
-                $tax_change_output .= "<option value='$key' ". selected($key, $default_taxonomy, false) .">" . sprintf(__('%s Categories', 'geodirectory'),$cpt_name) . "</option>";
2545
-            }
2546
-            $tax_change_output .= "</select>";
2547
-        }
2548
-
2549
-        if (!empty($b_terms)) {
2550
-            $terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms);// get the first array
2551
-            global $cat_count;//make global so we can change via function
2552
-            $cat_count = 0;
2553
-            ?>
2493
+	// prints the widget
2494
+	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2495
+	extract($args, EXTR_SKIP);
2496
+
2497
+	echo $before_widget;
2498
+
2499
+	/** This filter is documented in geodirectory_widgets.php */
2500
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2501
+
2502
+	$gd_post_type = geodir_get_current_posttype();
2503
+
2504
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int)$instance['category_limit'] : 15;
2505
+	if(!empty($gd_post_type)){
2506
+		$default_post_type = $gd_post_type;
2507
+	}elseif(isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type']) ){
2508
+		$default_post_type = $instance['default_post_type'];
2509
+	}else{
2510
+		$all_gd_post_type = geodir_get_posttypes();
2511
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2512
+	}
2513
+
2514
+	$taxonomy = array();
2515
+	if (!empty($gd_post_type)) {
2516
+		$taxonomy[] = $gd_post_type . "category";
2517
+	} else {
2518
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2519
+	}
2520
+
2521
+	$terms = get_terms($taxonomy);
2522
+	$a_terms = array();
2523
+	$b_terms = array();
2524
+
2525
+	foreach ($terms as $term) {
2526
+		if ($term->count > 0) {
2527
+			$a_terms[$term->taxonomy][] = $term;
2528
+		}
2529
+	}
2530
+
2531
+	if (!empty($a_terms)) {
2532
+		foreach ($a_terms as $b_key => $b_val) {
2533
+			$b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2534
+		}
2535
+
2536
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type . 'category']) ? $default_post_type . 'category' : '';
2537
+
2538
+		$tax_change_output = '';
2539
+		if (count($b_terms) > 1) {
2540
+			$tax_change_output .= "<select data-limit='$category_limit' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2541
+			foreach ($b_terms as $key => $val) {
2542
+				$ptype = get_post_type_object(str_replace("category", "", $key));
2543
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2544
+				$tax_change_output .= "<option value='$key' ". selected($key, $default_taxonomy, false) .">" . sprintf(__('%s Categories', 'geodirectory'),$cpt_name) . "</option>";
2545
+			}
2546
+			$tax_change_output .= "</select>";
2547
+		}
2548
+
2549
+		if (!empty($b_terms)) {
2550
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms);// get the first array
2551
+			global $cat_count;//make global so we can change via function
2552
+			$cat_count = 0;
2553
+			?>
2554 2554
             <div class="geodir-category-list-in clearfix">
2555 2555
                 <div class="geodir-cat-list clearfix">
2556 2556
                     <?php
2557
-                    echo $before_title . __($title) . $after_title;
2557
+					echo $before_title . __($title) . $after_title;
2558 2558
 
2559
-                    echo $tax_change_output;
2559
+					echo $tax_change_output;
2560 2560
 
2561
-                    echo '<ul class="geodir-popular-cat-list">';
2561
+					echo '<ul class="geodir-popular-cat-list">';
2562 2562
 
2563
-                    geodir_helper_cat_list_output($terms, $category_limit);
2563
+					geodir_helper_cat_list_output($terms, $category_limit);
2564 2564
 
2565
-                    echo '</ul>';
2566
-                    ?>
2565
+					echo '</ul>';
2566
+					?>
2567 2567
                 </div>
2568 2568
                 <?php
2569
-                $hide = '';
2570
-                if ($cat_count < $category_limit) {
2571
-                    $hide = 'style="display:none;"';
2572
-                }
2573
-                echo "<div class='geodir-cat-list-more' $hide >";
2574
-                echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __('More Categories', 'geodirectory') . '</a>';
2575
-                echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __('Less Categories', 'geodirectory') . '</a>';
2576
-                echo "</div>";
2577
-                /* add scripts */
2578
-                add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2579
-                ?>
2569
+				$hide = '';
2570
+				if ($cat_count < $category_limit) {
2571
+					$hide = 'style="display:none;"';
2572
+				}
2573
+				echo "<div class='geodir-cat-list-more' $hide >";
2574
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __('More Categories', 'geodirectory') . '</a>';
2575
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __('Less Categories', 'geodirectory') . '</a>';
2576
+				echo "</div>";
2577
+				/* add scripts */
2578
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2579
+				?>
2580 2580
             </div>
2581 2581
         <?php
2582
-        }
2583
-    }
2584
-    echo $after_widget;
2582
+		}
2583
+	}
2584
+	echo $after_widget;
2585 2585
 }
2586 2586
 
2587 2587
 /**
@@ -2595,38 +2595,38 @@  discard block
 block discarded – undo
2595 2595
  */
2596 2596
 function geodir_helper_cat_list_output($terms, $category_limit)
2597 2597
 {
2598
-    global $geodir_post_category_str, $cat_count;
2599
-    $term_icons = geodir_get_term_icon();
2598
+	global $geodir_post_category_str, $cat_count;
2599
+	$term_icons = geodir_get_term_icon();
2600 2600
 
2601
-    $geodir_post_category_str = array();
2601
+	$geodir_post_category_str = array();
2602 2602
 
2603 2603
 
2604
-    foreach ($terms as $cat) {
2605
-        $post_type = str_replace("category", "", $cat->taxonomy);
2606
-        $term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
2604
+	foreach ($terms as $cat) {
2605
+		$post_type = str_replace("category", "", $cat->taxonomy);
2606
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
2607 2607
 
2608
-        $cat_count++;
2608
+		$cat_count++;
2609 2609
 
2610
-        $geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
2610
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
2611 2611
 
2612
-        $class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2613
-        $total_post = $cat->count;
2612
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2613
+		$total_post = $cat->count;
2614 2614
 
2615
-        $term_link = get_term_link( $cat, $cat->taxonomy );
2616
-        /**
2617
-         * Filer the category term link.
2618
-         *
2619
-         * @since 1.4.5
2620
-         * @param string $term_link The term permalink.
2621
-         * @param int    $cat->term_id The term id.
2622
-         * @param string $post_type Wordpress post type.
2623
-         */
2624
-        $term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
2615
+		$term_link = get_term_link( $cat, $cat->taxonomy );
2616
+		/**
2617
+		 * Filer the category term link.
2618
+		 *
2619
+		 * @since 1.4.5
2620
+		 * @param string $term_link The term permalink.
2621
+		 * @param int    $cat->term_id The term id.
2622
+		 * @param string $post_type Wordpress post type.
2623
+		 */
2624
+		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
2625 2625
 
2626
-        echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
2627
-        echo '<img alt="' . esc_attr($cat->name) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">'; echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
2628
-        echo '</a></li>';
2629
-    }
2626
+		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
2627
+		echo '<img alt="' . esc_attr($cat->name) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">'; echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
2628
+		echo '</a></li>';
2629
+	}
2630 2630
 }
2631 2631
 
2632 2632
 /**
@@ -2640,108 +2640,108 @@  discard block
 block discarded – undo
2640 2640
  */
2641 2641
 function geodir_listing_slider_widget_output($args = '', $instance = '')
2642 2642
 {
2643
-    // prints the widget
2644
-    extract($args, EXTR_SKIP);
2645
-
2646
-    echo $before_widget;
2647
-
2648
-    /** This filter is documented in geodirectory_widgets.php */
2649
-    $title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2650
-    /**
2651
-     * Filter the widget post type.
2652
-     *
2653
-     * @since 1.0.0
2654
-     * @param string $instance['post_type'] Post type of listing.
2655
-     */
2656
-    $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
2657
-    /**
2658
-     * Filter the widget's term.
2659
-     *
2660
-     * @since 1.0.0
2661
-     * @param string $instance['category'] Filter by term. Can be any valid term.
2662
-     */
2663
-    $category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
2664
-    /**
2665
-     * Filter the widget listings limit.
2666
-     *
2667
-     * @since 1.0.0
2668
-     * @param string $instance['post_number'] Number of listings to display.
2669
-     */
2670
-    $post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
2671
-    /**
2672
-     * Filter the widget listings limit shown at one time.
2673
-     *
2674
-     * @since 1.5.0
2675
-     * @param string $instance['max_show'] Number of listings to display on screen.
2676
-     */
2677
-    $max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
2678
-    /**
2679
-     * Filter the widget slide width.
2680
-     *
2681
-     * @since 1.5.0
2682
-     * @param string $instance['slide_width'] Width of the slides shown.
2683
-     */
2684
-    $slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
2685
-    /**
2686
-     * Filter widget's "show title" value.
2687
-     *
2688
-     * @since 1.0.0
2689
-     * @param string|bool $instance['show_title'] Do you want to display title? Can be 1 or 0.
2690
-     */
2691
-    $show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
2692
-    /**
2693
-     * Filter widget's "slideshow" value.
2694
-     *
2695
-     * @since 1.0.0
2696
-     * @param int $instance['slideshow'] Setup a slideshow for the slider to animate automatically.
2697
-     */
2698
-    $slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
2699
-    /**
2700
-     * Filter widget's "animationLoop" value.
2701
-     *
2702
-     * @since 1.0.0
2703
-     * @param int $instance['animationLoop'] Gives the slider a seamless infinite loop.
2704
-     */
2705
-    $animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
2706
-    /**
2707
-     * Filter widget's "directionNav" value.
2708
-     *
2709
-     * @since 1.0.0
2710
-     * @param int $instance['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
2711
-     */
2712
-    $directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
2713
-    /**
2714
-     * Filter widget's "slideshowSpeed" value.
2715
-     *
2716
-     * @since 1.0.0
2717
-     * @param int $instance['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
2718
-     */
2719
-    $slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
2720
-    /**
2721
-     * Filter widget's "animationSpeed" value.
2722
-     *
2723
-     * @since 1.0.0
2724
-     * @param int $instance['animationSpeed'] Set the speed of animations, in milliseconds.
2725
-     */
2726
-    $animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
2727
-    /**
2728
-     * Filter widget's "animation" value.
2729
-     *
2730
-     * @since 1.0.0
2731
-     * @param string $instance['animation'] Controls the animation type, "fade" or "slide".
2732
-     */
2733
-    $animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
2734
-    /**
2735
-     * Filter widget's "list_sort" type.
2736
-     *
2737
-     * @since 1.0.0
2738
-     * @param string $instance['list_sort'] Listing sort by type.
2739
-     */
2740
-    $list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
2741
-    $show_featured_only = !empty($instance['show_featured_only']) ? 1 : NULL;
2742
-
2743
-    wp_enqueue_script('geodirectory-jquery-flexslider-js');
2744
-    ?>
2643
+	// prints the widget
2644
+	extract($args, EXTR_SKIP);
2645
+
2646
+	echo $before_widget;
2647
+
2648
+	/** This filter is documented in geodirectory_widgets.php */
2649
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2650
+	/**
2651
+	 * Filter the widget post type.
2652
+	 *
2653
+	 * @since 1.0.0
2654
+	 * @param string $instance['post_type'] Post type of listing.
2655
+	 */
2656
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
2657
+	/**
2658
+	 * Filter the widget's term.
2659
+	 *
2660
+	 * @since 1.0.0
2661
+	 * @param string $instance['category'] Filter by term. Can be any valid term.
2662
+	 */
2663
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
2664
+	/**
2665
+	 * Filter the widget listings limit.
2666
+	 *
2667
+	 * @since 1.0.0
2668
+	 * @param string $instance['post_number'] Number of listings to display.
2669
+	 */
2670
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
2671
+	/**
2672
+	 * Filter the widget listings limit shown at one time.
2673
+	 *
2674
+	 * @since 1.5.0
2675
+	 * @param string $instance['max_show'] Number of listings to display on screen.
2676
+	 */
2677
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
2678
+	/**
2679
+	 * Filter the widget slide width.
2680
+	 *
2681
+	 * @since 1.5.0
2682
+	 * @param string $instance['slide_width'] Width of the slides shown.
2683
+	 */
2684
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
2685
+	/**
2686
+	 * Filter widget's "show title" value.
2687
+	 *
2688
+	 * @since 1.0.0
2689
+	 * @param string|bool $instance['show_title'] Do you want to display title? Can be 1 or 0.
2690
+	 */
2691
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
2692
+	/**
2693
+	 * Filter widget's "slideshow" value.
2694
+	 *
2695
+	 * @since 1.0.0
2696
+	 * @param int $instance['slideshow'] Setup a slideshow for the slider to animate automatically.
2697
+	 */
2698
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
2699
+	/**
2700
+	 * Filter widget's "animationLoop" value.
2701
+	 *
2702
+	 * @since 1.0.0
2703
+	 * @param int $instance['animationLoop'] Gives the slider a seamless infinite loop.
2704
+	 */
2705
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
2706
+	/**
2707
+	 * Filter widget's "directionNav" value.
2708
+	 *
2709
+	 * @since 1.0.0
2710
+	 * @param int $instance['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
2711
+	 */
2712
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
2713
+	/**
2714
+	 * Filter widget's "slideshowSpeed" value.
2715
+	 *
2716
+	 * @since 1.0.0
2717
+	 * @param int $instance['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
2718
+	 */
2719
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
2720
+	/**
2721
+	 * Filter widget's "animationSpeed" value.
2722
+	 *
2723
+	 * @since 1.0.0
2724
+	 * @param int $instance['animationSpeed'] Set the speed of animations, in milliseconds.
2725
+	 */
2726
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
2727
+	/**
2728
+	 * Filter widget's "animation" value.
2729
+	 *
2730
+	 * @since 1.0.0
2731
+	 * @param string $instance['animation'] Controls the animation type, "fade" or "slide".
2732
+	 */
2733
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
2734
+	/**
2735
+	 * Filter widget's "list_sort" type.
2736
+	 *
2737
+	 * @since 1.0.0
2738
+	 * @param string $instance['list_sort'] Listing sort by type.
2739
+	 */
2740
+	$list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
2741
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : NULL;
2742
+
2743
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
2744
+	?>
2745 2745
     <script type="text/javascript">
2746 2746
         jQuery(window).load(function () {
2747 2747
             jQuery('#geodir_widget_carousel').flexslider({
@@ -2782,86 +2782,86 @@  discard block
 block discarded – undo
2782 2782
         });
2783 2783
     </script>
2784 2784
     <?php
2785
-    $query_args = array(
2786
-        'posts_per_page' => $post_number,
2787
-        'is_geodir_loop' => true,
2788
-        'post_type' => $post_type,
2789
-        'order_by' => $list_sort
2790
-    );
2791
-    if ($show_featured_only) {
2792
-        $query_args['show_featured_only'] = 1;
2793
-    }
2794
-
2795
-    if ($category != 0 || $category != '') {
2796
-        $category_taxonomy = geodir_get_taxonomies($post_type);
2797
-        $tax_query = array(
2798
-            'taxonomy' => $category_taxonomy[0],
2799
-            'field' => 'id',
2800
-            'terms' => $category
2801
-        );
2802
-
2803
-        $query_args['tax_query'] = array($tax_query);
2804
-    }
2805
-
2806
-    // we want listings with featured image only
2807
-    $query_args['featured_image_only'] = 1;
2808
-
2809
-    if ($post_type == 'gd_event') {
2810
-        $query_args['gedir_event_listing_filter'] = 'upcoming';
2811
-    }// show only upcoming events
2812
-
2813
-    $widget_listings = geodir_get_widget_listings($query_args);
2814
-    if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
2815
-        if ($title) {
2816
-            echo $before_title . $title . $after_title;
2817
-        }
2818
-
2819
-        global $post;
2820
-
2821
-        $current_post = $post;// keep current post info
2822
-
2823
-        $widget_main_slides = '';
2824
-        $nav_slides = '';
2825
-        $widget_slides = 0;
2826
-
2827
-        foreach ($widget_listings as $widget_listing) {
2828
-            global $gd_widget_listing_type;
2829
-            $post = $widget_listing;
2830
-            $widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
2831
-
2832
-            if (!empty($widget_image)) {
2833
-                if ($widget_image->height >= 200) {
2834
-                    $widget_spacer_height = 0;
2835
-                } else {
2836
-                    $widget_spacer_height = ((200 - $widget_image->height) / 2);
2837
-                }
2838
-
2839
-                $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" />';
2840
-
2841
-                $title = '';
2842
-                if ($show_title) {
2843
-                    $title_html = '<div class="geodir-slider-title"><a href="' . get_permalink($post->ID) . '">' . get_the_title($post->ID) . '</a></div>';
2844
-                    $post_id = $post->ID;
2845
-                    $post_permalink = get_permalink($post->ID);
2846
-                    $post_title = get_the_title($post->ID);
2847
-                    /**
2848
-                     * Filter the listing slider widget title.
2849
-                     *
2850
-                     * @since 1.6.1
2851
-                     * @param string $title_html The html output of the title.
2852
-                     * @param int $post_id The post id.
2853
-                     * @param string $post_permalink The post permalink url.
2854
-                     * @param string $post_title The post title text.
2855
-                     */
2856
-                    $title = apply_filters('geodir_listing_slider_title',$title_html,$post_id,$post_permalink,$post_title);
2857
-                }
2858
-
2859
-                $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>';
2860
-                $nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
2861
-                $widget_slides++;
2862
-            }
2863
-        }
2864
-        ?>
2785
+	$query_args = array(
2786
+		'posts_per_page' => $post_number,
2787
+		'is_geodir_loop' => true,
2788
+		'post_type' => $post_type,
2789
+		'order_by' => $list_sort
2790
+	);
2791
+	if ($show_featured_only) {
2792
+		$query_args['show_featured_only'] = 1;
2793
+	}
2794
+
2795
+	if ($category != 0 || $category != '') {
2796
+		$category_taxonomy = geodir_get_taxonomies($post_type);
2797
+		$tax_query = array(
2798
+			'taxonomy' => $category_taxonomy[0],
2799
+			'field' => 'id',
2800
+			'terms' => $category
2801
+		);
2802
+
2803
+		$query_args['tax_query'] = array($tax_query);
2804
+	}
2805
+
2806
+	// we want listings with featured image only
2807
+	$query_args['featured_image_only'] = 1;
2808
+
2809
+	if ($post_type == 'gd_event') {
2810
+		$query_args['gedir_event_listing_filter'] = 'upcoming';
2811
+	}// show only upcoming events
2812
+
2813
+	$widget_listings = geodir_get_widget_listings($query_args);
2814
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
2815
+		if ($title) {
2816
+			echo $before_title . $title . $after_title;
2817
+		}
2818
+
2819
+		global $post;
2820
+
2821
+		$current_post = $post;// keep current post info
2822
+
2823
+		$widget_main_slides = '';
2824
+		$nav_slides = '';
2825
+		$widget_slides = 0;
2826
+
2827
+		foreach ($widget_listings as $widget_listing) {
2828
+			global $gd_widget_listing_type;
2829
+			$post = $widget_listing;
2830
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
2831
+
2832
+			if (!empty($widget_image)) {
2833
+				if ($widget_image->height >= 200) {
2834
+					$widget_spacer_height = 0;
2835
+				} else {
2836
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
2837
+				}
2838
+
2839
+				$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" />';
2840
+
2841
+				$title = '';
2842
+				if ($show_title) {
2843
+					$title_html = '<div class="geodir-slider-title"><a href="' . get_permalink($post->ID) . '">' . get_the_title($post->ID) . '</a></div>';
2844
+					$post_id = $post->ID;
2845
+					$post_permalink = get_permalink($post->ID);
2846
+					$post_title = get_the_title($post->ID);
2847
+					/**
2848
+					 * Filter the listing slider widget title.
2849
+					 *
2850
+					 * @since 1.6.1
2851
+					 * @param string $title_html The html output of the title.
2852
+					 * @param int $post_id The post id.
2853
+					 * @param string $post_permalink The post permalink url.
2854
+					 * @param string $post_title The post title text.
2855
+					 */
2856
+					$title = apply_filters('geodir_listing_slider_title',$title_html,$post_id,$post_permalink,$post_title);
2857
+				}
2858
+
2859
+				$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>';
2860
+				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
2861
+				$widget_slides++;
2862
+			}
2863
+		}
2864
+		?>
2865 2865
         <div class="flex-container" style="min-height:200px;">
2866 2866
             <div class="geodir-listing-flex-loader"><i class="fa fa-refresh fa-spin"></i></div>
2867 2867
             <div id="geodir_widget_slider" class="geodir_flexslider">
@@ -2874,10 +2874,10 @@  discard block
 block discarded – undo
2874 2874
             <?php } ?>
2875 2875
         </div>
2876 2876
         <?php
2877
-        $GLOBALS['post'] = $current_post;
2878
-        setup_postdata($current_post);
2879
-    }
2880
-    echo $after_widget;
2877
+		$GLOBALS['post'] = $current_post;
2878
+		setup_postdata($current_post);
2879
+	}
2880
+	echo $after_widget;
2881 2881
 }
2882 2882
 
2883 2883
 
@@ -2892,65 +2892,65 @@  discard block
 block discarded – undo
2892 2892
  */
2893 2893
 function geodir_loginwidget_output($args = '', $instance = '')
2894 2894
 {
2895
-    //print_r($args);
2896
-    //print_r($instance);
2897
-    // prints the widget
2898
-    extract($args, EXTR_SKIP);
2895
+	//print_r($args);
2896
+	//print_r($instance);
2897
+	// prints the widget
2898
+	extract($args, EXTR_SKIP);
2899 2899
 
2900
-    /** This filter is documented in geodirectory_widgets.php */
2901
-    $title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2900
+	/** This filter is documented in geodirectory_widgets.php */
2901
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2902 2902
 
2903
-    echo $before_widget;
2904
-    echo $before_title . $title . $after_title;
2903
+	echo $before_widget;
2904
+	echo $before_title . $title . $after_title;
2905 2905
 
2906
-    if (is_user_logged_in()) {
2907
-        global $current_user;
2906
+	if (is_user_logged_in()) {
2907
+		global $current_user;
2908 2908
 
2909
-        $author_link = get_author_posts_url($current_user->data->ID);
2910
-        $author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
2909
+		$author_link = get_author_posts_url($current_user->data->ID);
2910
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
2911 2911
 
2912
-        echo '<ul class="geodir-loginbox-list">';
2913
-        ob_start();
2914
-        ?>
2912
+		echo '<ul class="geodir-loginbox-list">';
2913
+		ob_start();
2914
+		?>
2915 2915
         <li><a class="signin"
2916 2916
                href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
2917 2917
         <?php
2918
-        $post_types = geodir_get_posttypes('object');
2919
-        $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
2920
-        $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2918
+		$post_types = geodir_get_posttypes('object');
2919
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
2920
+		$geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
2921 2921
 
2922
-        if (!empty($show_add_listing_post_types_main_nav)) {
2923
-            $addlisting_links = '';
2924
-            foreach ($post_types as $key => $postobj) {
2922
+		if (!empty($show_add_listing_post_types_main_nav)) {
2923
+			$addlisting_links = '';
2924
+			foreach ($post_types as $key => $postobj) {
2925 2925
 
2926
-                if (in_array($key, $show_add_listing_post_types_main_nav)) {
2926
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
2927 2927
 
2928
-                    if ($add_link = geodir_get_addlisting_link($key)) {
2928
+					if ($add_link = geodir_get_addlisting_link($key)) {
2929 2929
 
2930
-                        $name = $postobj->labels->name;
2930
+						$name = $postobj->labels->name;
2931 2931
 
2932
-                        $selected = '';
2933
-                        if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing'))
2934
-                            $selected = 'selected="selected"';
2932
+						$selected = '';
2933
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing'))
2934
+							$selected = 'selected="selected"';
2935 2935
 
2936
-                        /**
2937
-                         * Filter add listing link.
2938
-                         *
2939
-                         * @since 1.0.0
2940
-                         * @param string $add_link Add listing link.
2941
-                         * @param string $key Add listing array key.
2942
-                         * @param int $current_user->ID Current user ID.
2943
-                         */
2944
-                        $add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
2936
+						/**
2937
+						 * Filter add listing link.
2938
+						 *
2939
+						 * @since 1.0.0
2940
+						 * @param string $add_link Add listing link.
2941
+						 * @param string $key Add listing array key.
2942
+						 * @param int $current_user->ID Current user ID.
2943
+						 */
2944
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
2945 2945
 
2946
-                        $addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
2946
+						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
2947 2947
 
2948
-                    }
2949
-                }
2948
+					}
2949
+				}
2950 2950
 
2951
-            }
2951
+			}
2952 2952
 
2953
-            if ($addlisting_links != '') { ?>
2953
+			if ($addlisting_links != '') { ?>
2954 2954
 
2955 2955
                 <li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
2956 2956
                             option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
@@ -2959,42 +2959,42 @@  discard block
 block discarded – undo
2959 2959
                         <?php echo $addlisting_links; ?>
2960 2960
                     </select></li> <?php
2961 2961
 
2962
-            }
2963
-
2964
-        }
2965
-        // My Favourites in Dashboard
2966
-        $show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
2967
-        $user_favourite = geodir_user_favourite_listing_count();
2968
-
2969
-        if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
2970
-            $favourite_links = '';
2971
-
2972
-            foreach ($post_types as $key => $postobj) {
2973
-                if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
2974
-                    $name = $postobj->labels->name;
2975
-                    $post_type_link = geodir_getlink($author_link, array('stype' => $key, 'list' => 'favourite'), false);
2976
-
2977
-                    $selected = '';
2978
-
2979
-                    if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
2980
-                        $selected = 'selected="selected"';
2981
-                    }
2982
-                    /**
2983
-                     * Filter favorite listing link.
2984
-                     *
2985
-                     * @since 1.0.0
2986
-                     * @param string $post_type_link Favorite listing link.
2987
-                     * @param string $key Favorite listing array key.
2988
-                     * @param int $current_user->ID Current user ID.
2989
-                     */
2990
-                    $post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
2991
-
2992
-                    $favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
2993
-                }
2994
-            }
2995
-
2996
-            if ($favourite_links != '') {
2997
-                ?>
2962
+			}
2963
+
2964
+		}
2965
+		// My Favourites in Dashboard
2966
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
2967
+		$user_favourite = geodir_user_favourite_listing_count();
2968
+
2969
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
2970
+			$favourite_links = '';
2971
+
2972
+			foreach ($post_types as $key => $postobj) {
2973
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
2974
+					$name = $postobj->labels->name;
2975
+					$post_type_link = geodir_getlink($author_link, array('stype' => $key, 'list' => 'favourite'), false);
2976
+
2977
+					$selected = '';
2978
+
2979
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
2980
+						$selected = 'selected="selected"';
2981
+					}
2982
+					/**
2983
+					 * Filter favorite listing link.
2984
+					 *
2985
+					 * @since 1.0.0
2986
+					 * @param string $post_type_link Favorite listing link.
2987
+					 * @param string $key Favorite listing array key.
2988
+					 * @param int $current_user->ID Current user ID.
2989
+					 */
2990
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
2991
+
2992
+					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
2993
+				}
2994
+			}
2995
+
2996
+			if ($favourite_links != '') {
2997
+				?>
2998 2998
                 <li>
2999 2999
                     <select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3000 3000
                             option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
@@ -3004,42 +3004,42 @@  discard block
 block discarded – undo
3004 3004
                     </select>
3005 3005
                 </li>
3006 3006
             <?php
3007
-            }
3008
-        }
3009
-
3010
-
3011
-        $show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3012
-        $user_listing = geodir_user_post_listing_count();
3013
-
3014
-        if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3015
-            $listing_links = '';
3016
-
3017
-            foreach ($post_types as $key => $postobj) {
3018
-                if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3019
-                    $name = $postobj->labels->name;
3020
-                    $listing_link = geodir_getlink($author_link, array('stype' => $key), false);
3021
-
3022
-                    $selected = '';
3023
-                    if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3024
-                        $selected = 'selected="selected"';
3025
-                    }
3026
-
3027
-                    /**
3028
-                     * Filter my listing link.
3029
-                     *
3030
-                     * @since 1.0.0
3031
-                     * @param string $listing_link My listing link.
3032
-                     * @param string $key My listing array key.
3033
-                     * @param int $current_user->ID Current user ID.
3034
-                     */
3035
-                    $listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3036
-
3037
-                    $listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
3038
-                }
3039
-            }
3040
-
3041
-            if ($listing_links != '') {
3042
-                ?>
3007
+			}
3008
+		}
3009
+
3010
+
3011
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3012
+		$user_listing = geodir_user_post_listing_count();
3013
+
3014
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3015
+			$listing_links = '';
3016
+
3017
+			foreach ($post_types as $key => $postobj) {
3018
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3019
+					$name = $postobj->labels->name;
3020
+					$listing_link = geodir_getlink($author_link, array('stype' => $key), false);
3021
+
3022
+					$selected = '';
3023
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3024
+						$selected = 'selected="selected"';
3025
+					}
3026
+
3027
+					/**
3028
+					 * Filter my listing link.
3029
+					 *
3030
+					 * @since 1.0.0
3031
+					 * @param string $listing_link My listing link.
3032
+					 * @param string $key My listing array key.
3033
+					 * @param int $current_user->ID Current user ID.
3034
+					 */
3035
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3036
+
3037
+					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __(ucfirst($name), 'geodirectory') . '</option>';
3038
+				}
3039
+			}
3040
+
3041
+			if ($listing_links != '') {
3042
+				?>
3043 3043
                 <li>
3044 3044
                     <select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3045 3045
                             option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
@@ -3049,27 +3049,27 @@  discard block
 block discarded – undo
3049 3049
                     </select>
3050 3050
                 </li>
3051 3051
             <?php
3052
-            }
3053
-        }
3054
-
3055
-        $dashboard_link = ob_get_clean();
3056
-        /**
3057
-         * Filter dashboard links HTML.
3058
-         *
3059
-         * @since 1.0.0
3060
-         * @param string $dashboard_link Dashboard links HTML.
3061
-         */
3062
-        echo apply_filters('geodir_dashboard_links', $dashboard_link);
3063
-        echo '</ul>';
3064
-    } else {
3065
-        ?>
3052
+			}
3053
+		}
3054
+
3055
+		$dashboard_link = ob_get_clean();
3056
+		/**
3057
+		 * Filter dashboard links HTML.
3058
+		 *
3059
+		 * @since 1.0.0
3060
+		 * @param string $dashboard_link Dashboard links HTML.
3061
+		 */
3062
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3063
+		echo '</ul>';
3064
+	} else {
3065
+		?>
3066 3066
         <?php
3067
-        /**
3068
-         * Filter signup form action link.
3069
-         *
3070
-         * @since 1.0.0
3071
-         */
3072
-        ?>
3067
+		/**
3068
+		 * Filter signup form action link.
3069
+		 *
3070
+		 * @since 1.0.0
3071
+		 */
3072
+		?>
3073 3073
         <form name="loginform" class="loginform1"
3074 3074
               action="<?php echo geodir_login_url(); ?>"
3075 3075
               method="post">
@@ -3089,28 +3089,28 @@  discard block
 block discarded – undo
3089 3089
 
3090 3090
                 <p class="geodir-new-forgot-link">
3091 3091
                     <?php
3092
-                    /**
3093
-                     * Filter signup page register form link.
3094
-                     *
3095
-                     * @since 1.0.0
3096
-                     */
3097
-                    ?>
3092
+					/**
3093
+					 * Filter signup page register form link.
3094
+					 *
3095
+					 * @since 1.0.0
3096
+					 */
3097
+					?>
3098 3098
                     <a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3099 3099
                        class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3100 3100
 
3101 3101
                     <?php
3102
-                    /**
3103
-                     * Filter signup page forgot password form link.
3104
-                     *
3105
-                     * @since 1.0.0
3106
-                     */
3107
-                    ?>
3102
+					/**
3103
+					 * Filter signup page forgot password form link.
3104
+					 *
3105
+					 * @since 1.0.0
3106
+					 */
3107
+					?>
3108 3108
                     <a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3109 3109
                        class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3110 3110
         </form>
3111 3111
     <?php }
3112 3112
 
3113
-    echo $after_widget;
3113
+	echo $after_widget;
3114 3114
 }
3115 3115
 
3116 3116
 
@@ -3129,284 +3129,284 @@  discard block
 block discarded – undo
3129 3129
  * @param array|string $instance The settings for the particular instance of the widget.
3130 3130
  */
3131 3131
 function geodir_popular_postview_output($args = '', $instance = '') {
3132
-    global $gd_session;
3132
+	global $gd_session;
3133 3133
 	
3134
-    // prints the widget
3135
-    extract($args, EXTR_SKIP);
3136
-
3137
-    echo $before_widget;
3138
-
3139
-    /** This filter is documented in geodirectory_widgets.php */
3140
-    $title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3141
-    /**
3142
-     * Filter the widget post type.
3143
-     *
3144
-     * @since 1.0.0
3145
-     * @param string $instance['post_type'] Post type of listing.
3146
-     */
3147
-    $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3148
-    /**
3149
-     * Filter the widget's term.
3150
-     *
3151
-     * @since 1.0.0
3152
-     * @param string $instance['category'] Filter by term. Can be any valid term.
3153
-     */
3154
-    $category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3155
-    /**
3156
-     * Filter the widget listings limit.
3157
-     *
3158
-     * @since 1.0.0
3159
-     * @param string $instance['post_number'] Number of listings to display.
3160
-     */
3161
-    $post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3162
-    /**
3163
-     * Filter widget's "layout" type.
3164
-     *
3165
-     * @since 1.0.0
3166
-     * @param string $instance['layout'] Widget layout type.
3167
-     */
3168
-    $layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3169
-    /**
3170
-     * Filter widget's "add_location_filter" value.
3171
-     *
3172
-     * @since 1.0.0
3173
-     * @param string|bool $instance['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3174
-     */
3175
-    $add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3176
-    /**
3177
-     * Filter widget's listing width.
3178
-     *
3179
-     * @since 1.0.0
3180
-     * @param string $instance['listing_width'] Listing width.
3181
-     */
3182
-    $listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3183
-    /**
3184
-     * Filter widget's "list_sort" type.
3185
-     *
3186
-     * @since 1.0.0
3187
-     * @param string $instance['list_sort'] Listing sort by type.
3188
-     */
3189
-    $list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3190
-    $use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3191
-
3192
-    // set post type to current viewing post type
3193
-    if ($use_viewing_post_type) {
3194
-        $current_post_type = geodir_get_current_posttype();
3195
-        if ($current_post_type != '' && $current_post_type != $post_type) {
3196
-            $post_type = $current_post_type;
3197
-            $category = array(); // old post type category will not work for current changed post type
3198
-        }
3199
-    }
3200
-    // replace widget title dynamically
3201
-    $posttype_plural_label = __(get_post_type_plural_label($post_type), 'geodirectory');
3202
-    $posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3203
-
3204
-    $title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3205
-    $title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3206
-
3207
-    if (isset($instance['character_count'])) {
3208
-        /**
3209
-         * Filter the widget's excerpt character count.
3210
-         *
3211
-         * @since 1.0.0
3212
-         * @param int $instance['character_count'] Excerpt character count.
3213
-         */
3214
-        $character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3215
-    } else {
3216
-        $character_count = '';
3217
-    }
3218
-
3219
-    if (empty($title) || $title == 'All') {
3220
-        $title .= ' ' . __(get_post_type_plural_label($post_type), 'geodirectory');
3221
-    }
3222
-
3223
-    $location_url = array();
3224
-    $city = get_query_var('gd_city');
3225
-    if (!empty($city)) {
3226
-        $country = get_query_var('gd_country');
3227
-        $region = get_query_var('gd_region');
3228
-
3229
-        $geodir_show_location_url = get_option('geodir_show_location_url');
3230
-
3231
-        if ($geodir_show_location_url == 'all') {
3232
-            if ($country != '') {
3233
-                $location_url[] = $country;
3234
-            }
3235
-
3236
-            if ($region != '') {
3237
-                $location_url[] = $region;
3238
-            }
3239
-        } else if ($geodir_show_location_url == 'country_city') {
3240
-            if ($country != '') {
3241
-                $location_url[] = $country;
3242
-            }
3243
-        } else if ($geodir_show_location_url == 'region_city') {
3244
-            if ($region != '') {
3245
-                $location_url[] = $region;
3246
-            }
3247
-        }
3248
-
3249
-        $location_url[] = $city;
3250
-    }
3251
-
3252
-    $location_url = implode('/', $location_url);
3253
-    $skip_location = false;
3254
-    if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3255
-        $skip_location = true;
3256
-        $gd_session->un_set('gd_multi_location');
3257
-    }
3258
-
3259
-    if (get_option('permalink_structure')) {
3260
-        $viewall_url = get_post_type_archive_link($post_type);
3261
-    } else {
3262
-        $viewall_url = get_post_type_archive_link($post_type);
3263
-    }
3264
-
3265
-    if (!empty($category) && $category[0] != '0') {
3266
-        global $geodir_add_location_url;
3267
-
3268
-        $geodir_add_location_url = '0';
3269
-
3270
-        if ($add_location_filter != '0') {
3271
-            $geodir_add_location_url = '1';
3272
-        }
3273
-
3274
-        $viewall_url = get_term_link((int)$category[0], $post_type . 'category');
3275
-
3276
-        $geodir_add_location_url = NULL;
3277
-    }
3278
-    if ($skip_location) {
3279
-        $gd_session->set('gd_multi_location', 1);
3280
-    }
3281
-
3282
-    if(is_wp_error( $viewall_url  )){$viewall_url = '';}
3283
-
3284
-    $query_args = array(
3285
-        'posts_per_page' => $post_number,
3286
-        'is_geodir_loop' => true,
3287
-        'gd_location' => $add_location_filter ? true : false,
3288
-        'post_type' => $post_type,
3289
-        'order_by' => $list_sort
3290
-    );
3291
-
3292
-    if ($character_count) {
3293
-        $query_args['excerpt_length'] = $character_count;
3294
-    }
3295
-
3296
-    if (!empty($instance['show_featured_only'])) {
3297
-        $query_args['show_featured_only'] = 1;
3298
-    }
3299
-
3300
-    if (!empty($instance['show_special_only'])) {
3301
-        $query_args['show_special_only'] = 1;
3302
-    }
3303
-
3304
-    if (!empty($instance['with_pics_only'])) {
3305
-        $query_args['with_pics_only'] = 0;
3306
-        $query_args['featured_image_only'] = 1;
3307
-    }
3308
-
3309
-    if (!empty($instance['with_videos_only'])) {
3310
-        $query_args['with_videos_only'] = 1;
3311
-    }
3312
-    $with_no_results = !empty($instance['without_no_results']) ? false : true;
3313
-
3314
-    if (!empty($category) && $category[0] != '0') {
3315
-        $category_taxonomy = geodir_get_taxonomies($post_type);
3316
-
3317
-        ######### WPML #########
3318
-        if (function_exists('icl_object_id')) {
3319
-            $category = gd_lang_object_ids($category, $category_taxonomy[0]);
3320
-        }
3321
-        ######### WPML #########
3322
-
3323
-        $tax_query = array(
3324
-            'taxonomy' => $category_taxonomy[0],
3325
-            'field' => 'id',
3326
-            'terms' => $category
3327
-        );
3328
-
3329
-        $query_args['tax_query'] = array($tax_query);
3330
-    }
3331
-
3332
-    global $gridview_columns_widget, $geodir_is_widget_listing;
3333
-
3334
-    $widget_listings = geodir_get_widget_listings($query_args);
3335
-
3336
-    if (!empty($widget_listings) || $with_no_results) {
3337
-        ?>
3134
+	// prints the widget
3135
+	extract($args, EXTR_SKIP);
3136
+
3137
+	echo $before_widget;
3138
+
3139
+	/** This filter is documented in geodirectory_widgets.php */
3140
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3141
+	/**
3142
+	 * Filter the widget post type.
3143
+	 *
3144
+	 * @since 1.0.0
3145
+	 * @param string $instance['post_type'] Post type of listing.
3146
+	 */
3147
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3148
+	/**
3149
+	 * Filter the widget's term.
3150
+	 *
3151
+	 * @since 1.0.0
3152
+	 * @param string $instance['category'] Filter by term. Can be any valid term.
3153
+	 */
3154
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3155
+	/**
3156
+	 * Filter the widget listings limit.
3157
+	 *
3158
+	 * @since 1.0.0
3159
+	 * @param string $instance['post_number'] Number of listings to display.
3160
+	 */
3161
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3162
+	/**
3163
+	 * Filter widget's "layout" type.
3164
+	 *
3165
+	 * @since 1.0.0
3166
+	 * @param string $instance['layout'] Widget layout type.
3167
+	 */
3168
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3169
+	/**
3170
+	 * Filter widget's "add_location_filter" value.
3171
+	 *
3172
+	 * @since 1.0.0
3173
+	 * @param string|bool $instance['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3174
+	 */
3175
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3176
+	/**
3177
+	 * Filter widget's listing width.
3178
+	 *
3179
+	 * @since 1.0.0
3180
+	 * @param string $instance['listing_width'] Listing width.
3181
+	 */
3182
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3183
+	/**
3184
+	 * Filter widget's "list_sort" type.
3185
+	 *
3186
+	 * @since 1.0.0
3187
+	 * @param string $instance['list_sort'] Listing sort by type.
3188
+	 */
3189
+	$list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3190
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3191
+
3192
+	// set post type to current viewing post type
3193
+	if ($use_viewing_post_type) {
3194
+		$current_post_type = geodir_get_current_posttype();
3195
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3196
+			$post_type = $current_post_type;
3197
+			$category = array(); // old post type category will not work for current changed post type
3198
+		}
3199
+	}
3200
+	// replace widget title dynamically
3201
+	$posttype_plural_label = __(get_post_type_plural_label($post_type), 'geodirectory');
3202
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3203
+
3204
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3205
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3206
+
3207
+	if (isset($instance['character_count'])) {
3208
+		/**
3209
+		 * Filter the widget's excerpt character count.
3210
+		 *
3211
+		 * @since 1.0.0
3212
+		 * @param int $instance['character_count'] Excerpt character count.
3213
+		 */
3214
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3215
+	} else {
3216
+		$character_count = '';
3217
+	}
3218
+
3219
+	if (empty($title) || $title == 'All') {
3220
+		$title .= ' ' . __(get_post_type_plural_label($post_type), 'geodirectory');
3221
+	}
3222
+
3223
+	$location_url = array();
3224
+	$city = get_query_var('gd_city');
3225
+	if (!empty($city)) {
3226
+		$country = get_query_var('gd_country');
3227
+		$region = get_query_var('gd_region');
3228
+
3229
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3230
+
3231
+		if ($geodir_show_location_url == 'all') {
3232
+			if ($country != '') {
3233
+				$location_url[] = $country;
3234
+			}
3235
+
3236
+			if ($region != '') {
3237
+				$location_url[] = $region;
3238
+			}
3239
+		} else if ($geodir_show_location_url == 'country_city') {
3240
+			if ($country != '') {
3241
+				$location_url[] = $country;
3242
+			}
3243
+		} else if ($geodir_show_location_url == 'region_city') {
3244
+			if ($region != '') {
3245
+				$location_url[] = $region;
3246
+			}
3247
+		}
3248
+
3249
+		$location_url[] = $city;
3250
+	}
3251
+
3252
+	$location_url = implode('/', $location_url);
3253
+	$skip_location = false;
3254
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3255
+		$skip_location = true;
3256
+		$gd_session->un_set('gd_multi_location');
3257
+	}
3258
+
3259
+	if (get_option('permalink_structure')) {
3260
+		$viewall_url = get_post_type_archive_link($post_type);
3261
+	} else {
3262
+		$viewall_url = get_post_type_archive_link($post_type);
3263
+	}
3264
+
3265
+	if (!empty($category) && $category[0] != '0') {
3266
+		global $geodir_add_location_url;
3267
+
3268
+		$geodir_add_location_url = '0';
3269
+
3270
+		if ($add_location_filter != '0') {
3271
+			$geodir_add_location_url = '1';
3272
+		}
3273
+
3274
+		$viewall_url = get_term_link((int)$category[0], $post_type . 'category');
3275
+
3276
+		$geodir_add_location_url = NULL;
3277
+	}
3278
+	if ($skip_location) {
3279
+		$gd_session->set('gd_multi_location', 1);
3280
+	}
3281
+
3282
+	if(is_wp_error( $viewall_url  )){$viewall_url = '';}
3283
+
3284
+	$query_args = array(
3285
+		'posts_per_page' => $post_number,
3286
+		'is_geodir_loop' => true,
3287
+		'gd_location' => $add_location_filter ? true : false,
3288
+		'post_type' => $post_type,
3289
+		'order_by' => $list_sort
3290
+	);
3291
+
3292
+	if ($character_count) {
3293
+		$query_args['excerpt_length'] = $character_count;
3294
+	}
3295
+
3296
+	if (!empty($instance['show_featured_only'])) {
3297
+		$query_args['show_featured_only'] = 1;
3298
+	}
3299
+
3300
+	if (!empty($instance['show_special_only'])) {
3301
+		$query_args['show_special_only'] = 1;
3302
+	}
3303
+
3304
+	if (!empty($instance['with_pics_only'])) {
3305
+		$query_args['with_pics_only'] = 0;
3306
+		$query_args['featured_image_only'] = 1;
3307
+	}
3308
+
3309
+	if (!empty($instance['with_videos_only'])) {
3310
+		$query_args['with_videos_only'] = 1;
3311
+	}
3312
+	$with_no_results = !empty($instance['without_no_results']) ? false : true;
3313
+
3314
+	if (!empty($category) && $category[0] != '0') {
3315
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3316
+
3317
+		######### WPML #########
3318
+		if (function_exists('icl_object_id')) {
3319
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3320
+		}
3321
+		######### WPML #########
3322
+
3323
+		$tax_query = array(
3324
+			'taxonomy' => $category_taxonomy[0],
3325
+			'field' => 'id',
3326
+			'terms' => $category
3327
+		);
3328
+
3329
+		$query_args['tax_query'] = array($tax_query);
3330
+	}
3331
+
3332
+	global $gridview_columns_widget, $geodir_is_widget_listing;
3333
+
3334
+	$widget_listings = geodir_get_widget_listings($query_args);
3335
+
3336
+	if (!empty($widget_listings) || $with_no_results) {
3337
+		?>
3338 3338
         <div class="geodir_locations geodir_location_listing">
3339 3339
 
3340 3340
             <?php
3341
-            /**
3342
-             * Called before the div containing the title and view all link in popular post view widget.
3343
-             *
3344
-             * @since 1.0.0
3345
-             */
3346
-            do_action('geodir_before_view_all_link_in_widget'); ?>
3341
+			/**
3342
+			 * Called before the div containing the title and view all link in popular post view widget.
3343
+			 *
3344
+			 * @since 1.0.0
3345
+			 */
3346
+			do_action('geodir_before_view_all_link_in_widget'); ?>
3347 3347
             <div class="geodir_list_heading clearfix">
3348 3348
                 <?php echo $before_title . $title . $after_title; ?>
3349 3349
                 <a href="<?php echo $viewall_url; ?>"
3350 3350
                    class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3351 3351
             </div>
3352 3352
             <?php
3353
-            /**
3354
-             * Called after the div containing the title and view all link in popular post view widget.
3355
-             *
3356
-             * @since 1.0.0
3357
-             */
3358
-            do_action('geodir_after_view_all_link_in_widget'); ?>
3353
+			/**
3354
+			 * Called after the div containing the title and view all link in popular post view widget.
3355
+			 *
3356
+			 * @since 1.0.0
3357
+			 */
3358
+			do_action('geodir_after_view_all_link_in_widget'); ?>
3359 3359
             <?php
3360
-            if (strstr($layout, 'gridview')) {
3361
-                $listing_view_exp = explode('_', $layout);
3362
-                $gridview_columns_widget = $layout;
3363
-                $layout = $listing_view_exp[0];
3364
-            } else {
3365
-                $gridview_columns_widget = '';
3366
-            }
3367
-
3368
-            /**
3369
-             * Filter the widget listing listview template path.
3370
-             *
3371
-             * @since 1.0.0
3372
-             */
3373
-            $template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3374
-            if (!isset($character_count)) {
3375
-                /**
3376
-                 * Filter the widget's excerpt character count.
3377
-                 *
3378
-                 * @since 1.0.0
3379
-                 * @param int $instance['character_count'] Excerpt character count.
3380
-                 */
3381
-                $character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3382
-            }
3383
-
3384
-            global $post, $map_jason, $map_canvas_arr;
3385
-
3386
-            $current_post = $post;
3387
-            $current_map_jason = $map_jason;
3388
-            $current_map_canvas_arr = $map_canvas_arr;
3389
-            $geodir_is_widget_listing = true;
3390
-
3391
-            /**
3392
-             * Includes related listing listview template.
3393
-             *
3394
-             * @since 1.0.0
3395
-             */
3396
-            include($template);
3397
-
3398
-            $geodir_is_widget_listing = false;
3399
-
3400
-            $GLOBALS['post'] = $current_post;
3401
-            if (!empty($current_post))
3402
-                setup_postdata($current_post);
3403
-            $map_jason = $current_map_jason;
3404
-            $map_canvas_arr = $current_map_canvas_arr;
3405
-            ?>
3360
+			if (strstr($layout, 'gridview')) {
3361
+				$listing_view_exp = explode('_', $layout);
3362
+				$gridview_columns_widget = $layout;
3363
+				$layout = $listing_view_exp[0];
3364
+			} else {
3365
+				$gridview_columns_widget = '';
3366
+			}
3367
+
3368
+			/**
3369
+			 * Filter the widget listing listview template path.
3370
+			 *
3371
+			 * @since 1.0.0
3372
+			 */
3373
+			$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3374
+			if (!isset($character_count)) {
3375
+				/**
3376
+				 * Filter the widget's excerpt character count.
3377
+				 *
3378
+				 * @since 1.0.0
3379
+				 * @param int $instance['character_count'] Excerpt character count.
3380
+				 */
3381
+				$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3382
+			}
3383
+
3384
+			global $post, $map_jason, $map_canvas_arr;
3385
+
3386
+			$current_post = $post;
3387
+			$current_map_jason = $map_jason;
3388
+			$current_map_canvas_arr = $map_canvas_arr;
3389
+			$geodir_is_widget_listing = true;
3390
+
3391
+			/**
3392
+			 * Includes related listing listview template.
3393
+			 *
3394
+			 * @since 1.0.0
3395
+			 */
3396
+			include($template);
3397
+
3398
+			$geodir_is_widget_listing = false;
3399
+
3400
+			$GLOBALS['post'] = $current_post;
3401
+			if (!empty($current_post))
3402
+				setup_postdata($current_post);
3403
+			$map_jason = $current_map_jason;
3404
+			$map_canvas_arr = $current_map_canvas_arr;
3405
+			?>
3406 3406
         </div>
3407 3407
     <?php
3408
-    }
3409
-    echo $after_widget;
3408
+	}
3409
+	echo $after_widget;
3410 3410
 
3411 3411
 }
3412 3412
 
@@ -3429,26 +3429,26 @@  discard block
 block discarded – undo
3429 3429
  */
3430 3430
 function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type)
3431 3431
 {
3432
-    global $wpdb, $plugin_prefix;
3432
+	global $wpdb, $plugin_prefix;
3433 3433
 
3434
-    $detail_table = $plugin_prefix . $post_type . '_detail';
3434
+	$detail_table = $plugin_prefix . $post_type . '_detail';
3435 3435
 
3436
-    $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 . ")";
3436
+	$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 . ")";
3437 3437
 
3438
-    /**
3439
-     * Filter count review sql query.
3440
-     *
3441
-     * @since 1.5.1
3442
-     * @param string $sql Database sql query..
3443
-     * @param int $term_id The term ID.
3444
-     * @param int $taxonomy The taxonomy Id.
3445
-     * @param string $post_type The post type.
3446
-     */
3447
-    $sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3438
+	/**
3439
+	 * Filter count review sql query.
3440
+	 *
3441
+	 * @since 1.5.1
3442
+	 * @param string $sql Database sql query..
3443
+	 * @param int $term_id The term ID.
3444
+	 * @param int $taxonomy The taxonomy Id.
3445
+	 * @param string $post_type The post type.
3446
+	 */
3447
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3448 3448
 
3449
-    $count = $wpdb->get_var($sql);
3449
+	$count = $wpdb->get_var($sql);
3450 3450
 
3451
-    return $count;
3451
+	return $count;
3452 3452
 }
3453 3453
 
3454 3454
 /**
@@ -3464,90 +3464,90 @@  discard block
 block discarded – undo
3464 3464
  * @return array Term array data.
3465 3465
  */
3466 3466
 function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3467
-    /**
3468
-     * Filter review count option data.
3469
-     *
3470
-     * @since 1.0.0
3471
-     * @since 1.6.1 Added $post_ID param.
3472
-     * @param bool $force_update Force update option value?. Default.false.
3473
-     * @param int $post_ID The post id to update if any.
3474
-     */
3475
-    $option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update,$post_ID);
3476
-    if (!empty($option_data)) {
3477
-        return $option_data;
3478
-    }
3479
-
3480
-    $option_data = get_option('geodir_global_review_count');
3481
-
3482
-    if (!$option_data || $force_update) {
3483
-        if ((int)$post_ID > 0) { // Update reviews count for specific post categories only.
3484
-            global $gd_session;
3485
-            $term_array = (array)$option_data;
3486
-            $post_type = get_post_type($post_ID);
3487
-            $taxonomy = $post_type . 'category';
3488
-            $terms = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3489
-
3490
-            if (!empty($terms) && !is_wp_error($terms)) {
3491
-                foreach ($terms as $term_id) {
3492
-                    $count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3493
-                    $children = get_term_children($term_id, $taxonomy);
3494
-                    $term_array[$term_id] = $count;
3495
-                }
3496
-            }
3467
+	/**
3468
+	 * Filter review count option data.
3469
+	 *
3470
+	 * @since 1.0.0
3471
+	 * @since 1.6.1 Added $post_ID param.
3472
+	 * @param bool $force_update Force update option value?. Default.false.
3473
+	 * @param int $post_ID The post id to update if any.
3474
+	 */
3475
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update,$post_ID);
3476
+	if (!empty($option_data)) {
3477
+		return $option_data;
3478
+	}
3479
+
3480
+	$option_data = get_option('geodir_global_review_count');
3481
+
3482
+	if (!$option_data || $force_update) {
3483
+		if ((int)$post_ID > 0) { // Update reviews count for specific post categories only.
3484
+			global $gd_session;
3485
+			$term_array = (array)$option_data;
3486
+			$post_type = get_post_type($post_ID);
3487
+			$taxonomy = $post_type . 'category';
3488
+			$terms = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3489
+
3490
+			if (!empty($terms) && !is_wp_error($terms)) {
3491
+				foreach ($terms as $term_id) {
3492
+					$count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3493
+					$children = get_term_children($term_id, $taxonomy);
3494
+					$term_array[$term_id] = $count;
3495
+				}
3496
+			}
3497 3497
             
3498
-            $session_listing = $gd_session->get('listing');
3498
+			$session_listing = $gd_session->get('listing');
3499 3499
             
3500
-            $terms = array();
3501
-            if (isset($_POST['post_category'][$taxonomy])) {
3502
-                $terms = (array)$_POST['post_category'][$taxonomy];
3503
-            } else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
3504
-                $terms = (array)$session_listing['post_category'][$taxonomy];
3505
-            }
3500
+			$terms = array();
3501
+			if (isset($_POST['post_category'][$taxonomy])) {
3502
+				$terms = (array)$_POST['post_category'][$taxonomy];
3503
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
3504
+				$terms = (array)$session_listing['post_category'][$taxonomy];
3505
+			}
3506 3506
             
3507
-            if (!empty($terms)) {
3508
-                foreach ($terms as $term_id) {
3509
-                    if ($term_id > 0) {
3510
-                        $count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3511
-                        $children = get_term_children($term_id, $taxonomy);
3512
-                        $term_array[$term_id] = $count;
3513
-                    }
3514
-                }
3515
-            }
3516
-        } else { // Update reviews count for all post categories.
3517
-            $term_array = array();
3518
-            $post_types = geodir_get_posttypes();
3519
-            foreach ($post_types as $post_type) {
3520
-
3521
-                $taxonomy = geodir_get_taxonomies($post_type);
3522
-                $taxonomy = $taxonomy[0];
3523
-
3524
-                $args = array(
3525
-                    'hide_empty' => false
3526
-                );
3527
-
3528
-                $terms = get_terms($taxonomy, $args);
3529
-
3530
-                foreach ($terms as $term) {
3531
-                    $count = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
3532
-                    $children = get_term_children($term->term_id, $taxonomy);
3533
-                    /*if ( is_array( $children ) ) {
3507
+			if (!empty($terms)) {
3508
+				foreach ($terms as $term_id) {
3509
+					if ($term_id > 0) {
3510
+						$count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3511
+						$children = get_term_children($term_id, $taxonomy);
3512
+						$term_array[$term_id] = $count;
3513
+					}
3514
+				}
3515
+			}
3516
+		} else { // Update reviews count for all post categories.
3517
+			$term_array = array();
3518
+			$post_types = geodir_get_posttypes();
3519
+			foreach ($post_types as $post_type) {
3520
+
3521
+				$taxonomy = geodir_get_taxonomies($post_type);
3522
+				$taxonomy = $taxonomy[0];
3523
+
3524
+				$args = array(
3525
+					'hide_empty' => false
3526
+				);
3527
+
3528
+				$terms = get_terms($taxonomy, $args);
3529
+
3530
+				foreach ($terms as $term) {
3531
+					$count = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
3532
+					$children = get_term_children($term->term_id, $taxonomy);
3533
+					/*if ( is_array( $children ) ) {
3534 3534
                         foreach ( $children as $child_id ) {
3535 3535
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
3536 3536
                             $count = $count + $child_count;
3537 3537
                         }
3538 3538
                     }*/
3539
-                    $term_array[$term->term_id] = $count;
3540
-                }
3541
-            }
3542
-        }
3543
-
3544
-        update_option('geodir_global_review_count', $term_array);
3545
-        //clear cache
3546
-        wp_cache_delete('geodir_global_review_count');
3547
-        return $term_array;
3548
-    } else {
3549
-        return $option_data;
3550
-    }
3539
+					$term_array[$term->term_id] = $count;
3540
+				}
3541
+			}
3542
+		}
3543
+
3544
+		update_option('geodir_global_review_count', $term_array);
3545
+		//clear cache
3546
+		wp_cache_delete('geodir_global_review_count');
3547
+		return $term_array;
3548
+	} else {
3549
+		return $option_data;
3550
+	}
3551 3551
 }
3552 3552
 
3553 3553
 /**
@@ -3559,38 +3559,38 @@  discard block
 block discarded – undo
3559 3559
  * @return bool
3560 3560
  */
3561 3561
 function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
3562
-    if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
3563
-        return; // do not run if importing listings
3564
-    }
3562
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
3563
+		return; // do not run if importing listings
3564
+	}
3565 3565
     
3566
-    if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
3567
-        return;
3568
-    }
3569
-
3570
-    $post_ID = 0;
3571
-    if (!empty($post)) {
3572
-        if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
3573
-            return;
3574
-        }
3566
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
3567
+		return;
3568
+	}
3569
+
3570
+	$post_ID = 0;
3571
+	if (!empty($post)) {
3572
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
3573
+			return;
3574
+		}
3575 3575
         
3576
-        if ($new_status == 'auto-draft' && $old_status == 'new') {
3577
-            return;
3578
-        }
3576
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
3577
+			return;
3578
+		}
3579 3579
         
3580
-        if (!empty($post->ID)) {
3581
-            $post_ID = $post->ID;
3582
-        }
3583
-    }
3580
+		if (!empty($post->ID)) {
3581
+			$post_ID = $post->ID;
3582
+		}
3583
+	}
3584 3584
 
3585
-    if ($new_status != $old_status) {
3586
-        geodir_count_reviews_by_terms(true, $post_ID);
3587
-    }
3585
+	if ($new_status != $old_status) {
3586
+		geodir_count_reviews_by_terms(true, $post_ID);
3587
+	}
3588 3588
 
3589
-    return true;
3589
+	return true;
3590 3590
 }
3591 3591
 
3592 3592
 function geodir_term_review_count_force_update_single_post($post_id){
3593
-    geodir_count_reviews_by_terms(true, $post_id); 
3593
+	geodir_count_reviews_by_terms(true, $post_id); 
3594 3594
 }
3595 3595
 
3596 3596
 /*-----------------------------------------------------------------------------------*/
@@ -3608,15 +3608,15 @@  discard block
 block discarded – undo
3608 3608
 function geodir_count_posts_by_term($data, $term)
3609 3609
 {
3610 3610
 
3611
-    if ($data) {
3612
-        if (isset($data[$term->term_id])) {
3613
-            return $data[$term->term_id];
3614
-        } else {
3615
-            return 0;
3616
-        }
3617
-    } else {
3618
-        return $term->count;
3619
-    }
3611
+	if ($data) {
3612
+		if (isset($data[$term->term_id])) {
3613
+			return $data[$term->term_id];
3614
+		} else {
3615
+			return 0;
3616
+		}
3617
+	} else {
3618
+		return $term->count;
3619
+	}
3620 3620
 }
3621 3621
 
3622 3622
 /**
@@ -3629,8 +3629,8 @@  discard block
 block discarded – undo
3629 3629
  */
3630 3630
 function geodir_sort_terms_by_count($terms)
3631 3631
 {
3632
-    usort($terms, "geodir_sort_by_count_obj");
3633
-    return $terms;
3632
+	usort($terms, "geodir_sort_by_count_obj");
3633
+	return $terms;
3634 3634
 }
3635 3635
 
3636 3636
 /**
@@ -3643,8 +3643,8 @@  discard block
 block discarded – undo
3643 3643
  */
3644 3644
 function geodir_sort_terms_by_review_count($terms)
3645 3645
 {
3646
-    usort($terms, "geodir_sort_by_review_count_obj");
3647
-    return $terms;
3646
+	usort($terms, "geodir_sort_by_review_count_obj");
3647
+	return $terms;
3648 3648
 }
3649 3649
 
3650 3650
 /**
@@ -3658,12 +3658,12 @@  discard block
 block discarded – undo
3658 3658
  */
3659 3659
 function geodir_sort_terms($terms, $sort = 'count')
3660 3660
 {
3661
-    if ($sort == 'count') {
3662
-        return geodir_sort_terms_by_count($terms);
3663
-    }
3664
-    if ($sort == 'review_count') {
3665
-        return geodir_sort_terms_by_review_count($terms);
3666
-    }
3661
+	if ($sort == 'count') {
3662
+		return geodir_sort_terms_by_count($terms);
3663
+	}
3664
+	if ($sort == 'review_count') {
3665
+		return geodir_sort_terms_by_review_count($terms);
3666
+	}
3667 3667
 }
3668 3668
 
3669 3669
 /*-----------------------------------------------------------------------------------*/
@@ -3680,7 +3680,7 @@  discard block
 block discarded – undo
3680 3680
  */
3681 3681
 function geodir_sort_by_count($a, $b)
3682 3682
 {
3683
-    return $a['count'] < $b['count'];
3683
+	return $a['count'] < $b['count'];
3684 3684
 }
3685 3685
 
3686 3686
 /**
@@ -3694,7 +3694,7 @@  discard block
 block discarded – undo
3694 3694
  */
3695 3695
 function geodir_sort_by_count_obj($a, $b)
3696 3696
 {
3697
-    return $a->count < $b->count;
3697
+	return $a->count < $b->count;
3698 3698
 }
3699 3699
 
3700 3700
 /**
@@ -3708,7 +3708,7 @@  discard block
 block discarded – undo
3708 3708
  */
3709 3709
 function geodir_sort_by_review_count_obj($a, $b)
3710 3710
 {
3711
-    return $a->review_count < $b->review_count;
3711
+	return $a->review_count < $b->review_count;
3712 3712
 }
3713 3713
 
3714 3714
 /**
@@ -3718,43 +3718,43 @@  discard block
 block discarded – undo
3718 3718
  * @package GeoDirectory
3719 3719
  */
3720 3720
 function geodir_load_textdomain() {
3721
-    /**
3722
-     * Filter the plugin locale.
3723
-     *
3724
-     * @since 1.4.2
3725
-     * @package GeoDirectory
3726
-     */
3727
-    $locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
3728
-
3729
-    load_textdomain('geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo');
3730
-    load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))) . '/geodirectory-languages');
3731
-
3732
-    /**
3733
-     * Define language constants.
3734
-     *
3735
-     * @since 1.0.0
3736
-     */
3737
-    require_once(geodir_plugin_path() . '/language.php');
3738
-
3739
-    $language_file = geodir_plugin_path() . '/db-language.php';
3740
-
3741
-    // Load language string file if not created yet
3742
-    if (!file_exists($language_file)) {
3743
-        geodirectory_load_db_language();
3744
-    }
3745
-
3746
-    if (file_exists($language_file)) {
3747
-        /**
3748
-         * Language strings from database.
3749
-         *
3750
-         * @since 1.4.2
3751
-         */
3752
-        try {
3753
-            require_once($language_file);
3754
-        } catch(Exception $e) {
3755
-            error_log('Language Error: ' . $e->getMessage());
3756
-        }
3757
-    }
3721
+	/**
3722
+	 * Filter the plugin locale.
3723
+	 *
3724
+	 * @since 1.4.2
3725
+	 * @package GeoDirectory
3726
+	 */
3727
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
3728
+
3729
+	load_textdomain('geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo');
3730
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))) . '/geodirectory-languages');
3731
+
3732
+	/**
3733
+	 * Define language constants.
3734
+	 *
3735
+	 * @since 1.0.0
3736
+	 */
3737
+	require_once(geodir_plugin_path() . '/language.php');
3738
+
3739
+	$language_file = geodir_plugin_path() . '/db-language.php';
3740
+
3741
+	// Load language string file if not created yet
3742
+	if (!file_exists($language_file)) {
3743
+		geodirectory_load_db_language();
3744
+	}
3745
+
3746
+	if (file_exists($language_file)) {
3747
+		/**
3748
+		 * Language strings from database.
3749
+		 *
3750
+		 * @since 1.4.2
3751
+		 */
3752
+		try {
3753
+			require_once($language_file);
3754
+		} catch(Exception $e) {
3755
+			error_log('Language Error: ' . $e->getMessage());
3756
+		}
3757
+	}
3758 3758
 }
3759 3759
 
3760 3760
 /**
@@ -3768,66 +3768,66 @@  discard block
 block discarded – undo
3768 3768
  * @return bool True if file created otherwise false
3769 3769
  */
3770 3770
 function geodirectory_load_db_language() {
3771
-    global $wp_filesystem;
3772
-    if( empty( $wp_filesystem ) ) {
3773
-        require_once( ABSPATH .'/wp-admin/includes/file.php' );
3774
-        WP_Filesystem();
3775
-        global $wp_filesystem;
3776
-    }
3777
-
3778
-    $language_file = geodir_plugin_path() . '/db-language.php';
3779
-
3780
-    if(is_file($language_file) && !is_writable($language_file))
3781
-        return false; // Not possible to create.
3782
-
3783
-    if(!is_file($language_file) && !is_writable(dirname($language_file)))
3784
-        return false; // Not possible to create.
3785
-
3786
-    $contents_strings = array();
3787
-
3788
-    /**
3789
-     * Filter the language string from database to translate via po editor
3790
-     *
3791
-     * @since 1.4.2
3792
-     *
3793
-     * @param array $contents_strings Array of strings.
3794
-     */
3795
-    $contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
3796
-
3797
-    $contents_strings = array_unique($contents_strings);
3798
-
3799
-    $contents_head = array();
3800
-    $contents_head[] = "<?php";
3801
-    $contents_head[] = "/**";
3802
-    $contents_head[] = " * Translate language string stored in database. Ex: Custom Fields";
3803
-    $contents_head[] = " *";
3804
-    $contents_head[] = " * @package GeoDirectory";
3805
-    $contents_head[] = " * @since 1.4.2";
3806
-    $contents_head[] = " */";
3807
-    $contents_head[] = "";
3808
-    $contents_head[] = "// Language keys";
3809
-
3810
-    $contents_foot = array();
3811
-    $contents_foot[] = "";
3812
-    $contents_foot[] = "";
3813
-
3814
-    $contents = implode(PHP_EOL, $contents_head);
3815
-
3816
-    if (!empty($contents_strings)) {
3817
-        foreach ( $contents_strings as $string ) {
3818
-            if (is_scalar($string) && $string != '') {
3819
-                $string = str_replace("'", "\'", $string);
3820
-                $contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
3821
-            }
3822
-        }
3823
-    }
3824
-
3825
-    $contents .= implode(PHP_EOL, $contents_foot);
3826
-
3827
-    if($wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE))
3828
-        return false; // Failure; could not write file.
3829
-
3830
-    return true;
3771
+	global $wp_filesystem;
3772
+	if( empty( $wp_filesystem ) ) {
3773
+		require_once( ABSPATH .'/wp-admin/includes/file.php' );
3774
+		WP_Filesystem();
3775
+		global $wp_filesystem;
3776
+	}
3777
+
3778
+	$language_file = geodir_plugin_path() . '/db-language.php';
3779
+
3780
+	if(is_file($language_file) && !is_writable($language_file))
3781
+		return false; // Not possible to create.
3782
+
3783
+	if(!is_file($language_file) && !is_writable(dirname($language_file)))
3784
+		return false; // Not possible to create.
3785
+
3786
+	$contents_strings = array();
3787
+
3788
+	/**
3789
+	 * Filter the language string from database to translate via po editor
3790
+	 *
3791
+	 * @since 1.4.2
3792
+	 *
3793
+	 * @param array $contents_strings Array of strings.
3794
+	 */
3795
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
3796
+
3797
+	$contents_strings = array_unique($contents_strings);
3798
+
3799
+	$contents_head = array();
3800
+	$contents_head[] = "<?php";
3801
+	$contents_head[] = "/**";
3802
+	$contents_head[] = " * Translate language string stored in database. Ex: Custom Fields";
3803
+	$contents_head[] = " *";
3804
+	$contents_head[] = " * @package GeoDirectory";
3805
+	$contents_head[] = " * @since 1.4.2";
3806
+	$contents_head[] = " */";
3807
+	$contents_head[] = "";
3808
+	$contents_head[] = "// Language keys";
3809
+
3810
+	$contents_foot = array();
3811
+	$contents_foot[] = "";
3812
+	$contents_foot[] = "";
3813
+
3814
+	$contents = implode(PHP_EOL, $contents_head);
3815
+
3816
+	if (!empty($contents_strings)) {
3817
+		foreach ( $contents_strings as $string ) {
3818
+			if (is_scalar($string) && $string != '') {
3819
+				$string = str_replace("'", "\'", $string);
3820
+				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
3821
+			}
3822
+		}
3823
+	}
3824
+
3825
+	$contents .= implode(PHP_EOL, $contents_foot);
3826
+
3827
+	if($wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE))
3828
+		return false; // Failure; could not write file.
3829
+
3830
+	return true;
3831 3831
 }
3832 3832
 
3833 3833
 /**
@@ -3843,31 +3843,31 @@  discard block
 block discarded – undo
3843 3843
  * @return array Translation texts.
3844 3844
  */
3845 3845
 function geodir_load_custom_field_translation($translation_texts = array()) {
3846
-    global $wpdb;
3846
+	global $wpdb;
3847 3847
 
3848
-    // Custom fields table
3849
-    $sql = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
3850
-    $rows = $wpdb->get_results($sql);
3848
+	// Custom fields table
3849
+	$sql = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
3850
+	$rows = $wpdb->get_results($sql);
3851 3851
 
3852
-    if (!empty($rows)) {
3853
-        foreach($rows as $row) {
3854
-            if (!empty($row->admin_title))
3855
-                $translation_texts[] = stripslashes_deep($row->admin_title);
3852
+	if (!empty($rows)) {
3853
+		foreach($rows as $row) {
3854
+			if (!empty($row->admin_title))
3855
+				$translation_texts[] = stripslashes_deep($row->admin_title);
3856 3856
 			
3857
-            if (!empty($row->admin_desc))
3858
-                $translation_texts[] = stripslashes_deep($row->admin_desc);
3857
+			if (!empty($row->admin_desc))
3858
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
3859 3859
 
3860
-            if (!empty($row->site_title))
3861
-                $translation_texts[] = stripslashes_deep($row->site_title);
3860
+			if (!empty($row->site_title))
3861
+				$translation_texts[] = stripslashes_deep($row->site_title);
3862 3862
 
3863
-            if (!empty($row->clabels))
3864
-                $translation_texts[] = stripslashes_deep($row->clabels);
3863
+			if (!empty($row->clabels))
3864
+				$translation_texts[] = stripslashes_deep($row->clabels);
3865 3865
 
3866
-            if (!empty($row->required_msg))
3867
-                $translation_texts[] = stripslashes_deep($row->required_msg);
3866
+			if (!empty($row->required_msg))
3867
+				$translation_texts[] = stripslashes_deep($row->required_msg);
3868 3868
 			
3869 3869
 			if (!empty($row->default_value))
3870
-                $translation_texts[] = stripslashes_deep($row->default_value);
3870
+				$translation_texts[] = stripslashes_deep($row->default_value);
3871 3871
 			
3872 3872
 			if (!empty($row->option_values)) {
3873 3873
 				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
@@ -3880,25 +3880,25 @@  discard block
 block discarded – undo
3880 3880
 					}
3881 3881
 				}
3882 3882
 			}
3883
-        }
3884
-    }
3883
+		}
3884
+	}
3885 3885
 	
3886
-    // Custom sorting fields table
3887
-    $sql = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
3888
-    $rows = $wpdb->get_results($sql);
3889
-
3890
-    if (!empty($rows)) {
3891
-        foreach($rows as $row) {
3892
-            if (!empty($row->site_title))
3893
-                $translation_texts[] = stripslashes_deep($row->site_title);
3894
-
3895
-            if (!empty($row->asc_title))
3896
-                $translation_texts[] = stripslashes_deep($row->asc_title);
3897
-
3898
-            if (!empty($row->desc_title))
3899
-                $translation_texts[] = stripslashes_deep($row->desc_title);
3900
-        }
3901
-    }
3886
+	// Custom sorting fields table
3887
+	$sql = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
3888
+	$rows = $wpdb->get_results($sql);
3889
+
3890
+	if (!empty($rows)) {
3891
+		foreach($rows as $row) {
3892
+			if (!empty($row->site_title))
3893
+				$translation_texts[] = stripslashes_deep($row->site_title);
3894
+
3895
+			if (!empty($row->asc_title))
3896
+				$translation_texts[] = stripslashes_deep($row->asc_title);
3897
+
3898
+			if (!empty($row->desc_title))
3899
+				$translation_texts[] = stripslashes_deep($row->desc_title);
3900
+		}
3901
+	}
3902 3902
 	
3903 3903
 	// Advance search filter fields table
3904 3904
 	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
@@ -3919,9 +3919,9 @@  discard block
 block discarded – undo
3919 3919
 		}
3920 3920
 	}
3921 3921
 
3922
-    $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
3922
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
3923 3923
 
3924
-    return $translation_texts;
3924
+	return $translation_texts;
3925 3925
 }
3926 3926
 
3927 3927
 /**
@@ -3933,71 +3933,71 @@  discard block
 block discarded – undo
3933 3933
  * @return array Array of mime types.
3934 3934
  */
3935 3935
 function geodir_allowed_mime_types() {
3936
-    /**
3937
-     * Filter the list of mime types and file extensions allowed for file upload.
3938
-     *
3939
-     * @since 1.4.7
3940
-     * @package GeoDirectory
3941
-     *
3942
-     * @param array $geodir_allowed_mime_types and file extensions.
3943
-     */
3944
-    return apply_filters( 'geodir_allowed_mime_types', array(
3945
-            'Image' => array( // Image formats.
3946
-                'jpg' => 'image/jpeg',
3947
-                'jpe' => 'image/jpeg',
3948
-                'jpeg' => 'image/jpeg',
3949
-                'gif' => 'image/gif',
3950
-                'png' => 'image/png',
3951
-                'bmp' => 'image/bmp',
3952
-                'ico' => 'image/x-icon',
3953
-            ),
3954
-            'Video' => array( // Video formats.
3955
-                'asf' => 'video/x-ms-asf',
3956
-                'avi' => 'video/avi',
3957
-                'flv' => 'video/x-flv',
3958
-                'mkv' => 'video/x-matroska',
3959
-                'mp4' => 'video/mp4',
3960
-                'mpeg' => 'video/mpeg',
3961
-                'mpg' => 'video/mpeg',
3962
-                'wmv' => 'video/x-ms-wmv',
3963
-                '3gp' => 'video/3gpp',
3964
-            ),
3965
-            'Audio' => array( // Audio formats.
3966
-                'ogg' => 'audio/ogg',
3967
-                'mp3' => 'audio/mpeg',
3968
-                'wav' => 'audio/wav',
3969
-                'wma' => 'audio/x-ms-wma',
3970
-            ),
3971
-            'Text' => array( // Text formats.
3972
-                'css' => 'text/css',
3973
-                'csv' => 'text/csv',
3974
-                'htm' => 'text/html',
3975
-                'html' => 'text/html',
3976
-                'txt' => 'text/plain',
3977
-                'rtx' => 'text/richtext',
3978
-                'vtt' => 'text/vtt',
3979
-            ),
3980
-            'Application' => array( // Application formats.
3981
-                'doc' => 'application/msword',
3982
-                'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
3983
-                'exe' => 'application/x-msdownload',
3984
-                'js' => 'application/javascript',
3985
-                'odt' => 'application/vnd.oasis.opendocument.text',
3986
-                'pdf' => 'application/pdf',
3987
-                'pot' => 'application/vnd.ms-powerpoint',
3988
-                'ppt' => 'application/vnd.ms-powerpoint',
3989
-                'pptx' => 'application/vnd.ms-powerpoint',
3990
-                'psd' => 'application/octet-stream',
3991
-                'rar' => 'application/rar',
3992
-                'rtf' => 'application/rtf',
3993
-                'swf' => 'application/x-shockwave-flash',
3994
-                'tar' => 'application/x-tar',
3995
-                'xls' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
3996
-                'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
3997
-                'zip' => 'application/zip',
3998
-            )
3999
-        )
4000
-    );
3936
+	/**
3937
+	 * Filter the list of mime types and file extensions allowed for file upload.
3938
+	 *
3939
+	 * @since 1.4.7
3940
+	 * @package GeoDirectory
3941
+	 *
3942
+	 * @param array $geodir_allowed_mime_types and file extensions.
3943
+	 */
3944
+	return apply_filters( 'geodir_allowed_mime_types', array(
3945
+			'Image' => array( // Image formats.
3946
+				'jpg' => 'image/jpeg',
3947
+				'jpe' => 'image/jpeg',
3948
+				'jpeg' => 'image/jpeg',
3949
+				'gif' => 'image/gif',
3950
+				'png' => 'image/png',
3951
+				'bmp' => 'image/bmp',
3952
+				'ico' => 'image/x-icon',
3953
+			),
3954
+			'Video' => array( // Video formats.
3955
+				'asf' => 'video/x-ms-asf',
3956
+				'avi' => 'video/avi',
3957
+				'flv' => 'video/x-flv',
3958
+				'mkv' => 'video/x-matroska',
3959
+				'mp4' => 'video/mp4',
3960
+				'mpeg' => 'video/mpeg',
3961
+				'mpg' => 'video/mpeg',
3962
+				'wmv' => 'video/x-ms-wmv',
3963
+				'3gp' => 'video/3gpp',
3964
+			),
3965
+			'Audio' => array( // Audio formats.
3966
+				'ogg' => 'audio/ogg',
3967
+				'mp3' => 'audio/mpeg',
3968
+				'wav' => 'audio/wav',
3969
+				'wma' => 'audio/x-ms-wma',
3970
+			),
3971
+			'Text' => array( // Text formats.
3972
+				'css' => 'text/css',
3973
+				'csv' => 'text/csv',
3974
+				'htm' => 'text/html',
3975
+				'html' => 'text/html',
3976
+				'txt' => 'text/plain',
3977
+				'rtx' => 'text/richtext',
3978
+				'vtt' => 'text/vtt',
3979
+			),
3980
+			'Application' => array( // Application formats.
3981
+				'doc' => 'application/msword',
3982
+				'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
3983
+				'exe' => 'application/x-msdownload',
3984
+				'js' => 'application/javascript',
3985
+				'odt' => 'application/vnd.oasis.opendocument.text',
3986
+				'pdf' => 'application/pdf',
3987
+				'pot' => 'application/vnd.ms-powerpoint',
3988
+				'ppt' => 'application/vnd.ms-powerpoint',
3989
+				'pptx' => 'application/vnd.ms-powerpoint',
3990
+				'psd' => 'application/octet-stream',
3991
+				'rar' => 'application/rar',
3992
+				'rtf' => 'application/rtf',
3993
+				'swf' => 'application/x-shockwave-flash',
3994
+				'tar' => 'application/x-tar',
3995
+				'xls' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
3996
+				'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
3997
+				'zip' => 'application/zip',
3998
+			)
3999
+		)
4000
+	);
4001 4001
 }
4002 4002
 
4003 4003
 /**
@@ -4009,21 +4009,21 @@  discard block
 block discarded – undo
4009 4009
  * @return string User display name.
4010 4010
  */
4011 4011
 function geodir_get_client_name($user_id) {
4012
-    $client_name = '';
4012
+	$client_name = '';
4013 4013
 
4014
-    $user_data = get_userdata($user_id);
4014
+	$user_data = get_userdata($user_id);
4015 4015
 
4016
-    if (!empty($user_data)) {
4017
-        if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4018
-            $client_name = trim($user_data->display_name);
4019
-        } else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4020
-            $client_name = trim($user_data->user_nicename);
4021
-        } else {
4022
-            $client_name = trim($user_data->user_login);
4023
-        }
4024
-    }
4016
+	if (!empty($user_data)) {
4017
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4018
+			$client_name = trim($user_data->display_name);
4019
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4020
+			$client_name = trim($user_data->user_nicename);
4021
+		} else {
4022
+			$client_name = trim($user_data->user_login);
4023
+		}
4024
+	}
4025 4025
 
4026
-    return $client_name;
4026
+	return $client_name;
4027 4027
 }
4028 4028
 
4029 4029
 
@@ -4038,125 +4038,125 @@  discard block
 block discarded – undo
4038 4038
  */
4039 4039
 function geodir_wpseo_replacements($vars){
4040 4040
 
4041
-    global $wp;
4042
-    $title = '';
4043
-    // location variables
4044
-    $gd_post_type = geodir_get_current_posttype();
4045
-    $location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4046
-    /**
4047
-     * Filter the title variables location variables array
4048
-     *
4049
-     * @since 1.5.5
4050
-     * @package GeoDirectory
4051
-     * @param array $location_array The array of location variables.
4052
-     * @param array $vars The page title variables.
4053
-     */
4054
-    $location_array = apply_filters('geodir_filter_title_variables_location_arr_seo',$location_array, $vars);
4055
-    $location_titles = array();
4056
-    if(get_query_var( 'gd_country_full' )){
4057
-        if(get_query_var( 'gd_country_full' )){$location_array['gd_country'] = get_query_var( 'gd_country_full' );}
4058
-        if(get_query_var( 'gd_region_full' )){$location_array['gd_region'] = get_query_var( 'gd_region_full' );}
4059
-        if(get_query_var( 'gd_city_full' )){$location_array['gd_city'] = get_query_var( 'gd_city_full' );}
4060
-    }
4061
-    $location_single = '';
4062
-    $gd_country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
4063
-    $gd_region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
4064
-    $gd_city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
4065
-
4066
-    $gd_country_actual = $gd_region_actual = $gd_city_actual = '';
4067
-
4068
-    if (function_exists('get_actual_location_name')) {
4069
-        $gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
4070
-        $gd_region_actual = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
4071
-        $gd_city_actual = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
4072
-    }
4073
-
4074
-    if ($gd_city != '') {
4075
-        if ($gd_city_actual != '') {
4076
-            $gd_city = $gd_city_actual;
4077
-        } else {
4078
-            $gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
4079
-            $gd_city = preg_replace('/[_-]/', ' ', $gd_city);
4080
-            $gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
4081
-        }
4082
-        $location_single = $gd_city;
4083
-
4084
-    } else if ($gd_region != '') {
4085
-        if ($gd_region_actual != '') {
4086
-            $gd_region = $gd_region_actual;
4087
-        } else {
4088
-            $gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
4089
-            $gd_region = preg_replace('/[_-]/', ' ', $gd_region);
4090
-            $gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
4091
-        }
4092
-
4093
-        $location_single = $gd_region;
4094
-    } else if ($gd_country != '') {
4095
-        if ($gd_country_actual != '') {
4096
-            $gd_country = $gd_country_actual;
4097
-        } else {
4098
-            $gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
4099
-            $gd_country = preg_replace('/[_-]/', ' ', $gd_country);
4100
-            $gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
4101
-        }
4102
-
4103
-        $location_single = $gd_country;
4104
-    }
4105
-
4106
-    if (!empty($location_array)) {
4107
-
4108
-        $actual_location_name = function_exists('get_actual_location_name') ? true : false;
4109
-        $location_array = array_reverse($location_array);
4110
-
4111
-        foreach ($location_array as $location_type => $location) {
4112
-            $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location);
4113
-            $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
4114
-
4115
-            $location_name = geodir_ucwords($gd_location_link_text);
4116
-            $location_name = __($location_name, 'geodirectory');
4117
-
4118
-            if ($actual_location_name) {
4119
-                $location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type;
4120
-                $location_name = get_actual_location_name($location_type, $location, true);
4121
-            }
4122
-
4123
-            $location_titles[] = $location_name;
4124
-        }
4125
-        if (!empty($location_titles)) {
4126
-            $location_titles = array_unique($location_titles);
4127
-        }
4128
-    }
4129
-
4130
-
4131
-    if(!empty($location_titles)) {
4132
-        $vars['%%location%%'] = implode(", ", $location_titles);
4133
-    }
4134
-
4135
-
4136
-    if(!empty($location_titles)) {
4137
-        $vars['%%in_location%%'] = __('in ', 'geodirectory') . implode(", ", $location_titles);
4138
-    }
4139
-
4140
-
4141
-
4142
-    if($location_single) {
4143
-        $vars['%%in_location_single%%'] = __('in', 'geodirectory') . ' ' .$location_single;
4144
-    }
4145
-
4146
-
4147
-    if($location_single) {
4148
-        $vars['%%location_single%%'] = $location_single;
4149
-    }
4150
-
4151
-    /**
4152
-     * Filter the title variables after standard ones have been filtered for wpseo.
4153
-     *
4154
-     * @since 1.5.7
4155
-     * @package GeoDirectory
4156
-     * @param string $vars The title with variables.
4157
-     * @param array $location_array The array of location variables.
4158
-     */
4159
-    return apply_filters('geodir_wpseo_replacements_vars',$vars,$location_array);
4041
+	global $wp;
4042
+	$title = '';
4043
+	// location variables
4044
+	$gd_post_type = geodir_get_current_posttype();
4045
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4046
+	/**
4047
+	 * Filter the title variables location variables array
4048
+	 *
4049
+	 * @since 1.5.5
4050
+	 * @package GeoDirectory
4051
+	 * @param array $location_array The array of location variables.
4052
+	 * @param array $vars The page title variables.
4053
+	 */
4054
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr_seo',$location_array, $vars);
4055
+	$location_titles = array();
4056
+	if(get_query_var( 'gd_country_full' )){
4057
+		if(get_query_var( 'gd_country_full' )){$location_array['gd_country'] = get_query_var( 'gd_country_full' );}
4058
+		if(get_query_var( 'gd_region_full' )){$location_array['gd_region'] = get_query_var( 'gd_region_full' );}
4059
+		if(get_query_var( 'gd_city_full' )){$location_array['gd_city'] = get_query_var( 'gd_city_full' );}
4060
+	}
4061
+	$location_single = '';
4062
+	$gd_country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
4063
+	$gd_region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
4064
+	$gd_city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
4065
+
4066
+	$gd_country_actual = $gd_region_actual = $gd_city_actual = '';
4067
+
4068
+	if (function_exists('get_actual_location_name')) {
4069
+		$gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
4070
+		$gd_region_actual = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
4071
+		$gd_city_actual = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
4072
+	}
4073
+
4074
+	if ($gd_city != '') {
4075
+		if ($gd_city_actual != '') {
4076
+			$gd_city = $gd_city_actual;
4077
+		} else {
4078
+			$gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
4079
+			$gd_city = preg_replace('/[_-]/', ' ', $gd_city);
4080
+			$gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
4081
+		}
4082
+		$location_single = $gd_city;
4083
+
4084
+	} else if ($gd_region != '') {
4085
+		if ($gd_region_actual != '') {
4086
+			$gd_region = $gd_region_actual;
4087
+		} else {
4088
+			$gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
4089
+			$gd_region = preg_replace('/[_-]/', ' ', $gd_region);
4090
+			$gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
4091
+		}
4092
+
4093
+		$location_single = $gd_region;
4094
+	} else if ($gd_country != '') {
4095
+		if ($gd_country_actual != '') {
4096
+			$gd_country = $gd_country_actual;
4097
+		} else {
4098
+			$gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
4099
+			$gd_country = preg_replace('/[_-]/', ' ', $gd_country);
4100
+			$gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
4101
+		}
4102
+
4103
+		$location_single = $gd_country;
4104
+	}
4105
+
4106
+	if (!empty($location_array)) {
4107
+
4108
+		$actual_location_name = function_exists('get_actual_location_name') ? true : false;
4109
+		$location_array = array_reverse($location_array);
4110
+
4111
+		foreach ($location_array as $location_type => $location) {
4112
+			$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location);
4113
+			$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
4114
+
4115
+			$location_name = geodir_ucwords($gd_location_link_text);
4116
+			$location_name = __($location_name, 'geodirectory');
4117
+
4118
+			if ($actual_location_name) {
4119
+				$location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type;
4120
+				$location_name = get_actual_location_name($location_type, $location, true);
4121
+			}
4122
+
4123
+			$location_titles[] = $location_name;
4124
+		}
4125
+		if (!empty($location_titles)) {
4126
+			$location_titles = array_unique($location_titles);
4127
+		}
4128
+	}
4129
+
4130
+
4131
+	if(!empty($location_titles)) {
4132
+		$vars['%%location%%'] = implode(", ", $location_titles);
4133
+	}
4134
+
4135
+
4136
+	if(!empty($location_titles)) {
4137
+		$vars['%%in_location%%'] = __('in ', 'geodirectory') . implode(", ", $location_titles);
4138
+	}
4139
+
4140
+
4141
+
4142
+	if($location_single) {
4143
+		$vars['%%in_location_single%%'] = __('in', 'geodirectory') . ' ' .$location_single;
4144
+	}
4145
+
4146
+
4147
+	if($location_single) {
4148
+		$vars['%%location_single%%'] = $location_single;
4149
+	}
4150
+
4151
+	/**
4152
+	 * Filter the title variables after standard ones have been filtered for wpseo.
4153
+	 *
4154
+	 * @since 1.5.7
4155
+	 * @package GeoDirectory
4156
+	 * @param string $vars The title with variables.
4157
+	 * @param array $location_array The array of location variables.
4158
+	 */
4159
+	return apply_filters('geodir_wpseo_replacements_vars',$vars,$location_array);
4160 4160
 }
4161 4161
 
4162 4162
 
@@ -4204,291 +4204,291 @@  discard block
 block discarded – undo
4204 4204
  * @return string Title after filtered variables.
4205 4205
  */
4206 4206
 function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4207
-    global $wp, $post;
4207
+	global $wp, $post;
4208 4208
 
4209
-    if (!$gd_page || !$title) {
4210
-        return $title; // if no a GD page then bail.
4211
-    }
4209
+	if (!$gd_page || !$title) {
4210
+		return $title; // if no a GD page then bail.
4211
+	}
4212 4212
     
4213
-    if ($sep == '') {
4214
-        /**
4215
-         * Filter the page title separator.
4216
-         *
4217
-         * @since 1.0.0
4218
-         * @package GeoDirectory
4219
-         * @param string $sep The separator, default: `|`.
4220
-         */
4221
-        $sep = apply_filters('geodir_page_title_separator', '|');
4222
-    }
4223
-
4224
-    if (strpos($title,'%%title%%') !== false) {
4225
-        $title = str_replace("%%title%%", $post->post_title, $title);
4226
-    }
4227
-
4228
-    if (strpos($title,'%%sitename%%') !== false) {
4229
-        $title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4230
-    }
4231
-
4232
-    if (strpos($title,'%%sitedesc%%') !== false) {
4233
-        $title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4234
-    }
4235
-
4236
-    if (strpos($title,'%%excerpt%%') !== false) {
4237
-        $title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4238
-    }
4213
+	if ($sep == '') {
4214
+		/**
4215
+		 * Filter the page title separator.
4216
+		 *
4217
+		 * @since 1.0.0
4218
+		 * @package GeoDirectory
4219
+		 * @param string $sep The separator, default: `|`.
4220
+		 */
4221
+		$sep = apply_filters('geodir_page_title_separator', '|');
4222
+	}
4223
+
4224
+	if (strpos($title,'%%title%%') !== false) {
4225
+		$title = str_replace("%%title%%", $post->post_title, $title);
4226
+	}
4227
+
4228
+	if (strpos($title,'%%sitename%%') !== false) {
4229
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4230
+	}
4231
+
4232
+	if (strpos($title,'%%sitedesc%%') !== false) {
4233
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4234
+	}
4235
+
4236
+	if (strpos($title,'%%excerpt%%') !== false) {
4237
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4238
+	}
4239 4239
     
4240
-    if ($gd_page == 'search' || $gd_page == 'author') {
4241
-        $post_type = sanitize_text_field($_REQUEST['stype']);
4242
-    } else if ($gd_page == 'add-listing') {
4243
-        $post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4244
-        $post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int)$_REQUEST['pid']) : $post_type;
4245
-    } else if (isset($post->post_type) && $post->post_type && in_array($post->post_type , geodir_get_posttypes())) {
4246
-        $post_type = $post->post_type;
4247
-    } else {
4248
-        $post_type = get_query_var('post_type');
4249
-    }
4240
+	if ($gd_page == 'search' || $gd_page == 'author') {
4241
+		$post_type = sanitize_text_field($_REQUEST['stype']);
4242
+	} else if ($gd_page == 'add-listing') {
4243
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4244
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int)$_REQUEST['pid']) : $post_type;
4245
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type , geodir_get_posttypes())) {
4246
+		$post_type = $post->post_type;
4247
+	} else {
4248
+		$post_type = get_query_var('post_type');
4249
+	}
4250 4250
     
4251
-    if (strpos($title, '%%pt_single%%') !== false) {        
4252
-        $singular_name = '';
4253
-        if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4254
-            $singular_name = __($singular_name, 'geodirectory');
4255
-        }
4251
+	if (strpos($title, '%%pt_single%%') !== false) {        
4252
+		$singular_name = '';
4253
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4254
+			$singular_name = __($singular_name, 'geodirectory');
4255
+		}
4256 4256
         
4257
-        $title = str_replace("%%pt_single%%", $singular_name, $title);
4258
-    }
4259
-
4260
-    if (strpos($title, '%%pt_plural%%') !== false) {        
4261
-        $plural_name = '';
4262
-        if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4263
-            $plural_name = __($plural_name, 'geodirectory');
4264
-        }
4257
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4258
+	}
4259
+
4260
+	if (strpos($title, '%%pt_plural%%') !== false) {        
4261
+		$plural_name = '';
4262
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4263
+			$plural_name = __($plural_name, 'geodirectory');
4264
+		}
4265 4265
         
4266
-        $title = str_replace("%%pt_plural%%", $plural_name, $title);
4267
-    }
4268
-
4269
-    if (strpos($title, '%%category%%') !== false) {
4270
-        $cat_name = '';
4271
-
4272
-        if ($gd_page=='detail') {
4273
-            if ($post->default_category) {
4274
-                $cat = get_term($post->default_category, $post->post_type . 'category');
4275
-                $cat_name = (isset($cat->name)) ? $cat->name : '';
4276
-            }
4277
-        } else if ($gd_page == 'listing') {
4278
-            $queried_object = get_queried_object();
4279
-            if (isset($queried_object->name)) {
4280
-                $cat_name = $queried_object->name;
4281
-            }
4282
-        }
4283
-        $title = str_replace("%%category%%", $cat_name, $title);
4284
-    }
4285
-
4286
-    if (strpos($title, '%%tag%%') !== false) {
4287
-        $cat_name = '';
4288
-
4289
-        if ($gd_page=='detail') {
4290
-            if ($post->default_category) {
4291
-                $cat = get_term($post->default_category, $post->post_type . 'category');
4292
-                $cat_name = (isset($cat->name)) ? $cat->name : '';
4293
-            }
4294
-        } else if($gd_page == 'listing') {
4295
-            $queried_object = get_queried_object();
4296
-            if (isset($queried_object->name)) {
4297
-                $cat_name = $queried_object->name;
4298
-            }
4299
-        }
4300
-        $title = str_replace("%%tag%%", $cat_name, $title);
4301
-    }
4302
-
4303
-    if (strpos($title, '%%id%%') !== false) {
4304
-        $ID = (isset($post->ID)) ? $post->ID : '';
4305
-        $title = str_replace("%%id%%", $ID, $title);
4306
-    }
4307
-
4308
-    if (strpos($title,'%%sep%%') !== false) {
4309
-        $title = str_replace("%%sep%%", $sep, $title);
4310
-    }
4311
-
4312
-    // location variables
4313
-    $gd_post_type = geodir_get_current_posttype();
4314
-    $location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4315
-    /**
4316
-     * Filter the title variables location variables array
4317
-     *
4318
-     * @since 1.5.5
4319
-     * @package GeoDirectory
4320
-     * @param array $location_array The array of location variables.
4321
-     * @param string $title The title with variables..
4322
-     * @param string $gd_page The page being filtered.
4323
-     * @param string $sep The separator, default: `|`.
4324
-     */
4325
-    $location_array = apply_filters('geodir_filter_title_variables_location_arr',$location_array,$title, $gd_page, $sep);
4326
-    $location_titles = array();
4327
-    if($gd_page=='location' && get_query_var( 'gd_country_full' )){
4328
-        if(get_query_var( 'gd_country_full' )){$location_array['gd_country'] = get_query_var( 'gd_country_full' );}
4329
-        if(get_query_var( 'gd_region_full' )){$location_array['gd_region'] = get_query_var( 'gd_region_full' );}
4330
-        if(get_query_var( 'gd_city_full' )){$location_array['gd_city'] = get_query_var( 'gd_city_full' );}
4331
-    }
4332
-    $location_single = '';
4333
-    $gd_country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
4334
-    $gd_region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
4335
-    $gd_city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
4336
-
4337
-    $gd_country_actual = $gd_region_actual = $gd_city_actual = '';
4338
-
4339
-    if (function_exists('get_actual_location_name')) {
4340
-        $gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
4341
-        $gd_region_actual = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
4342
-        $gd_city_actual = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
4343
-    }
4344
-
4345
-    if ($gd_city != '') {
4346
-        if ($gd_city_actual != '') {
4347
-            $gd_city = $gd_city_actual;
4348
-        } else {
4349
-            $gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
4350
-            $gd_city = preg_replace('/[_-]/', ' ', $gd_city);
4351
-            $gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
4352
-        }
4353
-        $location_single = $gd_city;
4354
-
4355
-    } else if ($gd_region != '') {
4356
-        if ($gd_region_actual != '') {
4357
-            $gd_region = $gd_region_actual;
4358
-        } else {
4359
-            $gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
4360
-            $gd_region = preg_replace('/[_-]/', ' ', $gd_region);
4361
-            $gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
4362
-        }
4363
-
4364
-        $location_single = $gd_region;
4365
-    } else if ($gd_country != '') {
4366
-        if ($gd_country_actual != '') {
4367
-            $gd_country = $gd_country_actual;
4368
-        } else {
4369
-            $gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
4370
-            $gd_country = preg_replace('/[_-]/', ' ', $gd_country);
4371
-            $gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
4372
-        }
4373
-
4374
-        $location_single = $gd_country;
4375
-    }
4376
-
4377
-    if (!empty($location_array)) {
4378
-
4379
-        $actual_location_name = function_exists('get_actual_location_name') ? true : false;
4380
-        $location_array = array_reverse($location_array);
4381
-
4382
-        foreach ($location_array as $location_type => $location) {
4383
-            $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location);
4384
-            $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
4385
-
4386
-            $location_name = geodir_ucwords($gd_location_link_text);
4387
-            $location_name = __($location_name, 'geodirectory');
4388
-
4389
-            if ($actual_location_name) {
4390
-                $location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type;
4391
-                $location_name = get_actual_location_name($location_type, $location, true);
4392
-            }
4393
-
4394
-            $location_titles[] = $location_name;
4395
-        }
4396
-        if (!empty($location_titles)) {
4397
-            $location_titles = array_unique($location_titles);
4398
-        }
4399
-    }
4400
-
4401
-
4402
-    if(strpos($title,'%%location%%') !== false){
4403
-        $location = '';
4404
-        if($location_titles) {
4405
-            $location = implode(", ", $location_titles);
4406
-        }
4407
-        $title = str_replace("%%location%%",$location,$title);
4408
-    }
4409
-
4410
-    if(strpos($title,'%%in_location%%') !== false){
4411
-        $location = '';
4412
-        if($location_titles) {
4413
-            $location = __('in ', 'geodirectory') . implode(", ", $location_titles);
4414
-        }
4415
-        $title = str_replace("%%in_location%%",$location,$title);
4416
-    }
4417
-
4418
-    if(strpos($title,'%%in_location_single%%') !== false){
4419
-        if($location_single) {
4420
-            $location_single = __('in', 'geodirectory') . ' ' .$location_single;
4421
-        }
4422
-        $title = str_replace("%%in_location_single%%",$location_single,$title);
4423
-    }
4424
-
4425
-    if(strpos($title,'%%location_single%%') !== false){
4426
-        $title = str_replace("%%location_single%%",$location_single,$title);
4427
-    }
4428
-
4429
-
4430
-    if(strpos($title,'%%search_term%%') !== false){
4431
-        $search_term = '';
4432
-        if(isset($_REQUEST['s'])){
4433
-            $search_term = esc_attr($_REQUEST['s']);
4434
-        }
4435
-        $title = str_replace("%%search_term%%",$search_term,$title);
4436
-    }
4437
-
4438
-    if(strpos($title,'%%search_near%%') !== false){
4439
-        $search_term = '';
4440
-        if(isset($_REQUEST['snear'])){
4441
-            $search_term = esc_attr($_REQUEST['snear']);
4442
-        }
4443
-        $title = str_replace("%%search_near%%",$search_term,$title);
4444
-    }
4445
-
4446
-    if(strpos($title,'%%name%%') !== false){
4447
-        if (is_author()) {
4448
-            $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4449
-            $author_name = $curauth->display_name;
4450
-        } else {
4451
-            $author_name = get_the_author();
4452
-        }
4453
-        if (!$author_name || $author_name === '') {
4454
-            $queried_object = get_queried_object();
4266
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4267
+	}
4268
+
4269
+	if (strpos($title, '%%category%%') !== false) {
4270
+		$cat_name = '';
4271
+
4272
+		if ($gd_page=='detail') {
4273
+			if ($post->default_category) {
4274
+				$cat = get_term($post->default_category, $post->post_type . 'category');
4275
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4276
+			}
4277
+		} else if ($gd_page == 'listing') {
4278
+			$queried_object = get_queried_object();
4279
+			if (isset($queried_object->name)) {
4280
+				$cat_name = $queried_object->name;
4281
+			}
4282
+		}
4283
+		$title = str_replace("%%category%%", $cat_name, $title);
4284
+	}
4285
+
4286
+	if (strpos($title, '%%tag%%') !== false) {
4287
+		$cat_name = '';
4288
+
4289
+		if ($gd_page=='detail') {
4290
+			if ($post->default_category) {
4291
+				$cat = get_term($post->default_category, $post->post_type . 'category');
4292
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4293
+			}
4294
+		} else if($gd_page == 'listing') {
4295
+			$queried_object = get_queried_object();
4296
+			if (isset($queried_object->name)) {
4297
+				$cat_name = $queried_object->name;
4298
+			}
4299
+		}
4300
+		$title = str_replace("%%tag%%", $cat_name, $title);
4301
+	}
4302
+
4303
+	if (strpos($title, '%%id%%') !== false) {
4304
+		$ID = (isset($post->ID)) ? $post->ID : '';
4305
+		$title = str_replace("%%id%%", $ID, $title);
4306
+	}
4307
+
4308
+	if (strpos($title,'%%sep%%') !== false) {
4309
+		$title = str_replace("%%sep%%", $sep, $title);
4310
+	}
4311
+
4312
+	// location variables
4313
+	$gd_post_type = geodir_get_current_posttype();
4314
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4315
+	/**
4316
+	 * Filter the title variables location variables array
4317
+	 *
4318
+	 * @since 1.5.5
4319
+	 * @package GeoDirectory
4320
+	 * @param array $location_array The array of location variables.
4321
+	 * @param string $title The title with variables..
4322
+	 * @param string $gd_page The page being filtered.
4323
+	 * @param string $sep The separator, default: `|`.
4324
+	 */
4325
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr',$location_array,$title, $gd_page, $sep);
4326
+	$location_titles = array();
4327
+	if($gd_page=='location' && get_query_var( 'gd_country_full' )){
4328
+		if(get_query_var( 'gd_country_full' )){$location_array['gd_country'] = get_query_var( 'gd_country_full' );}
4329
+		if(get_query_var( 'gd_region_full' )){$location_array['gd_region'] = get_query_var( 'gd_region_full' );}
4330
+		if(get_query_var( 'gd_city_full' )){$location_array['gd_city'] = get_query_var( 'gd_city_full' );}
4331
+	}
4332
+	$location_single = '';
4333
+	$gd_country = (isset($wp->query_vars['gd_country']) && $wp->query_vars['gd_country'] != '') ? $wp->query_vars['gd_country'] : '';
4334
+	$gd_region = (isset($wp->query_vars['gd_region']) && $wp->query_vars['gd_region'] != '') ? $wp->query_vars['gd_region'] : '';
4335
+	$gd_city = (isset($wp->query_vars['gd_city']) && $wp->query_vars['gd_city'] != '') ? $wp->query_vars['gd_city'] : '';
4336
+
4337
+	$gd_country_actual = $gd_region_actual = $gd_city_actual = '';
4338
+
4339
+	if (function_exists('get_actual_location_name')) {
4340
+		$gd_country_actual = $gd_country != '' ? get_actual_location_name('country', $gd_country, true) : $gd_country;
4341
+		$gd_region_actual = $gd_region != '' ? get_actual_location_name('region', $gd_region) : $gd_region;
4342
+		$gd_city_actual = $gd_city != '' ? get_actual_location_name('city', $gd_city) : $gd_city;
4343
+	}
4344
+
4345
+	if ($gd_city != '') {
4346
+		if ($gd_city_actual != '') {
4347
+			$gd_city = $gd_city_actual;
4348
+		} else {
4349
+			$gd_city = preg_replace('/-(\d+)$/', '', $gd_city);
4350
+			$gd_city = preg_replace('/[_-]/', ' ', $gd_city);
4351
+			$gd_city = __(geodir_ucwords($gd_city), 'geodirectory');
4352
+		}
4353
+		$location_single = $gd_city;
4354
+
4355
+	} else if ($gd_region != '') {
4356
+		if ($gd_region_actual != '') {
4357
+			$gd_region = $gd_region_actual;
4358
+		} else {
4359
+			$gd_region = preg_replace('/-(\d+)$/', '', $gd_region);
4360
+			$gd_region = preg_replace('/[_-]/', ' ', $gd_region);
4361
+			$gd_region = __(geodir_ucwords($gd_region), 'geodirectory');
4362
+		}
4363
+
4364
+		$location_single = $gd_region;
4365
+	} else if ($gd_country != '') {
4366
+		if ($gd_country_actual != '') {
4367
+			$gd_country = $gd_country_actual;
4368
+		} else {
4369
+			$gd_country = preg_replace('/-(\d+)$/', '', $gd_country);
4370
+			$gd_country = preg_replace('/[_-]/', ' ', $gd_country);
4371
+			$gd_country = __(geodir_ucwords($gd_country), 'geodirectory');
4372
+		}
4373
+
4374
+		$location_single = $gd_country;
4375
+	}
4376
+
4377
+	if (!empty($location_array)) {
4378
+
4379
+		$actual_location_name = function_exists('get_actual_location_name') ? true : false;
4380
+		$location_array = array_reverse($location_array);
4381
+
4382
+		foreach ($location_array as $location_type => $location) {
4383
+			$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location);
4384
+			$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
4385
+
4386
+			$location_name = geodir_ucwords($gd_location_link_text);
4387
+			$location_name = __($location_name, 'geodirectory');
4388
+
4389
+			if ($actual_location_name) {
4390
+				$location_type = strpos($location_type, 'gd_') === 0 ? substr($location_type, 3) : $location_type;
4391
+				$location_name = get_actual_location_name($location_type, $location, true);
4392
+			}
4393
+
4394
+			$location_titles[] = $location_name;
4395
+		}
4396
+		if (!empty($location_titles)) {
4397
+			$location_titles = array_unique($location_titles);
4398
+		}
4399
+	}
4400
+
4401
+
4402
+	if(strpos($title,'%%location%%') !== false){
4403
+		$location = '';
4404
+		if($location_titles) {
4405
+			$location = implode(", ", $location_titles);
4406
+		}
4407
+		$title = str_replace("%%location%%",$location,$title);
4408
+	}
4409
+
4410
+	if(strpos($title,'%%in_location%%') !== false){
4411
+		$location = '';
4412
+		if($location_titles) {
4413
+			$location = __('in ', 'geodirectory') . implode(", ", $location_titles);
4414
+		}
4415
+		$title = str_replace("%%in_location%%",$location,$title);
4416
+	}
4417
+
4418
+	if(strpos($title,'%%in_location_single%%') !== false){
4419
+		if($location_single) {
4420
+			$location_single = __('in', 'geodirectory') . ' ' .$location_single;
4421
+		}
4422
+		$title = str_replace("%%in_location_single%%",$location_single,$title);
4423
+	}
4424
+
4425
+	if(strpos($title,'%%location_single%%') !== false){
4426
+		$title = str_replace("%%location_single%%",$location_single,$title);
4427
+	}
4428
+
4429
+
4430
+	if(strpos($title,'%%search_term%%') !== false){
4431
+		$search_term = '';
4432
+		if(isset($_REQUEST['s'])){
4433
+			$search_term = esc_attr($_REQUEST['s']);
4434
+		}
4435
+		$title = str_replace("%%search_term%%",$search_term,$title);
4436
+	}
4437
+
4438
+	if(strpos($title,'%%search_near%%') !== false){
4439
+		$search_term = '';
4440
+		if(isset($_REQUEST['snear'])){
4441
+			$search_term = esc_attr($_REQUEST['snear']);
4442
+		}
4443
+		$title = str_replace("%%search_near%%",$search_term,$title);
4444
+	}
4445
+
4446
+	if(strpos($title,'%%name%%') !== false){
4447
+		if (is_author()) {
4448
+			$curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4449
+			$author_name = $curauth->display_name;
4450
+		} else {
4451
+			$author_name = get_the_author();
4452
+		}
4453
+		if (!$author_name || $author_name === '') {
4454
+			$queried_object = get_queried_object();
4455 4455
             
4456
-            if (isset($queried_object->data->user_nicename)) {
4457
-                $author_name = $queried_object->data->display_name;
4458
-            }
4459
-        }
4460
-        $title = str_replace("%%name%%", $author_name, $title);
4461
-    }
4456
+			if (isset($queried_object->data->user_nicename)) {
4457
+				$author_name = $queried_object->data->display_name;
4458
+			}
4459
+		}
4460
+		$title = str_replace("%%name%%", $author_name, $title);
4461
+	}
4462 4462
     
4463
-    if (strpos($title, '%%page%%') !== false) {
4464
-        $page = geodir_title_meta_page($sep);
4465
-        $title = str_replace("%%page%%", $page, $title);
4466
-    }
4467
-    if (strpos($title, '%%pagenumber%%') !== false) {
4468
-        $pagenumber = geodir_title_meta_pagenumber();
4469
-        $title = str_replace("%%pagenumber%%", $pagenumber, $title);
4470
-    }
4471
-    if (strpos($title, '%%pagetotal%%') !== false) {
4472
-        $pagetotal = geodir_title_meta_pagetotal();
4473
-        $title = str_replace("%%pagetotal%%", $pagetotal, $title);
4474
-    }
4475
-
4476
-    $title = wptexturize( $title );
4477
-    $title = convert_chars( $title );
4478
-    $title = esc_html( $title );
4479
-
4480
-    /**
4481
-     * Filter the title variables after standard ones have been filtered.
4482
-     *
4483
-     * @since 1.5.7
4484
-     * @package GeoDirectory
4485
-     * @param string $title The title with variables.
4486
-     * @param array $location_array The array of location variables.
4487
-     * @param string $gd_page The page being filtered.
4488
-     * @param string $sep The separator, default: `|`.
4489
-     */
4490
-
4491
-    return apply_filters('geodir_filter_title_variables_vars',$title,$location_array, $gd_page, $sep);
4463
+	if (strpos($title, '%%page%%') !== false) {
4464
+		$page = geodir_title_meta_page($sep);
4465
+		$title = str_replace("%%page%%", $page, $title);
4466
+	}
4467
+	if (strpos($title, '%%pagenumber%%') !== false) {
4468
+		$pagenumber = geodir_title_meta_pagenumber();
4469
+		$title = str_replace("%%pagenumber%%", $pagenumber, $title);
4470
+	}
4471
+	if (strpos($title, '%%pagetotal%%') !== false) {
4472
+		$pagetotal = geodir_title_meta_pagetotal();
4473
+		$title = str_replace("%%pagetotal%%", $pagetotal, $title);
4474
+	}
4475
+
4476
+	$title = wptexturize( $title );
4477
+	$title = convert_chars( $title );
4478
+	$title = esc_html( $title );
4479
+
4480
+	/**
4481
+	 * Filter the title variables after standard ones have been filtered.
4482
+	 *
4483
+	 * @since 1.5.7
4484
+	 * @package GeoDirectory
4485
+	 * @param string $title The title with variables.
4486
+	 * @param array $location_array The array of location variables.
4487
+	 * @param string $gd_page The page being filtered.
4488
+	 * @param string $sep The separator, default: `|`.
4489
+	 */
4490
+
4491
+	return apply_filters('geodir_filter_title_variables_vars',$title,$location_array, $gd_page, $sep);
4492 4492
 }
4493 4493
 
4494 4494
 /**
@@ -4501,65 +4501,65 @@  discard block
 block discarded – undo
4501 4501
  * @return array Translation texts.
4502 4502
  */
4503 4503
 function geodir_load_cpt_text_translation($translation_texts = array()) {
4504
-    $gd_post_types = geodir_get_posttypes('array');
4505
-
4506
-    if (!empty($gd_post_types)) {
4507
-        foreach ($gd_post_types as $post_type => $cpt_info) {
4508
-            $labels = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4509
-            $description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4510
-            $seo = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4511
-
4512
-            if (!empty($labels)) {
4513
-                if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts))
4514
-                    $translation_texts[] = $labels['name'];
4515
-                if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts))
4516
-                    $translation_texts[] = $labels['singular_name'];
4517
-                if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts))
4518
-                    $translation_texts[] = $labels['add_new'];
4519
-                if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts))
4520
-                    $translation_texts[] = $labels['add_new_item'];
4521
-                if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts))
4522
-                    $translation_texts[] = $labels['edit_item'];
4523
-                if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts))
4524
-                    $translation_texts[] = $labels['new_item'];
4525
-                if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts))
4526
-                    $translation_texts[] = $labels['view_item'];
4527
-                if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts))
4528
-                    $translation_texts[] = $labels['search_items'];
4529
-                if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts))
4530
-                    $translation_texts[] = $labels['not_found'];
4531
-                if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts))
4532
-                    $translation_texts[] = $labels['not_found_in_trash'];
4533
-                if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts))
4534
-                    $translation_texts[] = $labels['label_post_profile'];
4535
-                if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts))
4536
-                    $translation_texts[] = $labels['label_post_info'];
4537
-                if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts))
4538
-                    $translation_texts[] = $labels['label_post_images'];
4539
-                if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts))
4540
-                    $translation_texts[] = $labels['label_post_map'];
4541
-                if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts))
4542
-                    $translation_texts[] = $labels['label_reviews'];
4543
-                if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts))
4544
-                    $translation_texts[] = $labels['label_related_listing'];
4545
-            }
4546
-
4547
-            if ($description != '' && !in_array($description, $translation_texts)) {
4548
-                $translation_texts[] = normalize_whitespace($description);
4549
-            }
4550
-
4551
-            if (!empty($seo)) {
4552
-                if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts))
4553
-                    $translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4554
-
4555
-                if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts))
4556
-                    $translation_texts[] = normalize_whitespace($seo['meta_description']);
4557
-            }
4558
-        }
4559
-    }
4560
-    $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4561
-
4562
-    return $translation_texts;
4504
+	$gd_post_types = geodir_get_posttypes('array');
4505
+
4506
+	if (!empty($gd_post_types)) {
4507
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4508
+			$labels = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4509
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4510
+			$seo = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4511
+
4512
+			if (!empty($labels)) {
4513
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts))
4514
+					$translation_texts[] = $labels['name'];
4515
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts))
4516
+					$translation_texts[] = $labels['singular_name'];
4517
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts))
4518
+					$translation_texts[] = $labels['add_new'];
4519
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts))
4520
+					$translation_texts[] = $labels['add_new_item'];
4521
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts))
4522
+					$translation_texts[] = $labels['edit_item'];
4523
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts))
4524
+					$translation_texts[] = $labels['new_item'];
4525
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts))
4526
+					$translation_texts[] = $labels['view_item'];
4527
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts))
4528
+					$translation_texts[] = $labels['search_items'];
4529
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts))
4530
+					$translation_texts[] = $labels['not_found'];
4531
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts))
4532
+					$translation_texts[] = $labels['not_found_in_trash'];
4533
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts))
4534
+					$translation_texts[] = $labels['label_post_profile'];
4535
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts))
4536
+					$translation_texts[] = $labels['label_post_info'];
4537
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts))
4538
+					$translation_texts[] = $labels['label_post_images'];
4539
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts))
4540
+					$translation_texts[] = $labels['label_post_map'];
4541
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts))
4542
+					$translation_texts[] = $labels['label_reviews'];
4543
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts))
4544
+					$translation_texts[] = $labels['label_related_listing'];
4545
+			}
4546
+
4547
+			if ($description != '' && !in_array($description, $translation_texts)) {
4548
+				$translation_texts[] = normalize_whitespace($description);
4549
+			}
4550
+
4551
+			if (!empty($seo)) {
4552
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts))
4553
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4554
+
4555
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts))
4556
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4557
+			}
4558
+		}
4559
+	}
4560
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4561
+
4562
+	return $translation_texts;
4563 4563
 }
4564 4564
 
4565 4565
 /**
@@ -4572,27 +4572,27 @@  discard block
 block discarded – undo
4572 4572
  * @return array Location terms.
4573 4573
  */
4574 4574
 function geodir_remove_location_terms($location_terms = array()) {
4575
-    $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4576
-
4577
-    if (!empty($location_terms) && $location_manager) {
4578
-        $hide_country_part = get_option('geodir_location_hide_country_part');
4579
-        $hide_region_part = get_option('geodir_location_hide_region_part');
4580
-
4581
-        if ($hide_region_part && $hide_country_part) {
4582
-            if (isset($location_terms['gd_country']))
4583
-                unset($location_terms['gd_country']);
4584
-            if (isset($location_terms['gd_region']))
4585
-                unset($location_terms['gd_region']);
4586
-        } else if ($hide_region_part && !$hide_country_part) {
4587
-            if (isset($location_terms['gd_region']))
4588
-                unset($location_terms['gd_region']);
4589
-        } else if (!$hide_region_part && $hide_country_part) {
4590
-            if (isset($location_terms['gd_country']))
4591
-                unset($location_terms['gd_country']);
4592
-        }
4593
-    }
4594
-
4595
-    return $location_terms;
4575
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4576
+
4577
+	if (!empty($location_terms) && $location_manager) {
4578
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4579
+		$hide_region_part = get_option('geodir_location_hide_region_part');
4580
+
4581
+		if ($hide_region_part && $hide_country_part) {
4582
+			if (isset($location_terms['gd_country']))
4583
+				unset($location_terms['gd_country']);
4584
+			if (isset($location_terms['gd_region']))
4585
+				unset($location_terms['gd_region']);
4586
+		} else if ($hide_region_part && !$hide_country_part) {
4587
+			if (isset($location_terms['gd_region']))
4588
+				unset($location_terms['gd_region']);
4589
+		} else if (!$hide_region_part && $hide_country_part) {
4590
+			if (isset($location_terms['gd_country']))
4591
+				unset($location_terms['gd_country']);
4592
+		}
4593
+	}
4594
+
4595
+	return $location_terms;
4596 4596
 }
4597 4597
 
4598 4598
 /**
@@ -4606,47 +4606,47 @@  discard block
 block discarded – undo
4606 4606
  * @param bool $update Whether this is an existing listing being updated or not.
4607 4607
  */
4608 4608
 function geodir_on_wp_insert_post($post_ID, $post, $update) {
4609
-    if (!$update) {
4610
-        return;
4611
-    }
4609
+	if (!$update) {
4610
+		return;
4611
+	}
4612 4612
     
4613
-    $action = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
4614
-    $is_admin = is_admin() && ( !defined('DOING_AJAX' ) || ( defined('DOING_AJAX') && !DOING_AJAX ) )  ? true : false;
4615
-    $inline_save = $action == 'inline-save' ? true : false;
4613
+	$action = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
4614
+	$is_admin = is_admin() && ( !defined('DOING_AJAX' ) || ( defined('DOING_AJAX') && !DOING_AJAX ) )  ? true : false;
4615
+	$inline_save = $action == 'inline-save' ? true : false;
4616 4616
 
4617
-    if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
4618
-        return;
4619
-    }
4617
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
4618
+		return;
4619
+	}
4620 4620
     
4621
-    if ($action != '' && in_array($action, array('geodir_import_export'))) {
4622
-        return;
4623
-    }
4621
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
4622
+		return;
4623
+	}
4624 4624
 
4625
-    $user_id = (int)get_current_user_id();
4625
+	$user_id = (int)get_current_user_id();
4626 4626
         
4627
-    if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
4628
-        $author_id = !empty($post->post_author) ? $post->post_author : 0;
4627
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
4628
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
4629 4629
         
4630
-        if ($user_id == $author_id && !is_super_admin()) {
4631
-            $from_email = get_option('site_email');
4632
-            $from_name = get_site_emailName();
4633
-            $to_email = get_option('admin_email');
4634
-            $to_name = get_option('name');
4635
-            $message_type = 'listing_edited';
4630
+		if ($user_id == $author_id && !is_super_admin()) {
4631
+			$from_email = get_option('site_email');
4632
+			$from_name = get_site_emailName();
4633
+			$to_email = get_option('admin_email');
4634
+			$to_name = get_option('name');
4635
+			$message_type = 'listing_edited';
4636 4636
             
4637
-            $notify_edited = true;
4638
-            /**
4639
-             * Send notification when listing edited by author?
4640
-             *
4641
-             * @since 1.6.0
4642
-             * @param bool $notify_edited Notify on listing edited by author?
4643
-             * @param object $post The current post object.
4644
-             */
4645
-            $notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
4637
+			$notify_edited = true;
4638
+			/**
4639
+			 * Send notification when listing edited by author?
4640
+			 *
4641
+			 * @since 1.6.0
4642
+			 * @param bool $notify_edited Notify on listing edited by author?
4643
+			 * @param object $post The current post object.
4644
+			 */
4645
+			$notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
4646 4646
             
4647
-            geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
4648
-        }
4649
-    }
4647
+			geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
4648
+		}
4649
+	}
4650 4650
 }
4651 4651
 
4652 4652
 /**
@@ -4660,16 +4660,16 @@  discard block
 block discarded – undo
4660 4660
  * @return string|null The current page start & end numbering.
4661 4661
  */
4662 4662
 function geodir_title_meta_page($sep) {
4663
-    $replacement = null;
4663
+	$replacement = null;
4664 4664
 
4665
-    $max = geodir_title_meta_pagenumbering('max');
4666
-    $nr  = geodir_title_meta_pagenumbering('nr');
4665
+	$max = geodir_title_meta_pagenumbering('max');
4666
+	$nr  = geodir_title_meta_pagenumbering('nr');
4667 4667
 
4668
-    if ($max > 1 && $nr > 1) {
4669
-        $replacement = sprintf($sep . ' ' . __('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
4670
-    }
4668
+	if ($max > 1 && $nr > 1) {
4669
+		$replacement = sprintf($sep . ' ' . __('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
4670
+	}
4671 4671
 
4672
-    return $replacement;
4672
+	return $replacement;
4673 4673
 }
4674 4674
 
4675 4675
 /**
@@ -4681,14 +4681,14 @@  discard block
 block discarded – undo
4681 4681
  * @return string|null The current page number.
4682 4682
  */
4683 4683
 function geodir_title_meta_pagenumber() {
4684
-    $replacement = null;
4684
+	$replacement = null;
4685 4685
 
4686
-    $nr = geodir_title_meta_pagenumbering('nr');
4687
-    if (isset($nr) && $nr > 0) {
4688
-        $replacement = (string)$nr;
4689
-    }
4686
+	$nr = geodir_title_meta_pagenumbering('nr');
4687
+	if (isset($nr) && $nr > 0) {
4688
+		$replacement = (string)$nr;
4689
+	}
4690 4690
 
4691
-    return $replacement;
4691
+	return $replacement;
4692 4692
 }
4693 4693
 
4694 4694
 /**
@@ -4700,14 +4700,14 @@  discard block
 block discarded – undo
4700 4700
  * @return string|null The current page total.
4701 4701
  */
4702 4702
 function geodir_title_meta_pagetotal() {
4703
-    $replacement = null;
4703
+	$replacement = null;
4704 4704
 
4705
-    $max = geodir_title_meta_pagenumbering('max');
4706
-    if (isset($max) && $max > 0) {
4707
-        $replacement = (string)$max;
4708
-    }
4705
+	$max = geodir_title_meta_pagenumbering('max');
4706
+	if (isset($max) && $max > 0) {
4707
+		$replacement = (string)$max;
4708
+	}
4709 4709
 
4710
-    return $replacement;
4710
+	return $replacement;
4711 4711
 }
4712 4712
 
4713 4713
 /**
@@ -4724,44 +4724,44 @@  discard block
 block discarded – undo
4724 4724
  * @return int|null The current page numbering.
4725 4725
  */
4726 4726
 function geodir_title_meta_pagenumbering($request = 'nr') {
4727
-    global $wp_query, $post;
4728
-    $max_num_pages = null;
4729
-    $page_number   = null;
4730
-
4731
-    $max_num_pages = 1;
4732
-
4733
-    if (!is_singular()) {
4734
-        $page_number = get_query_var('paged');
4735
-        if ($page_number === 0 || $page_number === '') {
4736
-            $page_number = 1;
4737
-        }
4738
-
4739
-        if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
4740
-            $max_num_pages = $wp_query->max_num_pages;
4741
-        }
4742
-    } else {
4743
-        $page_number = get_query_var('page');
4744
-        if ($page_number === 0 || $page_number === '') {
4745
-            $page_number = 1;
4746
-        }
4747
-
4748
-        if (isset($post->post_content)) {
4749
-            $max_num_pages = (substr_count($post->post_content, '<!--nextpage-->' ) + 1);
4750
-        }
4751
-    }
4752
-
4753
-    $return = null;
4754
-
4755
-    switch ($request) {
4756
-        case 'nr':
4757
-            $return = $page_number;
4758
-            break;
4759
-        case 'max':
4760
-            $return = $max_num_pages;
4761
-            break;
4762
-    }
4763
-
4764
-    return $return;
4727
+	global $wp_query, $post;
4728
+	$max_num_pages = null;
4729
+	$page_number   = null;
4730
+
4731
+	$max_num_pages = 1;
4732
+
4733
+	if (!is_singular()) {
4734
+		$page_number = get_query_var('paged');
4735
+		if ($page_number === 0 || $page_number === '') {
4736
+			$page_number = 1;
4737
+		}
4738
+
4739
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
4740
+			$max_num_pages = $wp_query->max_num_pages;
4741
+		}
4742
+	} else {
4743
+		$page_number = get_query_var('page');
4744
+		if ($page_number === 0 || $page_number === '') {
4745
+			$page_number = 1;
4746
+		}
4747
+
4748
+		if (isset($post->post_content)) {
4749
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->' ) + 1);
4750
+		}
4751
+	}
4752
+
4753
+	$return = null;
4754
+
4755
+	switch ($request) {
4756
+		case 'nr':
4757
+			$return = $page_number;
4758
+			break;
4759
+		case 'max':
4760
+			$return = $max_num_pages;
4761
+			break;
4762
+	}
4763
+
4764
+	return $return;
4765 4765
 }
4766 4766
 
4767 4767
 /**
@@ -4773,17 +4773,17 @@  discard block
 block discarded – undo
4773 4773
  * @return array Terms.
4774 4774
  */
4775 4775
 function geodir_filter_empty_terms($terms) {
4776
-    if (empty($terms)) {
4777
-        return $terms;
4778
-    }
4779
-
4780
-    $return = array();
4781
-    foreach ($terms as $term) {
4782
-        if (isset($term->count) && $term->count > 0) {
4783
-            $return[] = $term;
4784
-        }
4785
-    }
4786
-    return $return;
4776
+	if (empty($terms)) {
4777
+		return $terms;
4778
+	}
4779
+
4780
+	$return = array();
4781
+	foreach ($terms as $term) {
4782
+		if (isset($term->count) && $term->count > 0) {
4783
+			$return[] = $term;
4784
+		}
4785
+	}
4786
+	return $return;
4787 4787
 }
4788 4788
 
4789 4789
 
@@ -4796,9 +4796,9 @@  discard block
 block discarded – undo
4796 4796
  * @return array
4797 4797
  */
4798 4798
 function geodir_remove_hentry( $class ) {
4799
-    if(geodir_is_page('detail')){
4800
-        $class = array_diff( $class, array( 'hentry' ) );
4801
-    }
4802
-    return $class;
4799
+	if(geodir_is_page('detail')){
4800
+		$class = array_diff( $class, array( 'hentry' ) );
4801
+	}
4802
+	return $class;
4803 4803
 }
4804 4804
 add_filter( 'post_class', 'geodir_remove_hentry' );
4805 4805
\ No newline at end of file
Please login to merge, or discard this patch.