Test Failed
Push — master ( f75221...445cbc )
by Stiofan
08:59
created
geodirectory-functions/custom_functions.php 1 patch
Indentation   +1435 added lines, -1435 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * @global object $gd_session GeoDirectory Session object.
18 18
  */
19 19
 function geodir_list_view_select() {
20
-    global $gd_session;
20
+	global $gd_session;
21 21
 	?>
22 22
     <script type="text/javascript">
23 23
 	function geodir_list_view_select(list) {
@@ -86,63 +86,63 @@  discard block
 block discarded – undo
86 86
  */
87 87
 function geodir_max_excerpt($charlength)
88 88
 {
89
-    global $post;
90
-    if ($charlength == '0') {
91
-        return;
92
-    }
93
-    $out = '';
89
+	global $post;
90
+	if ($charlength == '0') {
91
+		return;
92
+	}
93
+	$out = '';
94 94
 	
95 95
 	$temp_post = $post;
96 96
 	$excerpt = get_the_excerpt();
97 97
 
98
-    $charlength++;
99
-    $excerpt_more = function_exists('geodirf_excerpt_more') ? geodirf_excerpt_more('') : geodir_excerpt_more('');
100
-    if (mb_strlen($excerpt) > $charlength) {
101
-        if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
102
-            $excut = -(mb_strlen($excerpt_more));
103
-            $subex = mb_substr($excerpt, 0, $excut);
104
-            if ($charlength > 0 && mb_strlen($subex) > $charlength) {
105
-                $subex = mb_substr($subex, 0, $charlength);
106
-            }
107
-            $out .= $subex;
108
-        } else {
109
-            $subex = mb_substr($excerpt, 0, $charlength - 5);
110
-            $exwords = explode(' ', $subex);
111
-            $excut = -(mb_strlen($exwords[count($exwords) - 1]));
112
-            if ($excut < 0) {
113
-                $out .= mb_substr($subex, 0, $excut);
114
-            } else {
115
-                $out .= $subex;
116
-            }
117
-        }
118
-        $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">';
119
-        /**
120
-         * Filter excerpt read more text.
121
-         *
122
-         * @since 1.0.0
123
-         */
124
-        $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
125
-        $out .= '</a>';
126
-
127
-    } else {
128
-        if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
129
-            $excut = -(mb_strlen($excerpt_more));
130
-            $out .= mb_substr($excerpt, 0, $excut);
131
-            $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">';
132
-            /**
133
-             * Filter excerpt read more text.
134
-             *
135
-             * @since 1.0.0
136
-             */
137
-            $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
138
-            $out .= '</a>';
139
-        } else {
140
-            $out .= $excerpt;
141
-        }
142
-    }
98
+	$charlength++;
99
+	$excerpt_more = function_exists('geodirf_excerpt_more') ? geodirf_excerpt_more('') : geodir_excerpt_more('');
100
+	if (mb_strlen($excerpt) > $charlength) {
101
+		if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
102
+			$excut = -(mb_strlen($excerpt_more));
103
+			$subex = mb_substr($excerpt, 0, $excut);
104
+			if ($charlength > 0 && mb_strlen($subex) > $charlength) {
105
+				$subex = mb_substr($subex, 0, $charlength);
106
+			}
107
+			$out .= $subex;
108
+		} else {
109
+			$subex = mb_substr($excerpt, 0, $charlength - 5);
110
+			$exwords = explode(' ', $subex);
111
+			$excut = -(mb_strlen($exwords[count($exwords) - 1]));
112
+			if ($excut < 0) {
113
+				$out .= mb_substr($subex, 0, $excut);
114
+			} else {
115
+				$out .= $subex;
116
+			}
117
+		}
118
+		$out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">';
119
+		/**
120
+		 * Filter excerpt read more text.
121
+		 *
122
+		 * @since 1.0.0
123
+		 */
124
+		$out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
125
+		$out .= '</a>';
126
+
127
+	} else {
128
+		if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
129
+			$excut = -(mb_strlen($excerpt_more));
130
+			$out .= mb_substr($excerpt, 0, $excut);
131
+			$out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">';
132
+			/**
133
+			 * Filter excerpt read more text.
134
+			 *
135
+			 * @since 1.0.0
136
+			 */
137
+			$out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
138
+			$out .= '</a>';
139
+		} else {
140
+			$out .= $excerpt;
141
+		}
142
+	}
143 143
 	$post = $temp_post;
144 144
 
145
-    return $out;
145
+	return $out;
146 146
 }
147 147
 
148 148
 /**
@@ -157,34 +157,34 @@  discard block
 block discarded – undo
157 157
  */
158 158
 function geodir_post_package_info($package_info, $post = '', $post_type = '')
159 159
 {
160
-    $package_info['pid'] = 0;
161
-    $package_info['days'] = 0;
162
-    $package_info['amount'] = 0;
163
-    $package_info['is_featured'] = 0;
164
-    $package_info['image_limit'] = '';
165
-    $package_info['google_analytics'] = 1;
166
-    $package_info['sendtofriend'] = 1;
167
-
168
-    /**
169
-     * Filter listing package info.
170
-     *
171
-     * @since 1.0.0
172
-     * @param array $package_info {
173
-     *    Attributes of the package_info.
174
-     *
175
-     *    @type int $pid Package ID. Default 0.
176
-     *    @type int $days Package validity in Days. Default 0.
177
-     *    @type int $amount Package amount. Default 0.
178
-     *    @type int $is_featured Is this featured package? Default 0.
179
-     *    @type string $image_limit Image limit for this package. Default "".
180
-     *    @type int $google_analytics Add analytics to this package. Default 1.
181
-     *    @type int $sendtofriend Send to friend. Default 1.
182
-     *
183
-     * }
184
-     * @param object|string $post The post object.
185
-     * @param string $post_type The post type.
186
-     */
187
-    return (object)apply_filters('geodir_post_package_info', $package_info, $post, $post_type);
160
+	$package_info['pid'] = 0;
161
+	$package_info['days'] = 0;
162
+	$package_info['amount'] = 0;
163
+	$package_info['is_featured'] = 0;
164
+	$package_info['image_limit'] = '';
165
+	$package_info['google_analytics'] = 1;
166
+	$package_info['sendtofriend'] = 1;
167
+
168
+	/**
169
+	 * Filter listing package info.
170
+	 *
171
+	 * @since 1.0.0
172
+	 * @param array $package_info {
173
+	 *    Attributes of the package_info.
174
+	 *
175
+	 *    @type int $pid Package ID. Default 0.
176
+	 *    @type int $days Package validity in Days. Default 0.
177
+	 *    @type int $amount Package amount. Default 0.
178
+	 *    @type int $is_featured Is this featured package? Default 0.
179
+	 *    @type string $image_limit Image limit for this package. Default "".
180
+	 *    @type int $google_analytics Add analytics to this package. Default 1.
181
+	 *    @type int $sendtofriend Send to friend. Default 1.
182
+	 *
183
+	 * }
184
+	 * @param object|string $post The post object.
185
+	 * @param string $post_type The post type.
186
+	 */
187
+	return (object)apply_filters('geodir_post_package_info', $package_info, $post, $post_type);
188 188
 
189 189
 }
190 190
 
@@ -212,127 +212,127 @@  discard block
 block discarded – undo
212 212
  */
213 213
 function geodir_send_inquiry($request)
214 214
 {
215
-    global $wpdb;
216
-
217
-    // strip slashes from text
218
-    $request = !empty($request) ? stripslashes_deep($request) : $request;
219
-
220
-    $yourname = $request['inq_name'];
221
-    $youremail = $request['inq_email'];
222
-    $inq_phone = $request['inq_phone'];
223
-    $frnd_comments = $request['inq_msg'];
224
-    $pid = $request['pid'];
225
-
226
-    $author_id = '';
227
-    $post_title = '';
228
-
229
-    if ($request['pid']) {
230
-
231
-        $productinfosql = $wpdb->prepare(
232
-            "select ID,post_author,post_title from $wpdb->posts where ID =%d",
233
-            array($request['pid'])
234
-        );
235
-        $productinfo = $wpdb->get_row($productinfosql);
236
-
237
-        $author_id = $productinfo->post_author;
238
-        $post_title = $productinfo->post_title;
239
-    }
240
-
241
-    $post_title = '<a href="' . get_permalink($pid) . '">' . $post_title . '</a>';
242
-
243
-    $user_info = get_userdata($author_id);
244
-    $to_email = geodir_get_post_meta($pid, 'geodir_email', true);
245
-    $to_name = geodir_get_client_name($author_id);
246
-
247
-    if ($to_email == '') {
248
-        $to_email = get_option('admin_email');
249
-    }
250
-
251
-    /**
252
-     * Called after the send enquiry var have been set but before the email has been sent.
253
-     *
254
-     * @since 1.0.0
255
-     * @param array $request {
256
-     *    The submitted form fields as an array.
257
-     *
258
-     *    @type string $sendact Enquiry type. Default "send_inqury".
259
-     *    @type string $pid Post ID.
260
-     *    @type string $inq_name Sender name.
261
-     *    @type string $inq_email Sender mail.
262
-     *    @type string $inq_phone Sender phone.
263
-     *    @type string $inq_msg Email message.
264
-     *
265
-     * }
266
-     * @param string $type The form type, default: `Enquiry`.
267
-     */
268
-    do_action('geodir_after_send_enquiry', $request, 'Enquiry');
269
-
270
-    $client_message = $frnd_comments;
271
-    $client_message .= '<br>' . __('From :', 'geodirectory') . ' ' . $yourname . '<br>' . __('Phone :', 'geodirectory') . ' ' . $inq_phone . '<br>' . __('Email :', 'geodirectory') . ' ' . $youremail . '<br><br>' . __('Sent from', 'geodirectory') . ' - <b><a href="' . trailingslashit(home_url()) . '">' . get_option('blogname') . '</a></b>.';
272
-    /**
273
-     * Filter client message text.
274
-     *
275
-     * @since 1.0.0
276
-     * @param string $client_message Client message text.
277
-     */
278
-    $client_message = apply_filters('geodir_inquiry_email_msg', $client_message);
279
-
280
-    /**
281
-     * Called before the send enquiry email is sent.
282
-     *
283
-     * @since 1.0.0
284
-     * @param array $request {
285
-     *    The submitted form fields as an array.
286
-     *
287
-     *    @type string $sendact Enquiry type. Default "send_inqury".
288
-     *    @type string $pid Post ID.
289
-     *    @type string $inq_name Sender name.
290
-     *    @type string $inq_email Sender mail.
291
-     *    @type string $inq_phone Sender phone.
292
-     *    @type string $inq_msg Email message.
293
-     *
294
-     * }
295
-     */
296
-    do_action('geodir_before_send_enquiry_email', $request);
297
-    if ($to_email) {
298
-        // strip slashes message
299
-        $client_message = stripslashes_deep($client_message);
300
-
301
-        geodir_sendEmail($youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid']);//To client email
302
-    }
303
-
304
-    /**
305
-     * Called after the send enquiry email is sent.
306
-     *
307
-     * @since 1.0.0
308
-     * @param array $request {
309
-     *    The submitted form fields as an array.
310
-     *
311
-     *    @type string $sendact Enquiry type. Default "send_inqury".
312
-     *    @type string $pid Post ID.
313
-     *    @type string $inq_name Sender name.
314
-     *    @type string $inq_email Sender mail.
315
-     *    @type string $inq_phone Sender phone.
316
-     *    @type string $inq_msg Email message.
317
-     *
318
-     * }
319
-     */
320
-    do_action('geodir_after_send_enquiry_email', $request);
321
-    $url = get_permalink($pid);
322
-    if (strstr($url, '?')) {
323
-        $url = $url . "&send_inquiry=success";
324
-    } else {
325
-        $url = $url . "?send_inquiry=success";
326
-    }
327
-    /**
328
-     * Filter redirect url after the send enquiry email is sent.
329
-     *
330
-     * @since 1.0.0
331
-     * @param string $url Redirect url.
332
-     */
333
-    $url = apply_filters('geodir_send_enquiry_after_submit_redirect', $url);
334
-    wp_redirect($url);
335
-    gd_die();
215
+	global $wpdb;
216
+
217
+	// strip slashes from text
218
+	$request = !empty($request) ? stripslashes_deep($request) : $request;
219
+
220
+	$yourname = $request['inq_name'];
221
+	$youremail = $request['inq_email'];
222
+	$inq_phone = $request['inq_phone'];
223
+	$frnd_comments = $request['inq_msg'];
224
+	$pid = $request['pid'];
225
+
226
+	$author_id = '';
227
+	$post_title = '';
228
+
229
+	if ($request['pid']) {
230
+
231
+		$productinfosql = $wpdb->prepare(
232
+			"select ID,post_author,post_title from $wpdb->posts where ID =%d",
233
+			array($request['pid'])
234
+		);
235
+		$productinfo = $wpdb->get_row($productinfosql);
236
+
237
+		$author_id = $productinfo->post_author;
238
+		$post_title = $productinfo->post_title;
239
+	}
240
+
241
+	$post_title = '<a href="' . get_permalink($pid) . '">' . $post_title . '</a>';
242
+
243
+	$user_info = get_userdata($author_id);
244
+	$to_email = geodir_get_post_meta($pid, 'geodir_email', true);
245
+	$to_name = geodir_get_client_name($author_id);
246
+
247
+	if ($to_email == '') {
248
+		$to_email = get_option('admin_email');
249
+	}
250
+
251
+	/**
252
+	 * Called after the send enquiry var have been set but before the email has been sent.
253
+	 *
254
+	 * @since 1.0.0
255
+	 * @param array $request {
256
+	 *    The submitted form fields as an array.
257
+	 *
258
+	 *    @type string $sendact Enquiry type. Default "send_inqury".
259
+	 *    @type string $pid Post ID.
260
+	 *    @type string $inq_name Sender name.
261
+	 *    @type string $inq_email Sender mail.
262
+	 *    @type string $inq_phone Sender phone.
263
+	 *    @type string $inq_msg Email message.
264
+	 *
265
+	 * }
266
+	 * @param string $type The form type, default: `Enquiry`.
267
+	 */
268
+	do_action('geodir_after_send_enquiry', $request, 'Enquiry');
269
+
270
+	$client_message = $frnd_comments;
271
+	$client_message .= '<br>' . __('From :', 'geodirectory') . ' ' . $yourname . '<br>' . __('Phone :', 'geodirectory') . ' ' . $inq_phone . '<br>' . __('Email :', 'geodirectory') . ' ' . $youremail . '<br><br>' . __('Sent from', 'geodirectory') . ' - <b><a href="' . trailingslashit(home_url()) . '">' . get_option('blogname') . '</a></b>.';
272
+	/**
273
+	 * Filter client message text.
274
+	 *
275
+	 * @since 1.0.0
276
+	 * @param string $client_message Client message text.
277
+	 */
278
+	$client_message = apply_filters('geodir_inquiry_email_msg', $client_message);
279
+
280
+	/**
281
+	 * Called before the send enquiry email is sent.
282
+	 *
283
+	 * @since 1.0.0
284
+	 * @param array $request {
285
+	 *    The submitted form fields as an array.
286
+	 *
287
+	 *    @type string $sendact Enquiry type. Default "send_inqury".
288
+	 *    @type string $pid Post ID.
289
+	 *    @type string $inq_name Sender name.
290
+	 *    @type string $inq_email Sender mail.
291
+	 *    @type string $inq_phone Sender phone.
292
+	 *    @type string $inq_msg Email message.
293
+	 *
294
+	 * }
295
+	 */
296
+	do_action('geodir_before_send_enquiry_email', $request);
297
+	if ($to_email) {
298
+		// strip slashes message
299
+		$client_message = stripslashes_deep($client_message);
300
+
301
+		geodir_sendEmail($youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid']);//To client email
302
+	}
303
+
304
+	/**
305
+	 * Called after the send enquiry email is sent.
306
+	 *
307
+	 * @since 1.0.0
308
+	 * @param array $request {
309
+	 *    The submitted form fields as an array.
310
+	 *
311
+	 *    @type string $sendact Enquiry type. Default "send_inqury".
312
+	 *    @type string $pid Post ID.
313
+	 *    @type string $inq_name Sender name.
314
+	 *    @type string $inq_email Sender mail.
315
+	 *    @type string $inq_phone Sender phone.
316
+	 *    @type string $inq_msg Email message.
317
+	 *
318
+	 * }
319
+	 */
320
+	do_action('geodir_after_send_enquiry_email', $request);
321
+	$url = get_permalink($pid);
322
+	if (strstr($url, '?')) {
323
+		$url = $url . "&send_inquiry=success";
324
+	} else {
325
+		$url = $url . "?send_inquiry=success";
326
+	}
327
+	/**
328
+	 * Filter redirect url after the send enquiry email is sent.
329
+	 *
330
+	 * @since 1.0.0
331
+	 * @param string $url Redirect url.
332
+	 */
333
+	$url = apply_filters('geodir_send_enquiry_after_submit_redirect', $url);
334
+	wp_redirect($url);
335
+	gd_die();
336 336
 
337 337
 }
338 338
 
@@ -361,85 +361,85 @@  discard block
 block discarded – undo
361 361
  */
362 362
 function geodir_send_friend($request)
363 363
 {
364
-    global $wpdb;
365
-
366
-    // strip slashes from text
367
-    $request = !empty($request) ? stripslashes_deep($request) : $request;
368
-
369
-    $yourname = $request['yourname'];
370
-    $youremail = $request['youremail'];
371
-    $frnd_subject = $request['frnd_subject'];
372
-    $frnd_comments = $request['frnd_comments'];
373
-    $pid = $request['pid'];
374
-    $to_email = $request['to_email'];
375
-    $to_name = $request['to_name'];
376
-    if ($request['pid']) {
377
-        $productinfosql = $wpdb->prepare(
378
-            "select ID,post_title from $wpdb->posts where ID =%d",
379
-            array($request['pid'])
380
-        );
381
-        $productinfo = $wpdb->get_results($productinfosql);
382
-        foreach ($productinfo as $productinfoObj) {
383
-            $post_title = $productinfoObj->post_title;
384
-        }
385
-    }
386
-
387
-    /**
388
-     * Called before the send to friend email is sent.
389
-     *
390
-     * @since 1.0.0
391
-     * @param array $request {
392
-     *    The submitted form fields as an array.
393
-     *
394
-     *    @type string $sendact Enquiry type. Default "email_frnd".
395
-     *    @type string $pid Post ID.
396
-     *    @type string $to_name Friend name.
397
-     *    @type string $to_email Friend email.
398
-     *    @type string $yourname Sender name.
399
-     *    @type string $youremail Sender email.
400
-     *    @type string $frnd_subject Email subject.
401
-     *    @type string $frnd_comments Email Message.
402
-     *
403
-     * }
404
-     */
405
-    do_action('geodir_before_send_to_friend_email', $request);
406
-    geodir_sendEmail($youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid']);//To client email
407
-
408
-    /**
409
-     * Called after the send to friend email is sent.
410
-     *
411
-     * @since 1.0.0
412
-     * @param array $request {
413
-     *    The submitted form fields as an array.
414
-     *
415
-     *    @type string $sendact Enquiry type. Default "email_frnd".
416
-     *    @type string $pid Post ID.
417
-     *    @type string $to_name Friend name.
418
-     *    @type string $to_email Friend email.
419
-     *    @type string $yourname Sender name.
420
-     *    @type string $youremail Sender email.
421
-     *    @type string $frnd_subject Email subject.
422
-     *    @type string $frnd_comments Email Message.
423
-     *
424
-     * }
425
-     */
426
-    do_action('geodir_after_send_to_friend_email', $request);
427
-
428
-    $url = get_permalink($pid);
429
-    if (strstr($url, '?')) {
430
-        $url = $url . "&sendtofrnd=success";
431
-    } else {
432
-        $url = $url . "?sendtofrnd=success";
433
-    }
434
-    /**
435
-     * Filter redirect url after the send to friend email is sent.
436
-     *
437
-     * @since 1.0.0
438
-     * @param string $url Redirect url.
439
-     */
440
-    $url = apply_filters('geodir_send_to_friend_after_submit_redirect', $url);
441
-    wp_redirect($url);
442
-    gd_die();
364
+	global $wpdb;
365
+
366
+	// strip slashes from text
367
+	$request = !empty($request) ? stripslashes_deep($request) : $request;
368
+
369
+	$yourname = $request['yourname'];
370
+	$youremail = $request['youremail'];
371
+	$frnd_subject = $request['frnd_subject'];
372
+	$frnd_comments = $request['frnd_comments'];
373
+	$pid = $request['pid'];
374
+	$to_email = $request['to_email'];
375
+	$to_name = $request['to_name'];
376
+	if ($request['pid']) {
377
+		$productinfosql = $wpdb->prepare(
378
+			"select ID,post_title from $wpdb->posts where ID =%d",
379
+			array($request['pid'])
380
+		);
381
+		$productinfo = $wpdb->get_results($productinfosql);
382
+		foreach ($productinfo as $productinfoObj) {
383
+			$post_title = $productinfoObj->post_title;
384
+		}
385
+	}
386
+
387
+	/**
388
+	 * Called before the send to friend email is sent.
389
+	 *
390
+	 * @since 1.0.0
391
+	 * @param array $request {
392
+	 *    The submitted form fields as an array.
393
+	 *
394
+	 *    @type string $sendact Enquiry type. Default "email_frnd".
395
+	 *    @type string $pid Post ID.
396
+	 *    @type string $to_name Friend name.
397
+	 *    @type string $to_email Friend email.
398
+	 *    @type string $yourname Sender name.
399
+	 *    @type string $youremail Sender email.
400
+	 *    @type string $frnd_subject Email subject.
401
+	 *    @type string $frnd_comments Email Message.
402
+	 *
403
+	 * }
404
+	 */
405
+	do_action('geodir_before_send_to_friend_email', $request);
406
+	geodir_sendEmail($youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid']);//To client email
407
+
408
+	/**
409
+	 * Called after the send to friend email is sent.
410
+	 *
411
+	 * @since 1.0.0
412
+	 * @param array $request {
413
+	 *    The submitted form fields as an array.
414
+	 *
415
+	 *    @type string $sendact Enquiry type. Default "email_frnd".
416
+	 *    @type string $pid Post ID.
417
+	 *    @type string $to_name Friend name.
418
+	 *    @type string $to_email Friend email.
419
+	 *    @type string $yourname Sender name.
420
+	 *    @type string $youremail Sender email.
421
+	 *    @type string $frnd_subject Email subject.
422
+	 *    @type string $frnd_comments Email Message.
423
+	 *
424
+	 * }
425
+	 */
426
+	do_action('geodir_after_send_to_friend_email', $request);
427
+
428
+	$url = get_permalink($pid);
429
+	if (strstr($url, '?')) {
430
+		$url = $url . "&sendtofrnd=success";
431
+	} else {
432
+		$url = $url . "?sendtofrnd=success";
433
+	}
434
+	/**
435
+	 * Filter redirect url after the send to friend email is sent.
436
+	 *
437
+	 * @since 1.0.0
438
+	 * @param string $url Redirect url.
439
+	 */
440
+	$url = apply_filters('geodir_send_to_friend_after_submit_redirect', $url);
441
+	wp_redirect($url);
442
+	gd_die();
443 443
 }
444 444
 
445 445
 /**
@@ -453,28 +453,28 @@  discard block
 block discarded – undo
453 453
  */
454 454
 function geodir_before_tab_content($hash_key)
455 455
 {
456
-    switch ($hash_key) {
457
-        case 'post_info' :
458
-            echo '<div class="geodir-company_info field-group">';
459
-            break;
460
-        case 'post_images' :
461
-            /**
462
-             * Filter post gallery HTML id.
463
-             *
464
-             * @since 1.0.0
465
-             */
466
-            echo ' <div id="' . apply_filters('geodir_post_gallery_id', 'geodir-post-gallery') . '" class="clearfix" >';
467
-            break;
468
-        case 'reviews' :
469
-            echo '<div id="reviews-wrap" class="clearfix"> ';
470
-            break;
471
-        case 'post_video':
472
-            echo ' <div id="post_video-wrap" class="clearfix">';
473
-            break;
474
-        case 'special_offers':
475
-            echo '<div id="special_offers-wrap" class="clearfix">';
476
-            break;
477
-    }
456
+	switch ($hash_key) {
457
+		case 'post_info' :
458
+			echo '<div class="geodir-company_info field-group">';
459
+			break;
460
+		case 'post_images' :
461
+			/**
462
+			 * Filter post gallery HTML id.
463
+			 *
464
+			 * @since 1.0.0
465
+			 */
466
+			echo ' <div id="' . apply_filters('geodir_post_gallery_id', 'geodir-post-gallery') . '" class="clearfix" >';
467
+			break;
468
+		case 'reviews' :
469
+			echo '<div id="reviews-wrap" class="clearfix"> ';
470
+			break;
471
+		case 'post_video':
472
+			echo ' <div id="post_video-wrap" class="clearfix">';
473
+			break;
474
+		case 'special_offers':
475
+			echo '<div id="special_offers-wrap" class="clearfix">';
476
+			break;
477
+	}
478 478
 }
479 479
 
480 480
 /**
@@ -488,23 +488,23 @@  discard block
 block discarded – undo
488 488
  */
489 489
 function geodir_after_tab_content($hash_key)
490 490
 {
491
-    switch ($hash_key) {
492
-        case 'post_info' :
493
-            echo '</div>';
494
-            break;
495
-        case 'post_images' :
496
-            echo '</div>';
497
-            break;
498
-        case 'reviews' :
499
-            echo '</div>';
500
-            break;
501
-        case 'post_video':
502
-            echo '</div>';
503
-            break;
504
-        case 'special_offers':
505
-            echo '</div>';
506
-            break;
507
-    }
491
+	switch ($hash_key) {
492
+		case 'post_info' :
493
+			echo '</div>';
494
+			break;
495
+		case 'post_images' :
496
+			echo '</div>';
497
+			break;
498
+		case 'reviews' :
499
+			echo '</div>';
500
+			break;
501
+		case 'post_video':
502
+			echo '</div>';
503
+			break;
504
+		case 'special_offers':
505
+			echo '</div>';
506
+			break;
507
+	}
508 508
 }
509 509
 
510 510
 
@@ -520,21 +520,21 @@  discard block
 block discarded – undo
520 520
 function geodir_get_posts_default_sort($post_type)
521 521
 {
522 522
 
523
-    global $wpdb;
523
+	global $wpdb;
524 524
 
525
-    if ($post_type != '') {
525
+	if ($post_type != '') {
526 526
 
527
-        $all_postypes = geodir_get_posttypes();
527
+		$all_postypes = geodir_get_posttypes();
528 528
 
529
-        if (!in_array($post_type, $all_postypes))
530
-            return false;
529
+		if (!in_array($post_type, $all_postypes))
530
+			return false;
531 531
 
532
-        $sort_field_info = $wpdb->get_var($wpdb->prepare("select default_order from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where	post_type= %s and is_active=%d and is_default=%d", array($post_type, 1, 1)));
532
+		$sort_field_info = $wpdb->get_var($wpdb->prepare("select default_order from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where	post_type= %s and is_active=%d and is_default=%d", array($post_type, 1, 1)));
533 533
 
534
-        if (!empty($sort_field_info))
535
-            return $sort_field_info;
534
+		if (!empty($sort_field_info))
535
+			return $sort_field_info;
536 536
 
537
-    }
537
+	}
538 538
 
539 539
 }
540 540
 
@@ -549,24 +549,24 @@  discard block
 block discarded – undo
549 549
  * @return bool|mixed|void Returns sort results, when the post type is valid. Otherwise returns false.
550 550
  */
551 551
 function geodir_get_sort_options($post_type) {
552
-    global $wpdb;
553
-
554
-    if ($post_type != '') {
555
-        $all_postypes = geodir_get_posttypes();
556
-
557
-        if (!in_array($post_type, $all_postypes))
558
-            return false;
559
-
560
-        $sort_field_info = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array($post_type, 1)));
561
-        /**
562
-         * Filter post sort options.
563
-         *
564
-         * @since 1.0.0
565
-         * @param array $sort_field_info Unfiltered sort field array.
566
-         * @param string $post_type Post type.
567
-         */
568
-        return apply_filters('geodir_get_sort_options', $sort_field_info, $post_type);
569
-    }
552
+	global $wpdb;
553
+
554
+	if ($post_type != '') {
555
+		$all_postypes = geodir_get_posttypes();
556
+
557
+		if (!in_array($post_type, $all_postypes))
558
+			return false;
559
+
560
+		$sort_field_info = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array($post_type, 1)));
561
+		/**
562
+		 * Filter post sort options.
563
+		 *
564
+		 * @since 1.0.0
565
+		 * @param array $sort_field_info Unfiltered sort field array.
566
+		 * @param string $post_type Post type.
567
+		 */
568
+		return apply_filters('geodir_get_sort_options', $sort_field_info, $post_type);
569
+	}
570 570
 
571 571
 }
572 572
 
@@ -580,7 +580,7 @@  discard block
 block discarded – undo
580 580
  */
581 581
 function geodir_display_sort_options()
582 582
 {
583
-    global $wp_query;
583
+	global $wp_query;
584 584
 	
585 585
 	/**
586 586
 	 * On search pages there should be no sort options, sorting is done by search criteria.
@@ -591,57 +591,57 @@  discard block
 block discarded – undo
591 591
 		return;
592 592
 	}
593 593
 
594
-    $sort_by = '';
594
+	$sort_by = '';
595 595
 
596
-    if (isset($_REQUEST['sort_by'])) $sort_by = $_REQUEST['sort_by'];
596
+	if (isset($_REQUEST['sort_by'])) $sort_by = $_REQUEST['sort_by'];
597 597
 
598
-    $gd_post_type = geodir_get_current_posttype();
598
+	$gd_post_type = geodir_get_current_posttype();
599 599
 
600
-    $sort_options = geodir_get_sort_options($gd_post_type);
600
+	$sort_options = geodir_get_sort_options($gd_post_type);
601 601
 
602 602
 
603
-    $sort_field_options = '';
603
+	$sort_field_options = '';
604 604
 
605
-    if (!empty($sort_options)) {
606
-        foreach ($sort_options as $sort) {
605
+	if (!empty($sort_options)) {
606
+		foreach ($sort_options as $sort) {
607 607
 			$sort = stripslashes_deep($sort); // strip slashes
608 608
 
609
-            $label = __($sort->site_title, 'geodirectory');
609
+			$label = __($sort->site_title, 'geodirectory');
610 610
 
611
-            if ($sort->field_type == 'random') {
612
-                $key = $sort->field_type;
613
-                ($sort_by == $key || ($sort->is_default == '1' && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
614
-                $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
615
-            }
611
+			if ($sort->field_type == 'random') {
612
+				$key = $sort->field_type;
613
+				($sort_by == $key || ($sort->is_default == '1' && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
614
+				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
615
+			}
616 616
 
617
-            if ($sort->htmlvar_name == 'comment_count') {
618
-                $sort->htmlvar_name = 'rating_count';
619
-            }
617
+			if ($sort->htmlvar_name == 'comment_count') {
618
+				$sort->htmlvar_name = 'rating_count';
619
+			}
620 620
 
621
-            if ($sort->sort_asc) {
622
-                $key = $sort->htmlvar_name . '_asc';
623
-                $label = $sort->site_title;
624
-                if ($sort->asc_title)
625
-                    $label = $sort->asc_title;
626
-                ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
627
-                $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
628
-            }
621
+			if ($sort->sort_asc) {
622
+				$key = $sort->htmlvar_name . '_asc';
623
+				$label = $sort->site_title;
624
+				if ($sort->asc_title)
625
+					$label = $sort->asc_title;
626
+				($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
627
+				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
628
+			}
629 629
 
630
-            if ($sort->sort_desc) {
631
-                $key = $sort->htmlvar_name . '_desc';
632
-                $label = $sort->site_title;
633
-                if ($sort->desc_title)
634
-                    $label = $sort->desc_title;
635
-                ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
636
-                $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
637
-            }
630
+			if ($sort->sort_desc) {
631
+				$key = $sort->htmlvar_name . '_desc';
632
+				$label = $sort->site_title;
633
+				if ($sort->desc_title)
634
+					$label = $sort->desc_title;
635
+				($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = '';
636
+				$sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
637
+			}
638 638
 
639
-        }
640
-    }
639
+		}
640
+	}
641 641
 
642
-    if ($sort_field_options != '') {
642
+	if ($sort_field_options != '') {
643 643
 
644
-        ?>
644
+		?>
645 645
 
646 646
         <div class="geodir-tax-sort">
647 647
 
@@ -650,14 +650,14 @@  discard block
 block discarded – undo
650 650
                 <option
651 651
                     value="<?php echo esc_url( add_query_arg('sort_by', '') );?>" <?php if ($sort_by == '') echo 'selected="selected"';?>><?php _e('Sort By', 'geodirectory');?></option><?php
652 652
 
653
-                echo $sort_field_options;?>
653
+				echo $sort_field_options;?>
654 654
 
655 655
             </select>
656 656
 
657 657
         </div>
658 658
     <?php
659 659
 
660
-    }
660
+	}
661 661
 
662 662
 }
663 663
 
@@ -677,10 +677,10 @@  discard block
 block discarded – undo
677 677
 function geodir_advance_customfields_heading($title, $field_type)
678 678
 {
679 679
 
680
-    if (in_array($field_type, array('multiselect', 'textarea', 'taxonomy'))) {
681
-        $title = '';
682
-    }
683
-    return $title;
680
+	if (in_array($field_type, array('multiselect', 'textarea', 'taxonomy'))) {
681
+		$title = '';
682
+	}
683
+	return $title;
684 684
 }
685 685
 
686 686
 
@@ -697,81 +697,81 @@  discard block
 block discarded – undo
697 697
  * @return string Returns related posts html.
698 698
  */
699 699
 function geodir_related_posts_display($request) {
700
-    if (!empty($request)) {
701
-        $before_title = (isset($request['before_title']) && !empty($request['before_title'])) ? $request['before_title'] : '';
702
-        $after_title = (isset($request['after_title']) && !empty($request['after_title'])) ? $request['after_title'] : '';
703
-
704
-        $title = (isset($request['title']) && !empty($request['title'])) ? $request['title'] : __('Related Listings', 'geodirectory');
705
-        $post_number = (isset($request['post_number']) && !empty($request['post_number'])) ? $request['post_number'] : '5';
706
-        $relate_to = (isset($request['relate_to']) && !empty($request['relate_to'])) ? $request['relate_to'] : 'category';
707
-        $layout = (isset($request['layout']) && !empty($request['layout'])) ? $request['layout'] : 'gridview_onehalf';
708
-        $add_location_filter = (isset($request['add_location_filter']) && !empty($request['add_location_filter'])) ? $request['add_location_filter'] : '0';
709
-        $listing_width = (isset($request['listing_width']) && !empty($request['listing_width'])) ? $request['listing_width'] : '';
710
-        $list_sort = (isset($request['list_sort']) && !empty($request['list_sort'])) ? $request['list_sort'] : 'latest';
711
-        $character_count = (isset($request['character_count']) && !empty($request['character_count'])) ? $request['character_count'] : '';
712
-
713
-        global $wpdb, $post, $gd_session, $related_nearest, $related_parent_lat, $related_parent_lon;
714
-        $related_parent_lat = $post->post_latitude;
715
-        $related_parent_lon = $post->post_longitude;
716
-        $arr_detail_page_tabs = geodir_detail_page_tabs_list();
717
-
718
-        $related_listing_array = array();
719
-        if (get_option('geodir_add_related_listing_posttypes'))
720
-            $related_listing_array = get_option('geodir_add_related_listing_posttypes');
721
-        if (in_array($post->post_type, $related_listing_array)) {
722
-            $arr_detail_page_tabs['related_listing']['is_display'] = true;
723
-        }
700
+	if (!empty($request)) {
701
+		$before_title = (isset($request['before_title']) && !empty($request['before_title'])) ? $request['before_title'] : '';
702
+		$after_title = (isset($request['after_title']) && !empty($request['after_title'])) ? $request['after_title'] : '';
703
+
704
+		$title = (isset($request['title']) && !empty($request['title'])) ? $request['title'] : __('Related Listings', 'geodirectory');
705
+		$post_number = (isset($request['post_number']) && !empty($request['post_number'])) ? $request['post_number'] : '5';
706
+		$relate_to = (isset($request['relate_to']) && !empty($request['relate_to'])) ? $request['relate_to'] : 'category';
707
+		$layout = (isset($request['layout']) && !empty($request['layout'])) ? $request['layout'] : 'gridview_onehalf';
708
+		$add_location_filter = (isset($request['add_location_filter']) && !empty($request['add_location_filter'])) ? $request['add_location_filter'] : '0';
709
+		$listing_width = (isset($request['listing_width']) && !empty($request['listing_width'])) ? $request['listing_width'] : '';
710
+		$list_sort = (isset($request['list_sort']) && !empty($request['list_sort'])) ? $request['list_sort'] : 'latest';
711
+		$character_count = (isset($request['character_count']) && !empty($request['character_count'])) ? $request['character_count'] : '';
712
+
713
+		global $wpdb, $post, $gd_session, $related_nearest, $related_parent_lat, $related_parent_lon;
714
+		$related_parent_lat = $post->post_latitude;
715
+		$related_parent_lon = $post->post_longitude;
716
+		$arr_detail_page_tabs = geodir_detail_page_tabs_list();
717
+
718
+		$related_listing_array = array();
719
+		if (get_option('geodir_add_related_listing_posttypes'))
720
+			$related_listing_array = get_option('geodir_add_related_listing_posttypes');
721
+		if (in_array($post->post_type, $related_listing_array)) {
722
+			$arr_detail_page_tabs['related_listing']['is_display'] = true;
723
+		}
724 724
 
725
-        $is_display = $arr_detail_page_tabs['related_listing']['is_display'];
726
-        $origi_post = $post;
727
-        $post_type = '';
728
-        $post_id = '';
729
-        $category_taxonomy = '';
730
-        $tax_field = 'id';
731
-        $category = array();
732
-
733
-        if (isset($_REQUEST['backandedit'])) {
734
-            $post = (object)$gd_session->get('listing');
735
-            $post_type = $post->listing_type;
736
-            if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
737
-                $post_id = $_REQUEST['pid'];
738
-        } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
739
-            $post = geodir_get_post_info($_REQUEST['pid']);
740
-            $post_type = $post->post_type;
741
-            $post_id = $_REQUEST['pid'];
742
-        } elseif (isset($post->post_type) && $post->post_type != '') {
743
-            $post_type = $post->post_type;
744
-            $post_id = $post->ID;
745
-        }
725
+		$is_display = $arr_detail_page_tabs['related_listing']['is_display'];
726
+		$origi_post = $post;
727
+		$post_type = '';
728
+		$post_id = '';
729
+		$category_taxonomy = '';
730
+		$tax_field = 'id';
731
+		$category = array();
732
+
733
+		if (isset($_REQUEST['backandedit'])) {
734
+			$post = (object)$gd_session->get('listing');
735
+			$post_type = $post->listing_type;
736
+			if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
737
+				$post_id = $_REQUEST['pid'];
738
+		} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
739
+			$post = geodir_get_post_info($_REQUEST['pid']);
740
+			$post_type = $post->post_type;
741
+			$post_id = $_REQUEST['pid'];
742
+		} elseif (isset($post->post_type) && $post->post_type != '') {
743
+			$post_type = $post->post_type;
744
+			$post_id = $post->ID;
745
+		}
746 746
 
747
-        if ($relate_to == 'category') {
747
+		if ($relate_to == 'category') {
748 748
 
749
-            $category_taxonomy = $post_type . $relate_to;
750
-            if (isset($post->{$category_taxonomy}) && $post->{$category_taxonomy} != '')
751
-                $category = explode(',', trim($post->{$category_taxonomy}, ','));
749
+			$category_taxonomy = $post_type . $relate_to;
750
+			if (isset($post->{$category_taxonomy}) && $post->{$category_taxonomy} != '')
751
+				$category = explode(',', trim($post->{$category_taxonomy}, ','));
752 752
 
753
-        } elseif ($relate_to == 'tags') {
753
+		} elseif ($relate_to == 'tags') {
754 754
 
755
-            $category_taxonomy = $post_type . '_' . $relate_to;
756
-            if ($post->post_tags != '')
757
-                $category = explode(',', trim($post->post_tags, ','));
758
-            $tax_field = 'name';
759
-        }
755
+			$category_taxonomy = $post_type . '_' . $relate_to;
756
+			if ($post->post_tags != '')
757
+				$category = explode(',', trim($post->post_tags, ','));
758
+			$tax_field = 'name';
759
+		}
760 760
 
761
-        /* --- return false in invalid request --- */
762
-        if (empty($category))
763
-            return false;
761
+		/* --- return false in invalid request --- */
762
+		if (empty($category))
763
+			return false;
764 764
 
765
-        $all_postypes = geodir_get_posttypes();
765
+		$all_postypes = geodir_get_posttypes();
766 766
 
767
-        if (!in_array($post_type, $all_postypes))
768
-            return false;
767
+		if (!in_array($post_type, $all_postypes))
768
+			return false;
769 769
 
770
-        /* --- return false in invalid request --- */
770
+		/* --- return false in invalid request --- */
771 771
 
772
-       $location_url = '';
773
-        if ($add_location_filter != '0') {
774
-            $location_url = array();
772
+	   $location_url = '';
773
+		if ($add_location_filter != '0') {
774
+			$location_url = array();
775 775
 			$geodir_show_location_url = get_option('geodir_show_location_url');
776 776
 			
777 777
 			$gd_city = get_query_var('gd_city');
@@ -779,13 +779,13 @@  discard block
 block discarded – undo
779 779
 			if ($gd_city) {
780 780
 				$gd_country = get_query_var('gd_country');
781 781
 				$gd_region = get_query_var('gd_region');
782
-            } else {
783
-                $location = geodir_get_default_location();
782
+			} else {
783
+				$location = geodir_get_default_location();
784 784
 				
785 785
 				$gd_country = isset($location->country_slug) ? $location->country_slug : '';
786 786
 				$gd_region = isset($location->region_slug) ? $location->region_slug : '';
787 787
 				$gd_city = isset($location->city_slug) ? $location->city_slug : '';
788
-            }
788
+			}
789 789
 			
790 790
 			if ($geodir_show_location_url == 'all') {
791 791
 				$location_url[] = $gd_country;
@@ -798,100 +798,100 @@  discard block
 block discarded – undo
798 798
 			
799 799
 			$location_url[] = $gd_city;
800 800
 
801
-            $location_url = implode('/', $location_url);
802
-        }
801
+			$location_url = implode('/', $location_url);
802
+		}
803 803
 
804 804
 
805
-        if (!empty($category)) {
806
-            global $geodir_add_location_url;
807
-            $geodir_add_location_url = '0';
808
-            if ($add_location_filter != '0') {
809
-                $geodir_add_location_url = '1';
810
-            }
811
-            $viewall_url = get_term_link((int)$category[0], $post_type . $category_taxonomy);
812
-            $geodir_add_location_url = NULL;
813
-        }
814
-        ob_start();
815
-        ?>
805
+		if (!empty($category)) {
806
+			global $geodir_add_location_url;
807
+			$geodir_add_location_url = '0';
808
+			if ($add_location_filter != '0') {
809
+				$geodir_add_location_url = '1';
810
+			}
811
+			$viewall_url = get_term_link((int)$category[0], $post_type . $category_taxonomy);
812
+			$geodir_add_location_url = NULL;
813
+		}
814
+		ob_start();
815
+		?>
816 816
 
817 817
 
818 818
         <div class="geodir_locations geodir_location_listing">
819 819
 
820 820
             <?php
821
-            if (isset($request['is_widget']) && $request['is_widget'] == '1') {
822
-                /** geodir_before_title filter Documented in geodirectory_widgets.php */
823
-                $before_title = isset($before_title) ? $before_title : apply_filters('geodir_before_title', '<h3 class="widget-title">');
824
-                /** geodir_after_title filter Documented in geodirectory_widgets.php */
825
-                $after_title = isset($after_title) ? $after_title : apply_filters('geodir_after_title', '</h3>');
826
-                ?>
821
+			if (isset($request['is_widget']) && $request['is_widget'] == '1') {
822
+				/** geodir_before_title filter Documented in geodirectory_widgets.php */
823
+				$before_title = isset($before_title) ? $before_title : apply_filters('geodir_before_title', '<h3 class="widget-title">');
824
+				/** geodir_after_title filter Documented in geodirectory_widgets.php */
825
+				$after_title = isset($after_title) ? $after_title : apply_filters('geodir_after_title', '</h3>');
826
+				?>
827 827
                 <div class="location_list_heading clearfix">
828 828
                     <?php echo $before_title . $title . $after_title; ?>
829 829
                 </div>
830 830
             <?php
831
-            }
832
-            $query_args = array(
833
-                'posts_per_page' => $post_number,
834
-                'is_geodir_loop' => true,
835
-                'gd_location' => ($add_location_filter) ? true : false,
836
-                'post_type' => $post_type,
837
-                'order_by' => $list_sort,
838
-                'post__not_in' => array($post_id),
839
-                'excerpt_length' => $character_count,
840
-                'related_listings' => $is_display
841
-            );
831
+			}
832
+			$query_args = array(
833
+				'posts_per_page' => $post_number,
834
+				'is_geodir_loop' => true,
835
+				'gd_location' => ($add_location_filter) ? true : false,
836
+				'post_type' => $post_type,
837
+				'order_by' => $list_sort,
838
+				'post__not_in' => array($post_id),
839
+				'excerpt_length' => $character_count,
840
+				'related_listings' => $is_display
841
+			);
842 842
 
843
-            $tax_query = array('taxonomy' => $category_taxonomy,
844
-                'field' => $tax_field,
845
-                'terms' => $category
846
-            );
843
+			$tax_query = array('taxonomy' => $category_taxonomy,
844
+				'field' => $tax_field,
845
+				'terms' => $category
846
+			);
847 847
 
848
-            $query_args['tax_query'] = array($tax_query);
848
+			$query_args['tax_query'] = array($tax_query);
849 849
 
850 850
 
851
-            global $gridview_columns, $post;
851
+			global $gridview_columns, $post;
852 852
 
853 853
 
854
-            query_posts($query_args);
854
+			query_posts($query_args);
855 855
 
856
-            if (strstr($layout, 'gridview')) {
857
-                $listing_view_exp = explode('_', $layout);
858
-                $gridview_columns = $layout;
859
-                $layout = $listing_view_exp[0];
860
-            } else if ($layout == 'list') {
861
-                $gridview_columns = '';
862
-            }
863
-            $related_posts = true;
856
+			if (strstr($layout, 'gridview')) {
857
+				$listing_view_exp = explode('_', $layout);
858
+				$gridview_columns = $layout;
859
+				$layout = $listing_view_exp[0];
860
+			} else if ($layout == 'list') {
861
+				$gridview_columns = '';
862
+			}
863
+			$related_posts = true;
864 864
 
865
-            $related_nearest = false;
866
-            if ($list_sort == 'nearest') {
867
-                $related_nearest = true;
868
-            }
865
+			$related_nearest = false;
866
+			if ($list_sort == 'nearest') {
867
+				$related_nearest = true;
868
+			}
869 869
 
870 870
 
871
-            /**
872
-             * Filters related listing listview template.
873
-             *
874
-             * @since 1.0.0
875
-             */
876
-            $template = apply_filters("geodir_template_part-related-listing-listview", geodir_locate_template('listing-listview'));
871
+			/**
872
+			 * Filters related listing listview template.
873
+			 *
874
+			 * @since 1.0.0
875
+			 */
876
+			$template = apply_filters("geodir_template_part-related-listing-listview", geodir_locate_template('listing-listview'));
877 877
 
878
-            /**
879
-             * Includes related listing listview template.
880
-             *
881
-             * @since 1.0.0
882
-             */
883
-            include($template);
878
+			/**
879
+			 * Includes related listing listview template.
880
+			 *
881
+			 * @since 1.0.0
882
+			 */
883
+			include($template);
884 884
 
885
-            wp_reset_query();
886
-            $post = $origi_post;
887
-            $related_nearest = false;
888
-            ?>
885
+			wp_reset_query();
886
+			$post = $origi_post;
887
+			$related_nearest = false;
888
+			?>
889 889
 
890 890
         </div>
891 891
         <?php
892
-        return $html = ob_get_clean();
892
+		return $html = ob_get_clean();
893 893
 
894
-    }
894
+	}
895 895
 
896 896
 }
897 897
 
@@ -907,17 +907,17 @@  discard block
 block discarded – undo
907 907
  */
908 908
 function geodir_category_count_script()
909 909
 {
910
-    global $geodir_post_category_str;
910
+	global $geodir_post_category_str;
911 911
 
912
-    if (!empty($geodir_post_category_str)) {
913
-        $geodir_post_category_str = serialize($geodir_post_category_str);
914
-    }
912
+	if (!empty($geodir_post_category_str)) {
913
+		$geodir_post_category_str = serialize($geodir_post_category_str);
914
+	}
915 915
 
916
-    $all_var['post_category_array'] = html_entity_decode((string)$geodir_post_category_str, ENT_QUOTES, 'UTF-8');
917
-    $script = "var post_category_array = " . json_encode($all_var) . ';';
918
-    echo '<script>';
919
-    echo $script;
920
-    echo '</script>';
916
+	$all_var['post_category_array'] = html_entity_decode((string)$geodir_post_category_str, ENT_QUOTES, 'UTF-8');
917
+	$script = "var post_category_array = " . json_encode($all_var) . ';';
918
+	echo '<script>';
919
+	echo $script;
920
+	echo '</script>';
921 921
 
922 922
 }
923 923
 
@@ -930,16 +930,16 @@  discard block
 block discarded – undo
930 930
  */
931 931
 function geodir_get_map_default_language()
932 932
 {
933
-    $geodir_default_map_language = get_option('geodir_default_map_language');
934
-    if (empty($geodir_default_map_language))
935
-        $geodir_default_map_language = 'en';
936
-    /**
937
-     * Filter default map language.
938
-     *
939
-     * @since 1.0.0
940
-     * @param string $geodir_default_map_language Default map language.
941
-     */
942
-    return apply_filters('geodir_default_map_language', $geodir_default_map_language);
933
+	$geodir_default_map_language = get_option('geodir_default_map_language');
934
+	if (empty($geodir_default_map_language))
935
+		$geodir_default_map_language = 'en';
936
+	/**
937
+	 * Filter default map language.
938
+	 *
939
+	 * @since 1.0.0
940
+	 * @param string $geodir_default_map_language Default map language.
941
+	 */
942
+	return apply_filters('geodir_default_map_language', $geodir_default_map_language);
943 943
 }
944 944
 
945 945
 /**
@@ -951,14 +951,14 @@  discard block
 block discarded – undo
951 951
  */
952 952
 function geodir_get_map_api_key()
953 953
 {
954
-    $key = get_option('geodir_google_api_key');
955
-    /**
956
-     * Filter Google maps api key.
957
-     *
958
-     * @since 1.6.4
959
-     * @param string $key Google maps api key.
960
-     */
961
-    return apply_filters('geodir_google_api_key', $key);
954
+	$key = get_option('geodir_google_api_key');
955
+	/**
956
+	 * Filter Google maps api key.
957
+	 *
958
+	 * @since 1.6.4
959
+	 * @param string $key Google maps api key.
960
+	 */
961
+	return apply_filters('geodir_google_api_key', $key);
962 962
 }
963 963
 
964 964
 
@@ -975,12 +975,12 @@  discard block
 block discarded – undo
975 975
  */
976 976
 function geodir_add_meta_keywords()
977 977
 {
978
-    global $wp, $post, $wp_query, $wpdb, $geodir_addon_list;
978
+	global $wp, $post, $wp_query, $wpdb, $geodir_addon_list;
979 979
 
980
-    $is_geodir_page = geodir_is_geodir_page();
981
-    if (!$is_geodir_page) {
982
-        return;
983
-    }// if non GD page, bail
980
+	$is_geodir_page = geodir_is_geodir_page();
981
+	if (!$is_geodir_page) {
982
+		return;
983
+	}// if non GD page, bail
984 984
 
985 985
 	$use_gd_meta = true;
986 986
 	if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
@@ -995,249 +995,249 @@  discard block
 block discarded – undo
995 995
 		return;
996 996
 	}// bail if Yoast Wordpress SEO or All_in_One_SEO_Pack active.
997 997
 
998
-    $current_term = $wp_query->get_queried_object();
999
-
1000
-    $all_postypes = geodir_get_posttypes();
1001
-
1002
-    $geodir_taxonomies = geodir_get_taxonomies('', true);
1003
-
1004
-    $meta_desc = '';
1005
-    $meta_key = '';
1006
-    if (isset($current_term->ID) && $current_term->ID == geodir_location_page_id()) {
1007
-        /**
1008
-         * Filter SEO meta location description.
1009
-         *
1010
-         * @since 1.0.0
1011
-         */
1012
-        $meta_desc = apply_filters('geodir_seo_meta_location_description', '');
1013
-        $meta_desc .= '';
1014
-    }
1015
-    if (have_posts() && is_single() OR is_page()) {
1016
-        while (have_posts()) {
1017
-            the_post();
1018
-
1019
-            if (has_excerpt()) {
1020
-                $out_excerpt = strip_tags(strip_shortcodes(get_the_excerpt()));
1021
-                if (empty($out_excerpt)) {
1022
-                    $out_excerpt = strip_tags(do_shortcode(get_the_excerpt()));
1023
-                }
1024
-                $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $out_excerpt);
1025
-            } else {
1026
-                $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $post->post_content);
1027
-                $out_excerpt = strip_tags(strip_shortcodes($out_excerpt));
1028
-                if (empty($out_excerpt)) {
1029
-                    $out_excerpt = strip_tags(do_shortcode($out_excerpt)); // parse short code from content
1030
-                }
1031
-                $out_excerpt = trim(wp_trim_words($out_excerpt, 35, ''), '.!?,;:-');
1032
-            }
998
+	$current_term = $wp_query->get_queried_object();
1033 999
 
1034
-            $meta_desc .= $out_excerpt;
1035
-        }
1036
-    } elseif ((is_category() || is_tag()) && isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
1037
-        if (is_category()) {
1038
-            $meta_desc .= __("Posts related to Category:", 'geodirectory') . " " . ucfirst(single_cat_title("", FALSE));
1039
-        } elseif (is_tag()) {
1040
-            $meta_desc .= __("Posts related to Tag:", 'geodirectory') . " " . ucfirst(single_tag_title("", FALSE));
1041
-        }
1042
-    } elseif (isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
1043
-        $meta_desc .= isset($current_term->description) ? $current_term->description : '';
1044
-    }
1045
-
1046
-
1047
-    $geodir_post_type = geodir_get_current_posttype();
1048
-    $geodir_post_type_info = get_post_type_object($geodir_post_type);
1049
-    $geodir_is_page_listing = geodir_is_page('listing') ? true : false;
1050
-
1051
-    $category_taxonomy = geodir_get_taxonomies($geodir_post_type);
1052
-    $tag_taxonomy = geodir_get_taxonomies($geodir_post_type, true);
1053
-
1054
-    $geodir_is_category = isset($category_taxonomy[0]) && get_query_var($category_taxonomy[0]) ? get_query_var($category_taxonomy[0]) : false;
1055
-    $geodir_is_tag = isset($tag_taxonomy[0]) && get_query_var($tag_taxonomy[0]) ? true : false;
1056
-
1057
-    $geodir_is_search = geodir_is_page('search') ? true : false;
1058
-    $geodir_is_location = geodir_is_page('location') ? true : false;
1059
-    $geodir_location_manager = isset($geodir_addon_list['geodir_location_manager']) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false;
1060
-    $godir_location_terms = geodir_get_current_location_terms('query_vars');
1061
-    $gd_city = $geodir_location_manager && isset($godir_location_terms['gd_city']) ? $godir_location_terms['gd_city'] : NULL;
1062
-    $gd_region = $geodir_location_manager && isset($godir_location_terms['gd_region']) ? $godir_location_terms['gd_region'] : NULL;
1063
-    $gd_country = $geodir_location_manager && isset($godir_location_terms['gd_country']) ? $godir_location_terms['gd_country'] : NULL;
1064
-    $replace_location = __('Everywhere', 'geodirectory');
1065
-    $location_id = NULL;
1066
-    if ($geodir_location_manager) {
1067
-        $sql = $wpdb->prepare("SELECT location_id FROM " . POST_LOCATION_TABLE . " WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array($gd_city));
1068
-        $location_id = (int)$wpdb->get_var($sql);
1069
-        $location_type = geodir_what_is_current_location();
1070
-        if ($location_type == 'city') {
1071
-            $replace_location = geodir_get_current_location(array('what' => 'city', 'echo' => false));
1072
-        } elseif ($location_type == 'region') {
1073
-            $replace_location = geodir_get_current_location(array('what' => 'region', 'echo' => false));
1074
-        } elseif ($location_type == 'country') {
1075
-            $replace_location = geodir_get_current_location(array('what' => 'country', 'echo' => false));
1076
-            $replace_location = __($replace_location, 'geodirectory');
1077
-        }
1078
-        $country = get_query_var('gd_country');
1079
-        $region = get_query_var('gd_region');
1080
-        $city = get_query_var('gd_city');
1081
-        $current_location = '';
1082
-        if ($country != '') {
1083
-            $current_location = get_actual_location_name('country', $country, true);
1084
-        }
1085
-        if ($region != '') {
1086
-            $current_location = get_actual_location_name('region', $region);
1087
-        }
1088
-        if ($city != '') {
1089
-            $current_location = get_actual_location_name('city', $city);
1090
-        }
1091
-        $replace_location = $current_location != '' ? $current_location : $replace_location;
1092
-    }
1093
-
1094
-    $geodir_meta_keys = '';
1095
-    $geodir_meta_desc = '';
1096
-    if ($is_geodir_page && !empty($geodir_post_type_info)) {
1097
-        if ($geodir_is_page_listing || $geodir_is_search || geodir_is_page('add-listing')) {
1098
-            $geodir_meta_keys = isset($geodir_post_type_info->seo['meta_keyword']) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys;
1099
-
1100
-            $geodir_meta_desc = isset($geodir_post_type_info->description) ? $geodir_post_type_info->description : $geodir_meta_desc;
1101
-            $geodir_meta_desc = isset($geodir_post_type_info->seo['meta_description']) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc;
1102
-
1103
-            if ($geodir_is_category) {
1104
-                $category = $geodir_is_category ? get_term_by('slug', $geodir_is_category, $category_taxonomy[0]) : NULL;
1105
-                if (isset($category->term_id) && !empty($category->term_id)) {
1106
-                    $category_id = $category->term_id;
1107
-                    $category_desc = trim($category->description) != '' ? trim($category->description) : get_tax_meta($category_id, 'ct_cat_top_desc', false, $geodir_post_type);
1108
-                    if ($location_id) {
1109
-                        $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id;
1110
-                        $cat_loc_option = get_option($option_name);
1111
-
1112
-                        $gd_cat_loc_default = !empty($cat_loc_option) && isset($cat_loc_option['gd_cat_loc_default']) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false;
1113
-                        if (!$gd_cat_loc_default) {
1114
-                            $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id . '_' . $location_id;
1115
-                            $option = get_option($option_name);
1116
-                            $category_desc = isset($option['gd_cat_loc_desc']) && trim($option['gd_cat_loc_desc']) != '' ? trim($option['gd_cat_loc_desc']) : $category_desc;
1117
-                        }
1118
-                    }
1119
-                    $geodir_meta_desc = __("Posts related to Category:", 'geodirectory') . " " . ucfirst(single_cat_title("", FALSE)) . '. ' . $category_desc;
1120
-                }
1121
-            } else if ($geodir_is_tag) {
1122
-                $geodir_meta_desc = __("Posts related to Tag:", 'geodirectory') . " " . ucfirst(single_tag_title("", FALSE)) . '. ' . $geodir_meta_desc;
1123
-            }
1124
-        }
1125
-    }
1126
-
1127
-
1128
-    $gd_page = '';
1129
-    if(geodir_is_page('home')){
1130
-        $gd_page = 'home';
1131
-        $meta_desc = (get_option('geodir_meta_desc_homepage')) ? get_option('geodir_meta_desc_homepage') : $meta_desc;
1132
-    }
1133
-    elseif(geodir_is_page('detail')){
1134
-        $gd_page = 'detail';
1135
-        $meta_desc = (get_option('geodir_meta_desc_detail')) ? get_option('geodir_meta_desc_detail') : $meta_desc;
1136
-    }
1137
-    elseif(geodir_is_page('pt')){
1138
-        $gd_page = 'pt';
1139
-        $meta_desc = (get_option('geodir_meta_desc_pt')) ? get_option('geodir_meta_desc_pt') : $meta_desc;
1140
-    }
1141
-    elseif(geodir_is_page('listing')){
1142
-        $gd_page = 'listing';
1143
-        $meta_desc = (get_option('geodir_meta_desc_listing')) ? get_option('geodir_meta_desc_listing') : $meta_desc;
1144
-    }
1145
-    elseif(geodir_is_page('location')){
1146
-        $gd_page = 'location';
1147
-        $meta_desc = (get_option('geodir_meta_desc_location')) ? get_option('geodir_meta_desc_location') : $meta_desc;
1148
-        $meta_desc = apply_filters('geodir_seo_meta_location_description', $meta_desc);
1149
-
1150
-    }
1151
-    elseif(geodir_is_page('search')){
1152
-        $gd_page = 'search';
1153
-        $meta_desc = (get_option('geodir_meta_desc_search')) ? get_option('geodir_meta_desc_search') : $meta_desc;
1154
-    }
1155
-    elseif(geodir_is_page('add-listing')){
1156
-        $gd_page = 'add-listing';
1157
-        $meta_desc = (get_option('geodir_meta_desc_add-listing')) ? get_option('geodir_meta_desc_add-listing') : $meta_desc;
1158
-    }
1159
-    elseif(geodir_is_page('author')){
1160
-        $gd_page = 'author';
1161
-        $meta_desc = (get_option('geodir_meta_desc_author')) ? get_option('geodir_meta_desc_author') : $meta_desc;
1162
-    }
1163
-    elseif(geodir_is_page('login')){
1164
-        $gd_page = 'login';
1165
-        $meta_desc = (get_option('geodir_meta_desc_login')) ? get_option('geodir_meta_desc_login') : $meta_desc;
1166
-    }
1167
-    elseif(geodir_is_page('listing-success')){
1168
-        $gd_page = 'listing-success';
1169
-        $meta_desc = (get_option('geodir_meta_desc_listing-success')) ? get_option('geodir_meta_desc_listing-success') : $meta_desc;
1170
-    }
1171
-
1172
-
1173
-    if ($meta_desc) {
1174
-        $meta_desc = stripslashes_deep($meta_desc);
1175
-        /**
1176
-         * Filter page description to replace variables.
1177
-         *
1178
-         * @since 1.5.4
1179
-         * @param string $title The page description including variables.
1180
-         * @param string $gd_page The GeoDirectory page type if any.
1181
-         */
1182
-        $meta_desc = apply_filters('geodir_seo_meta_description_pre', __($meta_desc, 'geodirectory'),$gd_page,'');
1183
-
1184
-        /**
1185
-         * Filter SEO meta description.
1186
-         *
1187
-         * @since 1.0.0
1188
-         * @param string $meta_desc Meta description content.
1189
-         */
1190
-        echo apply_filters('geodir_seo_meta_description', '<meta name="description" content="' . $meta_desc . '" />', $meta_desc);
1191
-    }
1192
-
1193
-    // meta keywords
1194
-    if (isset($post->post_type) && in_array($post->post_type, $all_postypes)) {
1195
-        $place_tags = wp_get_post_terms($post->ID, $post->post_type . '_tags', array("fields" => "names"));
1196
-        $place_cats = wp_get_post_terms($post->ID, $post->post_type . 'category', array("fields" => "names"));
1197
-
1198
-        $meta_key .= implode(", ", array_merge((array)$place_cats, (array)$place_tags));
1199
-    } else {
1200
-        $posttags = get_the_tags();
1201
-        if ($posttags) {
1202
-            foreach ($posttags as $tag) {
1203
-                $meta_key .= $tag->name . ' ';
1204
-            }
1205
-        } else {
1206
-            $tags = get_tags(array('orderby' => 'count', 'order' => 'DESC'));
1207
-            $xt = 1;
1000
+	$all_postypes = geodir_get_posttypes();
1208 1001
 
1209
-            foreach ($tags as $tag) {
1210
-                if ($xt <= 20) {
1211
-                    $meta_key .= $tag->name . ", ";
1212
-                }
1002
+	$geodir_taxonomies = geodir_get_taxonomies('', true);
1213 1003
 
1214
-                $xt++;
1215
-            }
1216
-        }
1217
-    }
1218
-
1219
-    $meta_key = $meta_key != '' ? rtrim(trim($meta_key), ",") : $meta_key;
1220
-    $geodir_meta_keys = $geodir_meta_keys != '' ? ($meta_key != '' ? $meta_key . ', ' . $geodir_meta_keys : $geodir_meta_keys) : $meta_key;
1221
-    if ($geodir_meta_keys != '') {
1222
-        $geodir_meta_keys = strip_tags($geodir_meta_keys);
1223
-        $geodir_meta_keys = esc_html($geodir_meta_keys);
1224
-        $geodir_meta_keys = geodir_strtolower($geodir_meta_keys);
1225
-        $geodir_meta_keys = wp_html_excerpt($geodir_meta_keys, 1000, '');
1226
-        $geodir_meta_keys = str_replace('%location%', $replace_location, $geodir_meta_keys);
1227
-
1228
-        $meta_key = rtrim(trim($geodir_meta_keys), ",");
1229
-    }
1230
-
1231
-    if ($meta_key) {
1232
-        $meta_key = stripslashes_deep($meta_key);
1233
-        /**
1234
-         * Filter SEO meta keywords.
1235
-         *
1236
-         * @since 1.0.0
1237
-         * @param string $meta_desc Meta keywords.
1238
-         */
1239
-        echo apply_filters('geodir_seo_meta_keywords', '<meta name="keywords" content="' . $meta_key . '" />', $meta_key);
1240
-    }
1004
+	$meta_desc = '';
1005
+	$meta_key = '';
1006
+	if (isset($current_term->ID) && $current_term->ID == geodir_location_page_id()) {
1007
+		/**
1008
+		 * Filter SEO meta location description.
1009
+		 *
1010
+		 * @since 1.0.0
1011
+		 */
1012
+		$meta_desc = apply_filters('geodir_seo_meta_location_description', '');
1013
+		$meta_desc .= '';
1014
+	}
1015
+	if (have_posts() && is_single() OR is_page()) {
1016
+		while (have_posts()) {
1017
+			the_post();
1018
+
1019
+			if (has_excerpt()) {
1020
+				$out_excerpt = strip_tags(strip_shortcodes(get_the_excerpt()));
1021
+				if (empty($out_excerpt)) {
1022
+					$out_excerpt = strip_tags(do_shortcode(get_the_excerpt()));
1023
+				}
1024
+				$out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $out_excerpt);
1025
+			} else {
1026
+				$out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $post->post_content);
1027
+				$out_excerpt = strip_tags(strip_shortcodes($out_excerpt));
1028
+				if (empty($out_excerpt)) {
1029
+					$out_excerpt = strip_tags(do_shortcode($out_excerpt)); // parse short code from content
1030
+				}
1031
+				$out_excerpt = trim(wp_trim_words($out_excerpt, 35, ''), '.!?,;:-');
1032
+			}
1033
+
1034
+			$meta_desc .= $out_excerpt;
1035
+		}
1036
+	} elseif ((is_category() || is_tag()) && isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
1037
+		if (is_category()) {
1038
+			$meta_desc .= __("Posts related to Category:", 'geodirectory') . " " . ucfirst(single_cat_title("", FALSE));
1039
+		} elseif (is_tag()) {
1040
+			$meta_desc .= __("Posts related to Tag:", 'geodirectory') . " " . ucfirst(single_tag_title("", FALSE));
1041
+		}
1042
+	} elseif (isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
1043
+		$meta_desc .= isset($current_term->description) ? $current_term->description : '';
1044
+	}
1045
+
1046
+
1047
+	$geodir_post_type = geodir_get_current_posttype();
1048
+	$geodir_post_type_info = get_post_type_object($geodir_post_type);
1049
+	$geodir_is_page_listing = geodir_is_page('listing') ? true : false;
1050
+
1051
+	$category_taxonomy = geodir_get_taxonomies($geodir_post_type);
1052
+	$tag_taxonomy = geodir_get_taxonomies($geodir_post_type, true);
1053
+
1054
+	$geodir_is_category = isset($category_taxonomy[0]) && get_query_var($category_taxonomy[0]) ? get_query_var($category_taxonomy[0]) : false;
1055
+	$geodir_is_tag = isset($tag_taxonomy[0]) && get_query_var($tag_taxonomy[0]) ? true : false;
1056
+
1057
+	$geodir_is_search = geodir_is_page('search') ? true : false;
1058
+	$geodir_is_location = geodir_is_page('location') ? true : false;
1059
+	$geodir_location_manager = isset($geodir_addon_list['geodir_location_manager']) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false;
1060
+	$godir_location_terms = geodir_get_current_location_terms('query_vars');
1061
+	$gd_city = $geodir_location_manager && isset($godir_location_terms['gd_city']) ? $godir_location_terms['gd_city'] : NULL;
1062
+	$gd_region = $geodir_location_manager && isset($godir_location_terms['gd_region']) ? $godir_location_terms['gd_region'] : NULL;
1063
+	$gd_country = $geodir_location_manager && isset($godir_location_terms['gd_country']) ? $godir_location_terms['gd_country'] : NULL;
1064
+	$replace_location = __('Everywhere', 'geodirectory');
1065
+	$location_id = NULL;
1066
+	if ($geodir_location_manager) {
1067
+		$sql = $wpdb->prepare("SELECT location_id FROM " . POST_LOCATION_TABLE . " WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array($gd_city));
1068
+		$location_id = (int)$wpdb->get_var($sql);
1069
+		$location_type = geodir_what_is_current_location();
1070
+		if ($location_type == 'city') {
1071
+			$replace_location = geodir_get_current_location(array('what' => 'city', 'echo' => false));
1072
+		} elseif ($location_type == 'region') {
1073
+			$replace_location = geodir_get_current_location(array('what' => 'region', 'echo' => false));
1074
+		} elseif ($location_type == 'country') {
1075
+			$replace_location = geodir_get_current_location(array('what' => 'country', 'echo' => false));
1076
+			$replace_location = __($replace_location, 'geodirectory');
1077
+		}
1078
+		$country = get_query_var('gd_country');
1079
+		$region = get_query_var('gd_region');
1080
+		$city = get_query_var('gd_city');
1081
+		$current_location = '';
1082
+		if ($country != '') {
1083
+			$current_location = get_actual_location_name('country', $country, true);
1084
+		}
1085
+		if ($region != '') {
1086
+			$current_location = get_actual_location_name('region', $region);
1087
+		}
1088
+		if ($city != '') {
1089
+			$current_location = get_actual_location_name('city', $city);
1090
+		}
1091
+		$replace_location = $current_location != '' ? $current_location : $replace_location;
1092
+	}
1093
+
1094
+	$geodir_meta_keys = '';
1095
+	$geodir_meta_desc = '';
1096
+	if ($is_geodir_page && !empty($geodir_post_type_info)) {
1097
+		if ($geodir_is_page_listing || $geodir_is_search || geodir_is_page('add-listing')) {
1098
+			$geodir_meta_keys = isset($geodir_post_type_info->seo['meta_keyword']) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys;
1099
+
1100
+			$geodir_meta_desc = isset($geodir_post_type_info->description) ? $geodir_post_type_info->description : $geodir_meta_desc;
1101
+			$geodir_meta_desc = isset($geodir_post_type_info->seo['meta_description']) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc;
1102
+
1103
+			if ($geodir_is_category) {
1104
+				$category = $geodir_is_category ? get_term_by('slug', $geodir_is_category, $category_taxonomy[0]) : NULL;
1105
+				if (isset($category->term_id) && !empty($category->term_id)) {
1106
+					$category_id = $category->term_id;
1107
+					$category_desc = trim($category->description) != '' ? trim($category->description) : get_tax_meta($category_id, 'ct_cat_top_desc', false, $geodir_post_type);
1108
+					if ($location_id) {
1109
+						$option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id;
1110
+						$cat_loc_option = get_option($option_name);
1111
+
1112
+						$gd_cat_loc_default = !empty($cat_loc_option) && isset($cat_loc_option['gd_cat_loc_default']) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false;
1113
+						if (!$gd_cat_loc_default) {
1114
+							$option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id . '_' . $location_id;
1115
+							$option = get_option($option_name);
1116
+							$category_desc = isset($option['gd_cat_loc_desc']) && trim($option['gd_cat_loc_desc']) != '' ? trim($option['gd_cat_loc_desc']) : $category_desc;
1117
+						}
1118
+					}
1119
+					$geodir_meta_desc = __("Posts related to Category:", 'geodirectory') . " " . ucfirst(single_cat_title("", FALSE)) . '. ' . $category_desc;
1120
+				}
1121
+			} else if ($geodir_is_tag) {
1122
+				$geodir_meta_desc = __("Posts related to Tag:", 'geodirectory') . " " . ucfirst(single_tag_title("", FALSE)) . '. ' . $geodir_meta_desc;
1123
+			}
1124
+		}
1125
+	}
1126
+
1127
+
1128
+	$gd_page = '';
1129
+	if(geodir_is_page('home')){
1130
+		$gd_page = 'home';
1131
+		$meta_desc = (get_option('geodir_meta_desc_homepage')) ? get_option('geodir_meta_desc_homepage') : $meta_desc;
1132
+	}
1133
+	elseif(geodir_is_page('detail')){
1134
+		$gd_page = 'detail';
1135
+		$meta_desc = (get_option('geodir_meta_desc_detail')) ? get_option('geodir_meta_desc_detail') : $meta_desc;
1136
+	}
1137
+	elseif(geodir_is_page('pt')){
1138
+		$gd_page = 'pt';
1139
+		$meta_desc = (get_option('geodir_meta_desc_pt')) ? get_option('geodir_meta_desc_pt') : $meta_desc;
1140
+	}
1141
+	elseif(geodir_is_page('listing')){
1142
+		$gd_page = 'listing';
1143
+		$meta_desc = (get_option('geodir_meta_desc_listing')) ? get_option('geodir_meta_desc_listing') : $meta_desc;
1144
+	}
1145
+	elseif(geodir_is_page('location')){
1146
+		$gd_page = 'location';
1147
+		$meta_desc = (get_option('geodir_meta_desc_location')) ? get_option('geodir_meta_desc_location') : $meta_desc;
1148
+		$meta_desc = apply_filters('geodir_seo_meta_location_description', $meta_desc);
1149
+
1150
+	}
1151
+	elseif(geodir_is_page('search')){
1152
+		$gd_page = 'search';
1153
+		$meta_desc = (get_option('geodir_meta_desc_search')) ? get_option('geodir_meta_desc_search') : $meta_desc;
1154
+	}
1155
+	elseif(geodir_is_page('add-listing')){
1156
+		$gd_page = 'add-listing';
1157
+		$meta_desc = (get_option('geodir_meta_desc_add-listing')) ? get_option('geodir_meta_desc_add-listing') : $meta_desc;
1158
+	}
1159
+	elseif(geodir_is_page('author')){
1160
+		$gd_page = 'author';
1161
+		$meta_desc = (get_option('geodir_meta_desc_author')) ? get_option('geodir_meta_desc_author') : $meta_desc;
1162
+	}
1163
+	elseif(geodir_is_page('login')){
1164
+		$gd_page = 'login';
1165
+		$meta_desc = (get_option('geodir_meta_desc_login')) ? get_option('geodir_meta_desc_login') : $meta_desc;
1166
+	}
1167
+	elseif(geodir_is_page('listing-success')){
1168
+		$gd_page = 'listing-success';
1169
+		$meta_desc = (get_option('geodir_meta_desc_listing-success')) ? get_option('geodir_meta_desc_listing-success') : $meta_desc;
1170
+	}
1171
+
1172
+
1173
+	if ($meta_desc) {
1174
+		$meta_desc = stripslashes_deep($meta_desc);
1175
+		/**
1176
+		 * Filter page description to replace variables.
1177
+		 *
1178
+		 * @since 1.5.4
1179
+		 * @param string $title The page description including variables.
1180
+		 * @param string $gd_page The GeoDirectory page type if any.
1181
+		 */
1182
+		$meta_desc = apply_filters('geodir_seo_meta_description_pre', __($meta_desc, 'geodirectory'),$gd_page,'');
1183
+
1184
+		/**
1185
+		 * Filter SEO meta description.
1186
+		 *
1187
+		 * @since 1.0.0
1188
+		 * @param string $meta_desc Meta description content.
1189
+		 */
1190
+		echo apply_filters('geodir_seo_meta_description', '<meta name="description" content="' . $meta_desc . '" />', $meta_desc);
1191
+	}
1192
+
1193
+	// meta keywords
1194
+	if (isset($post->post_type) && in_array($post->post_type, $all_postypes)) {
1195
+		$place_tags = wp_get_post_terms($post->ID, $post->post_type . '_tags', array("fields" => "names"));
1196
+		$place_cats = wp_get_post_terms($post->ID, $post->post_type . 'category', array("fields" => "names"));
1197
+
1198
+		$meta_key .= implode(", ", array_merge((array)$place_cats, (array)$place_tags));
1199
+	} else {
1200
+		$posttags = get_the_tags();
1201
+		if ($posttags) {
1202
+			foreach ($posttags as $tag) {
1203
+				$meta_key .= $tag->name . ' ';
1204
+			}
1205
+		} else {
1206
+			$tags = get_tags(array('orderby' => 'count', 'order' => 'DESC'));
1207
+			$xt = 1;
1208
+
1209
+			foreach ($tags as $tag) {
1210
+				if ($xt <= 20) {
1211
+					$meta_key .= $tag->name . ", ";
1212
+				}
1213
+
1214
+				$xt++;
1215
+			}
1216
+		}
1217
+	}
1218
+
1219
+	$meta_key = $meta_key != '' ? rtrim(trim($meta_key), ",") : $meta_key;
1220
+	$geodir_meta_keys = $geodir_meta_keys != '' ? ($meta_key != '' ? $meta_key . ', ' . $geodir_meta_keys : $geodir_meta_keys) : $meta_key;
1221
+	if ($geodir_meta_keys != '') {
1222
+		$geodir_meta_keys = strip_tags($geodir_meta_keys);
1223
+		$geodir_meta_keys = esc_html($geodir_meta_keys);
1224
+		$geodir_meta_keys = geodir_strtolower($geodir_meta_keys);
1225
+		$geodir_meta_keys = wp_html_excerpt($geodir_meta_keys, 1000, '');
1226
+		$geodir_meta_keys = str_replace('%location%', $replace_location, $geodir_meta_keys);
1227
+
1228
+		$meta_key = rtrim(trim($geodir_meta_keys), ",");
1229
+	}
1230
+
1231
+	if ($meta_key) {
1232
+		$meta_key = stripslashes_deep($meta_key);
1233
+		/**
1234
+		 * Filter SEO meta keywords.
1235
+		 *
1236
+		 * @since 1.0.0
1237
+		 * @param string $meta_desc Meta keywords.
1238
+		 */
1239
+		echo apply_filters('geodir_seo_meta_keywords', '<meta name="keywords" content="' . $meta_key . '" />', $meta_key);
1240
+	}
1241 1241
 
1242 1242
 }
1243 1243
 
@@ -1252,14 +1252,14 @@  discard block
 block discarded – undo
1252 1252
  */
1253 1253
 function geodir_detail_page_tabs_key_value_array()
1254 1254
 {
1255
-    $geodir_detail_page_tabs_key_value_array = array();
1255
+	$geodir_detail_page_tabs_key_value_array = array();
1256 1256
 
1257
-    $geodir_detail_page_tabs_array = geodir_detail_page_tabs_array();
1257
+	$geodir_detail_page_tabs_array = geodir_detail_page_tabs_array();
1258 1258
 
1259
-    foreach ($geodir_detail_page_tabs_array as $key => $tabs_obj) {
1260
-        $geodir_detail_page_tabs_key_value_array[$key] = $tabs_obj['heading_text'];
1261
-    }
1262
-    return $geodir_detail_page_tabs_key_value_array;
1259
+	foreach ($geodir_detail_page_tabs_array as $key => $tabs_obj) {
1260
+		$geodir_detail_page_tabs_key_value_array[$key] = $tabs_obj['heading_text'];
1261
+	}
1262
+	return $geodir_detail_page_tabs_key_value_array;
1263 1263
 }
1264 1264
 
1265 1265
 /**
@@ -1272,73 +1272,73 @@  discard block
 block discarded – undo
1272 1272
 function geodir_detail_page_tabs_array()
1273 1273
 {
1274 1274
 
1275
-    $arr_tabs = array();
1276
-    /**
1277
-     * Filter detail page tab display.
1278
-     *
1279
-     * @since 1.0.0
1280
-     */
1281
-    $arr_tabs['post_profile'] = array(
1282
-        'heading_text' => __('Profile', 'geodirectory'),
1283
-        'is_active_tab' => true,
1284
-        'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_profile'),
1285
-        'tab_content' => ''
1286
-    );
1287
-    $arr_tabs['post_info'] = array(
1288
-        'heading_text' => __('More Info', 'geodirectory'),
1289
-        'is_active_tab' => false,
1290
-        'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_info'),
1291
-        'tab_content' => ''
1292
-    );
1293
-
1294
-    $arr_tabs['post_images'] = array(
1295
-        'heading_text' => __('Photo', 'geodirectory'),
1296
-        'is_active_tab' => false,
1297
-        'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_images'),
1298
-        'tab_content' => ''
1299
-    );
1300
-
1301
-    $arr_tabs['post_video'] = array(
1302
-        'heading_text' => __('Video', 'geodirectory'),
1303
-        'is_active_tab' => false,
1304
-        'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_video'),
1305
-        'tab_content' => ''
1306
-    );
1307
-
1308
-    $arr_tabs['special_offers'] = array(
1309
-        'heading_text' => __('Special Offers', 'geodirectory'),
1310
-        'is_active_tab' => false,
1311
-        'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'special_offers'),
1312
-        'tab_content' => ''
1313
-    );
1314
-
1315
-    $arr_tabs['post_map'] = array(
1316
-        'heading_text' => __('Map', 'geodirectory'),
1317
-        'is_active_tab' => false,
1318
-        'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_map'),
1319
-        'tab_content' => ''
1320
-    );
1321
-
1322
-    $arr_tabs['reviews'] = array(
1323
-        'heading_text' => __('Reviews', 'geodirectory'),
1324
-        'is_active_tab' => false,
1325
-        'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'reviews'),
1326
-        'tab_content' => 'review display'
1327
-    );
1328
-
1329
-    $arr_tabs['related_listing'] = array(
1330
-        'heading_text' => __('Related Listing', 'geodirectory'),
1331
-        'is_active_tab' => false,
1332
-        'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'related_listing'),
1333
-        'tab_content' => ''
1334
-    );
1335
-
1336
-    /**
1337
-     * Filter the tabs array.
1338
-     *
1339
-     * @since 1.0.0
1340
-     */
1341
-    return apply_filters('geodir_detail_page_tab_list_extend', $arr_tabs);
1275
+	$arr_tabs = array();
1276
+	/**
1277
+	 * Filter detail page tab display.
1278
+	 *
1279
+	 * @since 1.0.0
1280
+	 */
1281
+	$arr_tabs['post_profile'] = array(
1282
+		'heading_text' => __('Profile', 'geodirectory'),
1283
+		'is_active_tab' => true,
1284
+		'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_profile'),
1285
+		'tab_content' => ''
1286
+	);
1287
+	$arr_tabs['post_info'] = array(
1288
+		'heading_text' => __('More Info', 'geodirectory'),
1289
+		'is_active_tab' => false,
1290
+		'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_info'),
1291
+		'tab_content' => ''
1292
+	);
1293
+
1294
+	$arr_tabs['post_images'] = array(
1295
+		'heading_text' => __('Photo', 'geodirectory'),
1296
+		'is_active_tab' => false,
1297
+		'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_images'),
1298
+		'tab_content' => ''
1299
+	);
1300
+
1301
+	$arr_tabs['post_video'] = array(
1302
+		'heading_text' => __('Video', 'geodirectory'),
1303
+		'is_active_tab' => false,
1304
+		'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_video'),
1305
+		'tab_content' => ''
1306
+	);
1307
+
1308
+	$arr_tabs['special_offers'] = array(
1309
+		'heading_text' => __('Special Offers', 'geodirectory'),
1310
+		'is_active_tab' => false,
1311
+		'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'special_offers'),
1312
+		'tab_content' => ''
1313
+	);
1314
+
1315
+	$arr_tabs['post_map'] = array(
1316
+		'heading_text' => __('Map', 'geodirectory'),
1317
+		'is_active_tab' => false,
1318
+		'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_map'),
1319
+		'tab_content' => ''
1320
+	);
1321
+
1322
+	$arr_tabs['reviews'] = array(
1323
+		'heading_text' => __('Reviews', 'geodirectory'),
1324
+		'is_active_tab' => false,
1325
+		'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'reviews'),
1326
+		'tab_content' => 'review display'
1327
+	);
1328
+
1329
+	$arr_tabs['related_listing'] = array(
1330
+		'heading_text' => __('Related Listing', 'geodirectory'),
1331
+		'is_active_tab' => false,
1332
+		'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'related_listing'),
1333
+		'tab_content' => ''
1334
+	);
1335
+
1336
+	/**
1337
+	 * Filter the tabs array.
1338
+	 *
1339
+	 * @since 1.0.0
1340
+	 */
1341
+	return apply_filters('geodir_detail_page_tab_list_extend', $arr_tabs);
1342 1342
 
1343 1343
 
1344 1344
 }
@@ -1353,15 +1353,15 @@  discard block
 block discarded – undo
1353 1353
  */
1354 1354
 function geodir_detail_page_tabs_list()
1355 1355
 {
1356
-    $tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
1357
-    $tabs_array = geodir_detail_page_tabs_array();
1358
-    if (!empty($tabs_excluded)) {
1359
-        foreach ($tabs_excluded as $tab) {
1360
-            if (array_key_exists($tab, $tabs_array))
1361
-                unset($tabs_array[$tab]);
1362
-        }
1363
-    }
1364
-    return $tabs_array;
1356
+	$tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
1357
+	$tabs_array = geodir_detail_page_tabs_array();
1358
+	if (!empty($tabs_excluded)) {
1359
+		foreach ($tabs_excluded as $tab) {
1360
+			if (array_key_exists($tab, $tabs_array))
1361
+				unset($tabs_array[$tab]);
1362
+		}
1363
+	}
1364
+	return $tabs_array;
1365 1365
 }
1366 1366
 
1367 1367
 
@@ -1379,161 +1379,161 @@  discard block
 block discarded – undo
1379 1379
  */
1380 1380
 function geodir_show_detail_page_tabs()
1381 1381
 {
1382
-    global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1382
+	global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1383 1383
 
1384
-    $post_id = !empty($post) && isset($post->ID) ? (int)$post->ID : 0;
1385
-    $request_post_id = !empty($_REQUEST['p']) ? (int)$_REQUEST['p'] : 0;
1386
-    $is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
1384
+	$post_id = !empty($post) && isset($post->ID) ? (int)$post->ID : 0;
1385
+	$request_post_id = !empty($_REQUEST['p']) ? (int)$_REQUEST['p'] : 0;
1386
+	$is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend
1387 1387
 
1388
-    if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
1389
-        $post = geodir_get_post_info($request_post_id);
1390
-        setup_postdata($post);
1391
-    }
1388
+	if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
1389
+		$post = geodir_get_post_info($request_post_id);
1390
+		setup_postdata($post);
1391
+	}
1392 1392
 
1393
-    $geodir_post_detail_fields = geodir_show_listing_info('detail');
1393
+	$geodir_post_detail_fields = geodir_show_listing_info('detail');
1394 1394
 
1395 1395
 
1396
-    if (geodir_is_page('detail')) {
1397
-        $video = geodir_get_video($post->ID);
1398
-        $special_offers = geodir_get_special_offers($post->ID);
1399
-        $related_listing_array = array();
1400
-        if (get_option('geodir_add_related_listing_posttypes'))
1401
-            $related_listing_array = get_option('geodir_add_related_listing_posttypes');
1396
+	if (geodir_is_page('detail')) {
1397
+		$video = geodir_get_video($post->ID);
1398
+		$special_offers = geodir_get_special_offers($post->ID);
1399
+		$related_listing_array = array();
1400
+		if (get_option('geodir_add_related_listing_posttypes'))
1401
+			$related_listing_array = get_option('geodir_add_related_listing_posttypes');
1402 1402
 
1403 1403
 
1404
-        $excluded_tabs = get_option('geodir_detail_page_tabs_excluded');
1405
-        if(!$excluded_tabs){$excluded_tabs = array();}
1404
+		$excluded_tabs = get_option('geodir_detail_page_tabs_excluded');
1405
+		if(!$excluded_tabs){$excluded_tabs = array();}
1406 1406
 
1407
-        $related_listing = '';
1408
-        if (in_array($post->post_type, $related_listing_array) && !in_array('related_listing', $excluded_tabs)) {
1409
-            $request = array('post_number' => get_option('geodir_related_post_count'),
1410
-                'relate_to' => get_option('geodir_related_post_relate_to'),
1411
-                'layout' => get_option('geodir_related_post_listing_view'),
1412
-                'add_location_filter' => get_option('geodir_related_post_location_filter'),
1413
-                'list_sort' => get_option('geodir_related_post_sortby'),
1414
-                'character_count' => get_option('geodir_related_post_excerpt'));
1407
+		$related_listing = '';
1408
+		if (in_array($post->post_type, $related_listing_array) && !in_array('related_listing', $excluded_tabs)) {
1409
+			$request = array('post_number' => get_option('geodir_related_post_count'),
1410
+				'relate_to' => get_option('geodir_related_post_relate_to'),
1411
+				'layout' => get_option('geodir_related_post_listing_view'),
1412
+				'add_location_filter' => get_option('geodir_related_post_location_filter'),
1413
+				'list_sort' => get_option('geodir_related_post_sortby'),
1414
+				'character_count' => get_option('geodir_related_post_excerpt'));
1415 1415
 
1416
-            if ($post->post_type == 'gd_event' && defined('GDEVENTS_VERSION')) {
1417
-                $related_listing = geodir_get_detail_page_related_events($request);
1418
-            } else {
1419
-                $related_listing = geodir_related_posts_display($request);
1420
-            }
1416
+			if ($post->post_type == 'gd_event' && defined('GDEVENTS_VERSION')) {
1417
+				$related_listing = geodir_get_detail_page_related_events($request);
1418
+			} else {
1419
+				$related_listing = geodir_related_posts_display($request);
1420
+			}
1421 1421
 
1422
-        }
1422
+		}
1423 1423
 
1424
-        $post_images = geodir_get_images($post->ID, 'thumbnail');
1425
-        $thumb_image = '';
1426
-        if (!empty($post_images)) {
1427
-            foreach ($post_images as $image) {
1428
-                $caption = (!empty($image->caption)) ? $image->caption : '';
1429
-                $thumb_image .= '<a href="' . $image->src . '" title="'.$caption.'">';
1430
-                $thumb_image .= geodir_show_image($image, 'thumbnail', true, false);
1431
-                $thumb_image .= '</a>';
1432
-            }
1433
-        }
1424
+		$post_images = geodir_get_images($post->ID, 'thumbnail');
1425
+		$thumb_image = '';
1426
+		if (!empty($post_images)) {
1427
+			foreach ($post_images as $image) {
1428
+				$caption = (!empty($image->caption)) ? $image->caption : '';
1429
+				$thumb_image .= '<a href="' . $image->src . '" title="'.$caption.'">';
1430
+				$thumb_image .= geodir_show_image($image, 'thumbnail', true, false);
1431
+				$thumb_image .= '</a>';
1432
+			}
1433
+		}
1434 1434
 
1435
-        $map_args = array();
1436
-        $map_args['map_canvas_name'] = 'detail_page_map_canvas';
1437
-        $map_args['width'] = '600';
1438
-        $map_args['height'] = '300';
1439
-        if ($post->post_mapzoom) {
1440
-            $map_args['zoom'] = '' . $post->post_mapzoom . '';
1441
-        }
1442
-        $map_args['autozoom'] = false;
1443
-        $map_args['child_collapse'] = '0';
1444
-        $map_args['enable_cat_filters'] = false;
1445
-        $map_args['enable_text_search'] = false;
1446
-        $map_args['enable_post_type_filters'] = false;
1447
-        $map_args['enable_location_filters'] = false;
1448
-        $map_args['enable_jason_on_load'] = true;
1449
-        $map_args['enable_map_direction'] = true;
1450
-        $map_args['map_class_name'] = 'geodir-map-detail-page';
1451
-        $map_args['maptype'] = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP';
1452
-    } else if (geodir_is_page('preview')) {
1453
-        $video = isset($post->geodir_video) ? $post->geodir_video : '';
1454
-        $special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : '';
1455
-
1456
-        if (isset($post->post_images))
1457
-            $post->post_images = trim($post->post_images, ",");
1458
-
1459
-        if (isset($post->post_images) && !empty($post->post_images))
1460
-            $post_images = explode(",", $post->post_images);
1461
-
1462
-        $thumb_image = '';
1463
-        if (!empty($post_images)) {
1464
-            foreach ($post_images as $image) {
1465
-                if ($image != '') {
1466
-                    $thumb_image .= '<a href="' . $image . '">';
1467
-                    $thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
1468
-                    $thumb_image .= '</a>';
1469
-                }
1470
-            }
1471
-        }
1435
+		$map_args = array();
1436
+		$map_args['map_canvas_name'] = 'detail_page_map_canvas';
1437
+		$map_args['width'] = '600';
1438
+		$map_args['height'] = '300';
1439
+		if ($post->post_mapzoom) {
1440
+			$map_args['zoom'] = '' . $post->post_mapzoom . '';
1441
+		}
1442
+		$map_args['autozoom'] = false;
1443
+		$map_args['child_collapse'] = '0';
1444
+		$map_args['enable_cat_filters'] = false;
1445
+		$map_args['enable_text_search'] = false;
1446
+		$map_args['enable_post_type_filters'] = false;
1447
+		$map_args['enable_location_filters'] = false;
1448
+		$map_args['enable_jason_on_load'] = true;
1449
+		$map_args['enable_map_direction'] = true;
1450
+		$map_args['map_class_name'] = 'geodir-map-detail-page';
1451
+		$map_args['maptype'] = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP';
1452
+	} else if (geodir_is_page('preview')) {
1453
+		$video = isset($post->geodir_video) ? $post->geodir_video : '';
1454
+		$special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : '';
1455
+
1456
+		if (isset($post->post_images))
1457
+			$post->post_images = trim($post->post_images, ",");
1458
+
1459
+		if (isset($post->post_images) && !empty($post->post_images))
1460
+			$post_images = explode(",", $post->post_images);
1461
+
1462
+		$thumb_image = '';
1463
+		if (!empty($post_images)) {
1464
+			foreach ($post_images as $image) {
1465
+				if ($image != '') {
1466
+					$thumb_image .= '<a href="' . $image . '">';
1467
+					$thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
1468
+					$thumb_image .= '</a>';
1469
+				}
1470
+			}
1471
+		}
1472 1472
 
1473
-        global $map_jason;
1474
-        $marker_json = $post->marker_json != '' ? json_decode($post->marker_json, true) : array();
1475
-        $marker_icon = (!empty($marker_json) && !empty($marker_json['i'])) ? $marker_json['i'] : '';
1476
-        $icon_size = geodir_get_marker_size($marker_icon);
1477
-        $marker_json['w'] = $icon_size['w'];
1478
-        $marker_json['h'] = $icon_size['h'];
1479
-        $map_jason[] = json_encode($marker_json);
1480
-
1481
-        $address_latitude = isset($post->post_latitude) ? $post->post_latitude : '';
1482
-        $address_longitude = isset($post->post_longitude) ? $post->post_longitude : '';
1483
-        $mapview = isset($post->post_mapview) ? $post->post_mapview : '';
1484
-        $mapzoom = isset($post->post_mapzoom) ? $post->post_mapzoom : '';
1485
-        if (!$mapzoom) {
1486
-            $mapzoom = 12;
1487
-        }
1473
+		global $map_jason;
1474
+		$marker_json = $post->marker_json != '' ? json_decode($post->marker_json, true) : array();
1475
+		$marker_icon = (!empty($marker_json) && !empty($marker_json['i'])) ? $marker_json['i'] : '';
1476
+		$icon_size = geodir_get_marker_size($marker_icon);
1477
+		$marker_json['w'] = $icon_size['w'];
1478
+		$marker_json['h'] = $icon_size['h'];
1479
+		$map_jason[] = json_encode($marker_json);
1480
+
1481
+		$address_latitude = isset($post->post_latitude) ? $post->post_latitude : '';
1482
+		$address_longitude = isset($post->post_longitude) ? $post->post_longitude : '';
1483
+		$mapview = isset($post->post_mapview) ? $post->post_mapview : '';
1484
+		$mapzoom = isset($post->post_mapzoom) ? $post->post_mapzoom : '';
1485
+		if (!$mapzoom) {
1486
+			$mapzoom = 12;
1487
+		}
1488 1488
 
1489
-        $map_args = array();
1490
-        $map_args['map_canvas_name'] = 'preview_map_canvas';
1491
-        $map_args['width'] = '950';
1492
-        $map_args['height'] = '300';
1493
-        $map_args['child_collapse'] = '0';
1494
-        $map_args['maptype'] = $mapview;
1495
-        $map_args['autozoom'] = false;
1496
-        $map_args['zoom'] = "$mapzoom";
1497
-        $map_args['latitude'] = $address_latitude;
1498
-        $map_args['longitude'] = $address_longitude;
1499
-        $map_args['enable_cat_filters'] = false;
1500
-        $map_args['enable_text_search'] = false;
1501
-        $map_args['enable_post_type_filters'] = false;
1502
-        $map_args['enable_location_filters'] = false;
1503
-        $map_args['enable_jason_on_load'] = true;
1504
-        $map_args['enable_map_direction'] = true;
1505
-        $map_args['map_class_name'] = 'geodir-map-preview-page';
1506
-    }
1507
-
1508
-    $arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user
1509
-
1510
-    $active_tab = '';
1511
-    $active_tab_name = '';
1512
-    $default_tab = '';
1513
-    $default_tab_name = '';
1514
-    foreach($arr_detail_page_tabs as $tab_index => $tabs){
1515
-        if (isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && !empty($tabs['is_display']) && isset($tabs['heading_text']) && $tabs['heading_text']) {
1516
-            $active_tab = $tab_index;
1517
-            $active_tab_name = __($tabs['heading_text'], 'geodirectory');
1518
-        }
1489
+		$map_args = array();
1490
+		$map_args['map_canvas_name'] = 'preview_map_canvas';
1491
+		$map_args['width'] = '950';
1492
+		$map_args['height'] = '300';
1493
+		$map_args['child_collapse'] = '0';
1494
+		$map_args['maptype'] = $mapview;
1495
+		$map_args['autozoom'] = false;
1496
+		$map_args['zoom'] = "$mapzoom";
1497
+		$map_args['latitude'] = $address_latitude;
1498
+		$map_args['longitude'] = $address_longitude;
1499
+		$map_args['enable_cat_filters'] = false;
1500
+		$map_args['enable_text_search'] = false;
1501
+		$map_args['enable_post_type_filters'] = false;
1502
+		$map_args['enable_location_filters'] = false;
1503
+		$map_args['enable_jason_on_load'] = true;
1504
+		$map_args['enable_map_direction'] = true;
1505
+		$map_args['map_class_name'] = 'geodir-map-preview-page';
1506
+	}
1507
+
1508
+	$arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user
1509
+
1510
+	$active_tab = '';
1511
+	$active_tab_name = '';
1512
+	$default_tab = '';
1513
+	$default_tab_name = '';
1514
+	foreach($arr_detail_page_tabs as $tab_index => $tabs){
1515
+		if (isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && !empty($tabs['is_display']) && isset($tabs['heading_text']) && $tabs['heading_text']) {
1516
+			$active_tab = $tab_index;
1517
+			$active_tab_name = __($tabs['heading_text'], 'geodirectory');
1518
+		}
1519 1519
         
1520
-        if ($default_tab === '' && !empty($tabs['is_display']) && !empty($tabs['heading_text'])) {
1521
-            $default_tab = $tab_index;
1522
-            $default_tab_name = __($tabs['heading_text'], 'geodirectory');
1523
-        }
1524
-    }
1520
+		if ($default_tab === '' && !empty($tabs['is_display']) && !empty($tabs['heading_text'])) {
1521
+			$default_tab = $tab_index;
1522
+			$default_tab_name = __($tabs['heading_text'], 'geodirectory');
1523
+		}
1524
+	}
1525 1525
     
1526
-    if ($active_tab === '' && $default_tab !== '') { // Make first tab acs a active tab if not any tab is active.
1527
-        if (isset($arr_detail_page_tabs[$active_tab]) && isset($arr_detail_page_tabs[$active_tab]['is_active_tab'])) {
1528
-            $arr_detail_page_tabs[$active_tab]['is_active_tab'] = false;
1529
-        }
1526
+	if ($active_tab === '' && $default_tab !== '') { // Make first tab acs a active tab if not any tab is active.
1527
+		if (isset($arr_detail_page_tabs[$active_tab]) && isset($arr_detail_page_tabs[$active_tab]['is_active_tab'])) {
1528
+			$arr_detail_page_tabs[$active_tab]['is_active_tab'] = false;
1529
+		}
1530 1530
         
1531
-        $arr_detail_page_tabs[$default_tab]['is_active_tab'] = true;
1532
-        $active_tab = $default_tab;
1533
-        $active_tab_name = $default_tab_name;
1534
-    }
1535
-    $tab_list = (get_option('geodir_disable_tabs',false)) ? true : false;
1536
-    ?>
1531
+		$arr_detail_page_tabs[$default_tab]['is_active_tab'] = true;
1532
+		$active_tab = $default_tab;
1533
+		$active_tab_name = $default_tab_name;
1534
+	}
1535
+	$tab_list = (get_option('geodir_disable_tabs',false)) ? true : false;
1536
+	?>
1537 1537
     <div class="geodir-tabs" id="gd-tabs" style="position:relative;">
1538 1538
         <?php if(!$tab_list){ ?>
1539 1539
         <div id="geodir-tab-mobile-menu">
@@ -1543,166 +1543,166 @@  discard block
 block discarded – undo
1543 1543
         </div>
1544 1544
         <dl class="geodir-tab-head">
1545 1545
             <?php
1546
-            }
1547
-            /**
1548
-             * Called before the details page tab list headings, inside the `dl` tag.
1549
-             *
1550
-             * @since 1.0.0
1551
-             * @see 'geodir_after_tab_list'
1552
-             */
1553
-            do_action('geodir_before_tab_list'); ?>
1546
+			}
1547
+			/**
1548
+			 * Called before the details page tab list headings, inside the `dl` tag.
1549
+			 *
1550
+			 * @since 1.0.0
1551
+			 * @see 'geodir_after_tab_list'
1552
+			 */
1553
+			do_action('geodir_before_tab_list'); ?>
1554 1554
             <?php
1555 1555
 
1556
-            foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
1557
-                if ($detail_page_tab['is_display']) {
1556
+			foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
1557
+				if ($detail_page_tab['is_display']) {
1558 1558
 
1559
-                    if(!$tab_list) {
1560
-                        ?>
1559
+					if(!$tab_list) {
1560
+						?>
1561 1561
                         <dt></dt> <!-- added to comply with validation -->
1562 1562
                         <dd <?php if ($detail_page_tab['is_active_tab']){ ?>class="geodir-tab-active"<?php } ?> ><a
1563 1563
                                 data-tab="#<?php echo $tab_index; ?>"
1564 1564
                                 data-status="enable"><?php _e($detail_page_tab['heading_text'], 'geodirectory'); ?></a>
1565 1565
                         </dd>
1566 1566
                         <?php
1567
-                    }
1568
-                    ob_start() // start tab content buffering
1569
-                    ?>
1567
+					}
1568
+					ob_start() // start tab content buffering
1569
+					?>
1570 1570
                     <li id="<?php echo $tab_index;?>Tab">
1571 1571
                         <?php if($tab_list){
1572
-                            $tab_title = '<span class="gd-tab-list-title" ><a href="#'.$tab_index.'">'.__($detail_page_tab['heading_text'],'geodirectory').'</a></span><hr />';
1573
-                            /**
1574
-                             * Filter the tab list title html.
1575
-                             *
1576
-                             * @since 1.6.1
1577
-                             * @param string $tab_title The html for the tab title.
1578
-                             * @param string $tab_index The tab index type.
1579
-                             * @param array $detail_page_tab The array of values including title text.
1580
-                             */
1581
-                            echo apply_filters('geodir_tab_list_title',$tab_title ,$tab_index ,$detail_page_tab);
1582
-                        }?>
1572
+							$tab_title = '<span class="gd-tab-list-title" ><a href="#'.$tab_index.'">'.__($detail_page_tab['heading_text'],'geodirectory').'</a></span><hr />';
1573
+							/**
1574
+							 * Filter the tab list title html.
1575
+							 *
1576
+							 * @since 1.6.1
1577
+							 * @param string $tab_title The html for the tab title.
1578
+							 * @param string $tab_index The tab index type.
1579
+							 * @param array $detail_page_tab The array of values including title text.
1580
+							 */
1581
+							echo apply_filters('geodir_tab_list_title',$tab_title ,$tab_index ,$detail_page_tab);
1582
+						}?>
1583 1583
                         <div id="<?php echo $tab_index;?>" class="hash-offset"></div>
1584 1584
                         <?php
1585
-                        /**
1586
-                         * Called before the details tab content is output per tab.
1587
-                         *
1588
-                         * @since 1.0.0
1589
-                         * @param string $tab_index The tab name ID.
1590
-                         */
1591
-                        do_action('geodir_before_tab_content', $tab_index);
1592
-
1593
-                        /**
1594
-                         * Called before the details tab content is output per tab.
1595
-                         *
1596
-                         * Uses dynamic hook name: geodir_before_$tab_index_tab_content
1597
-                         *
1598
-                         * @since 1.0.0
1599
-                         * @todo do we need this if we have the hook above? 'geodir_before_tab_content'
1600
-                         */
1601
-                        do_action('geodir_before_' . $tab_index . '_tab_content');
1602
-                        /// write a code to generate content of each tab
1603
-                        switch ($tab_index) {
1604
-                            case 'post_profile':
1605
-                                /**
1606
-                                 * Called before the listing description content on the details page tab.
1607
-                                 *
1608
-                                 * @since 1.0.0
1609
-                                 */
1610
-                                do_action('geodir_before_description_on_listing_detail');
1611
-                                if (geodir_is_page('detail')) {
1612
-                                    the_content();
1613
-                                } else {
1614
-                                    /** This action is documented in geodirectory_template_actions.php */
1615
-                                    echo apply_filters('the_content', stripslashes($post->post_desc));
1616
-                                }
1617
-
1618
-                                /**
1619
-                                 * Called after the listing description content on the details page tab.
1620
-                                 *
1621
-                                 * @since 1.0.0
1622
-                                 */
1623
-                                do_action('geodir_after_description_on_listing_detail');
1624
-                                break;
1625
-                            case 'post_info':
1626
-                                echo $geodir_post_detail_fields;
1627
-                                break;
1628
-                            case 'post_images':
1629
-                                echo $thumb_image;
1630
-                                break;
1631
-                            case 'post_video':
1632
-                                /** This action is documented in geodirectory_template_actions.php */
1633
-                                echo apply_filters('the_content', stripslashes($video));// we apply the_content filter so oembed works also;
1634
-                                break;
1635
-                            case 'special_offers':
1636
-                                echo apply_filters('gd_special_offers_content', wpautop(stripslashes($special_offers)));
1637
-
1638
-                                break;
1639
-                            case 'post_map':
1640
-                                geodir_draw_map($map_args);
1641
-                                break;
1642
-                            case 'reviews':
1643
-                                comments_template();
1644
-                                break;
1645
-                            case 'related_listing':
1646
-                                echo $related_listing;
1647
-                                break;
1648
-                            default: {
1649
-                                if ((isset($post->{$tab_index}) || (!isset($post->{$tab_index}) && (strpos($tab_index, 'gd_tab_') !== false || $tab_index == 'link_business'))) && !empty($detail_page_tab['tab_content'])) {
1650
-                                    echo $detail_page_tab['tab_content'];
1651
-                                }
1652
-                            }
1653
-                                break;
1654
-                        }
1655
-
1656
-                        /**
1657
-                         * Called after the details tab content is output per tab.
1658
-                         *
1659
-                         * @since 1.0.0
1660
-                         */
1661
-                        do_action('geodir_after_tab_content', $tab_index);
1662
-
1663
-                        /**
1664
-                         * Called after the details tab content is output per tab.
1665
-                         *
1666
-                         * Uses dynamic hook name: geodir_after_$tab_index_tab_content
1667
-                         *
1668
-                         * @since 1.0.0
1669
-                         * @todo do we need this if we have the hook above? 'geodir_after_tab_content'
1670
-                         */
1671
-                        do_action('geodir_after_' . $tab_index . '_tab_content');
1672
-                        ?> </li>
1585
+						/**
1586
+						 * Called before the details tab content is output per tab.
1587
+						 *
1588
+						 * @since 1.0.0
1589
+						 * @param string $tab_index The tab name ID.
1590
+						 */
1591
+						do_action('geodir_before_tab_content', $tab_index);
1592
+
1593
+						/**
1594
+						 * Called before the details tab content is output per tab.
1595
+						 *
1596
+						 * Uses dynamic hook name: geodir_before_$tab_index_tab_content
1597
+						 *
1598
+						 * @since 1.0.0
1599
+						 * @todo do we need this if we have the hook above? 'geodir_before_tab_content'
1600
+						 */
1601
+						do_action('geodir_before_' . $tab_index . '_tab_content');
1602
+						/// write a code to generate content of each tab
1603
+						switch ($tab_index) {
1604
+							case 'post_profile':
1605
+								/**
1606
+								 * Called before the listing description content on the details page tab.
1607
+								 *
1608
+								 * @since 1.0.0
1609
+								 */
1610
+								do_action('geodir_before_description_on_listing_detail');
1611
+								if (geodir_is_page('detail')) {
1612
+									the_content();
1613
+								} else {
1614
+									/** This action is documented in geodirectory_template_actions.php */
1615
+									echo apply_filters('the_content', stripslashes($post->post_desc));
1616
+								}
1617
+
1618
+								/**
1619
+								 * Called after the listing description content on the details page tab.
1620
+								 *
1621
+								 * @since 1.0.0
1622
+								 */
1623
+								do_action('geodir_after_description_on_listing_detail');
1624
+								break;
1625
+							case 'post_info':
1626
+								echo $geodir_post_detail_fields;
1627
+								break;
1628
+							case 'post_images':
1629
+								echo $thumb_image;
1630
+								break;
1631
+							case 'post_video':
1632
+								/** This action is documented in geodirectory_template_actions.php */
1633
+								echo apply_filters('the_content', stripslashes($video));// we apply the_content filter so oembed works also;
1634
+								break;
1635
+							case 'special_offers':
1636
+								echo apply_filters('gd_special_offers_content', wpautop(stripslashes($special_offers)));
1637
+
1638
+								break;
1639
+							case 'post_map':
1640
+								geodir_draw_map($map_args);
1641
+								break;
1642
+							case 'reviews':
1643
+								comments_template();
1644
+								break;
1645
+							case 'related_listing':
1646
+								echo $related_listing;
1647
+								break;
1648
+							default: {
1649
+								if ((isset($post->{$tab_index}) || (!isset($post->{$tab_index}) && (strpos($tab_index, 'gd_tab_') !== false || $tab_index == 'link_business'))) && !empty($detail_page_tab['tab_content'])) {
1650
+									echo $detail_page_tab['tab_content'];
1651
+								}
1652
+							}
1653
+								break;
1654
+						}
1655
+
1656
+						/**
1657
+						 * Called after the details tab content is output per tab.
1658
+						 *
1659
+						 * @since 1.0.0
1660
+						 */
1661
+						do_action('geodir_after_tab_content', $tab_index);
1662
+
1663
+						/**
1664
+						 * Called after the details tab content is output per tab.
1665
+						 *
1666
+						 * Uses dynamic hook name: geodir_after_$tab_index_tab_content
1667
+						 *
1668
+						 * @since 1.0.0
1669
+						 * @todo do we need this if we have the hook above? 'geodir_after_tab_content'
1670
+						 */
1671
+						do_action('geodir_after_' . $tab_index . '_tab_content');
1672
+						?> </li>
1673 1673
                     <?php
1674
-                    /**
1675
-                     * Filter the current tab content.
1676
-                     *
1677
-                     * @since 1.0.0
1678
-                     */
1679
-                    $arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean());
1680
-                } // end of if for is_display
1681
-            }// end of foreach
1682
-
1683
-            /**
1684
-             * Called after the details page tab list headings, inside the `dl` tag.
1685
-             *
1686
-             * @since 1.0.0
1687
-             * @see 'geodir_before_tab_list'
1688
-             */
1689
-            do_action('geodir_after_tab_list');
1690
-            ?>
1674
+					/**
1675
+					 * Filter the current tab content.
1676
+					 *
1677
+					 * @since 1.0.0
1678
+					 */
1679
+					$arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean());
1680
+				} // end of if for is_display
1681
+			}// end of foreach
1682
+
1683
+			/**
1684
+			 * Called after the details page tab list headings, inside the `dl` tag.
1685
+			 *
1686
+			 * @since 1.0.0
1687
+			 * @see 'geodir_before_tab_list'
1688
+			 */
1689
+			do_action('geodir_after_tab_list');
1690
+			?>
1691 1691
             <?php if(!$tab_list){?></dl><?php }?>
1692 1692
         <ul class="geodir-tabs-content entry-content <?php if($tab_list){?>geodir-tabs-list<?php }?>" style="position:relative;">
1693 1693
             <?php
1694
-            foreach ($arr_detail_page_tabs as $detail_page_tab) {
1695
-                if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
1696
-                    echo $detail_page_tab['tab_content'];
1697
-                }// end of if
1698
-            }// end of foreach
1699
-
1700
-            /**
1701
-             * Called after all the tab content is output in `li` tags, called before the closing `ul` tag.
1702
-             *
1703
-             * @since 1.0.0
1704
-             */
1705
-            do_action('geodir_add_tab_content'); ?>
1694
+			foreach ($arr_detail_page_tabs as $detail_page_tab) {
1695
+				if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
1696
+					echo $detail_page_tab['tab_content'];
1697
+				}// end of if
1698
+			}// end of foreach
1699
+
1700
+			/**
1701
+			 * Called after all the tab content is output in `li` tags, called before the closing `ul` tag.
1702
+			 *
1703
+			 * @since 1.0.0
1704
+			 */
1705
+			do_action('geodir_add_tab_content'); ?>
1706 1706
         </ul>
1707 1707
         <!--gd-tabs-content ul end-->
1708 1708
     </div>
@@ -1725,7 +1725,7 @@  discard block
 block discarded – undo
1725 1725
         });
1726 1726
     </script>
1727 1727
     <?php
1728
-    }
1728
+	}
1729 1729
 }
1730 1730
 
1731 1731
 /**
@@ -1738,127 +1738,127 @@  discard block
 block discarded – undo
1738 1738
  */
1739 1739
 function geodir_exif($file)
1740 1740
 {
1741
-    if (empty($file) || !is_array($file)) {
1742
-        return $file;
1743
-    }
1741
+	if (empty($file) || !is_array($file)) {
1742
+		return $file;
1743
+	}
1744 1744
     
1745
-    $file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : '';
1746
-    if (!($file_path && file_exists($file_path))) {
1747
-        return $file;
1748
-    }
1749
-    $file['file'] = $file_path;
1745
+	$file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : '';
1746
+	if (!($file_path && file_exists($file_path))) {
1747
+		return $file;
1748
+	}
1749
+	$file['file'] = $file_path;
1750 1750
     
1751
-    if (!file_is_valid_image($file_path)) {
1752
-        return $file; // Bail if file is not an image.
1753
-    }
1751
+	if (!file_is_valid_image($file_path)) {
1752
+		return $file; // Bail if file is not an image.
1753
+	}
1754 1754
     
1755
-    if (!function_exists('wp_get_image_editor')) {
1756
-        return $file;
1757
-    }
1755
+	if (!function_exists('wp_get_image_editor')) {
1756
+		return $file;
1757
+	}
1758 1758
    
1759
-    $mime_type = $file['type'];
1760
-    $exif = array();
1761
-    if ($mime_type == 'image/jpeg' && function_exists('exif_read_data')) {
1762
-        try {
1763
-            $exif = exif_read_data($file_path);
1764
-        } catch(Exception $e) {
1765
-            $exif = array();
1766
-        }
1767
-    }
1759
+	$mime_type = $file['type'];
1760
+	$exif = array();
1761
+	if ($mime_type == 'image/jpeg' && function_exists('exif_read_data')) {
1762
+		try {
1763
+			$exif = exif_read_data($file_path);
1764
+		} catch(Exception $e) {
1765
+			$exif = array();
1766
+		}
1767
+	}
1768 1768
     
1769
-    $rotate = false;
1770
-    $flip = false;
1771
-    $modify = false;
1772
-    $orientation = 0;
1773
-    if (!empty($exif) && isset($exif['Orientation'])) {
1774
-        switch ((int)$exif['Orientation']) {
1775
-            case 1:
1776
-                // do nothing
1777
-                break;
1778
-            case 2:
1779
-                $flip = array(false, true);
1780
-                $modify = true;
1781
-                break;
1782
-            case 3:
1783
-                $orientation = -180;
1784
-                $rotate = true;
1785
-                $modify = true;
1786
-                break;
1787
-            case 4:
1788
-                $flip = array(true, false);
1789
-                $modify = true;
1790
-                break;
1791
-            case 5:
1792
-                $orientation = -90;
1793
-                $rotate = true;
1794
-                $flip = array(false, true);
1795
-                $modify = true;
1796
-                break;
1797
-            case 6:
1798
-                $orientation = -90;
1799
-                $rotate = true;
1800
-                $modify = true;
1801
-                break;
1802
-            case 7:
1803
-                $orientation = -270;
1804
-                $rotate = true;
1805
-                $flip = array(false, true);
1806
-                $modify = true;
1807
-                break;
1808
-            case 8:
1809
-            case 9:
1810
-                $orientation = -270;
1811
-                $rotate = true;
1812
-                $modify = true;
1813
-                break;
1814
-            default:
1815
-                $orientation = 0;
1816
-                $rotate = true;
1817
-                $modify = true;
1818
-                break;
1819
-        }
1820
-    }
1769
+	$rotate = false;
1770
+	$flip = false;
1771
+	$modify = false;
1772
+	$orientation = 0;
1773
+	if (!empty($exif) && isset($exif['Orientation'])) {
1774
+		switch ((int)$exif['Orientation']) {
1775
+			case 1:
1776
+				// do nothing
1777
+				break;
1778
+			case 2:
1779
+				$flip = array(false, true);
1780
+				$modify = true;
1781
+				break;
1782
+			case 3:
1783
+				$orientation = -180;
1784
+				$rotate = true;
1785
+				$modify = true;
1786
+				break;
1787
+			case 4:
1788
+				$flip = array(true, false);
1789
+				$modify = true;
1790
+				break;
1791
+			case 5:
1792
+				$orientation = -90;
1793
+				$rotate = true;
1794
+				$flip = array(false, true);
1795
+				$modify = true;
1796
+				break;
1797
+			case 6:
1798
+				$orientation = -90;
1799
+				$rotate = true;
1800
+				$modify = true;
1801
+				break;
1802
+			case 7:
1803
+				$orientation = -270;
1804
+				$rotate = true;
1805
+				$flip = array(false, true);
1806
+				$modify = true;
1807
+				break;
1808
+			case 8:
1809
+			case 9:
1810
+				$orientation = -270;
1811
+				$rotate = true;
1812
+				$modify = true;
1813
+				break;
1814
+			default:
1815
+				$orientation = 0;
1816
+				$rotate = true;
1817
+				$modify = true;
1818
+				break;
1819
+		}
1820
+	}
1821 1821
     
1822
-    $quality = null;
1823
-    /**
1824
-     * Filter the image quality.
1825
-     *
1826
-     * @since 1.5.7
1827
-     * @param int|null $quality Image Compression quality between 1-100% scale. Default null.
1828
-     * @param string $quality Image mime type.
1829
-     */
1830
-    $quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
1831
-    if ($quality !== null) {
1832
-        $modify = true;
1833
-    }
1834
-
1835
-    if (!$modify) {
1836
-        return $file; // no change
1837
-    }
1838
-
1839
-    $image = wp_get_image_editor($file_path);
1840
-    if (!is_wp_error($image)) {
1841
-        if ($rotate) {
1842
-            $image->rotate($orientation);
1843
-        }
1822
+	$quality = null;
1823
+	/**
1824
+	 * Filter the image quality.
1825
+	 *
1826
+	 * @since 1.5.7
1827
+	 * @param int|null $quality Image Compression quality between 1-100% scale. Default null.
1828
+	 * @param string $quality Image mime type.
1829
+	 */
1830
+	$quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
1831
+	if ($quality !== null) {
1832
+		$modify = true;
1833
+	}
1834
+
1835
+	if (!$modify) {
1836
+		return $file; // no change
1837
+	}
1838
+
1839
+	$image = wp_get_image_editor($file_path);
1840
+	if (!is_wp_error($image)) {
1841
+		if ($rotate) {
1842
+			$image->rotate($orientation);
1843
+		}
1844 1844
         
1845
-        if (!empty($flip)) {
1846
-            $image->flip($flip[0], $flip[1]);
1847
-        }
1845
+		if (!empty($flip)) {
1846
+			$image->flip($flip[0], $flip[1]);
1847
+		}
1848 1848
         
1849
-        if ($quality !== null) {
1850
-            $image->set_quality((int)$quality);
1851
-        }
1849
+		if ($quality !== null) {
1850
+			$image->set_quality((int)$quality);
1851
+		}
1852 1852
         
1853
-       $result = $image->save($file_path);
1854
-       if (!is_wp_error($result)) {
1855
-           $file['file'] = $result['path'];
1856
-           $file['tmp_name'] = $result['path'];
1857
-       }
1858
-    }
1853
+	   $result = $image->save($file_path);
1854
+	   if (!is_wp_error($result)) {
1855
+		   $file['file'] = $result['path'];
1856
+		   $file['tmp_name'] = $result['path'];
1857
+	   }
1858
+	}
1859 1859
     
1860
-    // The image orientation is fixed, pass it back for further processing
1861
-    return $file;
1860
+	// The image orientation is fixed, pass it back for further processing
1861
+	return $file;
1862 1862
 }
1863 1863
 
1864 1864
 /**
@@ -1877,138 +1877,138 @@  discard block
 block discarded – undo
1877 1877
  * @return string Returns the recent reviews html.
1878 1878
  */
1879 1879
 function geodir_get_recent_reviews($g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false) {
1880
-    global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session;
1881
-    $tablecomments = $wpdb->comments;
1882
-    $tableposts = $wpdb->posts;
1883
-
1884
-    $comments_echo = '';
1885
-    $city_filter = '';
1886
-    $region_filter = '';
1887
-    $country_filter = '';
1888
-
1889
-    if ($gd_session->get('gd_multi_location')) {
1890
-        if ($gd_ses_country = $gd_session->get('gd_country')) {
1891
-            $country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
1892
-        }
1880
+	global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session;
1881
+	$tablecomments = $wpdb->comments;
1882
+	$tableposts = $wpdb->posts;
1883
+
1884
+	$comments_echo = '';
1885
+	$city_filter = '';
1886
+	$region_filter = '';
1887
+	$country_filter = '';
1888
+
1889
+	if ($gd_session->get('gd_multi_location')) {
1890
+		if ($gd_ses_country = $gd_session->get('gd_country')) {
1891
+			$country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
1892
+		}
1893 1893
 
1894
-        if ($gd_ses_region = $gd_session->get('gd_region')) {
1895
-            $region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
1896
-        }
1894
+		if ($gd_ses_region = $gd_session->get('gd_region')) {
1895
+			$region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
1896
+		}
1897 1897
 
1898
-        if ($gd_ses_city = $gd_session->get('gd_city')) {
1899
-            $city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
1900
-        }
1901
-    }
1898
+		if ($gd_ses_city = $gd_session->get('gd_city')) {
1899
+			$city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
1900
+		}
1901
+	}
1902 1902
 	
1903
-    $review_table = GEODIR_REVIEW_TABLE;
1904
-    $request = "SELECT r.id as ID, r.post_type, r.comment_id as comment_ID, r.post_date as comment_date,r.overall_rating, r.user_id, r.post_id FROM $review_table as r WHERE r.post_status = 1 AND r.status =1 AND r.overall_rating>=1 $country_filter $region_filter $city_filter ORDER BY r.post_date DESC, r.id DESC LIMIT $no_comments";
1905
-
1906
-    $comments = $wpdb->get_results($request);
1907
-
1908
-    foreach ($comments as $comment) {
1909
-        // Set the extra comment info needed.
1910
-        $comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
1911
-        //echo "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID";
1912
-        $comment->comment_content = $comment_extra->comment_content;
1913
-        $comment->comment_author = $comment_extra->comment_author;
1914
-        $comment->comment_author_email = $comment_extra->comment_author_email;
1915
-
1916
-        $comment_id = '';
1917
-        $comment_id = $comment->comment_ID;
1918
-        $comment_content = strip_tags($comment->comment_content);
1919
-
1920
-        $comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
1921
-
1922
-        $permalink = get_permalink($comment->ID) . "#comment-" . $comment->comment_ID;
1923
-        $comment_author_email = $comment->comment_author_email;
1924
-        $comment_post_ID = $comment->post_id;
1925
-
1926
-        $na = true;
1927
-        if (function_exists('icl_object_id') && icl_object_id($comment_post_ID, $comment->post_type, true)) {
1928
-            $comment_post_ID2 = icl_object_id($comment_post_ID, $comment->post_type, false);
1929
-            if ($comment_post_ID == $comment_post_ID2) {
1930
-            } else {
1931
-                $na = false;
1932
-            }
1933
-        }
1903
+	$review_table = GEODIR_REVIEW_TABLE;
1904
+	$request = "SELECT r.id as ID, r.post_type, r.comment_id as comment_ID, r.post_date as comment_date,r.overall_rating, r.user_id, r.post_id FROM $review_table as r WHERE r.post_status = 1 AND r.status =1 AND r.overall_rating>=1 $country_filter $region_filter $city_filter ORDER BY r.post_date DESC, r.id DESC LIMIT $no_comments";
1905
+
1906
+	$comments = $wpdb->get_results($request);
1907
+
1908
+	foreach ($comments as $comment) {
1909
+		// Set the extra comment info needed.
1910
+		$comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
1911
+		//echo "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID";
1912
+		$comment->comment_content = $comment_extra->comment_content;
1913
+		$comment->comment_author = $comment_extra->comment_author;
1914
+		$comment->comment_author_email = $comment_extra->comment_author_email;
1915
+
1916
+		$comment_id = '';
1917
+		$comment_id = $comment->comment_ID;
1918
+		$comment_content = strip_tags($comment->comment_content);
1919
+
1920
+		$comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
1921
+
1922
+		$permalink = get_permalink($comment->ID) . "#comment-" . $comment->comment_ID;
1923
+		$comment_author_email = $comment->comment_author_email;
1924
+		$comment_post_ID = $comment->post_id;
1925
+
1926
+		$na = true;
1927
+		if (function_exists('icl_object_id') && icl_object_id($comment_post_ID, $comment->post_type, true)) {
1928
+			$comment_post_ID2 = icl_object_id($comment_post_ID, $comment->post_type, false);
1929
+			if ($comment_post_ID == $comment_post_ID2) {
1930
+			} else {
1931
+				$na = false;
1932
+			}
1933
+		}
1934 1934
 
1935
-        $post_title = get_the_title($comment_post_ID);
1936
-        $permalink = get_permalink($comment_post_ID);
1937
-        $comment_permalink = $permalink . "#comment-" . $comment->comment_ID;
1938
-        $read_more = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __('Read more', 'geodirectory') . '</a>';
1935
+		$post_title = get_the_title($comment_post_ID);
1936
+		$permalink = get_permalink($comment_post_ID);
1937
+		$comment_permalink = $permalink . "#comment-" . $comment->comment_ID;
1938
+		$read_more = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __('Read more', 'geodirectory') . '</a>';
1939 1939
 
1940
-        $comment_content_length = strlen($comment_content);
1941
-        if ($comment_content_length > $comment_lenth) {
1942
-            $comment_excerpt = mb_substr($comment_content, 0, $comment_lenth) . '... ' . $read_more;
1943
-        } else {
1944
-            $comment_excerpt = $comment_content;
1945
-        }
1940
+		$comment_content_length = strlen($comment_content);
1941
+		if ($comment_content_length > $comment_lenth) {
1942
+			$comment_excerpt = mb_substr($comment_content, 0, $comment_lenth) . '... ' . $read_more;
1943
+		} else {
1944
+			$comment_excerpt = $comment_content;
1945
+		}
1946 1946
 
1947
-        if ($comment->user_id) {
1948
-            $user_profile_url = get_author_posts_url($comment->user_id);
1949
-        } else {
1950
-            $user_profile_url = '';
1951
-        }
1947
+		if ($comment->user_id) {
1948
+			$user_profile_url = get_author_posts_url($comment->user_id);
1949
+		} else {
1950
+			$user_profile_url = '';
1951
+		}
1952 1952
 
1953
-        if ($comment_id && $na) {
1954
-            $comments_echo .= '<li class="clearfix">';
1955
-            $comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">";
1956
-            if (function_exists('get_avatar')) {
1957
-                if (!isset($comment->comment_type)) {
1958
-                    if ($user_profile_url) {
1959
-                        $comments_echo .= '<a href="' . $user_profile_url . '">';
1960
-                    }
1961
-                    $comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png');
1962
-                    if ($user_profile_url) {
1963
-                        $comments_echo .= '</a>';
1964
-                    }
1965
-                } elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
1966
-                    if ($user_profile_url) {
1967
-                        $comments_echo .= '<a href="' . $user_profile_url . '">';
1968
-                    }
1969
-                    $comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png');
1970
-                }
1971
-            } elseif (function_exists('gravatar')) {
1972
-                if ($user_profile_url) {
1973
-                    $comments_echo .= '<a href="' . $user_profile_url . '">';
1974
-                }
1975
-                $comments_echo .= "<img src=\"";
1976
-                if ('' == $comment->comment_type) {
1977
-                    $comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png');
1978
-                    if ($user_profile_url) {
1979
-                        $comments_echo .= '</a>';
1980
-                    }
1981
-                } elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
1982
-                    if ($user_profile_url) {
1983
-                        $comments_echo .= '<a href="' . $user_profile_url . '">';
1984
-                    }
1985
-                    $comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png');
1986
-                    if ($user_profile_url) {
1987
-                        $comments_echo .= '</a>';
1988
-                    }
1989
-                }
1990
-                $comments_echo .= "\" alt=\"\" class=\"avatar\" />";
1991
-            }
1953
+		if ($comment_id && $na) {
1954
+			$comments_echo .= '<li class="clearfix">';
1955
+			$comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">";
1956
+			if (function_exists('get_avatar')) {
1957
+				if (!isset($comment->comment_type)) {
1958
+					if ($user_profile_url) {
1959
+						$comments_echo .= '<a href="' . $user_profile_url . '">';
1960
+					}
1961
+					$comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png');
1962
+					if ($user_profile_url) {
1963
+						$comments_echo .= '</a>';
1964
+					}
1965
+				} elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
1966
+					if ($user_profile_url) {
1967
+						$comments_echo .= '<a href="' . $user_profile_url . '">';
1968
+					}
1969
+					$comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png');
1970
+				}
1971
+			} elseif (function_exists('gravatar')) {
1972
+				if ($user_profile_url) {
1973
+					$comments_echo .= '<a href="' . $user_profile_url . '">';
1974
+				}
1975
+				$comments_echo .= "<img src=\"";
1976
+				if ('' == $comment->comment_type) {
1977
+					$comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png');
1978
+					if ($user_profile_url) {
1979
+						$comments_echo .= '</a>';
1980
+					}
1981
+				} elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
1982
+					if ($user_profile_url) {
1983
+						$comments_echo .= '<a href="' . $user_profile_url . '">';
1984
+					}
1985
+					$comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png');
1986
+					if ($user_profile_url) {
1987
+						$comments_echo .= '</a>';
1988
+					}
1989
+				}
1990
+				$comments_echo .= "\" alt=\"\" class=\"avatar\" />";
1991
+			}
1992 1992
 
1993
-            $comments_echo .= "</span>\n";
1994
-
1995
-            $comments_echo .= '<span class="geodir_reviewer_content">';
1996
-            if($comment->user_id){$comments_echo .= '<a href="'.get_author_posts_url( $comment->user_id ).'">';}
1997
-            $comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> ';
1998
-            if($comment->user_id){$comments_echo .= '</a>';}
1999
-            $comments_echo .= '<span class="geodir_reviewer_reviewed">' . __('reviewed', 'geodirectory') . '</span> ';
2000
-            $comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>';
2001
-            $comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID);
2002
-            $comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . '';
2003
-            //echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
2004
-            $comments_echo .= '</p>';
2005
-
2006
-            $comments_echo .= "</span>\n";
2007
-            $comments_echo .= '</li>';
2008
-        }
2009
-    }
1993
+			$comments_echo .= "</span>\n";
1994
+
1995
+			$comments_echo .= '<span class="geodir_reviewer_content">';
1996
+			if($comment->user_id){$comments_echo .= '<a href="'.get_author_posts_url( $comment->user_id ).'">';}
1997
+			$comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> ';
1998
+			if($comment->user_id){$comments_echo .= '</a>';}
1999
+			$comments_echo .= '<span class="geodir_reviewer_reviewed">' . __('reviewed', 'geodirectory') . '</span> ';
2000
+			$comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>';
2001
+			$comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID);
2002
+			$comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . '';
2003
+			//echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
2004
+			$comments_echo .= '</p>';
2005
+
2006
+			$comments_echo .= "</span>\n";
2007
+			$comments_echo .= '</li>';
2008
+		}
2009
+	}
2010 2010
 
2011
-    return $comments_echo;
2011
+	return $comments_echo;
2012 2012
 }
2013 2013
 
2014 2014
 /**
@@ -2020,29 +2020,29 @@  discard block
 block discarded – undo
2020 2020
  */
2021 2021
 function geodir_home_map_cats_key_value_array()
2022 2022
 {
2023
-    $post_types = geodir_get_posttypes('object');
2024
-
2025
-    $return = array();
2026
-    if (!empty($post_types)) {
2027
-        foreach ($post_types as $key => $post_type) {
2028
-            $cpt_name = __($post_type->labels->singular_name, 'geodirectory');
2029
-            $post_type_name =   sprintf(__('%s Categories', 'geodirectory'),$cpt_name);
2030
-            $taxonomies = geodir_get_taxonomies($key);
2031
-            $cat_taxonomy = !empty($taxonomies[0]) ? $taxonomies[0] : NULL;
2032
-            $cat_terms = $cat_taxonomy ? get_terms($cat_taxonomy) : NULL;
2033
-
2034
-            if (!empty($cat_terms)) {
2035
-                $return['optgroup_start-' . $key] = $post_type_name;
2036
-
2037
-                foreach ($cat_terms as $cat_term) {
2038
-                    $return[$key . '_' . $cat_term->term_id] = $cat_term->name;
2039
-                }
2023
+	$post_types = geodir_get_posttypes('object');
2040 2024
 
2041
-                $return['optgroup_end-' . $key] = $post_type_name;
2042
-            }
2043
-        }
2044
-    }
2045
-    return $return;
2025
+	$return = array();
2026
+	if (!empty($post_types)) {
2027
+		foreach ($post_types as $key => $post_type) {
2028
+			$cpt_name = __($post_type->labels->singular_name, 'geodirectory');
2029
+			$post_type_name =   sprintf(__('%s Categories', 'geodirectory'),$cpt_name);
2030
+			$taxonomies = geodir_get_taxonomies($key);
2031
+			$cat_taxonomy = !empty($taxonomies[0]) ? $taxonomies[0] : NULL;
2032
+			$cat_terms = $cat_taxonomy ? get_terms($cat_taxonomy) : NULL;
2033
+
2034
+			if (!empty($cat_terms)) {
2035
+				$return['optgroup_start-' . $key] = $post_type_name;
2036
+
2037
+				foreach ($cat_terms as $cat_term) {
2038
+					$return[$key . '_' . $cat_term->term_id] = $cat_term->name;
2039
+				}
2040
+
2041
+				$return['optgroup_end-' . $key] = $post_type_name;
2042
+			}
2043
+		}
2044
+	}
2045
+	return $return;
2046 2046
 }
2047 2047
 
2048 2048
 /**
@@ -2054,7 +2054,7 @@  discard block
 block discarded – undo
2054 2054
  */
2055 2055
 function geodir_twitter_tweet_button()
2056 2056
 {
2057
-    ?>
2057
+	?>
2058 2058
     <a href="http://twitter.com/share"
2059 2059
        class="twitter-share-button"><?php _e('Tweet', 'geodirectory'); ?></a>
2060 2060
     <script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
@@ -2071,11 +2071,11 @@  discard block
 block discarded – undo
2071 2071
  * @global object $post The current post object.
2072 2072
  */
2073 2073
 function geodir_fb_like_button() {
2074
-    global $post;
2075
-    ?>
2074
+	global $post;
2075
+	?>
2076 2076
     <iframe <?php if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) {
2077
-        echo 'allowtransparency="true"';
2078
-    } ?> class="facebook"
2077
+		echo 'allowtransparency="true"';
2078
+	} ?> class="facebook"
2079 2079
          src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;colorscheme=light"
2080 2080
          style="border:none; overflow:hidden; width:100px; height:20px"></iframe>
2081 2081
     <?php
@@ -2090,7 +2090,7 @@  discard block
 block discarded – undo
2090 2090
  * @package GeoDirectory
2091 2091
  */
2092 2092
 function geodir_google_plus_button() {
2093
-    ?>
2093
+	?>
2094 2094
     <div id="plusone-div" class="g-plusone" data-size="medium"></div>
2095 2095
     <script type="text/javascript">
2096 2096
         (function () {
@@ -2115,8 +2115,8 @@  discard block
 block discarded – undo
2115 2115
  * @global object $post The current post object.
2116 2116
  */
2117 2117
 function geodir_share_this_button_code() {
2118
-    global $post;
2119
-    ?>
2118
+	global $post;
2119
+	?>
2120 2120
     <div class="addthis_toolbox addthis_default_style">
2121 2121
         <span id='st_sharethis'></span>
2122 2122
         <script type="text/javascript">var switchTo5x = false;</script>
@@ -2141,8 +2141,8 @@  discard block
 block discarded – undo
2141 2141
 }
2142 2142
 
2143 2143
 function geodir_listing_bounce_map_pin_on_hover() {
2144
-    if(get_option('geodir_listing_hover_bounce_map_pin',true)) {
2145
-        ?>
2144
+	if(get_option('geodir_listing_hover_bounce_map_pin',true)) {
2145
+		?>
2146 2146
         <script>
2147 2147
             jQuery(function ($) {
2148 2148
                 if (typeof(animate_marker) == 'function') {
@@ -2159,27 +2159,27 @@  discard block
 block discarded – undo
2159 2159
             });
2160 2160
         </script>
2161 2161
         <?php
2162
-    }
2162
+	}
2163 2163
 }
2164 2164
 add_action('geodir_after_listing_listview','geodir_listing_bounce_map_pin_on_hover',10);
2165 2165
 
2166 2166
 add_action('geodir_after_favorite_html','geodir_output_favourite_html_listings',1,1);
2167 2167
 function geodir_output_favourite_html_listings( $post_id){
2168
-    geodir_favourite_html('', $post_id);
2168
+	geodir_favourite_html('', $post_id);
2169 2169
 }
2170 2170
 
2171 2171
 add_action( 'geodir_listing_after_pinpoint', 'geodir_output_pinpoint_html_listings', 1, 2);
2172 2172
 function geodir_output_pinpoint_html_listings( $post_id, $post){
2173
-    global $wp_query;
2173
+	global $wp_query;
2174 2174
 
2175
-    $show_pin_point = $wp_query->is_main_query();
2175
+	$show_pin_point = $wp_query->is_main_query();
2176 2176
     
2177
-    if (!empty($show_pin_point) && is_active_widget(false, "", "geodir_map_v3_listing_map")) {
2178
-        $term_icon_url = get_tax_meta($post->default_category, 'ct_cat_icon', false, $post->post_type);
2179
-        $marker_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : get_option('geodir_default_marker_icon');
2180
-        ?>
2177
+	if (!empty($show_pin_point) && is_active_widget(false, "", "geodir_map_v3_listing_map")) {
2178
+		$term_icon_url = get_tax_meta($post->default_category, 'ct_cat_icon', false, $post->post_type);
2179
+		$marker_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : get_option('geodir_default_marker_icon');
2180
+		?>
2181 2181
         <span class="geodir-pinpoint" style="background:url('<?php echo $marker_icon; ?>') no-repeat scroll left top transparent;background-size:auto 100%; -webkit-background-size:auto 100%;-moz-background-size:auto 100%;height:9px;width:14px;"><?php echo apply_filters('geodir_listing_listview_pinpoint_inner_content', '', 'listing'); ?></span>
2182 2182
         <a class="geodir-pinpoint-link" href="javascript:void(0)" onclick="openMarker('listing_map_canvas' ,'<?php echo $post->ID; ?>')" onmouseover="animate_marker('listing_map_canvas' ,'<?php echo $post->ID; ?>')" onmouseout="stop_marker_animation('listing_map_canvas' ,'<?php echo $post->ID; ?>')"><?php _e('Pinpoint', 'geodirectory'); ?></a>
2183 2183
         <?php
2184
-    }
2184
+	}
2185 2185
 }
2186 2186
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-templates/popup-forms.php 1 patch
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -19,14 +19,14 @@  discard block
 block discarded – undo
19 19
  * @param int $post_id The post id requested by the popup.
20 20
  * @param object $post_info The post object requested by the popup.
21 21
  */
22
-do_action('geodir_popup_forms_template_start',$post_id,$post_info);
22
+do_action('geodir_popup_forms_template_start', $post_id, $post_info);
23 23
 
24 24
 if ($_REQUEST['popuptype'] == 'b_sendtofriend') { ?>
25 25
 
26 26
     <div id="basic-modal-content" class="clearfix">
27 27
         <form name="send_to_frnd" id="send_to_frnd" action="<?php echo get_permalink($post_info->ID); ?>" method="post">
28 28
             <input type="hidden" name="sendact" value="email_frnd"/>
29
-            <input type="hidden" id="send_to_Frnd_pid" name="pid" value="<?php echo $post_info->ID;?>"/>
29
+            <input type="hidden" id="send_to_Frnd_pid" name="pid" value="<?php echo $post_info->ID; ?>"/>
30 30
 
31 31
             <h3><?php
32 32
                 /**
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
                  * @since 1.0.0
36 36
                  * @param string $title The title for the form, defaults to global `SEND_TO_FRIEND` text.
37 37
                  */
38
-                echo apply_filters('geodir_send_to_friend_page_title', SEND_TO_FRIEND);?></h3>
38
+                echo apply_filters('geodir_send_to_friend_page_title', SEND_TO_FRIEND); ?></h3>
39 39
 
40 40
             <p id="reply_send_success" class="sucess_msg" style="display:none;"></p>
41 41
             <?php
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
              * @since 1.0.0
46 46
              * @param string $field The field name the actions is called before.
47 47
              */
48
-            do_action('geodir_before_stf_form_field', 'to_name');?>
48
+            do_action('geodir_before_stf_form_field', 'to_name'); ?>
49 49
             <div class="row clearfix">
50
-                    <input required field_type="text" name="to_name" id="to_name" type="text" value="" placeholder="<?php _e('Friend Name', 'geodirectory');?>"/>
50
+                    <input required field_type="text" name="to_name" id="to_name" type="text" value="" placeholder="<?php _e('Friend Name', 'geodirectory'); ?>"/>
51 51
             </div>
52 52
             <?php
53 53
             /**
@@ -56,55 +56,55 @@  discard block
 block discarded – undo
56 56
              * @since 1.0.0
57 57
              * @param string $field The field name the actions is called after.
58 58
              */
59
-            do_action('geodir_after_stf_form_field', 'to_name');?>
59
+            do_action('geodir_after_stf_form_field', 'to_name'); ?>
60 60
             <?php
61 61
             /** This action is documented in geodirectory-templates/popup-forms.php */
62
-            do_action('geodir_before_stf_form_field', 'to_email');?>
62
+            do_action('geodir_before_stf_form_field', 'to_email'); ?>
63 63
             <div class="row  clearfix">
64
-                    <input required field_type="email" name="to_email" id="to_email" type="email" value="" placeholder="<?php _e('Friend Email', 'geodirectory');?>"/>
64
+                    <input required field_type="email" name="to_email" id="to_email" type="email" value="" placeholder="<?php _e('Friend Email', 'geodirectory'); ?>"/>
65 65
             </div>
66 66
             <?php
67 67
             /** This action is documented in geodirectory-templates/popup-forms.php */
68
-            do_action('geodir_after_stf_form_field', 'to_email');?>
68
+            do_action('geodir_after_stf_form_field', 'to_email'); ?>
69 69
             <?php
70 70
             /** This action is documented in geodirectory-templates/popup-forms.php */
71
-            do_action('geodir_before_stf_form_field', 'yourname');?>
71
+            do_action('geodir_before_stf_form_field', 'yourname'); ?>
72 72
             <div class="row  clearfix">
73
-                    <input required field_type="text" name="yourname" id="yourname" type="text" value="" placeholder="<?php _e('Your Name', 'geodirectory');?>"/>
73
+                    <input required field_type="text" name="yourname" id="yourname" type="text" value="" placeholder="<?php _e('Your Name', 'geodirectory'); ?>"/>
74 74
             </div>
75 75
             <?php
76 76
             /** This action is documented in geodirectory-templates/popup-forms.php */
77
-            do_action('geodir_after_stf_form_field', 'yourname');?>
77
+            do_action('geodir_after_stf_form_field', 'yourname'); ?>
78 78
             <?php
79 79
             /** This action is documented in geodirectory-templates/popup-forms.php */
80
-            do_action('geodir_before_stf_form_field', 'youremail');?>
80
+            do_action('geodir_before_stf_form_field', 'youremail'); ?>
81 81
             <div class="row  clearfix">
82
-                    <input required field_type="email" name="youremail" id="youremail" type="email" value="" placeholder="<?php _e('Your Email', 'geodirectory');?>"/>
82
+                    <input required field_type="email" name="youremail" id="youremail" type="email" value="" placeholder="<?php _e('Your Email', 'geodirectory'); ?>"/>
83 83
             </div>
84 84
             <?php
85 85
             /** This action is documented in geodirectory-templates/popup-forms.php */
86
-            do_action('geodir_after_stf_form_field', 'youremail');?>
86
+            do_action('geodir_after_stf_form_field', 'youremail'); ?>
87 87
             <?php
88 88
             /** This action is documented in geodirectory-templates/popup-forms.php */
89
-            do_action('geodir_before_stf_form_field', 'frnd_subject');?>
89
+            do_action('geodir_before_stf_form_field', 'frnd_subject'); ?>
90 90
             <div class="row  clearfix">
91 91
                     <input required field_type="text" name="frnd_subject"
92
-                           value="<?php echo __('About', 'geodirectory') . ' ' . $post_info->post_title;?>"
93
-                           id="frnd_subject" type="text"  placeholder="<?php _e('Subject', 'geodirectory');?>"/>
92
+                           value="<?php echo __('About', 'geodirectory').' '.$post_info->post_title; ?>"
93
+                           id="frnd_subject" type="text"  placeholder="<?php _e('Subject', 'geodirectory'); ?>"/>
94 94
             </div>
95 95
             <?php
96 96
             /** This action is documented in geodirectory-templates/popup-forms.php */
97
-            do_action('geodir_after_stf_form_field', 'frnd_subject');?>
97
+            do_action('geodir_after_stf_form_field', 'frnd_subject'); ?>
98 98
             <?php
99 99
             /** This action is documented in geodirectory-templates/popup-forms.php */
100
-            do_action('geodir_before_stf_form_field', 'frnd_comments');?>
100
+            do_action('geodir_before_stf_form_field', 'frnd_comments'); ?>
101 101
             <div class="row  clearfix">
102 102
                     <textarea required field_type="textarea" name="frnd_comments" id="frnd_comments" cols=""
103
-                              rows="" placeholder="<?php echo SEND_TO_FRIEND_SAMPLE_CONTENT;?>"><?php echo SEND_TO_FRIEND_SAMPLE_CONTENT;?></textarea>
103
+                              rows="" placeholder="<?php echo SEND_TO_FRIEND_SAMPLE_CONTENT; ?>"><?php echo SEND_TO_FRIEND_SAMPLE_CONTENT; ?></textarea>
104 104
             </div>
105 105
             <?php
106 106
             /** This action is documented in geodirectory-templates/popup-forms.php */
107
-            do_action('geodir_after_stf_form_field', 'frnd_comments');?>
107
+            do_action('geodir_after_stf_form_field', 'frnd_comments'); ?>
108 108
             <?php if (function_exists('geodir_get_captch')) {
109 109
                 geodir_get_captch('-1');
110 110
             }?>
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
         <form method="post" name="agt_mail_agent" id="agt_mail_agent"
119 119
               action="<?php echo get_permalink($post_info->ID); ?>">
120 120
             <input type="hidden" name="sendact" value="send_inqury"/>
121
-            <input type="hidden" name="pid" value="<?php echo $post_info->ID;?>"/>
121
+            <input type="hidden" name="pid" value="<?php echo $post_info->ID; ?>"/>
122 122
 
123 123
             <h3><?php
124 124
                 /**
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                  * @since 1.0.0
128 128
                  * @param string $title The title for the form, defaults to global `SEND_INQUIRY` text.
129 129
                  */
130
-                echo apply_filters('geodir_send_inquiry_page_title', SEND_INQUIRY);?> </h3>
130
+                echo apply_filters('geodir_send_inquiry_page_title', SEND_INQUIRY); ?> </h3>
131 131
 
132 132
             <p id="inquiry_send_success" class="sucess_msg" style="display:none;"></p>
133 133
             <?php
@@ -137,9 +137,9 @@  discard block
 block discarded – undo
137 137
              * @since 1.0.0
138 138
              * @param string $field The field name the actions is called before.
139 139
              */
140
-            do_action('geodir_before_inquiry_form_field', 'inq_name');?>
140
+            do_action('geodir_before_inquiry_form_field', 'inq_name'); ?>
141 141
             <div class="row  clearfix">
142
-                    <input required field_type="text" name="inq_name" type="text" value="" placeholder="<?php _e('Your Name', 'geodirectory');?>"/>
142
+                    <input required field_type="text" name="inq_name" type="text" value="" placeholder="<?php _e('Your Name', 'geodirectory'); ?>"/>
143 143
             </div>
144 144
             <?php
145 145
             /**
@@ -148,36 +148,36 @@  discard block
 block discarded – undo
148 148
              * @since 1.0.0
149 149
              * @param string $field The field name the actions is called after.
150 150
              */
151
-            do_action('geodir_after_inquiry_form_field', 'inq_name');?>
151
+            do_action('geodir_after_inquiry_form_field', 'inq_name'); ?>
152 152
             <?php
153 153
             /** This action is documented in geodirectory-templates/popup-forms.php */
154
-            do_action('geodir_before_inquiry_form_field', 'inq_email');?>
154
+            do_action('geodir_before_inquiry_form_field', 'inq_email'); ?>
155 155
             <div class="row  clearfix">
156
-                    <input required field_type="email" name="inq_email" type="email" value="" placeholder="<?php _e('Email', 'geodirectory');?>"/>
156
+                    <input required field_type="email" name="inq_email" type="email" value="" placeholder="<?php _e('Email', 'geodirectory'); ?>"/>
157 157
             </div>
158 158
             <?php
159 159
             /** This action is documented in geodirectory-templates/popup-forms.php */
160
-            do_action('geodir_after_inquiry_form_field', 'inq_email');?>
160
+            do_action('geodir_after_inquiry_form_field', 'inq_email'); ?>
161 161
             <?php
162 162
             /** This action is documented in geodirectory-templates/popup-forms.php */
163
-            do_action('geodir_before_inquiry_form_field', 'inq_phone');?>
163
+            do_action('geodir_before_inquiry_form_field', 'inq_phone'); ?>
164 164
             <div class="row  clearfix">
165
-                    <input name="inq_phone" id="agt_mail_phone" type="text" value="" placeholder="<?php _e('Phone number', 'geodirectory');?>"/>
165
+                    <input name="inq_phone" id="agt_mail_phone" type="text" value="" placeholder="<?php _e('Phone number', 'geodirectory'); ?>"/>
166 166
             </div>
167 167
             <?php
168 168
             /** This action is documented in geodirectory-templates/popup-forms.php */
169
-            do_action('geodir_after_inquiry_form_field', 'inq_phone');?>
169
+            do_action('geodir_after_inquiry_form_field', 'inq_phone'); ?>
170 170
             <?php
171 171
             /** This action is documented in geodirectory-templates/popup-forms.php */
172
-            do_action('geodir_before_inquiry_form_field', 'inq_msg');?>
172
+            do_action('geodir_before_inquiry_form_field', 'inq_msg'); ?>
173 173
             <div class="row  clearfix">
174 174
                     <textarea required field_type="textarea" name="inq_msg" cols=""
175
-                              rows="" placeholder="<?php echo SEND_INQUIRY_SAMPLE_CONTENT;?>"></textarea>
175
+                              rows="" placeholder="<?php echo SEND_INQUIRY_SAMPLE_CONTENT; ?>"></textarea>
176 176
             </div>
177 177
             <?php
178 178
             /** This action is documented in geodirectory-templates/popup-forms.php */
179
-            do_action('geodir_after_inquiry_form_field', 'inq_msg');?>
180
-            <input name="Send" type="submit" value="<?php _e('Send', 'geodirectory');?>"
179
+            do_action('geodir_after_inquiry_form_field', 'inq_msg'); ?>
180
+            <input name="Send" type="submit" value="<?php _e('Send', 'geodirectory'); ?>"
181 181
                    class="button clearfix"/>
182 182
         </form>
183 183
     </div> <?php
Please login to merge, or discard this patch.