Test Failed
Push — master ( d8a824...eb2d56 )
by Stiofan
29:54
created
geodirectory-widgets/geodirectory_bestof_widget.php 1 patch
Indentation   +519 added lines, -519 removed lines patch added patch discarded remove patch
@@ -14,282 +14,282 @@  discard block
 block discarded – undo
14 14
  */
15 15
 class geodir_bestof_widget extends WP_Widget
16 16
 {
17
-    /**
18
-     * Register the best of widget with WordPress.
19
-     *
20
-     * @since 1.3.9
21
-     * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22
-     */
23
-    public function __construct()
24
-    {
25
-        $widget_ops = array('classname' => 'geodir_bestof_widget', 'description' => __('GD > Best of widget', 'geodirectory'));
26
-        parent::__construct(
27
-            'bestof_widget', // Base ID
28
-            __('GD > Best of widget', 'geodirectory'), // Name
29
-            $widget_ops// Args
30
-        );
31
-    }
32
-
33
-    /**
34
-     * Front-end display content for best of widget.
35
-     *
36
-     * @since 1.3.9
37
-     * @since 1.5.1 Added filter to view all link.
38
-     * @since 1.5.1 Declare function public.
39
-     *
40
-     * @param array $args Widget arguments.
41
-     * @param array $instance Saved values from database.
42
-     */
43
-    public function widget($args, $instance)
44
-    {
45
-        extract($args);
46
-        /**
47
-         * Filter the best of widget tab layout.
48
-         *
49
-         * @since 1.3.9
50
-         *
51
-         * @param string $instance ['tab_layout'] Best of widget tab layout name.
52
-         */
53
-        $tab_layout = empty($instance['tab_layout']) ? 'bestof-tabs-on-top' : apply_filters('bestof_widget_tab_layout', $instance['tab_layout']);
54
-        echo '<div class="bestof-widget-tab-layout ' . $tab_layout . '">';
55
-        echo $before_widget;
56
-        $loc_terms = geodir_get_current_location_terms();
57
-        if (!empty($loc_terms)) {
58
-            $cur_location = ' : ' . geodir_ucwords(str_replace('-', ' ', end($loc_terms)));
59
-        } else {
60
-            $cur_location = '';
61
-        }
62
-
63
-        /**
64
-         * Filter the current location name.
65
-         *
66
-         * @since 1.3.9
67
-         *
68
-         * @param string $cur_location Current location name.
69
-         */
70
-        $cur_location = apply_filters('bestof_widget_cur_location', $cur_location);
71
-
72
-        /**
73
-         * Filter the widget title.
74
-         *
75
-         * @since 1.3.9
76
-         *
77
-         * @param string $instance ['title'] The widget title.
78
-         */
79
-        $title = empty($instance['title']) ? wp_sprintf(__('Best of %s', 'geodirectory'), get_bloginfo('name') . $cur_location) : apply_filters('bestof_widget_title', __($instance['title'], 'geodirectory'));
80
-
81
-        /**
82
-         * Filter the post type.
83
-         *
84
-         * @since 1.3.9
85
-         *
86
-         * @param string $instance ['post_type'] The post type.
87
-         */
88
-        $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('bestof_widget_post_type', $instance['post_type']);
89
-
90
-        /**
91
-         * Filter the excerpt type.
92
-         *
93
-         * @since 1.5.4
94
-         *
95
-         * @param string $instance ['excerpt_type'] The excerpt type.
96
-         */
97
-        $excerpt_type = empty($instance['excerpt_type']) ? 'show-desc' : apply_filters('bestof_widget_excerpt_type', $instance['excerpt_type']);
98
-
99
-
100
-        /**
101
-         * Filter the listing limit.
102
-         *
103
-         * @since 1.3.9
104
-         *
105
-         * @param int $instance ['post_limit'] No. of posts to display.
106
-         */
107
-        $post_limit = empty($instance['post_limit']) ? '5' : apply_filters('bestof_widget_post_limit', $instance['post_limit']);
108
-
109
-        /**
110
-         * Filter the category limit.
111
-         *
112
-         * @since 1.3.9
113
-         *
114
-         * @param int $instance ['categ_limit'] No. of categories to display.
115
-         */
116
-        $categ_limit = empty($instance['categ_limit']) ? '3' : apply_filters('bestof_widget_categ_limit', $instance['categ_limit']);
117
-        $use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
118
-
119
-        /**
120
-         * Filter the use of location filter.
121
-         *
122
-         * @since 1.3.9
123
-         *
124
-         * @param int|bool $instance ['add_location_filter'] Filter listings using current location.
125
-         */
126
-        $add_location_filter = empty($instance['add_location_filter']) ? '1' : apply_filters('bestof_widget_location_filter', $instance['add_location_filter']);
127
-
128
-        // set post type to current viewing post type
129
-        if ($use_viewing_post_type) {
130
-            $current_post_type = geodir_get_current_posttype();
131
-            if ($current_post_type != '' && $current_post_type != $post_type) {
132
-                $post_type = $current_post_type;
133
-            }
134
-        }
135
-
136
-        if (isset($instance['character_count'])) {
137
-            /**
138
-             * Filter the widget's excerpt character count.
139
-             *
140
-             * @since 1.3.9
141
-             *
142
-             * @param int $instance ['character_count'] Excerpt character count.
143
-             */
144
-            $character_count = apply_filters('bestof_widget_list_character_count', $instance['character_count']);
145
-        } else {
146
-            $character_count = '';
147
-        }
148
-
149
-        $category_taxonomy = geodir_get_taxonomies($post_type);
150
-
151
-        $term_args = array(
152
-            'hide_empty' => true,
153
-            'parent' => 0
154
-        );
155
-
156
-        $term_args = apply_filters('bestof_widget_term_args', $term_args);
157
-
158
-        if (is_tax()) {
159
-            $taxonomy = get_query_var('taxonomy');
160
-            $cur_term = get_query_var('term');
161
-            $term_data = get_term_by('name', $cur_term, $taxonomy);
162
-            $term_args['parent'] = $term_data->term_id;
163
-        }
164
-
165
-        $terms = get_terms($category_taxonomy[0], $term_args);
166
-
167
-        $term_reviews = geodir_count_reviews_by_terms();
168
-        $a_terms = array();
169
-        foreach ($terms as $term) {
170
-
171
-
172
-            if ($term->count > 0) {
173
-                if (isset($term_reviews[$term->term_id])) {
174
-                    $term->review_count = $term_reviews[$term->term_id];
175
-                } else {
176
-                    $term->review_count = '0';
177
-                }
178
-
179
-                $a_terms[] = $term;
180
-            }
181
-
182
-        }
183
-
184
-
185
-        $terms = apply_filters('bestof_widget_sort_terms', geodir_sort_terms($a_terms, 'review_count'), $a_terms);
186
-
187
-        $query_args = array(
188
-            'posts_per_page' => $post_limit,
189
-            'is_geodir_loop' => true,
190
-            'post_type' => $post_type,
191
-            'gd_location' => $add_location_filter ? true : false,
192
-            'order_by' => 'high_review'
193
-        );
194
-        if ($character_count >= 0) {
195
-            $query_args['excerpt_length'] = $character_count;
196
-        }
197
-
198
-        $layout = array();
199
-        if ($tab_layout == 'bestof-tabs-as-dropdown') {
200
-            $layout[] = $tab_layout;
201
-        } else {
202
-            $layout[] = 'bestof-tabs-as-dropdown';
203
-            $layout[] = $tab_layout;
204
-        }
205
-
206
-
207
-        echo $before_title . __($title,'geodirectory') . $after_title;
208
-
209
-        //term navigation - start
210
-        echo '<div class="geodir-tabs gd-bestof-tabs" id="gd-bestof-tabs" style="position:relative;">';
211
-
212
-        $final_html = '';
213
-        foreach ($layout as $tab_layout) {
214
-            $nav_html = '';
215
-            $is_dropdown = ($tab_layout == 'bestof-tabs-as-dropdown') ? true : false;
216
-
217
-            if ($is_dropdown) {
218
-                $nav_html .= '<select id="geodir_bestof_tab_dd" class="chosen_select" name="geodir_bestof_tab_dd" data-placeholder="' . esc_attr(__('Select Category', 'geodirectory')) . '">';
219
-            } else {
220
-                $nav_html .= '<dl class="geodir-tab-head geodir-bestof-cat-list">';
221
-                $nav_html .= '<dt></dt>';
222
-            }
223
-
224
-
225
-            $term_icon = geodir_get_term_icon();
226
-            $cat_count = 0;
227
-            if (!empty($terms)) {
228
-                foreach ($terms as $cat) {
229
-                    $cat_count++;
230
-                    if ($cat_count > $categ_limit) {
231
-                        break;
232
-                    }
233
-                    if ($is_dropdown) {
234
-                        $selected = ($cat_count == 1) ? 'selected="selected"' : '';
235
-                        $nav_html .= '<option ' . $selected . ' value="' . $cat->term_id . '">' . geodir_ucwords($cat->name) . '</option>';
236
-                    } else {
237
-                        if ($cat_count == 1) {
238
-                            $nav_html .= '<dd class="geodir-tab-active">';
239
-                        } else {
240
-                            $nav_html .= '<dd class="">';
241
-                        }
242
-                        $term_icon_url = !empty($term_icon) && isset($term_icon[$cat->term_id]) ? $term_icon[$cat->term_id] : '';
243
-                        $nav_html .= '<a data-termid="' . $cat->term_id . '" href="' . get_term_link($cat, $cat->taxonomy) . '">';
244
-                        $nav_html .= '<img alt="' . $cat->name . ' icon" class="bestof-cat-icon" src="' . $term_icon_url . '"/>';
245
-                        $nav_html .= '<span>';
246
-                        $nav_html .= geodir_ucwords($cat->name);
247
-                        $nav_html .= '<small>';
248
-                        if (isset($cat->review_count)) {
249
-                            $num_reviews = $cat->review_count;
250
-                            if ($num_reviews == 0) {
251
-                                $reviews = __('No Reviews', 'geodirectory');
252
-                            } elseif ($num_reviews > 1) {
253
-                                $reviews = $num_reviews . __(' Reviews', 'geodirectory');
254
-                            } else {
255
-                                $reviews = __('1 Review', 'geodirectory');
256
-                            }
257
-                            $nav_html .= $reviews;
258
-                        }
259
-                        $nav_html .= '</small>';
260
-                        $nav_html .= '</span>';
261
-                        $nav_html .= '</a>';
262
-                        $nav_html .= '</dd>';
263
-                    }
264
-                }
265
-            }
266
-
267
-            if ($is_dropdown) {
268
-                $nav_html .= '</select>';
269
-            } else {
270
-                $nav_html .= '</dl>';
271
-            }
272
-            $final_html .= $nav_html;
273
-        }
274
-        if ($terms) {
275
-            echo $final_html;
276
-        }
277
-        echo '</div>';
278
-        //term navigation - end
279
-
280
-        //first term listings by default - start
281
-        $first_term = '';
282
-        if ($terms) {
283
-            $first_term = $terms[0];
284
-            $tax_query = array(
285
-                'taxonomy' => $category_taxonomy[0],
286
-                'field' => 'id',
287
-                'terms' => $first_term->term_id
288
-            );
289
-            $query_args['tax_query'] = array($tax_query);
290
-        }
291
-
292
-        ?>
17
+	/**
18
+	 * Register the best of widget with WordPress.
19
+	 *
20
+	 * @since 1.3.9
21
+	 * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22
+	 */
23
+	public function __construct()
24
+	{
25
+		$widget_ops = array('classname' => 'geodir_bestof_widget', 'description' => __('GD > Best of widget', 'geodirectory'));
26
+		parent::__construct(
27
+			'bestof_widget', // Base ID
28
+			__('GD > Best of widget', 'geodirectory'), // Name
29
+			$widget_ops// Args
30
+		);
31
+	}
32
+
33
+	/**
34
+	 * Front-end display content for best of widget.
35
+	 *
36
+	 * @since 1.3.9
37
+	 * @since 1.5.1 Added filter to view all link.
38
+	 * @since 1.5.1 Declare function public.
39
+	 *
40
+	 * @param array $args Widget arguments.
41
+	 * @param array $instance Saved values from database.
42
+	 */
43
+	public function widget($args, $instance)
44
+	{
45
+		extract($args);
46
+		/**
47
+		 * Filter the best of widget tab layout.
48
+		 *
49
+		 * @since 1.3.9
50
+		 *
51
+		 * @param string $instance ['tab_layout'] Best of widget tab layout name.
52
+		 */
53
+		$tab_layout = empty($instance['tab_layout']) ? 'bestof-tabs-on-top' : apply_filters('bestof_widget_tab_layout', $instance['tab_layout']);
54
+		echo '<div class="bestof-widget-tab-layout ' . $tab_layout . '">';
55
+		echo $before_widget;
56
+		$loc_terms = geodir_get_current_location_terms();
57
+		if (!empty($loc_terms)) {
58
+			$cur_location = ' : ' . geodir_ucwords(str_replace('-', ' ', end($loc_terms)));
59
+		} else {
60
+			$cur_location = '';
61
+		}
62
+
63
+		/**
64
+		 * Filter the current location name.
65
+		 *
66
+		 * @since 1.3.9
67
+		 *
68
+		 * @param string $cur_location Current location name.
69
+		 */
70
+		$cur_location = apply_filters('bestof_widget_cur_location', $cur_location);
71
+
72
+		/**
73
+		 * Filter the widget title.
74
+		 *
75
+		 * @since 1.3.9
76
+		 *
77
+		 * @param string $instance ['title'] The widget title.
78
+		 */
79
+		$title = empty($instance['title']) ? wp_sprintf(__('Best of %s', 'geodirectory'), get_bloginfo('name') . $cur_location) : apply_filters('bestof_widget_title', __($instance['title'], 'geodirectory'));
80
+
81
+		/**
82
+		 * Filter the post type.
83
+		 *
84
+		 * @since 1.3.9
85
+		 *
86
+		 * @param string $instance ['post_type'] The post type.
87
+		 */
88
+		$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('bestof_widget_post_type', $instance['post_type']);
89
+
90
+		/**
91
+		 * Filter the excerpt type.
92
+		 *
93
+		 * @since 1.5.4
94
+		 *
95
+		 * @param string $instance ['excerpt_type'] The excerpt type.
96
+		 */
97
+		$excerpt_type = empty($instance['excerpt_type']) ? 'show-desc' : apply_filters('bestof_widget_excerpt_type', $instance['excerpt_type']);
98
+
99
+
100
+		/**
101
+		 * Filter the listing limit.
102
+		 *
103
+		 * @since 1.3.9
104
+		 *
105
+		 * @param int $instance ['post_limit'] No. of posts to display.
106
+		 */
107
+		$post_limit = empty($instance['post_limit']) ? '5' : apply_filters('bestof_widget_post_limit', $instance['post_limit']);
108
+
109
+		/**
110
+		 * Filter the category limit.
111
+		 *
112
+		 * @since 1.3.9
113
+		 *
114
+		 * @param int $instance ['categ_limit'] No. of categories to display.
115
+		 */
116
+		$categ_limit = empty($instance['categ_limit']) ? '3' : apply_filters('bestof_widget_categ_limit', $instance['categ_limit']);
117
+		$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
118
+
119
+		/**
120
+		 * Filter the use of location filter.
121
+		 *
122
+		 * @since 1.3.9
123
+		 *
124
+		 * @param int|bool $instance ['add_location_filter'] Filter listings using current location.
125
+		 */
126
+		$add_location_filter = empty($instance['add_location_filter']) ? '1' : apply_filters('bestof_widget_location_filter', $instance['add_location_filter']);
127
+
128
+		// set post type to current viewing post type
129
+		if ($use_viewing_post_type) {
130
+			$current_post_type = geodir_get_current_posttype();
131
+			if ($current_post_type != '' && $current_post_type != $post_type) {
132
+				$post_type = $current_post_type;
133
+			}
134
+		}
135
+
136
+		if (isset($instance['character_count'])) {
137
+			/**
138
+			 * Filter the widget's excerpt character count.
139
+			 *
140
+			 * @since 1.3.9
141
+			 *
142
+			 * @param int $instance ['character_count'] Excerpt character count.
143
+			 */
144
+			$character_count = apply_filters('bestof_widget_list_character_count', $instance['character_count']);
145
+		} else {
146
+			$character_count = '';
147
+		}
148
+
149
+		$category_taxonomy = geodir_get_taxonomies($post_type);
150
+
151
+		$term_args = array(
152
+			'hide_empty' => true,
153
+			'parent' => 0
154
+		);
155
+
156
+		$term_args = apply_filters('bestof_widget_term_args', $term_args);
157
+
158
+		if (is_tax()) {
159
+			$taxonomy = get_query_var('taxonomy');
160
+			$cur_term = get_query_var('term');
161
+			$term_data = get_term_by('name', $cur_term, $taxonomy);
162
+			$term_args['parent'] = $term_data->term_id;
163
+		}
164
+
165
+		$terms = get_terms($category_taxonomy[0], $term_args);
166
+
167
+		$term_reviews = geodir_count_reviews_by_terms();
168
+		$a_terms = array();
169
+		foreach ($terms as $term) {
170
+
171
+
172
+			if ($term->count > 0) {
173
+				if (isset($term_reviews[$term->term_id])) {
174
+					$term->review_count = $term_reviews[$term->term_id];
175
+				} else {
176
+					$term->review_count = '0';
177
+				}
178
+
179
+				$a_terms[] = $term;
180
+			}
181
+
182
+		}
183
+
184
+
185
+		$terms = apply_filters('bestof_widget_sort_terms', geodir_sort_terms($a_terms, 'review_count'), $a_terms);
186
+
187
+		$query_args = array(
188
+			'posts_per_page' => $post_limit,
189
+			'is_geodir_loop' => true,
190
+			'post_type' => $post_type,
191
+			'gd_location' => $add_location_filter ? true : false,
192
+			'order_by' => 'high_review'
193
+		);
194
+		if ($character_count >= 0) {
195
+			$query_args['excerpt_length'] = $character_count;
196
+		}
197
+
198
+		$layout = array();
199
+		if ($tab_layout == 'bestof-tabs-as-dropdown') {
200
+			$layout[] = $tab_layout;
201
+		} else {
202
+			$layout[] = 'bestof-tabs-as-dropdown';
203
+			$layout[] = $tab_layout;
204
+		}
205
+
206
+
207
+		echo $before_title . __($title,'geodirectory') . $after_title;
208
+
209
+		//term navigation - start
210
+		echo '<div class="geodir-tabs gd-bestof-tabs" id="gd-bestof-tabs" style="position:relative;">';
211
+
212
+		$final_html = '';
213
+		foreach ($layout as $tab_layout) {
214
+			$nav_html = '';
215
+			$is_dropdown = ($tab_layout == 'bestof-tabs-as-dropdown') ? true : false;
216
+
217
+			if ($is_dropdown) {
218
+				$nav_html .= '<select id="geodir_bestof_tab_dd" class="chosen_select" name="geodir_bestof_tab_dd" data-placeholder="' . esc_attr(__('Select Category', 'geodirectory')) . '">';
219
+			} else {
220
+				$nav_html .= '<dl class="geodir-tab-head geodir-bestof-cat-list">';
221
+				$nav_html .= '<dt></dt>';
222
+			}
223
+
224
+
225
+			$term_icon = geodir_get_term_icon();
226
+			$cat_count = 0;
227
+			if (!empty($terms)) {
228
+				foreach ($terms as $cat) {
229
+					$cat_count++;
230
+					if ($cat_count > $categ_limit) {
231
+						break;
232
+					}
233
+					if ($is_dropdown) {
234
+						$selected = ($cat_count == 1) ? 'selected="selected"' : '';
235
+						$nav_html .= '<option ' . $selected . ' value="' . $cat->term_id . '">' . geodir_ucwords($cat->name) . '</option>';
236
+					} else {
237
+						if ($cat_count == 1) {
238
+							$nav_html .= '<dd class="geodir-tab-active">';
239
+						} else {
240
+							$nav_html .= '<dd class="">';
241
+						}
242
+						$term_icon_url = !empty($term_icon) && isset($term_icon[$cat->term_id]) ? $term_icon[$cat->term_id] : '';
243
+						$nav_html .= '<a data-termid="' . $cat->term_id . '" href="' . get_term_link($cat, $cat->taxonomy) . '">';
244
+						$nav_html .= '<img alt="' . $cat->name . ' icon" class="bestof-cat-icon" src="' . $term_icon_url . '"/>';
245
+						$nav_html .= '<span>';
246
+						$nav_html .= geodir_ucwords($cat->name);
247
+						$nav_html .= '<small>';
248
+						if (isset($cat->review_count)) {
249
+							$num_reviews = $cat->review_count;
250
+							if ($num_reviews == 0) {
251
+								$reviews = __('No Reviews', 'geodirectory');
252
+							} elseif ($num_reviews > 1) {
253
+								$reviews = $num_reviews . __(' Reviews', 'geodirectory');
254
+							} else {
255
+								$reviews = __('1 Review', 'geodirectory');
256
+							}
257
+							$nav_html .= $reviews;
258
+						}
259
+						$nav_html .= '</small>';
260
+						$nav_html .= '</span>';
261
+						$nav_html .= '</a>';
262
+						$nav_html .= '</dd>';
263
+					}
264
+				}
265
+			}
266
+
267
+			if ($is_dropdown) {
268
+				$nav_html .= '</select>';
269
+			} else {
270
+				$nav_html .= '</dl>';
271
+			}
272
+			$final_html .= $nav_html;
273
+		}
274
+		if ($terms) {
275
+			echo $final_html;
276
+		}
277
+		echo '</div>';
278
+		//term navigation - end
279
+
280
+		//first term listings by default - start
281
+		$first_term = '';
282
+		if ($terms) {
283
+			$first_term = $terms[0];
284
+			$tax_query = array(
285
+				'taxonomy' => $category_taxonomy[0],
286
+				'field' => 'id',
287
+				'terms' => $first_term->term_id
288
+			);
289
+			$query_args['tax_query'] = array($tax_query);
290
+		}
291
+
292
+		?>
293 293
         <input type="hidden" id="bestof_widget_post_type" name="bestof_widget_post_type"
294 294
                value="<?php echo $post_type; ?>">
295 295
         <input type="hidden" id="bestof_widget_excerpt_type" name="bestof_widget_excerpt_type"
@@ -300,110 +300,110 @@  discard block
 block discarded – undo
300 300
                value="<?php echo $category_taxonomy[0]; ?>">
301 301
         <input type="hidden" id="bestof_widget_location_filter" name="bestof_widget_location_filter"
302 302
                value="<?php if ($add_location_filter) {
303
-                   echo 1;
304
-               } else {
305
-                   echo 0;
306
-               } ?>">
303
+				   echo 1;
304
+			   } else {
305
+				   echo 0;
306
+			   } ?>">
307 307
         <input type="hidden" id="bestof_widget_char_count" name="bestof_widget_char_count"
308 308
                value="<?php echo $character_count; ?>">
309 309
         <div class="geo-bestof-contentwrap geodir-tabs-content" style="position: relative; z-index: 0;">
310 310
             <p id="geodir-bestof-loading" class="geodir-bestof-loading"><i class="fa fa-cog fa-spin"></i></p>
311 311
             <?php
312
-            echo '<div id="geodir-bestof-places">';
313
-            if ($terms) {
314
-                $view_all_link = add_query_arg(array('sort_by' => 'rating_count_desc'), get_term_link($first_term, $first_term->taxonomy));
315
-                /**
316
-                 * Filter the page link to view all lisitngs.
317
-                 *
318
-                 * @since 1.5.1
319
-                 *
320
-                 * @param array $view_all_link View all listings page link.
321
-                 * @param array $post_type The Post type.
322
-                 * @param array $first_term The category term object.
323
-                 */
324
-                $view_all_link = apply_filters('geodir_bestof_widget_view_all_link', $view_all_link, $post_type, $first_term);
325
-
326
-                echo '<h3 class="bestof-cat-title">' . wp_sprintf(__('Best of %s', 'geodirectory'), $first_term->name) . '<a href="' . esc_url($view_all_link) . '">' . __("View all", 'geodirectory') . '</a></h3>';
327
-            }
328
-            if ($excerpt_type == 'show-reviews') {
329
-                add_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
330
-            }
331
-            geodir_bestof_places_by_term($query_args);
332
-            if ($excerpt_type == 'show-reviews') {
333
-                remove_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
334
-            }
335
-            echo "</div>";
336
-            ?>
312
+			echo '<div id="geodir-bestof-places">';
313
+			if ($terms) {
314
+				$view_all_link = add_query_arg(array('sort_by' => 'rating_count_desc'), get_term_link($first_term, $first_term->taxonomy));
315
+				/**
316
+				 * Filter the page link to view all lisitngs.
317
+				 *
318
+				 * @since 1.5.1
319
+				 *
320
+				 * @param array $view_all_link View all listings page link.
321
+				 * @param array $post_type The Post type.
322
+				 * @param array $first_term The category term object.
323
+				 */
324
+				$view_all_link = apply_filters('geodir_bestof_widget_view_all_link', $view_all_link, $post_type, $first_term);
325
+
326
+				echo '<h3 class="bestof-cat-title">' . wp_sprintf(__('Best of %s', 'geodirectory'), $first_term->name) . '<a href="' . esc_url($view_all_link) . '">' . __("View all", 'geodirectory') . '</a></h3>';
327
+			}
328
+			if ($excerpt_type == 'show-reviews') {
329
+				add_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
330
+			}
331
+			geodir_bestof_places_by_term($query_args);
332
+			if ($excerpt_type == 'show-reviews') {
333
+				remove_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
334
+			}
335
+			echo "</div>";
336
+			?>
337 337
         </div>
338 338
         <?php //first term listings by default - end
339
-        ?>
339
+		?>
340 340
         <?php echo $after_widget;
341
-        echo "</div>";
342
-    }
343
-
344
-    /**
345
-     * Sanitize best of widget form values as they are saved.
346
-     *
347
-     * @since 1.3.9
348
-     * @since 1.5.1 Declare function public.
349
-     *
350
-     * @param array $new_instance Values just sent to be saved.
351
-     * @param array $old_instance Previously saved values from database.
352
-     *
353
-     * @return array Updated safe values to be saved.
354
-     */
355
-    public function update($new_instance, $old_instance)
356
-    {
357
-        $instance = $old_instance;
358
-        $instance['title'] = strip_tags($new_instance['title']);
359
-        $instance['post_type'] = strip_tags($new_instance['post_type']);
360
-        $instance['post_limit'] = strip_tags($new_instance['post_limit']);
361
-        $instance['categ_limit'] = strip_tags($new_instance['categ_limit']);
362
-        $instance['character_count'] = $new_instance['character_count'];
363
-        $instance['tab_layout'] = $new_instance['tab_layout'];
364
-        $instance['excerpt_type'] = $new_instance['excerpt_type'];
365
-        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
366
-            $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
367
-        else
368
-            $instance['add_location_filter'] = '0';
369
-        $instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0;
370
-        return $instance;
371
-    }
372
-
373
-    /**
374
-     * Back-end best of widget settings form.
375
-     *
376
-     * @since 1.3.9
377
-     * @since 1.5.1 Declare function public.
378
-     *
379
-     * @param array $instance Previously saved values from database.
380
-     */
381
-    public function form($instance)
382
-    {
383
-        $instance = wp_parse_args((array)$instance,
384
-            array(
385
-                'title' => '',
386
-                'post_type' => '',
387
-                'post_limit' => '5',
388
-                'categ_limit' => '3',
389
-                'character_count' => '20',
390
-                'add_location_filter' => '1',
391
-                'tab_layout' => 'bestof-tabs-on-top',
392
-                'excerpt_type' => 'show-desc',
393
-                'use_viewing_post_type' => ''
394
-            )
395
-        );
396
-        $title = strip_tags($instance['title']);
397
-        $post_type = strip_tags($instance['post_type']);
398
-        $post_limit = strip_tags($instance['post_limit']);
399
-        $categ_limit = strip_tags($instance['categ_limit']);
400
-        $character_count = strip_tags($instance['character_count']);
401
-        $tab_layout = strip_tags($instance['tab_layout']);
402
-        $excerpt_type = strip_tags($instance['excerpt_type']);
403
-        $add_location_filter = strip_tags($instance['add_location_filter']);
404
-        $use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false;
405
-
406
-        ?>
341
+		echo "</div>";
342
+	}
343
+
344
+	/**
345
+	 * Sanitize best of widget form values as they are saved.
346
+	 *
347
+	 * @since 1.3.9
348
+	 * @since 1.5.1 Declare function public.
349
+	 *
350
+	 * @param array $new_instance Values just sent to be saved.
351
+	 * @param array $old_instance Previously saved values from database.
352
+	 *
353
+	 * @return array Updated safe values to be saved.
354
+	 */
355
+	public function update($new_instance, $old_instance)
356
+	{
357
+		$instance = $old_instance;
358
+		$instance['title'] = strip_tags($new_instance['title']);
359
+		$instance['post_type'] = strip_tags($new_instance['post_type']);
360
+		$instance['post_limit'] = strip_tags($new_instance['post_limit']);
361
+		$instance['categ_limit'] = strip_tags($new_instance['categ_limit']);
362
+		$instance['character_count'] = $new_instance['character_count'];
363
+		$instance['tab_layout'] = $new_instance['tab_layout'];
364
+		$instance['excerpt_type'] = $new_instance['excerpt_type'];
365
+		if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
366
+			$instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
367
+		else
368
+			$instance['add_location_filter'] = '0';
369
+		$instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0;
370
+		return $instance;
371
+	}
372
+
373
+	/**
374
+	 * Back-end best of widget settings form.
375
+	 *
376
+	 * @since 1.3.9
377
+	 * @since 1.5.1 Declare function public.
378
+	 *
379
+	 * @param array $instance Previously saved values from database.
380
+	 */
381
+	public function form($instance)
382
+	{
383
+		$instance = wp_parse_args((array)$instance,
384
+			array(
385
+				'title' => '',
386
+				'post_type' => '',
387
+				'post_limit' => '5',
388
+				'categ_limit' => '3',
389
+				'character_count' => '20',
390
+				'add_location_filter' => '1',
391
+				'tab_layout' => 'bestof-tabs-on-top',
392
+				'excerpt_type' => 'show-desc',
393
+				'use_viewing_post_type' => ''
394
+			)
395
+		);
396
+		$title = strip_tags($instance['title']);
397
+		$post_type = strip_tags($instance['post_type']);
398
+		$post_limit = strip_tags($instance['post_limit']);
399
+		$categ_limit = strip_tags($instance['categ_limit']);
400
+		$character_count = strip_tags($instance['character_count']);
401
+		$tab_layout = strip_tags($instance['tab_layout']);
402
+		$excerpt_type = strip_tags($instance['excerpt_type']);
403
+		$add_location_filter = strip_tags($instance['add_location_filter']);
404
+		$use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false;
405
+
406
+		?>
407 407
         <p>
408 408
             <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
409 409
 
@@ -418,14 +418,14 @@  discard block
 block discarded – undo
418 418
                 for="<?php echo $this->get_field_id('post_type'); ?>"><?php _e('Post Type:', 'geodirectory');?>
419 419
 
420 420
                 <?php $postypes = geodir_get_posttypes();
421
-                /**
422
-                 * Filter the post types to display in widget.
423
-                 *
424
-                 * @since 1.3.9
425
-                 *
426
-                 * @param array $postypes Post types array.
427
-                 */
428
-                $postypes = apply_filters('geodir_post_type_list_in_p_widget', $postypes); ?>
421
+				/**
422
+				 * Filter the post types to display in widget.
423
+				 *
424
+				 * @since 1.3.9
425
+				 *
426
+				 * @param array $postypes Post types array.
427
+				 */
428
+				$postypes = apply_filters('geodir_post_type_list_in_p_widget', $postypes); ?>
429 429
 
430 430
                 <select class="widefat" id="<?php echo $this->get_field_id('post_type'); ?>"
431 431
                         name="<?php echo $this->get_field_name('post_type'); ?>"
@@ -434,9 +434,9 @@  discard block
 block discarded – undo
434 434
                     <?php foreach ($postypes as $postypes_obj) { ?>
435 435
 
436 436
                         <option <?php if ($post_type == $postypes_obj) {
437
-                            echo 'selected="selected"';
438
-                        } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
439
-                            echo geodir_utf8_ucfirst($extvalue[1]); ?></option>
437
+							echo 'selected="selected"';
438
+						} ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
439
+							echo geodir_utf8_ucfirst($extvalue[1]); ?></option>
440 440
 
441 441
                     <?php } ?>
442 442
 
@@ -482,14 +482,14 @@  discard block
 block discarded – undo
482 482
                         name="<?php echo $this->get_field_name('tab_layout'); ?>">
483 483
 
484 484
                     <option <?php if ($tab_layout == 'bestof-tabs-on-top') {
485
-                        echo 'selected="selected"';
486
-                    } ?> value="bestof-tabs-on-top"><?php _e('Tabs on Top', 'geodirectory'); ?></option>
485
+						echo 'selected="selected"';
486
+					} ?> value="bestof-tabs-on-top"><?php _e('Tabs on Top', 'geodirectory'); ?></option>
487 487
                     <option <?php if ($tab_layout == 'bestof-tabs-on-left') {
488
-                        echo 'selected="selected"';
489
-                    } ?> value="bestof-tabs-on-left"><?php _e('Tabs on Left', 'geodirectory'); ?></option>
488
+						echo 'selected="selected"';
489
+					} ?> value="bestof-tabs-on-left"><?php _e('Tabs on Left', 'geodirectory'); ?></option>
490 490
                     <option <?php if ($tab_layout == 'bestof-tabs-as-dropdown') {
491
-                        echo 'selected="selected"';
492
-                    } ?>
491
+						echo 'selected="selected"';
492
+					} ?>
493 493
                         value="bestof-tabs-as-dropdown"><?php _e('Tabs as Dropdown', 'geodirectory'); ?></option>
494 494
                 </select>
495 495
             </label>
@@ -503,11 +503,11 @@  discard block
 block discarded – undo
503 503
                         name="<?php echo $this->get_field_name('excerpt_type'); ?>">
504 504
 
505 505
                     <option <?php if ($excerpt_type == 'show-desc') {
506
-                        echo 'selected="selected"';
507
-                    } ?> value="show-desc"><?php _e('Show Description', 'geodirectory'); ?></option>
506
+						echo 'selected="selected"';
507
+					} ?> value="show-desc"><?php _e('Show Description', 'geodirectory'); ?></option>
508 508
                     <option <?php if ($excerpt_type == 'show-reviews') {
509
-                        echo 'selected="selected"';
510
-                    } ?> value="show-reviews"><?php _e('Show Reviews if Available', 'geodirectory'); ?></option>
509
+						echo 'selected="selected"';
510
+					} ?> value="show-reviews"><?php _e('Show Reviews if Available', 'geodirectory'); ?></option>
511 511
                 </select>
512 512
             </label>
513 513
         </p>
@@ -526,12 +526,12 @@  discard block
 block discarded – undo
526 526
                 for="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"><?php _e('Use current viewing post type:', 'geodirectory'); ?>
527 527
                 <input type="checkbox" id="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"
528 528
                        name="<?php echo $this->get_field_name('use_viewing_post_type'); ?>" <?php if ($use_viewing_post_type) {
529
-                    echo 'checked="checked"';
530
-                } ?>  value="1"/>
529
+					echo 'checked="checked"';
530
+				} ?>  value="1"/>
531 531
             </label>
532 532
         </p>
533 533
     <?php
534
-    }
534
+	}
535 535
 } // class geodir_bestof_widget
536 536
 
537 537
 register_widget('geodir_bestof_widget');
@@ -551,68 +551,68 @@  discard block
 block discarded – undo
551 551
  */
552 552
 function geodir_bestof_places_by_term($query_args)
553 553
 {
554
-    global $gd_session;
555
-
556
-    /**
557
-     * This action called before querying widget listings.
558
-     *
559
-     * @since 1.0.0
560
-     */
561
-    do_action('geodir_bestof_get_widget_listings_before');
562
-
563
-    $widget_listings = geodir_get_widget_listings($query_args);
564
-
565
-    /**
566
-     * This action called after querying widget listings.
567
-     *
568
-     * @since 1.0.0
569
-     */
570
-    do_action('geodir_bestof_get_widget_listings_after');
571
-
572
-    $character_count = isset($query_args['excerpt_length']) ? $query_args['excerpt_length'] : '';
573
-
574
-    if (!isset($character_count)) {
575
-        /** This filter is documented in geodirectory-widgets/geodirectory_bestof_widget.php */
576
-        $character_count = $character_count == '' ? 50 : apply_filters('bestof_widget_character_count', $character_count);
577
-    }
578
-
579
-    /** This filter is documented in geodirectory-functions/general_functions.php */
580
-    $template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
581
-
582
-    global $post, $map_jason, $map_canvas_arr, $gridview_columns_widget, $geodir_is_widget_listing;
583
-    $current_post = $post;
584
-    $current_map_jason = $map_jason;
585
-    $current_map_canvas_arr = $map_canvas_arr;
586
-    $current_grid_view = $gridview_columns_widget;
587
-    $gridview_columns_widget = null;
588
-
589
-    $gd_listing_view_set = $gd_session->get('gd_listing_view') ? true : false;
590
-    $gd_listing_view_old = $gd_listing_view_set ? $gd_session->get('gd_listing_view') : '';
591
-
592
-    $gd_session->set('gd_listing_view', '1');
593
-    $geodir_is_widget_listing = true;
594
-
595
-    /**
596
-     * Includes the template for the listing listview.
597
-     *
598
-     * @since 1.3.9
599
-     */
600
-    include($template);
601
-
602
-    $geodir_is_widget_listing = false;
603
-
604
-    $GLOBALS['post'] = $current_post;
605
-    if (!empty($current_post)) {
606
-        setup_postdata($current_post);
607
-    }
608
-    if ($gd_listing_view_set) { // Set back previous value
609
-        $gd_session->set('gd_listing_view', $gd_listing_view_old);
610
-    } else {
611
-        $gd_session->un_set('gd_listing_view');
612
-    }
613
-    $map_jason = $current_map_jason;
614
-    $map_canvas_arr = $current_map_canvas_arr;
615
-    $gridview_columns_widget = $current_grid_view;
554
+	global $gd_session;
555
+
556
+	/**
557
+	 * This action called before querying widget listings.
558
+	 *
559
+	 * @since 1.0.0
560
+	 */
561
+	do_action('geodir_bestof_get_widget_listings_before');
562
+
563
+	$widget_listings = geodir_get_widget_listings($query_args);
564
+
565
+	/**
566
+	 * This action called after querying widget listings.
567
+	 *
568
+	 * @since 1.0.0
569
+	 */
570
+	do_action('geodir_bestof_get_widget_listings_after');
571
+
572
+	$character_count = isset($query_args['excerpt_length']) ? $query_args['excerpt_length'] : '';
573
+
574
+	if (!isset($character_count)) {
575
+		/** This filter is documented in geodirectory-widgets/geodirectory_bestof_widget.php */
576
+		$character_count = $character_count == '' ? 50 : apply_filters('bestof_widget_character_count', $character_count);
577
+	}
578
+
579
+	/** This filter is documented in geodirectory-functions/general_functions.php */
580
+	$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
581
+
582
+	global $post, $map_jason, $map_canvas_arr, $gridview_columns_widget, $geodir_is_widget_listing;
583
+	$current_post = $post;
584
+	$current_map_jason = $map_jason;
585
+	$current_map_canvas_arr = $map_canvas_arr;
586
+	$current_grid_view = $gridview_columns_widget;
587
+	$gridview_columns_widget = null;
588
+
589
+	$gd_listing_view_set = $gd_session->get('gd_listing_view') ? true : false;
590
+	$gd_listing_view_old = $gd_listing_view_set ? $gd_session->get('gd_listing_view') : '';
591
+
592
+	$gd_session->set('gd_listing_view', '1');
593
+	$geodir_is_widget_listing = true;
594
+
595
+	/**
596
+	 * Includes the template for the listing listview.
597
+	 *
598
+	 * @since 1.3.9
599
+	 */
600
+	include($template);
601
+
602
+	$geodir_is_widget_listing = false;
603
+
604
+	$GLOBALS['post'] = $current_post;
605
+	if (!empty($current_post)) {
606
+		setup_postdata($current_post);
607
+	}
608
+	if ($gd_listing_view_set) { // Set back previous value
609
+		$gd_session->set('gd_listing_view', $gd_listing_view_old);
610
+	} else {
611
+		$gd_session->un_set('gd_listing_view');
612
+	}
613
+	$map_jason = $current_map_jason;
614
+	$map_canvas_arr = $current_map_canvas_arr;
615
+	$gridview_columns_widget = $current_grid_view;
616 616
 }
617 617
 
618 618
 //Ajax functions
@@ -629,51 +629,51 @@  discard block
 block discarded – undo
629 629
  */
630 630
 function geodir_bestof_callback()
631 631
 {
632
-    check_ajax_referer('geodir-bestof-nonce', 'geodir_bestof_nonce');
633
-    //set variables
634
-    $post_type = strip_tags(esc_sql($_POST['post_type']));
635
-    $post_limit = strip_tags(esc_sql($_POST['post_limit']));
636
-    $character_count = strip_tags(esc_sql($_POST['char_count']));
637
-    $taxonomy = strip_tags(esc_sql($_POST['taxonomy']));
638
-    $add_location_filter = strip_tags(esc_sql($_POST['add_location_filter']));
639
-    $term_id = strip_tags(esc_sql($_POST['term_id']));
640
-    $excerpt_type = strip_tags(esc_sql($_POST['excerpt_type']));
641
-
642
-    $query_args = array(
643
-        'posts_per_page' => $post_limit,
644
-        'is_geodir_loop' => true,
645
-        'post_type' => $post_type,
646
-        'gd_location' => $add_location_filter ? true : false,
647
-        'order_by' => 'high_review'
648
-    );
649
-
650
-    if ($character_count >= 0) {
651
-        $query_args['excerpt_length'] = $character_count;
652
-    }
653
-
654
-    $tax_query = array(
655
-        'taxonomy' => $taxonomy,
656
-        'field' => 'id',
657
-        'terms' => $term_id
658
-    );
659
-
660
-    $query_args['tax_query'] = array($tax_query);
661
-    if ($term_id && $taxonomy) {
662
-        $term = get_term_by('id', $term_id, $taxonomy);
663
-        $view_all_link = add_query_arg(array('sort_by' => 'rating_count_desc'), get_term_link($term));
664
-        /** This filter is documented in geodirectory-widgets/geodirectory_bestof_widget.php */
665
-        $view_all_link = apply_filters('geodir_bestof_widget_view_all_link', $view_all_link, $post_type, $term);
666
-
667
-        echo '<h3 class="bestof-cat-title">' . wp_sprintf(__('Best of %s', 'geodirectory'), $term->name) . '<a href="' . esc_url($view_all_link) . '">' . __("View all", 'geodirectory') . '</a></h3>';
668
-    }
669
-    if ($excerpt_type == 'show-reviews') {
670
-        add_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
671
-    }
672
-    geodir_bestof_places_by_term($query_args);
673
-    if ($excerpt_type == 'show-reviews') {
674
-        remove_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
675
-    }
676
-    gd_die();
632
+	check_ajax_referer('geodir-bestof-nonce', 'geodir_bestof_nonce');
633
+	//set variables
634
+	$post_type = strip_tags(esc_sql($_POST['post_type']));
635
+	$post_limit = strip_tags(esc_sql($_POST['post_limit']));
636
+	$character_count = strip_tags(esc_sql($_POST['char_count']));
637
+	$taxonomy = strip_tags(esc_sql($_POST['taxonomy']));
638
+	$add_location_filter = strip_tags(esc_sql($_POST['add_location_filter']));
639
+	$term_id = strip_tags(esc_sql($_POST['term_id']));
640
+	$excerpt_type = strip_tags(esc_sql($_POST['excerpt_type']));
641
+
642
+	$query_args = array(
643
+		'posts_per_page' => $post_limit,
644
+		'is_geodir_loop' => true,
645
+		'post_type' => $post_type,
646
+		'gd_location' => $add_location_filter ? true : false,
647
+		'order_by' => 'high_review'
648
+	);
649
+
650
+	if ($character_count >= 0) {
651
+		$query_args['excerpt_length'] = $character_count;
652
+	}
653
+
654
+	$tax_query = array(
655
+		'taxonomy' => $taxonomy,
656
+		'field' => 'id',
657
+		'terms' => $term_id
658
+	);
659
+
660
+	$query_args['tax_query'] = array($tax_query);
661
+	if ($term_id && $taxonomy) {
662
+		$term = get_term_by('id', $term_id, $taxonomy);
663
+		$view_all_link = add_query_arg(array('sort_by' => 'rating_count_desc'), get_term_link($term));
664
+		/** This filter is documented in geodirectory-widgets/geodirectory_bestof_widget.php */
665
+		$view_all_link = apply_filters('geodir_bestof_widget_view_all_link', $view_all_link, $post_type, $term);
666
+
667
+		echo '<h3 class="bestof-cat-title">' . wp_sprintf(__('Best of %s', 'geodirectory'), $term->name) . '<a href="' . esc_url($view_all_link) . '">' . __("View all", 'geodirectory') . '</a></h3>';
668
+	}
669
+	if ($excerpt_type == 'show-reviews') {
670
+		add_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
671
+	}
672
+	geodir_bestof_places_by_term($query_args);
673
+	if ($excerpt_type == 'show-reviews') {
674
+		remove_filter('get_the_excerpt', 'best_of_show_review_in_excerpt');
675
+	}
676
+	gd_die();
677 677
 }
678 678
 
679 679
 //Javascript
@@ -686,8 +686,8 @@  discard block
 block discarded – undo
686 686
  */
687 687
 function geodir_bestof_js()
688 688
 {
689
-    $ajax_nonce = wp_create_nonce("geodir-bestof-nonce");
690
-    ?>
689
+	$ajax_nonce = wp_create_nonce("geodir-bestof-nonce");
690
+	?>
691 691
     <script type="text/javascript">
692 692
         jQuery(document).ready(function () {
693 693
             jQuery('.geodir-bestof-cat-list a, #geodir_bestof_tab_dd').on("click change", function (e) {
@@ -766,18 +766,18 @@  discard block
 block discarded – undo
766 766
 
767 767
 function best_of_show_review_in_excerpt($excerpt)
768 768
 {
769
-    global $wpdb, $post;
770
-    $review_table = GEODIR_REVIEW_TABLE;
771
-    $request = "SELECT comment_ID FROM $review_table WHERE post_id = $post->ID ORDER BY post_date DESC, id DESC LIMIT 1";
772
-    $comments = $wpdb->get_results($request);
773
-
774
-    if ($comments) {
775
-        foreach ($comments as $comment) {
776
-            // Set the extra comment info needed.
777
-            $comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
778
-            $comment_content = $comment_extra->comment_content;
779
-            $excerpt = strip_tags($comment_content);
780
-        }
781
-    }
782
-    return $excerpt;
769
+	global $wpdb, $post;
770
+	$review_table = GEODIR_REVIEW_TABLE;
771
+	$request = "SELECT comment_ID FROM $review_table WHERE post_id = $post->ID ORDER BY post_date DESC, id DESC LIMIT 1";
772
+	$comments = $wpdb->get_results($request);
773
+
774
+	if ($comments) {
775
+		foreach ($comments as $comment) {
776
+			// Set the extra comment info needed.
777
+			$comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
778
+			$comment_content = $comment_extra->comment_content;
779
+			$excerpt = strip_tags($comment_content);
780
+		}
781
+	}
782
+	return $excerpt;
783 783
 }
784 784
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-widgets/geodirectory_listing_slider_widget.php 1 patch
Indentation   +109 added lines, -109 removed lines patch added patch discarded remove patch
@@ -15,40 +15,40 @@  discard block
 block discarded – undo
15 15
 class geodir_listing_slider_widget extends WP_Widget
16 16
 {
17 17
 
18
-    /**
18
+	/**
19 19
 	 * Register the listing slider widget.
20 20
 	 *
21 21
 	 * @since 1.0.0
22
-     * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22
+	 * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
23 23
 	 */
24
-    public function __construct() {
25
-        $widget_ops = array('classname' => 'geodir_listing_slider_view', 'description' => __('GD > Listing Slider', 'geodirectory'));
26
-        parent::__construct(
27
-            'listing_slider_view', // Base ID
28
-            __('GD > Listing Slider', 'geodirectory'), // Name
29
-            $widget_ops// Args
30
-        );
31
-    }
24
+	public function __construct() {
25
+		$widget_ops = array('classname' => 'geodir_listing_slider_view', 'description' => __('GD > Listing Slider', 'geodirectory'));
26
+		parent::__construct(
27
+			'listing_slider_view', // Base ID
28
+			__('GD > Listing Slider', 'geodirectory'), // Name
29
+			$widget_ops// Args
30
+		);
31
+	}
32 32
 	
33 33
 	/**
34 34
 	 * Front-end display content for listing slider widget.
35 35
 	 *
36 36
 	 * @since 1.0.0
37
-     * @since 1.5.1 Declare function public.
37
+	 * @since 1.5.1 Declare function public.
38 38
 	 *
39 39
 	 * @param array $args     Widget arguments.
40 40
 	 * @param array $instance Saved values from database.
41 41
 	 */
42
-    public function widget($args, $instance)
43
-    {
44
-        geodir_listing_slider_widget_output($args, $instance);
45
-    }
42
+	public function widget($args, $instance)
43
+	{
44
+		geodir_listing_slider_widget_output($args, $instance);
45
+	}
46 46
 
47 47
 	/**
48 48
 	 * Sanitize listing slider widget form values as they are saved.
49 49
 	 *
50 50
 	 * @since 1.0.0
51
-     * @since 1.5.1 Declare function public.
51
+	 * @since 1.5.1 Declare function public.
52 52
 	 *
53 53
 	 * @param array $new_instance Values just sent to be saved.
54 54
 	 * @param array $old_instance Previously saved values from database.
@@ -56,101 +56,101 @@  discard block
 block discarded – undo
56 56
 	 * @return array Updated safe values to be saved.
57 57
 	 */
58 58
 	public function update($new_instance, $old_instance)
59
-    {
60
-        //save the widget
61
-        $instance = $old_instance;
62
-        $instance['title'] = strip_tags($new_instance['title']);
63
-        $instance['post_type'] = strip_tags($new_instance['post_type']);
64
-        $instance['category'] = strip_tags($new_instance['category']);
65
-        $instance['post_number'] = strip_tags($new_instance['post_number']);
66
-        $instance['max_show'] = strip_tags($new_instance['max_show']);
67
-        $instance['slide_width'] = strip_tags($new_instance['slide_width']);
68
-        $instance['show_title'] = isset($new_instance['show_title']) ? $new_instance['show_title'] : '';
69
-        $instance['slideshow'] = isset($new_instance['slideshow']) ? $new_instance['slideshow'] : '';
70
-        $instance['animationLoop'] = isset($new_instance['animationLoop']) ? $new_instance['animationLoop'] : '';
71
-        $instance['directionNav'] = isset($new_instance['directionNav']) ? $new_instance['directionNav'] : '';
72
-        $instance['slideshowSpeed'] = $new_instance['slideshowSpeed'];
73
-        $instance['animationSpeed'] = $new_instance['animationSpeed'];
74
-        $instance['animation'] = $new_instance['animation'];
75
-        $instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : '';
76
-        $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0;
77
-        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
78
-            $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
79
-        else
80
-            $instance['add_location_filter'] = '0';
81
-
82
-        return $instance;
83
-    }
59
+	{
60
+		//save the widget
61
+		$instance = $old_instance;
62
+		$instance['title'] = strip_tags($new_instance['title']);
63
+		$instance['post_type'] = strip_tags($new_instance['post_type']);
64
+		$instance['category'] = strip_tags($new_instance['category']);
65
+		$instance['post_number'] = strip_tags($new_instance['post_number']);
66
+		$instance['max_show'] = strip_tags($new_instance['max_show']);
67
+		$instance['slide_width'] = strip_tags($new_instance['slide_width']);
68
+		$instance['show_title'] = isset($new_instance['show_title']) ? $new_instance['show_title'] : '';
69
+		$instance['slideshow'] = isset($new_instance['slideshow']) ? $new_instance['slideshow'] : '';
70
+		$instance['animationLoop'] = isset($new_instance['animationLoop']) ? $new_instance['animationLoop'] : '';
71
+		$instance['directionNav'] = isset($new_instance['directionNav']) ? $new_instance['directionNav'] : '';
72
+		$instance['slideshowSpeed'] = $new_instance['slideshowSpeed'];
73
+		$instance['animationSpeed'] = $new_instance['animationSpeed'];
74
+		$instance['animation'] = $new_instance['animation'];
75
+		$instance['list_sort'] = isset($new_instance['list_sort']) ? $new_instance['list_sort'] : '';
76
+		$instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0;
77
+		if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
78
+			$instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
79
+		else
80
+			$instance['add_location_filter'] = '0';
81
+
82
+		return $instance;
83
+	}
84 84
 
85 85
 	/**
86 86
 	 * Back-end listing slider widget settings form.
87 87
 	 *
88 88
 	 * @since 1.0.0
89
-     * @since 1.5.1 Declare function public.
89
+	 * @since 1.5.1 Declare function public.
90 90
 	 *
91 91
 	 * @param array $instance Previously saved values from database.
92 92
 	 */
93 93
 	public function form($instance)
94
-    {
94
+	{
95 95
 
96
-        //widgetform in backend
97
-        $instance = wp_parse_args((array)$instance,
98
-            array('title' => '',
99
-                'post_type' => '',
100
-                'category' => '',
101
-                'post_number' => '5',
102
-                'max_show' => '1',
103
-                'slide_width' => '',
104
-                'show_title' => '',
105
-                'slideshow' => '',
106
-                'animationLoop' => '',
107
-                'directionNav' => '',
108
-                'slideshowSpeed' => 5000,
109
-                'animationSpeed' => 600,
110
-                'animation' => '',
111
-                'list_sort' => 'latest',
112
-                'show_featured_only' => '',
113
-                'add_location_filter' => '0',
114
-            )
115
-        );
96
+		//widgetform in backend
97
+		$instance = wp_parse_args((array)$instance,
98
+			array('title' => '',
99
+				'post_type' => '',
100
+				'category' => '',
101
+				'post_number' => '5',
102
+				'max_show' => '1',
103
+				'slide_width' => '',
104
+				'show_title' => '',
105
+				'slideshow' => '',
106
+				'animationLoop' => '',
107
+				'directionNav' => '',
108
+				'slideshowSpeed' => 5000,
109
+				'animationSpeed' => 600,
110
+				'animation' => '',
111
+				'list_sort' => 'latest',
112
+				'show_featured_only' => '',
113
+				'add_location_filter' => '0',
114
+			)
115
+		);
116 116
 
117
-        $title = strip_tags($instance['title']);
117
+		$title = strip_tags($instance['title']);
118 118
 
119
-        $post_type = strip_tags($instance['post_type']);
119
+		$post_type = strip_tags($instance['post_type']);
120 120
 
121
-        $category = strip_tags($instance['category']);
121
+		$category = strip_tags($instance['category']);
122 122
 
123
-        $post_number = strip_tags($instance['post_number']);
123
+		$post_number = strip_tags($instance['post_number']);
124 124
 
125
-        $max_show = strip_tags($instance['max_show']);
125
+		$max_show = strip_tags($instance['max_show']);
126 126
 
127
-        $slide_width = strip_tags($instance['slide_width']);
127
+		$slide_width = strip_tags($instance['slide_width']);
128 128
 
129
-        $show_title = $instance['show_title'];
129
+		$show_title = $instance['show_title'];
130 130
 
131
-        $slideshow = $instance['slideshow'];
131
+		$slideshow = $instance['slideshow'];
132 132
 
133
-        $animationLoop = $instance['animationLoop'];
133
+		$animationLoop = $instance['animationLoop'];
134 134
 
135
-        $directionNav = $instance['directionNav'];
135
+		$directionNav = $instance['directionNav'];
136 136
 
137
-        $slideshowSpeed = $instance['slideshowSpeed'];
137
+		$slideshowSpeed = $instance['slideshowSpeed'];
138 138
 
139
-        $animationSpeed = $instance['animationSpeed'];
139
+		$animationSpeed = $instance['animationSpeed'];
140 140
 
141
-        $add_location_filter = strip_tags($instance['add_location_filter']);
141
+		$add_location_filter = strip_tags($instance['add_location_filter']);
142 142
 
143
-        $animation = $instance['animation'];
144
-        $list_sort = $instance['list_sort'];
145
-        $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false;
143
+		$animation = $instance['animation'];
144
+		$list_sort = $instance['list_sort'];
145
+		$show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false;
146 146
 
147
-        $sort_fields = array();
148
-        $sort_fields[] = array('field' => 'latest', 'label' => __('Latest', 'geodirectory'));
149
-        $sort_fields[] = array('field' => 'featured', 'label' => __('Featured', 'geodirectory'));
150
-        $sort_fields[] = array('field' => 'high_review', 'label' => __('Review', 'geodirectory'));
151
-        $sort_fields[] = array('field' => 'high_rating', 'label' => __('Rating', 'geodirectory'));
152
-        $sort_fields[] = array('field' => 'random', 'label' => __('Random', 'geodirectory'));
153
-        ?>
147
+		$sort_fields = array();
148
+		$sort_fields[] = array('field' => 'latest', 'label' => __('Latest', 'geodirectory'));
149
+		$sort_fields[] = array('field' => 'featured', 'label' => __('Featured', 'geodirectory'));
150
+		$sort_fields[] = array('field' => 'high_review', 'label' => __('Review', 'geodirectory'));
151
+		$sort_fields[] = array('field' => 'high_rating', 'label' => __('Rating', 'geodirectory'));
152
+		$sort_fields[] = array('field' => 'random', 'label' => __('Random', 'geodirectory'));
153
+		?>
154 154
 
155 155
         <p>
156 156
             <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
@@ -174,9 +174,9 @@  discard block
 block discarded – undo
174 174
                     <?php foreach ($postypes as $postypes_obj) { ?>
175 175
 
176 176
                         <option <?php if ($post_type == $postypes_obj) {
177
-                            echo 'selected="selected"';
178
-                        } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
179
-                            echo geodir_utf8_ucfirst($extvalue[1]); ?></option>
177
+							echo 'selected="selected"';
178
+						} ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
179
+							echo geodir_utf8_ucfirst($extvalue[1]); ?></option>
180 180
 
181 181
                     <?php } ?>
182 182
 
@@ -190,20 +190,20 @@  discard block
 block discarded – undo
190 190
                 for="<?php echo $this->get_field_id('category'); ?>"><?php _e('Post Category:', 'geodirectory');?>
191 191
 
192 192
                 <?php
193
-                $category_taxonomy = geodir_get_taxonomies('gd_place');
194
-                $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
195
-                ?>
193
+				$category_taxonomy = geodir_get_taxonomies('gd_place');
194
+				$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
195
+				?>
196 196
 
197 197
                 <select class="widefat" id="<?php echo $this->get_field_id('category'); ?>"
198 198
                         name="<?php echo $this->get_field_name('category'); ?>">
199 199
                     <option <?php if ($category == '0') {
200
-                        echo 'selected="selected"';
201
-                    } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
200
+						echo 'selected="selected"';
201
+					} ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
202 202
                     <?php foreach ($categories as $category_obj) { ?>
203 203
 
204 204
                         <option <?php if ($category == $category_obj->term_id) {
205
-                            echo 'selected="selected"';
206
-                        } ?>
205
+							echo 'selected="selected"';
206
+						} ?>
207 207
                             value="<?php echo $category_obj->term_id; ?>"><?php echo geodir_utf8_ucfirst($category_obj->name); ?></option>
208 208
 
209 209
                     <?php } ?>
@@ -256,12 +256,12 @@  discard block
 block discarded – undo
256 256
                 <select class="widefat" id="<?php echo $this->get_field_id('animation'); ?>"
257 257
                         name="<?php echo $this->get_field_name('animation'); ?>">
258 258
                     <option <?php if ($animation == 'slide') {
259
-                        echo 'selected="selected"';
260
-                    } ?> value="slide">Slide
259
+						echo 'selected="selected"';
260
+					} ?> value="slide">Slide
261 261
                     </option>
262 262
                     <option <?php if ($animation == 'fade') {
263
-                        echo 'selected="selected"';
264
-                    } ?> value="fade">Fade
263
+						echo 'selected="selected"';
264
+					} ?> value="fade">Fade
265 265
                     </option>
266 266
                 </select>
267 267
             </label>
@@ -292,8 +292,8 @@  discard block
 block discarded – undo
292 292
                 for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('SlideShow:', 'geodirectory');?>
293 293
 
294 294
                 <input type="checkbox" <?php if ($slideshow) {
295
-                    echo 'checked="checked"';
296
-                } ?> id="<?php echo $this->get_field_id('slideshow'); ?>" value="1"
295
+					echo 'checked="checked"';
296
+				} ?> id="<?php echo $this->get_field_id('slideshow'); ?>" value="1"
297 297
                        name="<?php echo $this->get_field_name('slideshow'); ?>"/>
298 298
 
299 299
             </label>
@@ -304,8 +304,8 @@  discard block
 block discarded – undo
304 304
                 for="<?php echo $this->get_field_id('animationLoop'); ?>"><?php _e('AnimationLoop:', 'geodirectory');?>
305 305
 
306 306
                 <input type="checkbox" <?php if ($animationLoop) {
307
-                    echo 'checked="checked"';
308
-                } ?> id="<?php echo $this->get_field_id('animationLoop'); ?>" value="1"
307
+					echo 'checked="checked"';
308
+				} ?> id="<?php echo $this->get_field_id('animationLoop'); ?>" value="1"
309 309
                        name="<?php echo $this->get_field_name('animationLoop'); ?>"/>
310 310
 
311 311
             </label>
@@ -316,8 +316,8 @@  discard block
 block discarded – undo
316 316
                 for="<?php echo $this->get_field_id('directionNav'); ?>"><?php _e('DirectionNav:', 'geodirectory');?>
317 317
 
318 318
                 <input type="checkbox" <?php if ($directionNav) {
319
-                    echo 'checked="checked"';
320
-                } ?> id="<?php echo $this->get_field_id('directionNav'); ?>" value="1"
319
+					echo 'checked="checked"';
320
+				} ?> id="<?php echo $this->get_field_id('directionNav'); ?>" value="1"
321 321
                        name="<?php echo $this->get_field_name('directionNav'); ?>"/>
322 322
 
323 323
             </label>
@@ -329,8 +329,8 @@  discard block
 block discarded – undo
329 329
                 for="<?php echo $this->get_field_id('show_title'); ?>"><?php _e('Show Title:', 'geodirectory');?>
330 330
 
331 331
                 <input type="checkbox" <?php if ($show_title) {
332
-                    echo 'checked="checked"';
333
-                } ?> id="<?php echo $this->get_field_id('show_title'); ?>" value="1"
332
+					echo 'checked="checked"';
333
+				} ?> id="<?php echo $this->get_field_id('show_title'); ?>" value="1"
334 334
                        name="<?php echo $this->get_field_name('show_title'); ?>"/>
335 335
 
336 336
             </label>
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
 
379 379
 
380 380
     <?php
381
-    }
381
+	}
382 382
 } // class geodir_listing_slider_widget
383 383
 
384 384
 register_widget('geodir_listing_slider_widget');
385 385
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-widgets/geodirectory_popular_widget.php 1 patch
Indentation   +204 added lines, -204 removed lines patch added patch discarded remove patch
@@ -14,83 +14,83 @@  discard block
 block discarded – undo
14 14
  */
15 15
 class geodir_popular_post_category extends WP_Widget
16 16
 {
17
-    /**
18
-     * Register the popular post category widget.
19
-     *
20
-     * @since 1.0.0
21
-     * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22
-     */
23
-    public function __construct() {
24
-        $widget_ops = array('classname' => 'geodir_popular_post_category', 'description' => __('GD > Popular Post Category', 'geodirectory'));
25
-        parent::__construct(
26
-            'popular_post_category', // Base ID
27
-            __('GD > Popular Post Category', 'geodirectory'), // Name
28
-            $widget_ops// Args
29
-        );
30
-    }
31
-
32
-    /**
33
-     * Front-end display content for popular post category widget.
34
-     *
35
-     * @since 1.0.0
36
-     * @since 1.5.1 Declare function public.
37
-     *
38
-     * @param array $args     Widget arguments.
39
-     * @param array $instance Saved values from database.
40
-     */
41
-    public function widget($args, $instance)
42
-    {
43
-        geodir_popular_post_category_output($args, $instance);
44
-    }
45
-
46
-    /**
47
-     * Sanitize popular post category widget form values as they are saved.
48
-     *
49
-     * @since 1.0.0
50
-     * @since 1.5.1 Declare function public.
51
-     * @since 1.5.1 Added default_post_type parameter.
52
-     * @since 1.6.9 Added parent_only parameter.
53
-     *
54
-     * @param array $new_instance Values just sent to be saved.
55
-     * @param array $old_instance Previously saved values from database.
56
-     *
57
-     * @return array Updated safe values to be saved.
58
-     */ 
59
-    public function update($new_instance, $old_instance)
60
-    {
61
-        //save the widget
62
-        $instance = $old_instance;
63
-        $instance['title'] = strip_tags($new_instance['title']);
64
-        $category_limit = (int)$new_instance['category_limit'];
65
-        $instance['category_limit'] = $category_limit > 0 ? $category_limit : 15;
66
-        $instance['default_post_type'] = isset($new_instance['default_post_type']) ? $new_instance['default_post_type'] : '';
67
-        $instance['parent_only'] = !empty($new_instance['parent_only']) ? true : false;
68
-        return $instance;
69
-    }
70
-
71
-    /**
72
-     * Back-end popular post category widget settings form.
73
-     *
74
-     * @since 1.0.0
75
-     * @since 1.5.1 Declare function public.
76
-     * @since 1.5.1 Added option to set default post type.
77
-     * @since 1.6.9 Added option to show parent categories only.
78
-     *
79
-     * @param array $instance Previously saved values from database.
80
-     */
81
-    public function form($instance) 
82
-    {
83
-        //widgetform in backend
84
-        $instance = wp_parse_args((array)$instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => '', 'parent_only' => false));
85
-
86
-        $title = strip_tags($instance['title']);
87
-        $category_limit = (int)$instance['category_limit'];
88
-        $category_limit = $category_limit > 0 ? $category_limit : 15;
89
-        $default_post_type = isset($instance['default_post_type']) ? $instance['default_post_type'] : '';
90
-        $parent_only = !empty($instance['parent_only']) ? true: false;
17
+	/**
18
+	 * Register the popular post category widget.
19
+	 *
20
+	 * @since 1.0.0
21
+	 * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
22
+	 */
23
+	public function __construct() {
24
+		$widget_ops = array('classname' => 'geodir_popular_post_category', 'description' => __('GD > Popular Post Category', 'geodirectory'));
25
+		parent::__construct(
26
+			'popular_post_category', // Base ID
27
+			__('GD > Popular Post Category', 'geodirectory'), // Name
28
+			$widget_ops// Args
29
+		);
30
+	}
31
+
32
+	/**
33
+	 * Front-end display content for popular post category widget.
34
+	 *
35
+	 * @since 1.0.0
36
+	 * @since 1.5.1 Declare function public.
37
+	 *
38
+	 * @param array $args     Widget arguments.
39
+	 * @param array $instance Saved values from database.
40
+	 */
41
+	public function widget($args, $instance)
42
+	{
43
+		geodir_popular_post_category_output($args, $instance);
44
+	}
45
+
46
+	/**
47
+	 * Sanitize popular post category widget form values as they are saved.
48
+	 *
49
+	 * @since 1.0.0
50
+	 * @since 1.5.1 Declare function public.
51
+	 * @since 1.5.1 Added default_post_type parameter.
52
+	 * @since 1.6.9 Added parent_only parameter.
53
+	 *
54
+	 * @param array $new_instance Values just sent to be saved.
55
+	 * @param array $old_instance Previously saved values from database.
56
+	 *
57
+	 * @return array Updated safe values to be saved.
58
+	 */ 
59
+	public function update($new_instance, $old_instance)
60
+	{
61
+		//save the widget
62
+		$instance = $old_instance;
63
+		$instance['title'] = strip_tags($new_instance['title']);
64
+		$category_limit = (int)$new_instance['category_limit'];
65
+		$instance['category_limit'] = $category_limit > 0 ? $category_limit : 15;
66
+		$instance['default_post_type'] = isset($new_instance['default_post_type']) ? $new_instance['default_post_type'] : '';
67
+		$instance['parent_only'] = !empty($new_instance['parent_only']) ? true : false;
68
+		return $instance;
69
+	}
70
+
71
+	/**
72
+	 * Back-end popular post category widget settings form.
73
+	 *
74
+	 * @since 1.0.0
75
+	 * @since 1.5.1 Declare function public.
76
+	 * @since 1.5.1 Added option to set default post type.
77
+	 * @since 1.6.9 Added option to show parent categories only.
78
+	 *
79
+	 * @param array $instance Previously saved values from database.
80
+	 */
81
+	public function form($instance) 
82
+	{
83
+		//widgetform in backend
84
+		$instance = wp_parse_args((array)$instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => '', 'parent_only' => false));
85
+
86
+		$title = strip_tags($instance['title']);
87
+		$category_limit = (int)$instance['category_limit'];
88
+		$category_limit = $category_limit > 0 ? $category_limit : 15;
89
+		$default_post_type = isset($instance['default_post_type']) ? $instance['default_post_type'] : '';
90
+		$parent_only = !empty($instance['parent_only']) ? true: false;
91 91
         
92
-        $post_type_options = geodir_get_posttypes('options');
93
-        ?>
92
+		$post_type_options = geodir_get_posttypes('options');
93
+		?>
94 94
         <p>
95 95
             <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?>
96 96
                 <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>"/>
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
             <label for="<?php echo $this->get_field_id('parent_only'); ?>"><?php _e( 'Show parent categories only', 'geodirectory' ); ?></label>
117 117
         </p>
118 118
     <?php
119
-    }
119
+	}
120 120
 } // class geodir_popular_post_category
121 121
 
122 122
 register_widget('geodir_popular_post_category');
@@ -130,40 +130,40 @@  discard block
 block discarded – undo
130 130
 class geodir_popular_postview extends WP_Widget
131 131
 {
132 132
 
133
-    /**
133
+	/**
134 134
 	 * Register the popular posts widget.
135 135
 	 *
136 136
 	 * @since 1.0.0
137
-     * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
137
+	 * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct.
138 138
 	 */
139
-    public function __construct() {
140
-        $widget_ops = array('classname' => 'geodir_popular_post_view', 'description' => __('GD > Popular Post View', 'geodirectory'));
141
-        parent::__construct(
142
-            'popular_post_view', // Base ID
143
-            __('GD > Popular Post View', 'geodirectory'), // Name
144
-            $widget_ops// Args
145
-        );
146
-    }
139
+	public function __construct() {
140
+		$widget_ops = array('classname' => 'geodir_popular_post_view', 'description' => __('GD > Popular Post View', 'geodirectory'));
141
+		parent::__construct(
142
+			'popular_post_view', // Base ID
143
+			__('GD > Popular Post View', 'geodirectory'), // Name
144
+			$widget_ops// Args
145
+		);
146
+	}
147 147
 
148 148
 	/**
149 149
 	 * Front-end display content for popular posts widget.
150 150
 	 *
151 151
 	 * @since 1.0.0
152
-     * @since 1.5.1 Declare function public.
152
+	 * @since 1.5.1 Declare function public.
153 153
 	 *
154 154
 	 * @param array $args     Widget arguments.
155 155
 	 * @param array $instance Saved values from database.
156 156
 	 */
157 157
 	public function widget($args, $instance)
158
-    {
159
-        geodir_popular_postview_output($args, $instance);
160
-    }
158
+	{
159
+		geodir_popular_postview_output($args, $instance);
160
+	}
161 161
 
162 162
 	/**
163 163
 	 * Sanitize popular posts widget form values as they are saved.
164 164
 	 *
165 165
 	 * @since 1.0.0
166
-     * @since 1.5.1 Declare function public.
166
+	 * @since 1.5.1 Declare function public.
167 167
 	 *
168 168
 	 * @param array $new_instance Values just sent to be saved.
169 169
 	 * @param array $old_instance Previously saved values from database.
@@ -171,99 +171,99 @@  discard block
 block discarded – undo
171 171
 	 * @return array Updated safe values to be saved.
172 172
 	 */
173 173
 	public function update($new_instance, $old_instance)
174
-    {
175
-        //save the widget
176
-        $instance = $old_instance;
177
-
178
-        if ($new_instance['title'] == '') {
179
-            $title = geodir_ucwords(strip_tags($new_instance['category_title']));
180
-            //$instance['title'] = $title;
181
-        }
182
-        $instance['title'] = strip_tags($new_instance['title']);
183
-
184
-        $instance['post_type'] = strip_tags($new_instance['post_type']);
185
-        //$instance['category'] = strip_tags($new_instance['category']);
186
-        $instance['category'] = isset($new_instance['category']) ? $new_instance['category'] : '';
187
-        $instance['category_title'] = strip_tags($new_instance['category_title']);
188
-        $instance['post_number'] = strip_tags($new_instance['post_number']);
189
-        $instance['layout'] = strip_tags($new_instance['layout']);
190
-        $instance['listing_width'] = strip_tags($new_instance['listing_width']);
191
-        $instance['list_sort'] = strip_tags($new_instance['list_sort']);
192
-        $instance['character_count'] = $new_instance['character_count'];
193
-        if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
194
-            $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
195
-        else
196
-            $instance['add_location_filter'] = '0';
197
-
198
-        $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0;
199
-        $instance['show_special_only'] = isset($new_instance['show_special_only']) && $new_instance['show_special_only'] ? 1 : 0;
200
-        $instance['with_pics_only'] = isset($new_instance['with_pics_only']) && $new_instance['with_pics_only'] ? 1 : 0;
201
-        $instance['with_videos_only'] = isset($new_instance['with_videos_only']) && $new_instance['with_videos_only'] ? 1 : 0;
202
-        $instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0;
203
-
204
-        return $instance;
205
-    }
174
+	{
175
+		//save the widget
176
+		$instance = $old_instance;
177
+
178
+		if ($new_instance['title'] == '') {
179
+			$title = geodir_ucwords(strip_tags($new_instance['category_title']));
180
+			//$instance['title'] = $title;
181
+		}
182
+		$instance['title'] = strip_tags($new_instance['title']);
183
+
184
+		$instance['post_type'] = strip_tags($new_instance['post_type']);
185
+		//$instance['category'] = strip_tags($new_instance['category']);
186
+		$instance['category'] = isset($new_instance['category']) ? $new_instance['category'] : '';
187
+		$instance['category_title'] = strip_tags($new_instance['category_title']);
188
+		$instance['post_number'] = strip_tags($new_instance['post_number']);
189
+		$instance['layout'] = strip_tags($new_instance['layout']);
190
+		$instance['listing_width'] = strip_tags($new_instance['listing_width']);
191
+		$instance['list_sort'] = strip_tags($new_instance['list_sort']);
192
+		$instance['character_count'] = $new_instance['character_count'];
193
+		if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '')
194
+			$instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']);
195
+		else
196
+			$instance['add_location_filter'] = '0';
197
+
198
+		$instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0;
199
+		$instance['show_special_only'] = isset($new_instance['show_special_only']) && $new_instance['show_special_only'] ? 1 : 0;
200
+		$instance['with_pics_only'] = isset($new_instance['with_pics_only']) && $new_instance['with_pics_only'] ? 1 : 0;
201
+		$instance['with_videos_only'] = isset($new_instance['with_videos_only']) && $new_instance['with_videos_only'] ? 1 : 0;
202
+		$instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0;
203
+
204
+		return $instance;
205
+	}
206 206
 
207 207
 	/**
208 208
 	 * Back-end popular posts widget settings form.
209 209
 	 *
210 210
 	 * @since 1.0.0
211
-     * @since 1.5.1 Declare function public.
211
+	 * @since 1.5.1 Declare function public.
212 212
 	 *
213 213
 	 * @param array $instance Previously saved values from database.
214 214
 	 */
215 215
 	public function form($instance)
216
-    {
217
-        //widgetform in backend
218
-        $instance = wp_parse_args((array)$instance,
219
-            array('title' => '',
220
-                'post_type' => '',
221
-                'category' => array(),
222
-                'category_title' => '',
223
-                'list_sort' => '',
224
-                'list_order' => '',
225
-                'post_number' => '5',
226
-                'layout' => 'gridview_onehalf',
227
-                'listing_width' => '',
228
-                'add_location_filter' => '1',
229
-                'character_count' => '20',
230
-                'show_featured_only' => '',
231
-                'show_special_only' => '',
232
-                'with_pics_only' => '',
233
-                'with_videos_only' => '',
234
-                'use_viewing_post_type' => ''
235
-            )
236
-        );
216
+	{
217
+		//widgetform in backend
218
+		$instance = wp_parse_args((array)$instance,
219
+			array('title' => '',
220
+				'post_type' => '',
221
+				'category' => array(),
222
+				'category_title' => '',
223
+				'list_sort' => '',
224
+				'list_order' => '',
225
+				'post_number' => '5',
226
+				'layout' => 'gridview_onehalf',
227
+				'listing_width' => '',
228
+				'add_location_filter' => '1',
229
+				'character_count' => '20',
230
+				'show_featured_only' => '',
231
+				'show_special_only' => '',
232
+				'with_pics_only' => '',
233
+				'with_videos_only' => '',
234
+				'use_viewing_post_type' => ''
235
+			)
236
+		);
237 237
 
238
-        $title = strip_tags($instance['title']);
238
+		$title = strip_tags($instance['title']);
239 239
 
240
-        $post_type = strip_tags($instance['post_type']);
240
+		$post_type = strip_tags($instance['post_type']);
241 241
 
242
-        $category = $instance['category'];
242
+		$category = $instance['category'];
243 243
 
244
-        $category_title = strip_tags($instance['category_title']);
244
+		$category_title = strip_tags($instance['category_title']);
245 245
 
246
-        $list_sort = strip_tags($instance['list_sort']);
246
+		$list_sort = strip_tags($instance['list_sort']);
247 247
 
248
-        $list_order = strip_tags($instance['list_order']);
248
+		$list_order = strip_tags($instance['list_order']);
249 249
 
250
-        $post_number = strip_tags($instance['post_number']);
250
+		$post_number = strip_tags($instance['post_number']);
251 251
 
252
-        $layout = strip_tags($instance['layout']);
252
+		$layout = strip_tags($instance['layout']);
253 253
 
254
-        $listing_width = strip_tags($instance['listing_width']);
254
+		$listing_width = strip_tags($instance['listing_width']);
255 255
 
256
-        $add_location_filter = strip_tags($instance['add_location_filter']);
256
+		$add_location_filter = strip_tags($instance['add_location_filter']);
257 257
 
258
-        $character_count = $instance['character_count'];
258
+		$character_count = $instance['character_count'];
259 259
 
260
-        $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false;
261
-        $show_special_only = isset($instance['show_special_only']) && $instance['show_special_only'] ? true : false;
262
-        $with_pics_only = isset($instance['with_pics_only']) && $instance['with_pics_only'] ? true : false;
263
-        $with_videos_only = isset($instance['with_videos_only']) && $instance['with_videos_only'] ? true : false;
264
-        $use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false;
260
+		$show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false;
261
+		$show_special_only = isset($instance['show_special_only']) && $instance['show_special_only'] ? true : false;
262
+		$with_pics_only = isset($instance['with_pics_only']) && $instance['with_pics_only'] ? true : false;
263
+		$with_videos_only = isset($instance['with_videos_only']) && $instance['with_videos_only'] ? true : false;
264
+		$use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false;
265 265
 
266
-        ?>
266
+		?>
267 267
 
268 268
         <p>
269 269
             <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
@@ -298,9 +298,9 @@  discard block
 block discarded – undo
298 298
                     <?php foreach ($postypes as $postypes_obj) { ?>
299 299
 
300 300
                         <option <?php if ($post_type == $postypes_obj) {
301
-                            echo 'selected="selected"';
302
-                        } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
303
-                            echo geodir_utf8_ucfirst($extvalue[1]); ?></option>
301
+							echo 'selected="selected"';
302
+						} ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
303
+							echo geodir_utf8_ucfirst($extvalue[1]); ?></option>
304 304
 
305 305
                     <?php } ?>
306 306
 
@@ -315,30 +315,30 @@  discard block
 block discarded – undo
315 315
 
316 316
                 <?php
317 317
 
318
-                $post_type = ($post_type != '') ? $post_type : 'gd_place';
318
+				$post_type = ($post_type != '') ? $post_type : 'gd_place';
319 319
 
320
-                $all_postypes = geodir_get_posttypes();
320
+				$all_postypes = geodir_get_posttypes();
321 321
 
322
-                if (!in_array($post_type, $all_postypes))
323
-                    $post_type = 'gd_place';
322
+				if (!in_array($post_type, $all_postypes))
323
+					$post_type = 'gd_place';
324 324
 
325
-                $category_taxonomy = geodir_get_taxonomies($post_type);
326
-                $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
325
+				$category_taxonomy = geodir_get_taxonomies($post_type);
326
+				$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
327 327
 
328
-                ?>
328
+				?>
329 329
 
330 330
                 <select multiple="multiple" class="widefat" name="<?php echo $this->get_field_name('category'); ?>[]"
331 331
                         onchange="geodir_popular_widget_cat_title(this)">
332 332
 
333 333
                     <option <?php if (!is_array($category) || (is_array($category) && in_array('0', $category))) {
334
-                        echo 'selected="selected"';
335
-                    } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
334
+						echo 'selected="selected"';
335
+					} ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
336 336
                     <?php foreach ($categories as $category_obj) {
337
-                        $selected = '';
338
-                        if (is_array($category) && in_array($category_obj->term_id, $category))
339
-                            echo $selected = 'selected="selected"';
337
+						$selected = '';
338
+						if (is_array($category) && in_array($category_obj->term_id, $category))
339
+							echo $selected = 'selected="selected"';
340 340
 
341
-                        ?>
341
+						?>
342 342
 
343 343
                         <option <?php echo $selected; ?>
344 344
                             value="<?php echo $category_obj->term_id; ?>"><?php echo geodir_utf8_ucfirst($category_obj->name); ?></option>
@@ -363,28 +363,28 @@  discard block
 block discarded – undo
363 363
                         name="<?php echo $this->get_field_name('list_sort'); ?>">
364 364
 
365 365
                     <option <?php if ($list_sort == 'az') {
366
-                        echo 'selected="selected"';
367
-                    } ?> value="az"><?php _e('A-Z', 'geodirectory'); ?></option>
366
+						echo 'selected="selected"';
367
+					} ?> value="az"><?php _e('A-Z', 'geodirectory'); ?></option>
368 368
 
369 369
                     <option <?php if ($list_sort == 'latest') {
370
-                        echo 'selected="selected"';
371
-                    } ?> value="latest"><?php _e('Latest', 'geodirectory'); ?></option>
370
+						echo 'selected="selected"';
371
+					} ?> value="latest"><?php _e('Latest', 'geodirectory'); ?></option>
372 372
 
373 373
                     <option <?php if ($list_sort == 'featured') {
374
-                        echo 'selected="selected"';
375
-                    } ?> value="featured"><?php _e('Featured', 'geodirectory'); ?></option>
374
+						echo 'selected="selected"';
375
+					} ?> value="featured"><?php _e('Featured', 'geodirectory'); ?></option>
376 376
 
377 377
                     <option <?php if ($list_sort == 'high_review') {
378
-                        echo 'selected="selected"';
379
-                    } ?> value="high_review"><?php _e('Review', 'geodirectory'); ?></option>
378
+						echo 'selected="selected"';
379
+					} ?> value="high_review"><?php _e('Review', 'geodirectory'); ?></option>
380 380
 
381 381
                     <option <?php if ($list_sort == 'high_rating') {
382
-                        echo 'selected="selected"';
383
-                    } ?> value="high_rating"><?php _e('Rating', 'geodirectory'); ?></option>
382
+						echo 'selected="selected"';
383
+					} ?> value="high_rating"><?php _e('Rating', 'geodirectory'); ?></option>
384 384
 
385 385
                     <option <?php if ($list_sort == 'random') {
386
-                        echo 'selected="selected"';
387
-                    } ?> value="random"><?php _e('Random', 'geodirectory'); ?></option>
386
+						echo 'selected="selected"';
387
+					} ?> value="random"><?php _e('Random', 'geodirectory'); ?></option>
388 388
 
389 389
                 </select>
390 390
             </label>
@@ -407,24 +407,24 @@  discard block
 block discarded – undo
407 407
                 <select class="widefat" id="<?php echo $this->get_field_id('layout'); ?>"
408 408
                         name="<?php echo $this->get_field_name('layout'); ?>">
409 409
                     <option <?php if ($layout == 'gridview_onehalf') {
410
-                        echo 'selected="selected"';
411
-                    } ?>
410
+						echo 'selected="selected"';
411
+					} ?>
412 412
                         value="gridview_onehalf"><?php _e('Grid View (Two Columns)', 'geodirectory'); ?></option>
413 413
                     <option <?php if ($layout == 'gridview_onethird') {
414
-                        echo 'selected="selected"';
415
-                    } ?>
414
+						echo 'selected="selected"';
415
+					} ?>
416 416
                         value="gridview_onethird"><?php _e('Grid View (Three Columns)', 'geodirectory'); ?></option>
417 417
                     <option <?php if ($layout == 'gridview_onefourth') {
418
-                        echo 'selected="selected"';
419
-                    } ?>
418
+						echo 'selected="selected"';
419
+					} ?>
420 420
                         value="gridview_onefourth"><?php _e('Grid View (Four Columns)', 'geodirectory'); ?></option>
421 421
                     <option <?php if ($layout == 'gridview_onefifth') {
422
-                        echo 'selected="selected"';
423
-                    } ?>
422
+						echo 'selected="selected"';
423
+					} ?>
424 424
                         value="gridview_onefifth"><?php _e('Grid View (Five Columns)', 'geodirectory'); ?></option>
425 425
                     <option <?php if ($layout == 'list') {
426
-                        echo 'selected="selected"';
427
-                    } ?> value="list"><?php _e('List view', 'geodirectory'); ?></option>
426
+						echo 'selected="selected"';
427
+					} ?> value="list"><?php _e('List view', 'geodirectory'); ?></option>
428 428
 
429 429
                 </select>
430 430
             </label>
@@ -494,8 +494,8 @@  discard block
 block discarded – undo
494 494
                 for="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"><?php _e('Use current viewing post type:', 'geodirectory'); ?>
495 495
                 <input type="checkbox" id="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"
496 496
                        name="<?php echo $this->get_field_name('use_viewing_post_type'); ?>" <?php if ($use_viewing_post_type) {
497
-                    echo 'checked="checked"';
498
-                } ?>  value="1"/>
497
+					echo 'checked="checked"';
498
+				} ?>  value="1"/>
499 499
             </label>
500 500
         </p>
501 501
 
@@ -539,7 +539,7 @@  discard block
 block discarded – undo
539 539
         </script>
540 540
 
541 541
     <?php
542
-    }
542
+	}
543 543
 } // class geodir_popular_postview
544 544
 
545 545
 register_widget('geodir_popular_postview');
546 546
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory_hooks_actions.php 2 patches
Indentation   +1134 added lines, -1134 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
  */
20 20
 function geodir_get_ajax_url()
21 21
 {
22
-    return admin_url('admin-ajax.php?action=geodir_ajax_action');
22
+	return admin_url('admin-ajax.php?action=geodir_ajax_action');
23 23
 }
24 24
 
25 25
 /////////////////////
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 add_filter('query_vars', 'geodir_add_geodir_page_var');
88 88
 add_action('wp', 'geodir_add_page_id_in_query_var'); // problem fix in wordpress 3.8
89 89
 if (get_option('permalink_structure') != '')
90
-    add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
90
+	add_filter('parse_request', 'geodir_set_location_var_in_session_in_core');
91 91
 
92 92
 add_filter('parse_query', 'geodir_modified_query');
93 93
 
@@ -154,14 +154,14 @@  discard block
 block discarded – undo
154 154
 /* POST AND LOOP ACTIONS */
155 155
 ////////////////////////
156 156
 if (!is_admin()) {
157
-    add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtual page from everywhere
158
-    add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
159
-    /** Exclude Virtual Pages From Pages List **/
160
-    add_action('pre_get_posts', 'set_listing_request', 0);
161
-    add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
162
-    add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
163
-    add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
164
-    add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
157
+	add_action('pre_get_posts', 'geodir_exclude_page', 100); /// Will help to exclude virtual page from everywhere
158
+	add_filter('wp_list_pages_excludes', 'exclude_from_wp_list_pages', 100);
159
+	/** Exclude Virtual Pages From Pages List **/
160
+	add_action('pre_get_posts', 'set_listing_request', 0);
161
+	add_action('pre_get_posts', 'geodir_listing_loop_filter', 1);
162
+	add_filter('excerpt_more', 'geodir_excerpt_more', 1000);
163
+	add_filter('excerpt_length', 'geodir_excerpt_length', 1000);
164
+	add_action('the_post', 'create_marker_jason_of_posts'); // Add marker in json array, Map related filter
165 165
 }
166 166
 
167 167
 
@@ -223,12 +223,12 @@  discard block
 block discarded – undo
223 223
  */
224 224
 function geodir_unset_prev_theme_nav_location($newname)
225 225
 {
226
-    $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
227
-    if ($geodir_theme_location) {
228
-        update_option('geodir_theme_location_nav', $geodir_theme_location);
229
-    } else {
230
-        update_option('geodir_theme_location_nav', '');
231
-    }
226
+	$geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
227
+	if ($geodir_theme_location) {
228
+		update_option('geodir_theme_location_nav', $geodir_theme_location);
229
+	} else {
230
+		update_option('geodir_theme_location_nav', '');
231
+	}
232 232
 }
233 233
 
234 234
 /// add action for theme switch to blank previous theme navigation location setting
@@ -249,32 +249,32 @@  discard block
 block discarded – undo
249 249
  */
250 250
 function geodir_add_post_filters()
251 251
 {
252
-    /**
253
-     * Contains all function for filtering listing.
254
-     *
255
-     * @since 1.0.0
256
-     * @package GeoDirectory
257
-     */
258
-    include_once('geodirectory-functions/listing_filters.php');
252
+	/**
253
+	 * Contains all function for filtering listing.
254
+	 *
255
+	 * @since 1.0.0
256
+	 * @package GeoDirectory
257
+	 */
258
+	include_once('geodirectory-functions/listing_filters.php');
259 259
 }
260 260
 
261 261
 
262 262
 if (!function_exists('geodir_init_defaults')) {
263
-    /**
264
-     * Calls the function to register the GeoDirectory default CPT and taxonomies.
265
-     *
266
-     * @since 1.0.0
267
-     * @package GeoDirectory
268
-     */
269
-    function geodir_init_defaults()
270
-    {
271
-        if (function_exists('geodir_register_defaults')) {
263
+	/**
264
+	 * Calls the function to register the GeoDirectory default CPT and taxonomies.
265
+	 *
266
+	 * @since 1.0.0
267
+	 * @package GeoDirectory
268
+	 */
269
+	function geodir_init_defaults()
270
+	{
271
+		if (function_exists('geodir_register_defaults')) {
272 272
 
273
-            geodir_register_defaults();
273
+			geodir_register_defaults();
274 274
 
275
-        }
275
+		}
276 276
 
277
-    }
277
+	}
278 278
 }
279 279
 
280 280
 
@@ -296,26 +296,26 @@  discard block
 block discarded – undo
296 296
 // CALLED ON 'sidebars_widgets' FILTER
297 297
 
298 298
 if (!function_exists('geodir_restrict_widget')) {
299
-    /**
300
-     * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page.
301
-     *
302
-     * @global bool $is_listing Sets the global value to true if on a GD category page. False if not.
303
-     * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not.
304
-     * @since 1.0.0
305
-     * @package GeoDirectory
306
-     */
307
-    function geodir_restrict_widget()
308
-    {
309
-        global $is_listing, $is_single_place;
299
+	/**
300
+	 * Sets global values to be able to tell if the current page is a GeoDirectory listing page or a GeoDirectory details page.
301
+	 *
302
+	 * @global bool $is_listing Sets the global value to true if on a GD category page. False if not.
303
+	 * @global bool $is_single_place Sets the global value to true if on a GD details (post) page. False if not.
304
+	 * @since 1.0.0
305
+	 * @package GeoDirectory
306
+	 */
307
+	function geodir_restrict_widget()
308
+	{
309
+		global $is_listing, $is_single_place;
310 310
 
311
-        // set is listing	
312
-        (geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
311
+		// set is listing	
312
+		(geodir_is_page('listing')) ? $is_listing = true : $is_listing = false;
313 313
 
314
-        // set is single place
315
-        (geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
314
+		// set is single place
315
+		(geodir_is_page('place')) ? $is_single_place = true : $is_single_place = false;
316 316
 
317 317
 
318
-    }
318
+	}
319 319
 }
320 320
 
321 321
 
@@ -336,31 +336,31 @@  discard block
 block discarded – undo
336 336
  */
337 337
 function geodir_detail_page_sidebar_content_sorting()
338 338
 {
339
-    $arr_detail_page_sidebar_content =
340
-        /**
341
-         * An array of functions to be called to be displayed on the details (post) page sidebar.
342
-         *
343
-         * This filter can be used to remove sections of the details page sidebar,
344
-         * add new sections or rearrange the order of the sections.
345
-         *
346
-         * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
347
-         * @since 1.0.0
348
-         */
349
-        apply_filters('geodir_detail_page_sidebar_content',
350
-            array('geodir_social_sharing_buttons',
351
-                'geodir_detail_page_google_analytics',
352
-                'geodir_edit_post_link',
353
-                'geodir_detail_page_review_rating',
354
-                'geodir_detail_page_more_info'
355
-            ) // end of array 
356
-        ); // end of apply filter
357
-    if (!empty($arr_detail_page_sidebar_content)) {
358
-        foreach ($arr_detail_page_sidebar_content as $content_function) {
359
-            if (function_exists($content_function)) {
360
-                add_action('geodir_detail_page_sidebar', $content_function);
361
-            }
362
-        }
363
-    }
339
+	$arr_detail_page_sidebar_content =
340
+		/**
341
+		 * An array of functions to be called to be displayed on the details (post) page sidebar.
342
+		 *
343
+		 * This filter can be used to remove sections of the details page sidebar,
344
+		 * add new sections or rearrange the order of the sections.
345
+		 *
346
+		 * @param array array('geodir_social_sharing_buttons','geodir_share_this_button','geodir_detail_page_google_analytics','geodir_edit_post_link','geodir_detail_page_review_rating','geodir_detail_page_more_info') The array of functions that will be called.
347
+		 * @since 1.0.0
348
+		 */
349
+		apply_filters('geodir_detail_page_sidebar_content',
350
+			array('geodir_social_sharing_buttons',
351
+				'geodir_detail_page_google_analytics',
352
+				'geodir_edit_post_link',
353
+				'geodir_detail_page_review_rating',
354
+				'geodir_detail_page_more_info'
355
+			) // end of array 
356
+		); // end of apply filter
357
+	if (!empty($arr_detail_page_sidebar_content)) {
358
+		foreach ($arr_detail_page_sidebar_content as $content_function) {
359
+			if (function_exists($content_function)) {
360
+				add_action('geodir_detail_page_sidebar', $content_function);
361
+			}
362
+		}
363
+	}
364 364
 }
365 365
 
366 366
 add_action('geodir_after_edit_post_link', 'geodir_add_to_favourite_link', 1);
@@ -375,14 +375,14 @@  discard block
 block discarded – undo
375 375
  */
376 376
 function geodir_add_to_favourite_link()
377 377
 {
378
-    global $post, $preview;
379
-    if (!$preview && geodir_is_page('detail')) {
380
-        ?>
378
+	global $post, $preview;
379
+	if (!$preview && geodir_is_page('detail')) {
380
+		?>
381 381
         <p class="edit_link">
382 382
             <?php geodir_favourite_html($post->post_author, $post->ID); ?>
383 383
         </p>
384 384
     <?php
385
-    }
385
+	}
386 386
 }
387 387
 
388 388
 /**
@@ -396,41 +396,41 @@  discard block
 block discarded – undo
396 396
  */
397 397
 function geodir_social_sharing_buttons()
398 398
 {
399
-    global $preview;
400
-    ob_start(); // Start  buffering;
401
-    /**
402
-     * This action is called before the social buttons twitter,facebook and google plus are output in a containing div.
403
-     *
404
-     * @since 1.0.0
405
-     */
406
-    do_action('geodir_before_social_sharing_buttons');
407
-    if (!$preview) {
408
-        ?>
399
+	global $preview;
400
+	ob_start(); // Start  buffering;
401
+	/**
402
+	 * This action is called before the social buttons twitter,facebook and google plus are output in a containing div.
403
+	 *
404
+	 * @since 1.0.0
405
+	 */
406
+	do_action('geodir_before_social_sharing_buttons');
407
+	if (!$preview) {
408
+		?>
409 409
         <div class="likethis">
410 410
             <?php geodir_twitter_tweet_button(); ?>
411 411
             <?php geodir_fb_like_button(); ?>
412 412
             <?php geodir_google_plus_button(); ?>
413 413
         </div>
414 414
     <?php
415
-    }// end of if, if its a preview or not
416
-
417
-    /**
418
-     * This action is called after the social buttons twitter,facebook and google plus are output in a containing div.
419
-     *
420
-     * @since 1.0.0
421
-     */
422
-    do_action('geodir_after_social_sharing_buttons');
423
-    $content_html = ob_get_clean();
424
-    if (trim($content_html) != '')
425
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
426
-    if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
427
-        /**
428
-         * Filter the geodir_social_sharing_buttons() function content.
429
-         *
430
-         * @param string $content_html The output html of the geodir_social_sharing_buttons() function.
431
-         */
432
-        echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
433
-    }
415
+	}// end of if, if its a preview or not
416
+
417
+	/**
418
+	 * This action is called after the social buttons twitter,facebook and google plus are output in a containing div.
419
+	 *
420
+	 * @since 1.0.0
421
+	 */
422
+	do_action('geodir_after_social_sharing_buttons');
423
+	$content_html = ob_get_clean();
424
+	if (trim($content_html) != '')
425
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
426
+	if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
427
+		/**
428
+		 * Filter the geodir_social_sharing_buttons() function content.
429
+		 *
430
+		 * @param string $content_html The output html of the geodir_social_sharing_buttons() function.
431
+		 */
432
+		echo $content_html = apply_filters('geodir_social_sharing_buttons_html', $content_html);
433
+	}
434 434
 
435 435
 
436 436
 }
@@ -448,46 +448,46 @@  discard block
 block discarded – undo
448 448
  */
449 449
 function geodir_edit_post_link()
450 450
 {
451
-    global $post, $preview;
452
-    ob_start(); // Start buffering;
453
-    /**
454
-     * This is called before the edit post link html in the function geodir_edit_post_link()
455
-     *
456
-     * @since 1.0.0
457
-     */
458
-    do_action('geodir_before_edit_post_link');
459
-    if (!$preview) {
460
-        $is_current_user_owner = geodir_listing_belong_to_current_user();
451
+	global $post, $preview;
452
+	ob_start(); // Start buffering;
453
+	/**
454
+	 * This is called before the edit post link html in the function geodir_edit_post_link()
455
+	 *
456
+	 * @since 1.0.0
457
+	 */
458
+	do_action('geodir_before_edit_post_link');
459
+	if (!$preview) {
460
+		$is_current_user_owner = geodir_listing_belong_to_current_user();
461 461
         
462
-        if ($is_current_user_owner) {
463
-            $post_id = $post->ID;
462
+		if ($is_current_user_owner) {
463
+			$post_id = $post->ID;
464 464
             
465
-            if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
466
-                $post_id = (int)$_REQUEST['pid'];
467
-            }
465
+			if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
466
+				$post_id = (int)$_REQUEST['pid'];
467
+			}
468 468
 
469
-            $postlink = get_permalink(geodir_add_listing_page_id());
470
-            $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
471
-            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
472
-        }
473
-    }// end of if, if its a preview or not
474
-    /**
475
-     * This is called after the edit post link html in the function geodir_edit_post_link()
476
-     *
477
-     * @since 1.0.0
478
-     */
479
-    do_action('geodir_after_edit_post_link');
480
-    $content_html = ob_get_clean();
481
-    if (trim($content_html) != '')
482
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
483
-    if ((int)get_option('geodir_disable_user_links_section') != 1) {
484
-        /**
485
-         * Filter the geodir_edit_post_link() function content.
486
-         *
487
-         * @param string $content_html The output html of the geodir_edit_post_link() function.
488
-         */
489
-        echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
490
-    }
469
+			$postlink = get_permalink(geodir_add_listing_page_id());
470
+			$editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
471
+			echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
472
+		}
473
+	}// end of if, if its a preview or not
474
+	/**
475
+	 * This is called after the edit post link html in the function geodir_edit_post_link()
476
+	 *
477
+	 * @since 1.0.0
478
+	 */
479
+	do_action('geodir_after_edit_post_link');
480
+	$content_html = ob_get_clean();
481
+	if (trim($content_html) != '')
482
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
483
+	if ((int)get_option('geodir_disable_user_links_section') != 1) {
484
+		/**
485
+		 * Filter the geodir_edit_post_link() function content.
486
+		 *
487
+		 * @param string $content_html The output html of the geodir_edit_post_link() function.
488
+		 */
489
+		echo $content_html = apply_filters('geodir_edit_post_link_html', $content_html);
490
+	}
491 491
 }
492 492
 
493 493
 /**
@@ -501,42 +501,42 @@  discard block
 block discarded – undo
501 501
  */
502 502
 function geodir_detail_page_google_analytics()
503 503
 {
504
-    global $post,$preview;
505
-    if($preview){return '';}
506
-    $package_info = array();
507
-    $package_info = geodir_post_package_info($package_info, $post);
504
+	global $post,$preview;
505
+	if($preview){return '';}
506
+	$package_info = array();
507
+	$package_info = geodir_post_package_info($package_info, $post);
508 508
 
509
-    $id = trim(get_option('geodir_ga_account_id'));
509
+	$id = trim(get_option('geodir_ga_account_id'));
510 510
 
511
-    if (!$id) {
512
-        return; //if no Google Analytics ID then bail.
513
-    }
511
+	if (!$id) {
512
+		return; //if no Google Analytics ID then bail.
513
+	}
514 514
 
515
-    ob_start(); // Start buffering;
516
-    /**
517
-     * This is called before the edit post link html in the function geodir_detail_page_google_analytics()
518
-     *
519
-     * @since 1.0.0
520
-     */
521
-    do_action('geodir_before_google_analytics');
515
+	ob_start(); // Start buffering;
516
+	/**
517
+	 * This is called before the edit post link html in the function geodir_detail_page_google_analytics()
518
+	 *
519
+	 * @since 1.0.0
520
+	 */
521
+	do_action('geodir_before_google_analytics');
522 522
     
523
-    $refresh_time = get_option('geodir_ga_refresh_time', 5);
524
-    /**
525
-     * Filter the time interval to check & refresh new users results.
526
-     *
527
-     * @since 1.5.9
528
-     *
529
-     * @param int $refresh_time Time interval to check & refresh new users results.
530
-     */
531
-    $refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
532
-    $refresh_time = absint($refresh_time * 1000);
523
+	$refresh_time = get_option('geodir_ga_refresh_time', 5);
524
+	/**
525
+	 * Filter the time interval to check & refresh new users results.
526
+	 *
527
+	 * @since 1.5.9
528
+	 *
529
+	 * @param int $refresh_time Time interval to check & refresh new users results.
530
+	 */
531
+	$refresh_time = apply_filters('geodir_google_analytics_refresh_time', $refresh_time);
532
+	$refresh_time = absint($refresh_time * 1000);
533 533
     
534
-    $hide_refresh = get_option('geodir_ga_auto_refresh');
534
+	$hide_refresh = get_option('geodir_ga_auto_refresh');
535 535
     
536
-    $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
537
-    if (get_option('geodir_ga_stats') && is_user_logged_in() &&  (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
538
-        $page_url = urlencode($_SERVER['REQUEST_URI']);
539
-        ?>
536
+	$auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
537
+	if (get_option('geodir_ga_stats') && is_user_logged_in() &&  (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
538
+		$page_url = urlencode($_SERVER['REQUEST_URI']);
539
+		?>
540 540
         <script type="text/javascript">
541 541
             var gd_gaTimeOut;
542 542
             var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
@@ -788,15 +788,15 @@  discard block
 block discarded – undo
788 788
                     var labels = results[1].rows.map(function(row) { return +row[0]; });
789 789
 
790 790
                     <?php
791
-                    // Here we list the shorthand days of the week so it can be used in translation.
792
-                    __("Mon",'geodirectory');
793
-                    __("Tue",'geodirectory');
794
-                    __("Wed",'geodirectory');
795
-                    __("Thu",'geodirectory');
796
-                    __("Fri",'geodirectory');
797
-                    __("Sat",'geodirectory');
798
-                    __("Sun",'geodirectory');
799
-                    ?>
791
+					// Here we list the shorthand days of the week so it can be used in translation.
792
+					__("Mon",'geodirectory');
793
+					__("Tue",'geodirectory');
794
+					__("Wed",'geodirectory');
795
+					__("Thu",'geodirectory');
796
+					__("Fri",'geodirectory');
797
+					__("Sat",'geodirectory');
798
+					__("Sun",'geodirectory');
799
+					?>
800 800
 
801 801
                     labels = [
802 802
                         "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
@@ -1045,24 +1045,24 @@  discard block
 block discarded – undo
1045 1045
         </span>
1046 1046
 
1047 1047
     <?php
1048
-    }
1049
-    /**
1050
-     * This is called after the edit post link html in the function geodir_detail_page_google_analytics()
1051
-     *
1052
-     * @since 1.0.0
1053
-     */
1054
-    do_action('geodir_after_google_analytics');
1055
-    $content_html = ob_get_clean();
1056
-    if (trim($content_html) != '')
1057
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1058
-    if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1059
-        /**
1060
-         * Filter the geodir_edit_post_link() function content.
1061
-         *
1062
-         * @param string $content_html The output html of the geodir_edit_post_link() function.
1063
-         */
1064
-        echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
1065
-    }
1048
+	}
1049
+	/**
1050
+	 * This is called after the edit post link html in the function geodir_detail_page_google_analytics()
1051
+	 *
1052
+	 * @since 1.0.0
1053
+	 */
1054
+	do_action('geodir_after_google_analytics');
1055
+	$content_html = ob_get_clean();
1056
+	if (trim($content_html) != '')
1057
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1058
+	if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1059
+		/**
1060
+		 * Filter the geodir_edit_post_link() function content.
1061
+		 *
1062
+		 * @param string $content_html The output html of the geodir_edit_post_link() function.
1063
+		 */
1064
+		echo $content_html = apply_filters('geodir_google_analytic_html', $content_html);
1065
+	}
1066 1066
 }
1067 1067
 
1068 1068
 /**
@@ -1079,94 +1079,94 @@  discard block
 block discarded – undo
1079 1079
  */
1080 1080
 function geodir_detail_page_review_rating()
1081 1081
 {
1082
-    global $post, $preview, $post_images;
1082
+	global $post, $preview, $post_images;
1083 1083
     
1084
-    if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
1085
-        return;
1086
-    }
1087
-    ob_start(); // Start  buffering;
1088
-    /**
1089
-     * This is called before the rating html in the function geodir_detail_page_review_rating().
1090
-     *
1091
-     * This is called outside the check for an actual rating and the check for preview page.
1092
-     *
1093
-     * @since 1.0.0
1094
-     */
1095
-    do_action('geodir_before_detail_page_review_rating');
1096
-
1097
-    $comment_count = geodir_get_review_count_total($post->ID);
1098
-    $post_avgratings = geodir_get_post_rating($post->ID);
1099
-
1100
-    if ($post_avgratings != 0 && !$preview) {
1101
-        /**
1102
-         * This is called before the rating html in the function geodir_detail_page_review_rating().
1103
-         *
1104
-         * This is called inside the check for an actual rating and the check for preview page.
1105
-         *
1106
-         * @since 1.0.0
1107
-         * @param float $post_avgratings Average rating for the current post.
1108
-         * @param int $post->ID Current post ID.
1109
-         */
1110
-        do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1111
-
1112
-        $html = '<p style=" float:left;">';
1113
-        $html .= geodir_get_rating_stars($post_avgratings, $post->ID);
1114
-        $html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">';
1115
-        $post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings;
1084
+	if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
1085
+		return;
1086
+	}
1087
+	ob_start(); // Start  buffering;
1088
+	/**
1089
+	 * This is called before the rating html in the function geodir_detail_page_review_rating().
1090
+	 *
1091
+	 * This is called outside the check for an actual rating and the check for preview page.
1092
+	 *
1093
+	 * @since 1.0.0
1094
+	 */
1095
+	do_action('geodir_before_detail_page_review_rating');
1096
+
1097
+	$comment_count = geodir_get_review_count_total($post->ID);
1098
+	$post_avgratings = geodir_get_post_rating($post->ID);
1099
+
1100
+	if ($post_avgratings != 0 && !$preview) {
1101
+		/**
1102
+		 * This is called before the rating html in the function geodir_detail_page_review_rating().
1103
+		 *
1104
+		 * This is called inside the check for an actual rating and the check for preview page.
1105
+		 *
1106
+		 * @since 1.0.0
1107
+		 * @param float $post_avgratings Average rating for the current post.
1108
+		 * @param int $post->ID Current post ID.
1109
+		 */
1110
+		do_action('geodir_before_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1111
+
1112
+		$html = '<p style=" float:left;">';
1113
+		$html .= geodir_get_rating_stars($post_avgratings, $post->ID);
1114
+		$html .= '<div class="average-review" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">';
1115
+		$post_avgratings = (is_float($post_avgratings) || (strpos($post_avgratings, ".", 1) == 1 && strlen($post_avgratings) > 3)) ? number_format($post_avgratings, 1, '.', '') : $post_avgratings;
1116 1116
        
1117 1117
 	   $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
1118 1118
 	   
1119 1119
 	   $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
1120 1120
 
1121
-        $html .= '<span class="item">';
1122
-        $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1121
+		$html .= '<span class="item">';
1122
+		$html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1123 1123
 
1124
-        if ($post_images) {
1125
-            foreach ($post_images as $img) {
1126
-                $post_img = $img->src;
1127
-                break;
1128
-            }
1129
-        }
1130
-
1131
-        if (isset($post_img) && $post_img) {
1132
-            $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1133
-        }
1134
-
1135
-        $html .= '</span>';
1136
-
1137
-        echo $html .= '</div>';
1138
-        /**
1139
-         * This is called after the rating html in the function geodir_detail_page_review_rating().
1140
-         *
1141
-         * This is called inside the check for an actual rating and the check for preview page.
1142
-         *
1143
-         * @since 1.0.0
1144
-         * @param float $post_avgratings Average rating for the current post.
1145
-         * @param int $post->ID Current post ID.
1146
-         */
1147
-        do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1148
-    }
1149
-    /**
1150
-     * This is called before the rating html in the function geodir_detail_page_review_rating().
1151
-     *
1152
-     * This is called outside the check for an actual rating and the check for preview page.
1153
-     *
1154
-     * @since 1.0.0
1155
-     */
1156
-    do_action('geodir_after_detail_page_review_rating');
1157
-    $content_html = ob_get_clean();
1158
-    if (trim($content_html) != '') {
1159
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1160
-    }
1161
-    if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1162
-        /**
1163
-         * Filter the geodir_detail_page_review_rating() function content.
1164
-         *
1165
-         * @since 1.0.0
1166
-         * @param string $content_html The output html of the geodir_detail_page_review_rating() function.
1167
-         */
1168
-        echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
1169
-    }
1124
+		if ($post_images) {
1125
+			foreach ($post_images as $img) {
1126
+				$post_img = $img->src;
1127
+				break;
1128
+			}
1129
+		}
1130
+
1131
+		if (isset($post_img) && $post_img) {
1132
+			$html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1133
+		}
1134
+
1135
+		$html .= '</span>';
1136
+
1137
+		echo $html .= '</div>';
1138
+		/**
1139
+		 * This is called after the rating html in the function geodir_detail_page_review_rating().
1140
+		 *
1141
+		 * This is called inside the check for an actual rating and the check for preview page.
1142
+		 *
1143
+		 * @since 1.0.0
1144
+		 * @param float $post_avgratings Average rating for the current post.
1145
+		 * @param int $post->ID Current post ID.
1146
+		 */
1147
+		do_action('geodir_after_review_rating_stars_on_detail', $post_avgratings, $post->ID);
1148
+	}
1149
+	/**
1150
+	 * This is called before the rating html in the function geodir_detail_page_review_rating().
1151
+	 *
1152
+	 * This is called outside the check for an actual rating and the check for preview page.
1153
+	 *
1154
+	 * @since 1.0.0
1155
+	 */
1156
+	do_action('geodir_after_detail_page_review_rating');
1157
+	$content_html = ob_get_clean();
1158
+	if (trim($content_html) != '') {
1159
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1160
+	}
1161
+	if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1162
+		/**
1163
+		 * Filter the geodir_detail_page_review_rating() function content.
1164
+		 *
1165
+		 * @since 1.0.0
1166
+		 * @param string $content_html The output html of the geodir_detail_page_review_rating() function.
1167
+		 */
1168
+		echo $content_html = apply_filters('geodir_detail_page_review_rating_html', $content_html);
1169
+	}
1170 1170
 }
1171 1171
 
1172 1172
 /**
@@ -1178,35 +1178,35 @@  discard block
 block discarded – undo
1178 1178
  */
1179 1179
 function geodir_detail_page_more_info()
1180 1180
 {
1181
-    ob_start(); // Start  buffering;
1182
-    /**
1183
-     * This is called before the info section html.
1184
-     *
1185
-     * @since 1.0.0
1186
-     */
1187
-    do_action('geodir_before_detail_page_more_info');
1188
-    if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
1189
-        echo $geodir_post_detail_fields;
1190
-    }
1191
-    /**
1192
-     * This is called after the info section html.
1193
-     *
1194
-     * @since 1.0.0
1195
-     */
1196
-    do_action('geodir_after_detail_page_more_info');
1197
-
1198
-    $content_html = ob_get_clean();
1199
-    if (trim($content_html) != '')
1200
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1201
-    if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1202
-        /**
1203
-         * Filter the output html for function geodir_detail_page_more_info().
1204
-         *
1205
-         * @since 1.0.0
1206
-         * @param string $content_html The output html of the geodir_detail_page_more_info() function.
1207
-         */
1208
-        echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
1209
-    }
1181
+	ob_start(); // Start  buffering;
1182
+	/**
1183
+	 * This is called before the info section html.
1184
+	 *
1185
+	 * @since 1.0.0
1186
+	 */
1187
+	do_action('geodir_before_detail_page_more_info');
1188
+	if ($geodir_post_detail_fields = geodir_show_listing_info('detail')) {
1189
+		echo $geodir_post_detail_fields;
1190
+	}
1191
+	/**
1192
+	 * This is called after the info section html.
1193
+	 *
1194
+	 * @since 1.0.0
1195
+	 */
1196
+	do_action('geodir_after_detail_page_more_info');
1197
+
1198
+	$content_html = ob_get_clean();
1199
+	if (trim($content_html) != '')
1200
+		$content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1201
+	if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1202
+		/**
1203
+		 * Filter the output html for function geodir_detail_page_more_info().
1204
+		 *
1205
+		 * @since 1.0.0
1206
+		 * @param string $content_html The output html of the geodir_detail_page_more_info() function.
1207
+		 */
1208
+		echo $content_html = apply_filters('geodir_detail_page_more_info_html', $content_html);
1209
+	}
1210 1210
 }
1211 1211
 
1212 1212
 
@@ -1220,15 +1220,15 @@  discard block
 block discarded – undo
1220 1220
  */
1221 1221
 function geodir_localize_all_js_msg()
1222 1222
 {// check_ajax_referer function is used to make sure no files are uploaded remotely but it will fail if used between https and non https so we do the check below of the urls
1223
-    if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1224
-        $ajax_url = admin_url('admin-ajax.php');
1225
-    } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1226
-        $ajax_url = admin_url('admin-ajax.php');
1227
-    } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1228
-        $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
1229
-    } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1230
-        $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
1231
-    }
1223
+	if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1224
+		$ajax_url = admin_url('admin-ajax.php');
1225
+	} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1226
+		$ajax_url = admin_url('admin-ajax.php');
1227
+	} elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) {
1228
+		$ajax_url = str_replace("https", "http", admin_url('admin-ajax.php'));
1229
+	} elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) {
1230
+		$ajax_url = str_replace("http", "https", admin_url('admin-ajax.php'));
1231
+	}
1232 1232
 	
1233 1233
 	/**
1234 1234
 	 * Filter the allowed image type extensions for post images.
@@ -1238,60 +1238,60 @@  discard block
 block discarded – undo
1238 1238
 	 */
1239 1239
 	$allowed_img_types = apply_filters('geodir_allowed_post_image_exts', array('jpg', 'jpeg', 'jpe', 'gif', 'png'));
1240 1240
 	
1241
-    $default_marker_icon = get_option('geodir_default_marker_icon');
1242
-    $default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
1243
-    $default_marker_width = $default_marker_size['w'];
1244
-    $default_marker_height = $default_marker_size['h'];
1241
+	$default_marker_icon = get_option('geodir_default_marker_icon');
1242
+	$default_marker_size = geodir_get_marker_size($default_marker_icon, array('w' => 20, 'h' => 34));
1243
+	$default_marker_width = $default_marker_size['w'];
1244
+	$default_marker_height = $default_marker_size['h'];
1245 1245
     
1246
-    $arr_alert_msg = array(
1247
-        'geodir_plugin_url' => geodir_plugin_url(),
1248
-        'geodir_admin_ajax_url' => $ajax_url,
1249
-        'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
1250
-        'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
1251
-        'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
1252
-        'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
1253
-        //start not show alert msg
1254
-        'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
1255
-        'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
1256
-        'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
1257
-        'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
1258
-        'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
1259
-        // end not show alert msg
1260
-        'my_place_listing_del' => __('Are you sure you wish to delete this listing?', 'geodirectory'),
1261
-        'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
1262
-        //start not show alert msg
1263
-        'rating_error_msg' => __('Error : please retry', 'geodirectory'),
1264
-        'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
1265
-        'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
1266
-        'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
1267
-        'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
1268
-        'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
1269
-        'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
1270
-        'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
1271
-        'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
1272
-        'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
1273
-        'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
1274
-        'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
1275
-        'geodir_default_marker_icon' => $default_marker_icon,
1276
-        'geodir_default_marker_w' => $default_marker_width,
1277
-        'geodir_default_marker_h' => $default_marker_height,
1278
-        'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG,
1279
-        'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG,
1280
-        'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
1281
-        'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
1282
-        'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
1283
-        'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
1284
-        'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
1285
-        'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
1286
-        /* on/off dragging for phone devices */
1287
-        'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
1288
-        'geodir_is_mobile' => wp_is_mobile() ? true : false,
1289
-        'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
1290
-        'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
1291
-        'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
1292
-        'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
1293
-        'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
1294
-        'geodir_action_remove' => __('Remove', 'geodirectory'),
1246
+	$arr_alert_msg = array(
1247
+		'geodir_plugin_url' => geodir_plugin_url(),
1248
+		'geodir_admin_ajax_url' => $ajax_url,
1249
+		'custom_field_not_blank_var' => __('HTML Variable Name must not be blank', 'geodirectory'),
1250
+		'custom_field_not_special_char' => __('Please do not use special character and spaces in HTML Variable Name.', 'geodirectory'),
1251
+		'custom_field_unique_name' => __('HTML Variable Name should be a unique name.', 'geodirectory'),
1252
+		'custom_field_delete' => __('Are you wish to delete this field?', 'geodirectory'),
1253
+		//start not show alert msg
1254
+		'tax_meta_class_succ_del_msg' => __('File has been successfully deleted.', 'geodirectory'),
1255
+		'tax_meta_class_not_permission_to_del_msg' => __('You do NOT have permission to delete this file.', 'geodirectory'),
1256
+		'tax_meta_class_order_save_msg' => __('Order saved!', 'geodirectory'),
1257
+		'tax_meta_class_not_permission_record_img_msg' => __('You do not have permission to reorder images.', 'geodirectory'),
1258
+		'address_not_found_on_map_msg' => __('Address not found for:', 'geodirectory'),
1259
+		// end not show alert msg
1260
+		'my_place_listing_del' => __('Are you sure you wish to delete this listing?', 'geodirectory'),
1261
+		'my_main_listing_del' => __('Deleting the main listing of a franchise will turn all franchises in regular listings. Are you sure wish to delete this main listing?', 'geodirectory'),
1262
+		//start not show alert msg
1263
+		'rating_error_msg' => __('Error : please retry', 'geodirectory'),
1264
+		'listing_url_prefix_msg' => __('Please enter listing url prefix', 'geodirectory'),
1265
+		'invalid_listing_prefix_msg' => __('Invalid character in listing url prefix', 'geodirectory'),
1266
+		'location_url_prefix_msg' => __('Please enter location url prefix', 'geodirectory'),
1267
+		'invalid_location_prefix_msg' => __('Invalid character in location url prefix', 'geodirectory'),
1268
+		'location_and_cat_url_separator_msg' => __('Please enter location and category url separator', 'geodirectory'),
1269
+		'invalid_char_and_cat_url_separator_msg' => __('Invalid character in location and category url separator', 'geodirectory'),
1270
+		'listing_det_url_separator_msg' => __('Please enter listing detail url separator', 'geodirectory'),
1271
+		'invalid_char_listing_det_url_separator_msg' => __('Invalid character in listing detail url separator', 'geodirectory'),
1272
+		'loading_listing_error_favorite' => __('Error loading listing.', 'geodirectory'),
1273
+		'geodir_field_id_required' => __('This field is required.', 'geodirectory'),
1274
+		'geodir_valid_email_address_msg' => __('Please enter valid email address.', 'geodirectory'),
1275
+		'geodir_default_marker_icon' => $default_marker_icon,
1276
+		'geodir_default_marker_w' => $default_marker_width,
1277
+		'geodir_default_marker_h' => $default_marker_height,
1278
+		'geodir_latitude_error_msg' => GEODIR_LATITUDE_ERROR_MSG,
1279
+		'geodir_longgitude_error_msg' => GEODIR_LOGNGITUDE_ERROR_MSG,
1280
+		'geodir_default_rating_star_icon' => get_option('geodir_default_rating_star_icon'),
1281
+		'gd_cmt_btn_post_reply' => __('Post Reply', 'geodirectory'),
1282
+		'gd_cmt_btn_reply_text' => __('Reply text', 'geodirectory'),
1283
+		'gd_cmt_btn_post_review' => __('Post Review', 'geodirectory'),
1284
+		'gd_cmt_btn_review_text' => __('Review text', 'geodirectory'),
1285
+		'gd_cmt_err_no_rating' => __("Please select star rating, you can't leave a review without stars.", 'geodirectory'),
1286
+		/* on/off dragging for phone devices */
1287
+		'geodir_onoff_dragging' => get_option('geodir_map_onoff_dragging') ? true : false,
1288
+		'geodir_is_mobile' => wp_is_mobile() ? true : false,
1289
+		'geodir_on_dragging_text' => __('Enable Dragging', 'geodirectory'),
1290
+		'geodir_off_dragging_text' => __('Disable Dragging', 'geodirectory'),
1291
+		'geodir_err_max_file_size' => __('File size error : You tried to upload a file over %s', 'geodirectory'),
1292
+		'geodir_err_file_upload_limit' => __('You have reached your upload limit of %s files.', 'geodirectory'),
1293
+		'geodir_err_pkg_upload_limit' => __('You may only upload %s files with this package, please try again.', 'geodirectory'),
1294
+		'geodir_action_remove' => __('Remove', 'geodirectory'),
1295 1295
 		'geodir_txt_all_files' => __('Allowed files', 'geodirectory'),
1296 1296
 		'geodir_err_file_type' => __('File type error. Allowed file types: %s', 'geodirectory'),
1297 1297
 		'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
@@ -1299,40 +1299,40 @@  discard block
 block discarded – undo
1299 1299
 		'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
1300 1300
 		'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1301 1301
 		'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
1302
-        'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
1303
-        'geodir_map_name' => geodir_map_name(),
1304
-        'osmStart' => __('Start', 'geodirectory'),
1305
-        'osmVia' => __('Via {viaNumber}', 'geodirectory'),
1306
-        'osmEnd' => __('Enter Your Location', 'geodirectory'),
1307
-        'ga_delete_check' => __('Are you wish to Deauthorize and break Analytics?', 'geodirectory'),
1308
-        'geoMyLocation' => __('My Location', 'geodirectory'),
1309
-        'geoErrUNKNOWN_ERROR' => addslashes(__('Unable to find your location', 'geodirectory')),
1310
-        'geoErrPERMISSION_DENINED' => addslashes(__('Permission denied in finding your location', 'geodirectory')),
1311
-        'geoErrPOSITION_UNAVAILABLE' => addslashes(__('Your location is currently unknown', 'geodirectory')),
1312
-        'geoErrBREAK' => addslashes(__('Attempt to find location took too long', 'geodirectory')),
1313
-        'geoErrDEFAULT' => addslashes(__('Location detection not supported in browser', 'geodirectory')),
1314
-    );
1315
-
1316
-    /**
1317
-     * Filters the translated JS strings from function geodir_localize_all_js_msg().
1318
-     *
1319
-     * With this filter you can add, remove or change translated JS strings.
1320
-     * You should add your own translations to this if you are building an addon rather than adding another script block.
1321
-     *
1322
-     * @since 1.0.0
1323
-     */
1324
-    $arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1325
-
1326
-    foreach ($arr_alert_msg as $key => $value) {
1327
-        if (!is_scalar($value))
1328
-            continue;
1329
-        $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1330
-    }
1302
+		'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
1303
+		'geodir_map_name' => geodir_map_name(),
1304
+		'osmStart' => __('Start', 'geodirectory'),
1305
+		'osmVia' => __('Via {viaNumber}', 'geodirectory'),
1306
+		'osmEnd' => __('Enter Your Location', 'geodirectory'),
1307
+		'ga_delete_check' => __('Are you wish to Deauthorize and break Analytics?', 'geodirectory'),
1308
+		'geoMyLocation' => __('My Location', 'geodirectory'),
1309
+		'geoErrUNKNOWN_ERROR' => addslashes(__('Unable to find your location', 'geodirectory')),
1310
+		'geoErrPERMISSION_DENINED' => addslashes(__('Permission denied in finding your location', 'geodirectory')),
1311
+		'geoErrPOSITION_UNAVAILABLE' => addslashes(__('Your location is currently unknown', 'geodirectory')),
1312
+		'geoErrBREAK' => addslashes(__('Attempt to find location took too long', 'geodirectory')),
1313
+		'geoErrDEFAULT' => addslashes(__('Location detection not supported in browser', 'geodirectory')),
1314
+	);
1315
+
1316
+	/**
1317
+	 * Filters the translated JS strings from function geodir_localize_all_js_msg().
1318
+	 *
1319
+	 * With this filter you can add, remove or change translated JS strings.
1320
+	 * You should add your own translations to this if you are building an addon rather than adding another script block.
1321
+	 *
1322
+	 * @since 1.0.0
1323
+	 */
1324
+	$arr_alert_msg = apply_filters('geodir_all_js_msg', $arr_alert_msg);
1325
+
1326
+	foreach ($arr_alert_msg as $key => $value) {
1327
+		if (!is_scalar($value))
1328
+			continue;
1329
+		$arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1330
+	}
1331 1331
 
1332
-    $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1333
-    echo '<script>';
1334
-    echo $script;
1335
-    echo '</script>';
1332
+	$script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1333
+	echo '<script>';
1334
+	echo $script;
1335
+	echo '</script>';
1336 1336
 }
1337 1337
 
1338 1338
 add_action('admin_bar_menu', 'geodir_admin_bar_site_menu', 31);
@@ -1348,11 +1348,11 @@  discard block
 block discarded – undo
1348 1348
  */
1349 1349
 function geodir_admin_bar_site_menu($wp_admin_bar)
1350 1350
 {
1351
-    if (get_option("geodir_installed")) {
1352
-        if (current_user_can('manage_options')) {
1353
-            $wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
1354
-        }
1355
-    }
1351
+	if (get_option("geodir_installed")) {
1352
+		if (current_user_can('manage_options')) {
1353
+			$wp_admin_bar->add_menu(array('parent' => 'appearance', 'id' => 'geodirectory', 'title' => __('GeoDirectory', 'geodirectory'), 'href' => admin_url('?page=geodirectory')));
1354
+		}
1355
+	}
1356 1356
 }
1357 1357
 
1358 1358
 add_action('geodir_before_listing', 'geodir_display_sort_options'); /*function in custom_functions.php*/
@@ -1378,25 +1378,25 @@  discard block
 block discarded – undo
1378 1378
  */
1379 1379
 function geodir_store_sidebars()
1380 1380
 {
1381
-    global $geodir_sidebars;
1382
-    global $sidebars_widgets;
1383
-
1384
-    if (!is_array($sidebars_widgets))
1385
-        $sidebars_widgets = wp_get_sidebars_widgets();
1386
-    $geodir_old_sidebars = array();
1387
-
1388
-    if (is_array($geodir_sidebars)) {
1389
-        foreach ($geodir_sidebars as $val) {
1390
-            if (is_array($sidebars_widgets)) {
1391
-                if (array_key_exists($val, $sidebars_widgets))
1392
-                    $geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1393
-                else
1394
-                    $geodir_old_sidebars[$val] = array();
1395
-            }
1396
-        }
1397
-    }
1398
-    update_option('geodir_sidebars', $geodir_old_sidebars);
1399
-    geodir_option_version_backup('geodir_sidebars');
1381
+	global $geodir_sidebars;
1382
+	global $sidebars_widgets;
1383
+
1384
+	if (!is_array($sidebars_widgets))
1385
+		$sidebars_widgets = wp_get_sidebars_widgets();
1386
+	$geodir_old_sidebars = array();
1387
+
1388
+	if (is_array($geodir_sidebars)) {
1389
+		foreach ($geodir_sidebars as $val) {
1390
+			if (is_array($sidebars_widgets)) {
1391
+				if (array_key_exists($val, $sidebars_widgets))
1392
+					$geodir_old_sidebars[$val] = $sidebars_widgets[$val];
1393
+				else
1394
+					$geodir_old_sidebars[$val] = array();
1395
+			}
1396
+		}
1397
+	}
1398
+	update_option('geodir_sidebars', $geodir_old_sidebars);
1399
+	geodir_option_version_backup('geodir_sidebars');
1400 1400
 
1401 1401
 }
1402 1402
 
@@ -1410,28 +1410,28 @@  discard block
 block discarded – undo
1410 1410
  */
1411 1411
 function geodir_restore_sidebars()
1412 1412
 {
1413
-    global $sidebars_widgets;
1414
-
1415
-    if (!is_array($sidebars_widgets))
1416
-        $sidebars_widgets = wp_get_sidebars_widgets();
1417
-
1418
-    if (is_array($sidebars_widgets)) {
1419
-        $geodir_old_sidebars = get_option('geodir_sidebars');
1420
-        if (is_array($geodir_old_sidebars)) {
1421
-            foreach ($geodir_old_sidebars as $key => $val) {
1422
-                if(0 === strpos($key, 'geodir_'))// if gd widget
1423
-                {
1424
-                    $sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1425
-                }
1413
+	global $sidebars_widgets;
1426 1414
 
1415
+	if (!is_array($sidebars_widgets))
1416
+		$sidebars_widgets = wp_get_sidebars_widgets();
1427 1417
 
1428
-            }
1429
-        }
1418
+	if (is_array($sidebars_widgets)) {
1419
+		$geodir_old_sidebars = get_option('geodir_sidebars');
1420
+		if (is_array($geodir_old_sidebars)) {
1421
+			foreach ($geodir_old_sidebars as $key => $val) {
1422
+				if(0 === strpos($key, 'geodir_'))// if gd widget
1423
+				{
1424
+					$sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1425
+				}
1430 1426
 
1431
-    }
1432 1427
 
1433
-    update_option('sidebars_widgets', $sidebars_widgets);
1434
-    update_option('geodir_sidebars', '');
1428
+			}
1429
+		}
1430
+
1431
+	}
1432
+
1433
+	update_option('sidebars_widgets', $sidebars_widgets);
1434
+	update_option('geodir_sidebars', '');
1435 1435
 }
1436 1436
 
1437 1437
 add_action('geodir_after_listing_post_gridview', 'geodir_after_listing_post_gridview');
@@ -1444,9 +1444,9 @@  discard block
 block discarded – undo
1444 1444
  */
1445 1445
 function geodir_after_listing_post_gridview()
1446 1446
 {
1447
-    global $gridview_columns;
1447
+	global $gridview_columns;
1448 1448
 
1449
-    $gridview_columns = '';
1449
+	$gridview_columns = '';
1450 1450
 
1451 1451
 }
1452 1452
 
@@ -1474,11 +1474,11 @@  discard block
 block discarded – undo
1474 1474
  */
1475 1475
 function so_handle_038($url, $original_url, $_context)
1476 1476
 {
1477
-    if (strstr($url, "maps.google.com/maps/api/js") !== false) {
1478
-        $url = str_replace("&#038;", "&amp;", $url); // or $url = $original_url
1479
-    }
1477
+	if (strstr($url, "maps.google.com/maps/api/js") !== false) {
1478
+		$url = str_replace("&#038;", "&amp;", $url); // or $url = $original_url
1479
+	}
1480 1480
 
1481
-    return $url;
1481
+	return $url;
1482 1482
 }
1483 1483
 
1484 1484
 
@@ -1494,34 +1494,34 @@  discard block
 block discarded – undo
1494 1494
 function geodir_after_main_form_fields() {
1495 1495
 	global $gd_session;
1496 1496
 	
1497
-    if (get_option('geodir_accept_term_condition')) {
1498
-        global $post;
1499
-        $term_condition = '';
1500
-        if (isset($_REQUEST['backandedit'])) {
1501
-            $post = (object)$gd_session->get('listing');
1502
-            $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1503
-        }
1504
-
1505
-        ?>
1497
+	if (get_option('geodir_accept_term_condition')) {
1498
+		global $post;
1499
+		$term_condition = '';
1500
+		if (isset($_REQUEST['backandedit'])) {
1501
+			$post = (object)$gd_session->get('listing');
1502
+			$term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1503
+		}
1504
+
1505
+		?>
1506 1506
         <div id="geodir_accept_term_condition_row" class="required_field geodir_form_row clearfix">
1507 1507
             <label>&nbsp;</label>
1508 1508
 
1509 1509
             <div class="geodir_taxonomy_field" style="float:left; width:70%;">
1510 1510
 				<span style="display:block"> 
1511 1511
 				<input class="main_list_selecter" type="checkbox" <?php if ($term_condition == '1') {
1512
-                    echo 'checked="checked"';
1513
-                } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1512
+					echo 'checked="checked"';
1513
+				} ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1514 1514
                        class="geodir_textfield" value="1"
1515 1515
                        style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
1516 1516
 				</span>
1517 1517
             </div>
1518 1518
             <span class="geodir_message_error"><?php if (isset($required_msg)) {
1519
-                    _e($required_msg, 'geodirectory');
1520
-                } ?></span>
1519
+					_e($required_msg, 'geodirectory');
1520
+				} ?></span>
1521 1521
         </div>
1522 1522
     <?php
1523 1523
 
1524
-    }
1524
+	}
1525 1525
 }
1526 1526
 
1527 1527
 
@@ -1546,42 +1546,42 @@  discard block
 block discarded – undo
1546 1546
  */
1547 1547
 function geodir_detail_page_tab_is_display($is_display, $tab)
1548 1548
 {
1549
-    global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1549
+	global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields;
1550 1550
 
1551
-    if ($tab == 'post_profile') {
1552
-        /** This action is documented in geodirectory_template_actions.php */
1553
-        $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1551
+	if ($tab == 'post_profile') {
1552
+		/** This action is documented in geodirectory_template_actions.php */
1553
+		$desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1554 1554
         
1555
-        if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1556
-            $is_display = false;
1557
-        }
1558
-    }
1555
+		if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1556
+			$is_display = false;
1557
+		}
1558
+	}
1559 1559
     
1560
-    if ($tab == 'post_info')
1561
-        $is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1560
+	if ($tab == 'post_info')
1561
+		$is_display = (!empty($geodir_post_detail_fields)) ? true : false;
1562 1562
     
1563
-    if ($tab == 'post_images')
1564
-        $is_display = (!empty($post_images)) ? true : false;
1563
+	if ($tab == 'post_images')
1564
+		$is_display = (!empty($post_images)) ? true : false;
1565 1565
 
1566
-    if ($tab == 'post_video')
1567
-        $is_display = (!empty($video)) ? true : false;
1566
+	if ($tab == 'post_video')
1567
+		$is_display = (!empty($video)) ? true : false;
1568 1568
 
1569
-    if ($tab == 'special_offers')
1570
-        $is_display = (!empty($special_offers)) ? true : false;
1569
+	if ($tab == 'special_offers')
1570
+		$is_display = (!empty($special_offers)) ? true : false;
1571 1571
 
1572
-    if ($tab == 'reviews')
1573
-        $is_display = (geodir_is_page('detail')) ? true : false;
1572
+	if ($tab == 'reviews')
1573
+		$is_display = (geodir_is_page('detail')) ? true : false;
1574 1574
 
1575
-    if ($tab == 'related_listing') {
1576
-       $message = __('No listings found which match your selection.', 'geodirectory');
1575
+	if ($tab == 'related_listing') {
1576
+	   $message = __('No listings found which match your selection.', 'geodirectory');
1577 1577
        
1578
-       /** This action is documented in geodirectory-functions/template_functions.php */
1579
-       $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
1578
+	   /** This action is documented in geodirectory-functions/template_functions.php */
1579
+	   $message = apply_filters('geodir_message_listing_not_found', $message, 'listing-listview', false);
1580 1580
        
1581
-       $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
1582
-    }
1581
+	   $is_display = ((strpos($related_listing, $message) !== false || $related_listing == '' || !geodir_is_page('detail'))) ? false : true;
1582
+	}
1583 1583
 
1584
-    return $is_display;
1584
+	return $is_display;
1585 1585
 }
1586 1586
 
1587 1587
 
@@ -1597,69 +1597,69 @@  discard block
 block discarded – undo
1597 1597
  * @global string $plugin_prefix Geodirectory plugin table prefix.
1598 1598
  */
1599 1599
 function geodir_changes_in_custom_fields_table() {
1600
-    global $wpdb, $plugin_prefix;
1600
+	global $wpdb, $plugin_prefix;
1601 1601
 	
1602 1602
 	// Remove unused virtual page
1603 1603
 	$listings_page_id = (int)get_option('geodir_listing_page');
1604 1604
 	if ($listings_page_id) {
1605 1605
 		$wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
1606
-        delete_option('geodir_listing_page');
1606
+		delete_option('geodir_listing_page');
1607 1607
 	}
1608 1608
 
1609
-    if (!get_option('geodir_changes_in_custom_fields_table')) {
1610
-        $wpdb->query(
1611
-            $wpdb->prepare(
1612
-                "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1613
-                array('1', '1', 'admin')
1614
-            )
1615
-        );
1609
+	if (!get_option('geodir_changes_in_custom_fields_table')) {
1610
+		$wpdb->query(
1611
+			$wpdb->prepare(
1612
+				"UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1613
+				array('1', '1', 'admin')
1614
+			)
1615
+		);
1616 1616
 
1617 1617
 
1618
-        /* --- terms meta value set --- */
1618
+		/* --- terms meta value set --- */
1619 1619
 
1620
-        update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1620
+		update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1621 1621
 
1622
-        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1622
+		$options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1623 1623
 
1624
-        if (!empty($options_data)) {
1624
+		if (!empty($options_data)) {
1625 1625
 
1626
-            foreach ($options_data as $optobj) {
1626
+			foreach ($options_data as $optobj) {
1627 1627
 
1628
-                $option_val = str_replace('tax_meta_', '', $optobj->option_name);
1628
+				$option_val = str_replace('tax_meta_', '', $optobj->option_name);
1629 1629
 
1630
-                $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
1630
+				$taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
1631 1631
 
1632
-                if (!empty($taxonomies_data)) {
1632
+				if (!empty($taxonomies_data)) {
1633 1633
 
1634
-                    foreach ($taxonomies_data as $taxobj) {
1634
+					foreach ($taxonomies_data as $taxobj) {
1635 1635
 
1636
-                        $taxObject = get_taxonomy($taxobj->taxonomy);
1637
-                        $post_type = $taxObject->object_type[0];
1636
+						$taxObject = get_taxonomy($taxobj->taxonomy);
1637
+						$post_type = $taxObject->object_type[0];
1638 1638
 
1639
-                        $opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1639
+						$opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1640 1640
 
1641
-                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1641
+						$duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1642 1642
 
1643
-                        if ($duplicate_data) {
1643
+						if ($duplicate_data) {
1644 1644
 
1645
-                            $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1645
+							$wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1646 1646
 
1647
-                        } else {
1647
+						} else {
1648 1648
 
1649
-                            $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
1649
+							$wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
1650 1650
 
1651
-                        }
1651
+						}
1652 1652
 
1653
-                    }
1653
+					}
1654 1654
 
1655
-                }
1655
+				}
1656 1656
 
1657
-            }
1658
-        }
1657
+			}
1658
+		}
1659 1659
 
1660
-        update_option('geodir_changes_in_custom_fields_table', '1');
1660
+		update_option('geodir_changes_in_custom_fields_table', '1');
1661 1661
 
1662
-    }
1662
+	}
1663 1663
 
1664 1664
 }
1665 1665
 
@@ -1678,24 +1678,24 @@  discard block
 block discarded – undo
1678 1678
 function geodir_location_slug_check($slug)
1679 1679
 {
1680 1680
 
1681
-    global $wpdb, $table_prefix;
1681
+	global $wpdb, $table_prefix;
1682 1682
 
1683
-    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1683
+	$slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1684 1684
 
1685
-    if ($slug_exists) {
1685
+	if ($slug_exists) {
1686 1686
 
1687
-        $suffix = 1;
1688
-        do {
1689
-            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1690
-            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1691
-            $suffix++;
1692
-        } while ($location_slug_check && $suffix < 100);
1687
+		$suffix = 1;
1688
+		do {
1689
+			$alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1690
+			$location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1691
+			$suffix++;
1692
+		} while ($location_slug_check && $suffix < 100);
1693 1693
 
1694
-        $slug = $alt_location_name;
1694
+		$slug = $alt_location_name;
1695 1695
 
1696
-    }
1696
+	}
1697 1697
 
1698
-    return $slug;
1698
+	return $slug;
1699 1699
 
1700 1700
 }
1701 1701
 
@@ -1720,42 +1720,42 @@  discard block
 block discarded – undo
1720 1720
 function geodir_update_term_slug($term_id, $tt_id, $taxonomy)
1721 1721
 {
1722 1722
 
1723
-    global $wpdb, $plugin_prefix, $table_prefix;
1723
+	global $wpdb, $plugin_prefix, $table_prefix;
1724 1724
 
1725
-    $tern_data = get_term_by('id', $term_id, $taxonomy);
1725
+	$tern_data = get_term_by('id', $term_id, $taxonomy);
1726 1726
 
1727
-    $slug = $tern_data->slug;
1727
+	$slug = $tern_data->slug;
1728 1728
 
1729
-    /**
1730
-     * Filter if a term slug exists.
1731
-     *
1732
-     * @since 1.0.0
1733
-     * @package GeoDirectory
1734
-     * @param bool $bool Default: false.
1735
-     * @param string $slug The term slug.
1736
-     * @param int $term_id The term ID.
1737
-     */
1738
-    $slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
1729
+	/**
1730
+	 * Filter if a term slug exists.
1731
+	 *
1732
+	 * @since 1.0.0
1733
+	 * @package GeoDirectory
1734
+	 * @param bool $bool Default: false.
1735
+	 * @param string $slug The term slug.
1736
+	 * @param int $term_id The term ID.
1737
+	 */
1738
+	$slug_exists = apply_filters('geodir_term_slug_is_exists', false, $slug, $term_id);
1739 1739
 
1740
-    if ($slug_exists) {
1740
+	if ($slug_exists) {
1741 1741
 
1742
-        $suffix = 1;
1743
-        do {
1744
-            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1742
+		$suffix = 1;
1743
+		do {
1744
+			$new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1745 1745
 
1746
-            /** This action is documented in geodirectory_hooks_actions.php */
1747
-            $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
1746
+			/** This action is documented in geodirectory_hooks_actions.php */
1747
+			$term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
1748 1748
 
1749
-            $suffix++;
1750
-        } while ($term_slug_check && $suffix < 100);
1749
+			$suffix++;
1750
+		} while ($term_slug_check && $suffix < 100);
1751 1751
 
1752
-        $slug = $new_slug;
1752
+		$slug = $new_slug;
1753 1753
 
1754
-        //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1754
+		//wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1755 1755
 
1756
-        $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1756
+		$wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1757 1757
 
1758
-    }
1758
+	}
1759 1759
 	
1760 1760
 	// Update tag in detail table.
1761 1761
 	$taxonomy_obj = get_taxonomy($taxonomy);
@@ -1796,21 +1796,21 @@  discard block
 block discarded – undo
1796 1796
 function geodir_term_slug_is_exists($slug_exists, $slug, $term_id)
1797 1797
 {
1798 1798
 
1799
-    global $wpdb, $table_prefix;
1799
+	global $wpdb, $table_prefix;
1800 1800
 
1801
-    $default_location = geodir_get_default_location();
1801
+	$default_location = geodir_get_default_location();
1802 1802
 
1803
-    $country_slug = $default_location->country_slug;
1804
-    $region_slug = $default_location->region_slug;
1805
-    $city_slug = $default_location->city_slug;
1803
+	$country_slug = $default_location->country_slug;
1804
+	$region_slug = $default_location->region_slug;
1805
+	$city_slug = $default_location->city_slug;
1806 1806
 
1807
-    if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1808
-        return $slug_exists = true;
1807
+	if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1808
+		return $slug_exists = true;
1809 1809
 
1810
-    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1811
-        return $slug_exists = true;
1810
+	if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1811
+		return $slug_exists = true;
1812 1812
 
1813
-    return $slug_exists;
1813
+	return $slug_exists;
1814 1814
 }
1815 1815
 
1816 1816
 
@@ -1830,75 +1830,75 @@  discard block
 block discarded – undo
1830 1830
  */
1831 1831
 function geodir_custom_page_title($title = '', $sep = '')
1832 1832
 {
1833
-    global $wp;
1834
-    if ((class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) && !geodir_disable_yoast_seo_metas()) {
1835
-        return $title;
1836
-    }
1833
+	global $wp;
1834
+	if ((class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) && !geodir_disable_yoast_seo_metas()) {
1835
+		return $title;
1836
+	}
1837 1837
 
1838
-    if ($sep == '') {
1839
-        /**
1840
-         * Filter the page title separator.
1841
-         *
1842
-         * @since 1.0.0
1843
-         * @package GeoDirectory
1844
-         * @param string $sep The separator, default: `|`.
1845
-         */
1846
-        $sep = apply_filters('geodir_page_title_separator', '|');
1847
-    }
1838
+	if ($sep == '') {
1839
+		/**
1840
+		 * Filter the page title separator.
1841
+		 *
1842
+		 * @since 1.0.0
1843
+		 * @package GeoDirectory
1844
+		 * @param string $sep The separator, default: `|`.
1845
+		 */
1846
+		$sep = apply_filters('geodir_page_title_separator', '|');
1847
+	}
1848 1848
 
1849 1849
 
1850
-    $gd_page = '';
1851
-    if(geodir_is_page('home')){
1852
-        $gd_page = 'home';
1853
-        $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1854
-    }
1855
-    elseif(geodir_is_page('detail')){
1856
-        $gd_page = 'detail';
1857
-        $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1858
-    }
1859
-    elseif(geodir_is_page('pt')){
1860
-        $gd_page = 'pt';
1861
-        $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1862
-    }
1863
-    elseif(geodir_is_page('listing')){
1864
-        $gd_page = 'listing';
1865
-        $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1866
-    }
1867
-    elseif(geodir_is_page('location')){
1868
-        $gd_page = 'location';
1869
-        $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1870
-    }
1871
-    elseif(geodir_is_page('search')){
1872
-        $gd_page = 'search';
1873
-        $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1874
-    }
1875
-    elseif(geodir_is_page('add-listing')){
1876
-        $gd_page = 'add-listing';
1877
-        $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1878
-    }
1879
-    elseif(geodir_is_page('author')){
1880
-        $gd_page = 'author';
1881
-        $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1882
-    }
1883
-    elseif(geodir_is_page('login')){
1884
-        $gd_page = 'login';
1885
-        $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1886
-    }
1887
-    elseif(geodir_is_page('listing-success')){
1888
-        $gd_page = 'listing-success';
1889
-        $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1890
-    }
1850
+	$gd_page = '';
1851
+	if(geodir_is_page('home')){
1852
+		$gd_page = 'home';
1853
+		$title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1854
+	}
1855
+	elseif(geodir_is_page('detail')){
1856
+		$gd_page = 'detail';
1857
+		$title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1858
+	}
1859
+	elseif(geodir_is_page('pt')){
1860
+		$gd_page = 'pt';
1861
+		$title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1862
+	}
1863
+	elseif(geodir_is_page('listing')){
1864
+		$gd_page = 'listing';
1865
+		$title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1866
+	}
1867
+	elseif(geodir_is_page('location')){
1868
+		$gd_page = 'location';
1869
+		$title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1870
+	}
1871
+	elseif(geodir_is_page('search')){
1872
+		$gd_page = 'search';
1873
+		$title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1874
+	}
1875
+	elseif(geodir_is_page('add-listing')){
1876
+		$gd_page = 'add-listing';
1877
+		$title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1878
+	}
1879
+	elseif(geodir_is_page('author')){
1880
+		$gd_page = 'author';
1881
+		$title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1882
+	}
1883
+	elseif(geodir_is_page('login')){
1884
+		$gd_page = 'login';
1885
+		$title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1886
+	}
1887
+	elseif(geodir_is_page('listing-success')){
1888
+		$gd_page = 'listing-success';
1889
+		$title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1890
+	}
1891 1891
 
1892 1892
 
1893
-    /**
1894
-     * Filter page meta title to replace variables.
1895
-     *
1896
-     * @since 1.5.4
1897
-     * @param string $title The page title including variables.
1898
-     * @param string $gd_page The GeoDirectory page type if any.
1899
-     * @param string $sep The title separator symbol.
1900
-     */
1901
-    return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
1893
+	/**
1894
+	 * Filter page meta title to replace variables.
1895
+	 *
1896
+	 * @since 1.5.4
1897
+	 * @param string $title The page title including variables.
1898
+	 * @param string $gd_page The GeoDirectory page type if any.
1899
+	 * @param string $sep The title separator symbol.
1900
+	 */
1901
+	return apply_filters('geodir_seo_meta_title', __($title, 'geodirectory'), $gd_page, $sep);
1902 1902
 
1903 1903
 }
1904 1904
 
@@ -1914,36 +1914,36 @@  discard block
 block discarded – undo
1914 1914
 function geodir_set_post_attachment()
1915 1915
 {
1916 1916
 
1917
-    if (!get_option('geodir_set_post_attachments')) {
1917
+	if (!get_option('geodir_set_post_attachments')) {
1918 1918
 
1919
-        require_once(ABSPATH . 'wp-admin/includes/image.php');
1920
-        require_once(ABSPATH . 'wp-admin/includes/file.php');
1919
+		require_once(ABSPATH . 'wp-admin/includes/image.php');
1920
+		require_once(ABSPATH . 'wp-admin/includes/file.php');
1921 1921
 
1922
-        $all_postypes = geodir_get_posttypes();
1922
+		$all_postypes = geodir_get_posttypes();
1923 1923
 
1924
-        foreach($all_postypes as $post_type){
1925
-            $args = array(
1926
-                'posts_per_page' => -1,
1927
-                'post_type' => $post_type,
1928
-                'post_status' => 'publish');
1924
+		foreach($all_postypes as $post_type){
1925
+			$args = array(
1926
+				'posts_per_page' => -1,
1927
+				'post_type' => $post_type,
1928
+				'post_status' => 'publish');
1929 1929
 
1930
-            $posts_array = get_posts($args);
1930
+			$posts_array = get_posts($args);
1931 1931
 
1932
-            if (!empty($posts_array)) {
1932
+			if (!empty($posts_array)) {
1933 1933
 
1934
-                foreach ($posts_array as $post) {
1934
+				foreach ($posts_array as $post) {
1935 1935
 
1936
-                    geodir_set_wp_featured_image($post->ID);
1936
+					geodir_set_wp_featured_image($post->ID);
1937 1937
 
1938
-                }
1938
+				}
1939 1939
 
1940
-            }
1941
-        }
1940
+			}
1941
+		}
1942 1942
 
1943 1943
 
1944
-        update_option('geodir_set_post_attachments', '1');
1944
+		update_option('geodir_set_post_attachments', '1');
1945 1945
 
1946
-    }
1946
+	}
1947 1947
 
1948 1948
 }
1949 1949
 
@@ -1960,19 +1960,19 @@  discard block
 block discarded – undo
1960 1960
 function geodir_remove_url_seperator()
1961 1961
 {
1962 1962
 
1963
-    if (!get_option('geodir_remove_url_seperator')) {
1963
+	if (!get_option('geodir_remove_url_seperator')) {
1964 1964
 
1965
-        if (get_option('geodir_listingurl_separator'))
1966
-            delete_option('geodir_listingurl_separator');
1965
+		if (get_option('geodir_listingurl_separator'))
1966
+			delete_option('geodir_listingurl_separator');
1967 1967
 
1968
-        if (get_option('geodir_detailurl_separator'))
1969
-            delete_option('geodir_detailurl_separator');
1968
+		if (get_option('geodir_detailurl_separator'))
1969
+			delete_option('geodir_detailurl_separator');
1970 1970
 
1971
-        flush_rewrite_rules(false);
1971
+		flush_rewrite_rules(false);
1972 1972
 
1973
-        update_option('geodir_remove_url_seperator', '1');
1973
+		update_option('geodir_remove_url_seperator', '1');
1974 1974
 
1975
-    }
1975
+	}
1976 1976
 
1977 1977
 }
1978 1978
 
@@ -1988,19 +1988,19 @@  discard block
 block discarded – undo
1988 1988
  */
1989 1989
 function geodir_remove_url_seperator_form_permalink_settings($permalink_arr)
1990 1990
 {
1991
-    foreach ($permalink_arr as $key => $value) {
1991
+	foreach ($permalink_arr as $key => $value) {
1992 1992
 
1993
-        if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
1994
-            unset($permalink_arr[$key]);
1993
+		if ($value['id'] == 'geodir_listingurl_separator' || $value['id'] == 'geodir_detailurl_separator')
1994
+			unset($permalink_arr[$key]);
1995 1995
 
1996
-    }
1996
+	}
1997 1997
 
1998
-    return $permalink_arr;
1998
+	return $permalink_arr;
1999 1999
 
2000 2000
 }
2001 2001
 
2002 2002
 if (!is_admin()) {
2003
-    add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
2003
+	add_filter('posts_results', 'geodir_set_status_draft_to_publish_for_own_post');
2004 2004
 }
2005 2005
 /**
2006 2006
  * Set status from draft to publish.
@@ -2013,16 +2013,16 @@  discard block
 block discarded – undo
2013 2013
  */
2014 2014
 function geodir_set_status_draft_to_publish_for_own_post($post)
2015 2015
 {
2016
-    $user_id = get_current_user_id();
2016
+	$user_id = get_current_user_id();
2017 2017
 
2018
-    if(!$user_id){return $post;}
2018
+	if(!$user_id){return $post;}
2019 2019
 
2020
-    $gd_post_types = geodir_get_posttypes();
2020
+	$gd_post_types = geodir_get_posttypes();
2021 2021
 
2022
-    if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
2023
-        $post[0]->post_status = 'publish';
2024
-    }
2025
-    return $post;
2022
+	if (!empty($post) && $post[0]->post_author == $user_id && in_array($post[0]->post_type, $gd_post_types) && !isset($_REQUEST['fl_builder'])) {
2023
+		$post[0]->post_status = 'publish';
2024
+	}
2025
+	return $post;
2026 2026
 }
2027 2027
 
2028 2028
 
@@ -2114,33 +2114,33 @@  discard block
 block discarded – undo
2114 2114
  */
2115 2115
 function geodir_detail_page_tab_headings_change($tabs_arr)
2116 2116
 {
2117
-    global $wpdb;
2117
+	global $wpdb;
2118 2118
 
2119
-    $post_type = geodir_get_current_posttype();
2119
+	$post_type = geodir_get_current_posttype();
2120 2120
 
2121
-    $all_postypes = geodir_get_posttypes();
2121
+	$all_postypes = geodir_get_posttypes();
2122 2122
 
2123
-    if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
2123
+	if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes)) {
2124 2124
 
2125
-        if (array_key_exists('post_video', $tabs_arr)) {
2125
+		if (array_key_exists('post_video', $tabs_arr)) {
2126 2126
 
2127
-            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2127
+			$field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2128 2128
 
2129
-            if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2130
-                $tabs_arr['post_video']['heading_text'] = $field_title;
2131
-        }
2129
+			if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2130
+				$tabs_arr['post_video']['heading_text'] = $field_title;
2131
+		}
2132 2132
 
2133
-        if (array_key_exists('special_offers', $tabs_arr)) {
2133
+		if (array_key_exists('special_offers', $tabs_arr)) {
2134 2134
 
2135
-            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2135
+			$field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2136 2136
 
2137
-            if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2138
-                $tabs_arr['special_offers']['heading_text'] = $field_title;
2139
-        }
2137
+			if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2138
+				$tabs_arr['special_offers']['heading_text'] = $field_title;
2139
+		}
2140 2140
 
2141
-    }
2141
+	}
2142 2142
 
2143
-    return $tabs_arr;
2143
+	return $tabs_arr;
2144 2144
 
2145 2145
 }
2146 2146
 
@@ -2153,10 +2153,10 @@  discard block
 block discarded – undo
2153 2153
  */
2154 2154
 function geodir_remove_template_redirect_actions()
2155 2155
 {
2156
-    if (geodir_is_page('login')){
2157
-        remove_all_actions('template_redirect');
2158
-        remove_action('init', 'avia_modify_front', 10);
2159
-    }
2156
+	if (geodir_is_page('login')){
2157
+		remove_all_actions('template_redirect');
2158
+		remove_action('init', 'avia_modify_front', 10);
2159
+	}
2160 2160
 }
2161 2161
 
2162 2162
 
@@ -2178,51 +2178,51 @@  discard block
 block discarded – undo
2178 2178
 function geodirectory_before_featured_image_delete($attachment_id)
2179 2179
 {
2180 2180
 
2181
-    global $wpdb, $plugin_prefix;
2181
+	global $wpdb, $plugin_prefix;
2182 2182
 
2183
-    $post_id = get_post_field('post_parent', $attachment_id);
2183
+	$post_id = get_post_field('post_parent', $attachment_id);
2184 2184
 
2185
-    $attachment_url = wp_get_attachment_url($attachment_id);
2185
+	$attachment_url = wp_get_attachment_url($attachment_id);
2186 2186
 
2187
-    if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
2187
+	if ($post_id > 0 && (isset($_REQUEST['action']) && $_REQUEST['action'] == 'delete')) {
2188 2188
 
2189
-        $post_type = get_post_type($post_id);
2189
+		$post_type = get_post_type($post_id);
2190 2190
 
2191
-        $all_postypes = geodir_get_posttypes();
2191
+		$all_postypes = geodir_get_posttypes();
2192 2192
 
2193
-        if (!in_array($post_type, $all_postypes) || !is_admin())
2194
-            return false;
2193
+		if (!in_array($post_type, $all_postypes) || !is_admin())
2194
+			return false;
2195 2195
 
2196
-        $uploads = wp_upload_dir();
2196
+		$uploads = wp_upload_dir();
2197 2197
 
2198
-        $split_img_path = explode($uploads['baseurl'], $attachment_url);
2198
+		$split_img_path = explode($uploads['baseurl'], $attachment_url);
2199 2199
 
2200
-        $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2200
+		$split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2201 2201
 
2202
-        $wpdb->query(
2203
-            $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2204
-                array($post_id, $split_img_file_path)
2205
-            )
2206
-        );
2202
+		$wpdb->query(
2203
+			$wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2204
+				array($post_id, $split_img_file_path)
2205
+			)
2206
+		);
2207 2207
 
2208
-        $attachment_data = $wpdb->get_row(
2209
-            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2210
-                array($post_id)
2211
-            )
2212
-        );
2208
+		$attachment_data = $wpdb->get_row(
2209
+			$wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2210
+				array($post_id)
2211
+			)
2212
+		);
2213 2213
 
2214
-        if (!empty($attachment_data)) {
2215
-            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2216
-        }
2214
+		if (!empty($attachment_data)) {
2215
+			$wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2216
+		}
2217 2217
 
2218 2218
 
2219
-        $table_name = $plugin_prefix . $post_type . '_detail';
2219
+		$table_name = $plugin_prefix . $post_type . '_detail';
2220 2220
 
2221
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2221
+		$wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2222 2222
 
2223
-        geodir_set_wp_featured_image($post_id);
2223
+		geodir_set_wp_featured_image($post_id);
2224 2224
 
2225
-    }
2225
+	}
2226 2226
 
2227 2227
 }
2228 2228
 
@@ -2240,79 +2240,79 @@  discard block
 block discarded – undo
2240 2240
 function geodir_temp_set_post_attachment()
2241 2241
 {
2242 2242
 
2243
-    global $wpdb, $plugin_prefix;
2243
+	global $wpdb, $plugin_prefix;
2244 2244
 
2245
-    $all_postypes = geodir_get_posttypes();
2245
+	$all_postypes = geodir_get_posttypes();
2246 2246
 
2247
-    foreach ($all_postypes as $posttype) {
2247
+	foreach ($all_postypes as $posttype) {
2248 2248
 
2249
-        $tablename = $plugin_prefix . $posttype . '_detail';
2249
+		$tablename = $plugin_prefix . $posttype . '_detail';
2250 2250
 
2251
-        $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2251
+		$get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2252 2252
 
2253
-        if (!empty($get_post_data)) {
2253
+		if (!empty($get_post_data)) {
2254 2254
 
2255
-            foreach ($get_post_data as $data) {
2255
+			foreach ($get_post_data as $data) {
2256 2256
 
2257
-                $post_id = $data->post_id;
2257
+				$post_id = $data->post_id;
2258 2258
 
2259
-                $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2259
+				$attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2260 2260
 
2261
-                if (!empty($attachment_data)) {
2261
+				if (!empty($attachment_data)) {
2262 2262
 
2263
-                    foreach ($attachment_data as $attach) {
2263
+					foreach ($attachment_data as $attach) {
2264 2264
 
2265
-                        $file_info = pathinfo($attach->file);
2265
+						$file_info = pathinfo($attach->file);
2266 2266
 
2267
-                        $sub_dir = '';
2268
-                        if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2269
-                            $sub_dir = stripslashes_deep($file_info['dirname']);
2267
+						$sub_dir = '';
2268
+						if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
2269
+							$sub_dir = stripslashes_deep($file_info['dirname']);
2270 2270
 
2271
-                        $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2272
-                        $uploads_path = $uploads['basedir'];
2271
+						$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
2272
+						$uploads_path = $uploads['basedir'];
2273 2273
 
2274
-                        $file_name = $file_info['basename'];
2274
+						$file_name = $file_info['basename'];
2275 2275
 
2276
-                        $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2276
+						$img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2277 2277
 
2278
-                        if (!file_exists($img_arr['path'])) {
2278
+						if (!file_exists($img_arr['path'])) {
2279 2279
 
2280
-                            $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2280
+							$wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2281 2281
 
2282
-                        }
2282
+						}
2283 2283
 
2284
-                    }
2284
+					}
2285 2285
 
2286
-                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2286
+					$attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2287 2287
 
2288
-                    if (!empty($attachment_data)) {
2288
+					if (!empty($attachment_data)) {
2289 2289
 
2290
-                        if ($attachment_data->ID)
2291
-                            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2290
+						if ($attachment_data->ID)
2291
+							$wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2292 2292
 
2293
-                    } else {
2293
+					} else {
2294 2294
 
2295
-                        if (has_post_thumbnail($post_id)) {
2295
+						if (has_post_thumbnail($post_id)) {
2296 2296
 
2297
-                            $post_thumbnail_id = get_post_thumbnail_id($post_id);
2297
+							$post_thumbnail_id = get_post_thumbnail_id($post_id);
2298 2298
 
2299
-                            wp_delete_attachment($post_thumbnail_id);
2299
+							wp_delete_attachment($post_thumbnail_id);
2300 2300
 
2301
-                        }
2301
+						}
2302 2302
 
2303
-                    }
2303
+					}
2304 2304
 
2305
-                    $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2305
+					$wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2306 2306
 
2307
-                    geodir_set_wp_featured_image($post_id);
2307
+					geodir_set_wp_featured_image($post_id);
2308 2308
 
2309
-                }
2309
+				}
2310 2310
 
2311
-            }
2311
+			}
2312 2312
 
2313
-        }
2313
+		}
2314 2314
 
2315
-    }
2315
+	}
2316 2316
 
2317 2317
 }
2318 2318
 
@@ -2330,9 +2330,9 @@  discard block
 block discarded – undo
2330 2330
 function geodir_default_rating_star_icon()
2331 2331
 {
2332 2332
 
2333
-    if (!get_option('geodir_default_rating_star_icon')) {
2334
-        update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2335
-    }
2333
+	if (!get_option('geodir_default_rating_star_icon')) {
2334
+		update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2335
+	}
2336 2336
 
2337 2337
 }
2338 2338
 
@@ -2350,27 +2350,27 @@  discard block
 block discarded – undo
2350 2350
  */
2351 2351
 function geodir_user_post_listing_count($user_id=null)
2352 2352
 {
2353
-    global $wpdb, $plugin_prefix, $current_user;
2354
-    if(!$user_id){
2355
-        $user_id = $current_user->ID;
2356
-    }
2353
+	global $wpdb, $plugin_prefix, $current_user;
2354
+	if(!$user_id){
2355
+		$user_id = $current_user->ID;
2356
+	}
2357 2357
 
2358
-    $user_id = $current_user->ID;
2359
-    $all_postypes = geodir_get_posttypes();
2360
-    $all_posts = get_option('geodir_listing_link_user_dashboard');
2358
+	$user_id = $current_user->ID;
2359
+	$all_postypes = geodir_get_posttypes();
2360
+	$all_posts = get_option('geodir_listing_link_user_dashboard');
2361 2361
 
2362
-    $user_listing = array();
2363
-    if (is_array($all_posts) && !empty($all_posts)) {
2364
-        foreach ($all_posts as $ptype) {
2365
-            $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
2362
+	$user_listing = array();
2363
+	if (is_array($all_posts) && !empty($all_posts)) {
2364
+		foreach ($all_posts as $ptype) {
2365
+			$total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
2366 2366
 
2367
-            if ($total_posts > 0) {
2368
-                $user_listing[$ptype] = $total_posts;
2369
-            }
2370
-        }
2371
-    }
2367
+			if ($total_posts > 0) {
2368
+				$user_listing[$ptype] = $total_posts;
2369
+			}
2370
+		}
2371
+	}
2372 2372
 
2373
-    return $user_listing;
2373
+	return $user_listing;
2374 2374
 }
2375 2375
 
2376 2376
 
@@ -2390,189 +2390,189 @@  discard block
 block discarded – undo
2390 2390
  */
2391 2391
 function geodir_detail_page_custom_field_tab($tabs_arr)
2392 2392
 {
2393
-    global $post;
2394
-
2395
-    $post_type = geodir_get_current_posttype();
2396
-    $all_postypes = geodir_get_posttypes();
2397
-
2398
-    if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
2399
-        $package_info = array();
2400
-        $package_info = geodir_post_package_info($package_info, $post);
2401
-        $post_package_id = !empty($package_info->pid) ? $package_info->pid : '';
2402
-        $fields_location = 'owntab';
2403
-
2404
-        $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2405
-        //remove video and special offers if it is already set to show
2406
-        if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2407
-            $unset_video = true;
2408
-        }
2409
-
2410
-        if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2411
-            $unset_special_offers = true;
2412
-        }
2413
-        if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2414
-            foreach($custom_fields as $key => $custom_field){
2415
-                if($custom_field['name']=='geodir_video' && isset($unset_video)){
2416
-                    unset($custom_fields[$key]);
2417
-                }
2418
-                if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2419
-                    unset($custom_fields[$key]);
2420
-                }
2421
-            }
2422
-        }
2393
+	global $post;
2423 2394
 
2395
+	$post_type = geodir_get_current_posttype();
2396
+	$all_postypes = geodir_get_posttypes();
2424 2397
 
2425
-        if (!empty($custom_fields)) {
2426
-            $parse_custom_fields = array();
2427
-            foreach ($custom_fields as $field) {
2428
-                $field = stripslashes_deep($field); // strip slashes
2429
-                $type = $field;
2430
-                $field_name = $field['htmlvar_name'];
2431
-                if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2432
-                    $post->{$field_name} = $_REQUEST[$field_name];
2433
-                }
2434
-
2435
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2436
-                    if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2437
-                        continue;
2438
-                    }
2398
+	if (!empty($tabs_arr) && $post_type != '' && in_array($post_type, $all_postypes) && (geodir_is_page('detail') || geodir_is_page('preview'))) {
2399
+		$package_info = array();
2400
+		$package_info = geodir_post_package_info($package_info, $post);
2401
+		$post_package_id = !empty($package_info->pid) ? $package_info->pid : '';
2402
+		$fields_location = 'owntab';
2439 2403
 
2440
-                    $parse_custom_fields[] = $field;
2441
-                }
2442
-            }
2443
-            $custom_fields = $parse_custom_fields;
2444
-        }
2445
-        //print_r($custom_fields);
2446
-        if (!empty($custom_fields)) {
2447
-
2448
-            global $field_set_start;
2404
+		$custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2405
+		//remove video and special offers if it is already set to show
2406
+		if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2407
+			$unset_video = true;
2408
+		}
2449 2409
 
2450
-            $post = stripslashes_deep($post); // strip slashes
2451
-            
2452
-            $field_set_start = 0;
2453
-            $fieldset_count = 0;
2454
-            $fieldset = '';
2455
-            $total_fields = count($custom_fields);
2456
-            $count_field = 0;
2457
-            $fieldset_arr = array();
2458
-            $i = 0;
2459
-            $geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL;
2460
-
2461
-            foreach ($custom_fields as $field) {
2462
-                $count_field++;
2463
-                $field_name = $field['htmlvar_name'];
2464
-                if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2465
-                    $post->{$field_name} = $_REQUEST[$field_name];
2466
-                }
2410
+		if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2411
+			$unset_special_offers = true;
2412
+		}
2413
+		if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2414
+			foreach($custom_fields as $key => $custom_field){
2415
+				if($custom_field['name']=='geodir_video' && isset($unset_video)){
2416
+					unset($custom_fields[$key]);
2417
+				}
2418
+				if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2419
+					unset($custom_fields[$key]);
2420
+				}
2421
+			}
2422
+		}
2467 2423
 
2468
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2469
-                    $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2470
-                    $site_title = trim($field['site_title']);
2471
-                    $type = $field;
2472
-                    $variables_array = array();
2473 2424
 
2474
-                    if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2475
-                        continue;
2476
-                    }
2425
+		if (!empty($custom_fields)) {
2426
+			$parse_custom_fields = array();
2427
+			foreach ($custom_fields as $field) {
2428
+				$field = stripslashes_deep($field); // strip slashes
2429
+				$type = $field;
2430
+				$field_name = $field['htmlvar_name'];
2431
+				if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2432
+					$post->{$field_name} = $_REQUEST[$field_name];
2433
+				}
2477 2434
 
2478
-                    if ($type['type'] != 'fieldset') {
2479
-                        $i++;
2480
-                        $variables_array['post_id'] = $post->ID;
2481
-                        $variables_array['label'] = __($type['site_title'], 'geodirectory');
2482
-                        $variables_array['value'] = '';
2483
-                        $variables_array['value'] = $post->{$type['htmlvar_name']};
2484
-                    }else{
2485
-                        $i = 0;
2486
-                        $fieldset_count++;
2487
-                        $field_set_start = 1;
2488
-                        $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2489
-                        $fieldset_arr[$fieldset_count]['label'] = $label;
2490
-                    }
2435
+				if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2436
+					if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2437
+						continue;
2438
+					}
2491 2439
 
2440
+					$parse_custom_fields[] = $field;
2441
+				}
2442
+			}
2443
+			$custom_fields = $parse_custom_fields;
2444
+		}
2445
+		//print_r($custom_fields);
2446
+		if (!empty($custom_fields)) {
2492 2447
 
2493
-                    if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
2494
-                    $type = stripslashes_deep($type); // strip slashes
2495
-                    if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
2496
-                    $html = '';
2497
-                    $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2498
-                    if($html_var=='post'){$html_var='post_address';}
2499
-                    $field_icon = geodir_field_icon_proccess($type);
2500
-                    $filed_type = $type['type'];
2501
-
2502
-                    /**
2503
-                     * Filter the output for custom fields.
2504
-                     *
2505
-                     * Here we can remove or add new functions depending on the field type.
2506
-                     *
2507
-                     * @param string $html The html to be filtered (blank).
2508
-                     * @param string $fields_location The location the field is to be show.
2509
-                     * @param array $type The array of field values.
2510
-                     */
2511
-                    $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2512
-
2513
-
2514
-                    /**
2515
-                     * Filter custom field output in tab.
2516
-                     *
2517
-                     * @since 1.5.6
2518
-                     *
2519
-                     * @param string $html_var The HTML variable name for the field.
2520
-                     * @param string $html Custom field unfiltered HTML.
2521
-                     * @param array $variables_array Custom field variables array.
2522
-                     */
2523
-                    $html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
2524
-
2525
-                    $fieldset_html = '';
2526
-                    if ($field_set_start == 1) {
2527
-                        $add_html = false;
2528
-                        if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
2529
-                            if ($fieldset != '') {
2530
-                                $add_html = true;
2531
-                                $label = $fieldset_arr[$fieldset_count - 1]['label'];
2532
-                                $htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name'];
2533
-                            }
2534
-                            $fieldset_html = $fieldset;
2535
-                            $fieldset = '';
2536
-                        } else {
2537
-                            $fieldset .= $html;
2538
-                            if ($total_fields == $count_field && $fieldset != '') {
2539
-                                $add_html = true;
2540
-                                $label = $fieldset_arr[$fieldset_count]['label'];
2541
-                                $htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name'];
2542
-                                $fieldset_html = $fieldset;
2543
-                            }
2544
-                        }
2448
+			global $field_set_start;
2545 2449
 
2546
-                        if ($add_html) {
2547
-                            $tabs_arr[$htmlvar_name] = array(
2548
-                                'heading_text' => __($label, 'geodirectory'),
2549
-                                'is_active_tab' => false,
2550
-                                /**
2551
-                                 * Filter if a custom field should be displayed on the details page tab.
2552
-                                 *
2553
-                                 * @since 1.0.0
2554
-                                 * @param string $htmlvar_name The field HTML var name.
2555
-                                 */
2556
-                                'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2557
-                                'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2558
-                            );
2559
-                        }
2560
-                    } else {
2561
-                        if ($html != '') {
2562
-                            $tabs_arr[$html_var] = array(
2563
-                                'heading_text' => __($label, 'geodirectory'),
2564
-                                'is_active_tab' => false,
2565
-                                /** This action is documented in geodirectory_hooks_actions.php */
2566
-                                'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
2567
-                                'tab_content' => $html
2568
-                            );
2569
-                        }
2570
-                    }
2571
-                }
2572
-            }
2573
-        }
2574
-    }
2575
-    return $tabs_arr;
2450
+			$post = stripslashes_deep($post); // strip slashes
2451
+            
2452
+			$field_set_start = 0;
2453
+			$fieldset_count = 0;
2454
+			$fieldset = '';
2455
+			$total_fields = count($custom_fields);
2456
+			$count_field = 0;
2457
+			$fieldset_arr = array();
2458
+			$i = 0;
2459
+			$geodir_post_info = isset($post->ID) && !empty($post->ID) ? geodir_get_post_info($post->ID) : NULL;
2460
+
2461
+			foreach ($custom_fields as $field) {
2462
+				$count_field++;
2463
+				$field_name = $field['htmlvar_name'];
2464
+				if (empty($geodir_post_info) && geodir_is_page('preview') && $field_name != '' && !isset($post->{$field_name}) && isset($_REQUEST[$field_name])) {
2465
+					$post->{$field_name} = $_REQUEST[$field_name];
2466
+				}
2467
+
2468
+				if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2469
+					$label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2470
+					$site_title = trim($field['site_title']);
2471
+					$type = $field;
2472
+					$variables_array = array();
2473
+
2474
+					if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2475
+						continue;
2476
+					}
2477
+
2478
+					if ($type['type'] != 'fieldset') {
2479
+						$i++;
2480
+						$variables_array['post_id'] = $post->ID;
2481
+						$variables_array['label'] = __($type['site_title'], 'geodirectory');
2482
+						$variables_array['value'] = '';
2483
+						$variables_array['value'] = $post->{$type['htmlvar_name']};
2484
+					}else{
2485
+						$i = 0;
2486
+						$fieldset_count++;
2487
+						$field_set_start = 1;
2488
+						$fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2489
+						$fieldset_arr[$fieldset_count]['label'] = $label;
2490
+					}
2491
+
2492
+
2493
+					if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
2494
+					$type = stripslashes_deep($type); // strip slashes
2495
+					if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
2496
+					$html = '';
2497
+					$html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2498
+					if($html_var=='post'){$html_var='post_address';}
2499
+					$field_icon = geodir_field_icon_proccess($type);
2500
+					$filed_type = $type['type'];
2501
+
2502
+					/**
2503
+					 * Filter the output for custom fields.
2504
+					 *
2505
+					 * Here we can remove or add new functions depending on the field type.
2506
+					 *
2507
+					 * @param string $html The html to be filtered (blank).
2508
+					 * @param string $fields_location The location the field is to be show.
2509
+					 * @param array $type The array of field values.
2510
+					 */
2511
+					$html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2512
+
2513
+
2514
+					/**
2515
+					 * Filter custom field output in tab.
2516
+					 *
2517
+					 * @since 1.5.6
2518
+					 *
2519
+					 * @param string $html_var The HTML variable name for the field.
2520
+					 * @param string $html Custom field unfiltered HTML.
2521
+					 * @param array $variables_array Custom field variables array.
2522
+					 */
2523
+					$html = apply_filters("geodir_tab_show_{$html_var}", $html, $variables_array);
2524
+
2525
+					$fieldset_html = '';
2526
+					if ($field_set_start == 1) {
2527
+						$add_html = false;
2528
+						if ($type['type'] == 'fieldset' && $fieldset_count > 1) {
2529
+							if ($fieldset != '') {
2530
+								$add_html = true;
2531
+								$label = $fieldset_arr[$fieldset_count - 1]['label'];
2532
+								$htmlvar_name = $fieldset_arr[$fieldset_count - 1]['htmlvar_name'];
2533
+							}
2534
+							$fieldset_html = $fieldset;
2535
+							$fieldset = '';
2536
+						} else {
2537
+							$fieldset .= $html;
2538
+							if ($total_fields == $count_field && $fieldset != '') {
2539
+								$add_html = true;
2540
+								$label = $fieldset_arr[$fieldset_count]['label'];
2541
+								$htmlvar_name = $fieldset_arr[$fieldset_count]['htmlvar_name'];
2542
+								$fieldset_html = $fieldset;
2543
+							}
2544
+						}
2545
+
2546
+						if ($add_html) {
2547
+							$tabs_arr[$htmlvar_name] = array(
2548
+								'heading_text' => __($label, 'geodirectory'),
2549
+								'is_active_tab' => false,
2550
+								/**
2551
+								 * Filter if a custom field should be displayed on the details page tab.
2552
+								 *
2553
+								 * @since 1.0.0
2554
+								 * @param string $htmlvar_name The field HTML var name.
2555
+								 */
2556
+								'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2557
+								'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2558
+							);
2559
+						}
2560
+					} else {
2561
+						if ($html != '') {
2562
+							$tabs_arr[$html_var] = array(
2563
+								'heading_text' => __($label, 'geodirectory'),
2564
+								'is_active_tab' => false,
2565
+								/** This action is documented in geodirectory_hooks_actions.php */
2566
+								'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $field['htmlvar_name']),
2567
+								'tab_content' => $html
2568
+							);
2569
+						}
2570
+					}
2571
+				}
2572
+			}
2573
+		}
2574
+	}
2575
+	return $tabs_arr;
2576 2576
 }
2577 2577
 
2578 2578
 /* display add listing page for wpml */
@@ -2596,39 +2596,39 @@  discard block
 block discarded – undo
2596 2596
  */
2597 2597
 function geodir_add_post_status_author_page()
2598 2598
 {
2599
-    global $wpdb, $post;
2600
-
2601
-    $html = '';
2602
-    if (get_current_user_id()) {
2603
-
2604
-        $is_author_page = apply_filters('geodir_post_status_is_author_page', geodir_is_page('author'));
2605
-        if ($is_author_page && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
2606
-
2607
-            // we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them.
2608
-            $real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
2609
-            $status = "<strong>(";
2610
-            $status_icon = '<i class="fa fa-play"></i>';
2611
-            if ($real_status == 'publish') {
2612
-                $status .= __('Published', 'geodirectory');
2613
-            } else {
2614
-                $status .= __('Not published', 'geodirectory');
2615
-                $status_icon = '<i class="fa fa-pause"></i>';
2616
-            }
2617
-            $status .= ")</strong>";
2599
+	global $wpdb, $post;
2600
+
2601
+	$html = '';
2602
+	if (get_current_user_id()) {
2603
+
2604
+		$is_author_page = apply_filters('geodir_post_status_is_author_page', geodir_is_page('author'));
2605
+		if ($is_author_page && !empty($post) && isset($post->post_author) && $post->post_author == get_current_user_id()) {
2606
+
2607
+			// we need to query real status direct as we dynamically change the status for author on author page so even non author status can view them.
2608
+			$real_status = $wpdb->get_var("SELECT post_status from $wpdb->posts WHERE ID=$post->ID");
2609
+			$status = "<strong>(";
2610
+			$status_icon = '<i class="fa fa-play"></i>';
2611
+			if ($real_status == 'publish') {
2612
+				$status .= __('Published', 'geodirectory');
2613
+			} else {
2614
+				$status .= __('Not published', 'geodirectory');
2615
+				$status_icon = '<i class="fa fa-pause"></i>';
2616
+			}
2617
+			$status .= ")</strong>";
2618 2618
 
2619
-            $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2620
-        }
2621
-    }
2619
+			$html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2620
+		}
2621
+	}
2622 2622
 
2623
-    if ($html != '') {
2624
-        /**
2625
-         * Filter the post status text on the author page.
2626
-         *
2627
-         * @since 1.0.0
2628
-         * @param string $html The HTML of the status.
2629
-         */
2630
-        echo apply_filters('geodir_filter_status_text_on_author_page', $html);
2631
-    }
2623
+	if ($html != '') {
2624
+		/**
2625
+		 * Filter the post status text on the author page.
2626
+		 *
2627
+		 * @since 1.0.0
2628
+		 * @param string $html The HTML of the status.
2629
+		 */
2630
+		echo apply_filters('geodir_filter_status_text_on_author_page', $html);
2631
+	}
2632 2632
 
2633 2633
 
2634 2634
 }
@@ -2642,9 +2642,9 @@  discard block
 block discarded – undo
2642 2642
  * @package GeoDirectory
2643 2643
  */
2644 2644
 function geodir_init_no_rating() {
2645
-    if (geodir_rating_disabled_post_types()) {
2646
-        add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
2647
-    }
2645
+	if (geodir_rating_disabled_post_types()) {
2646
+		add_filter('geodir_get_sort_options', 'geodir_no_rating_get_sort_options', 100, 2);
2647
+	}
2648 2648
 }
2649 2649
 
2650 2650
 /**
@@ -2658,22 +2658,22 @@  discard block
 block discarded – undo
2658 2658
  * @return array Modified sort options array.
2659 2659
  */
2660 2660
 function geodir_no_rating_get_sort_options($options, $post_type = '') {
2661
-    if (!empty($post_type) && geodir_cpt_has_rating_disabled($post_type)) {
2662
-        $new_options = array();
2661
+	if (!empty($post_type) && geodir_cpt_has_rating_disabled($post_type)) {
2662
+		$new_options = array();
2663 2663
         
2664
-        if (!empty($options)) {
2665
-            foreach ($options as $option) {
2666
-                if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
2667
-                    continue;
2668
-                }
2669
-                $new_options[] = $option;
2670
-            }
2664
+		if (!empty($options)) {
2665
+			foreach ($options as $option) {
2666
+				if (is_object($option) && isset($option->htmlvar_name) && $option->htmlvar_name == 'overall_rating') {
2667
+					continue;
2668
+				}
2669
+				$new_options[] = $option;
2670
+			}
2671 2671
 
2672
-            $options = $new_options;
2673
-        }
2674
-    }
2672
+			$options = $new_options;
2673
+		}
2674
+	}
2675 2675
 
2676
-    return $options;
2676
+	return $options;
2677 2677
 }
2678 2678
 
2679 2679
 /**
@@ -2685,9 +2685,9 @@  discard block
 block discarded – undo
2685 2685
  * @return array Modified class array.
2686 2686
  */
2687 2687
 function geodir_body_class_active_map($classes = array()) {
2688
-    $classes[] = 'gd-map-' . geodir_map_name();
2688
+	$classes[] = 'gd-map-' . geodir_map_name();
2689 2689
 
2690
-    return $classes;
2690
+	return $classes;
2691 2691
 }
2692 2692
 add_filter('body_class', 'geodir_body_class_active_map', 100);
2693 2693
 
@@ -2700,9 +2700,9 @@  discard block
 block discarded – undo
2700 2700
  * @return string Modified class string.
2701 2701
  */
2702 2702
 function geodir_admin_body_class_active_map($class = '') {    
2703
-    $class .= ' gd-map-' . geodir_map_name();
2703
+	$class .= ' gd-map-' . geodir_map_name();
2704 2704
 
2705
-    return $class;
2705
+	return $class;
2706 2706
 }
2707 2707
 add_filter('admin_body_class', 'geodir_admin_body_class_active_map', 100);
2708 2708
 
@@ -2720,36 +2720,36 @@  discard block
 block discarded – undo
2720 2720
  * @return array Translation texts.
2721 2721
  */
2722 2722
 function geodir_load_gd_options_text_translation($translation_texts = array()) {
2723
-    $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2724
-
2725
-    $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
2726
-
2727
-    /**
2728
-     * Filters the geodirectory option names that requires to add for translation.
2729
-     *
2730
-     * @since 1.5.7
2731
-     * @package GeoDirectory
2732
-     *
2733
-     * @param  array $gd_options Array of option names.
2734
-     */
2735
-    $gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
2736
-    $gd_options = array_unique($gd_options);
2737
-
2738
-    if (!empty($gd_options)) {
2739
-        foreach ($gd_options as $gd_option) {
2740
-            if ($gd_option != '' && $option_value = get_option($gd_option)) {
2741
-                $option_value = is_string($option_value) ? stripslashes_deep($option_value) : '';
2723
+	$translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2724
+
2725
+	$gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
2726
+
2727
+	/**
2728
+	 * Filters the geodirectory option names that requires to add for translation.
2729
+	 *
2730
+	 * @since 1.5.7
2731
+	 * @package GeoDirectory
2732
+	 *
2733
+	 * @param  array $gd_options Array of option names.
2734
+	 */
2735
+	$gd_options = apply_filters('geodir_gd_options_for_translation', $gd_options);
2736
+	$gd_options = array_unique($gd_options);
2737
+
2738
+	if (!empty($gd_options)) {
2739
+		foreach ($gd_options as $gd_option) {
2740
+			if ($gd_option != '' && $option_value = get_option($gd_option)) {
2741
+				$option_value = is_string($option_value) ? stripslashes_deep($option_value) : '';
2742 2742
                 
2743
-                if ($option_value != '' && !in_array($option_value, $translation_texts)) {
2744
-                    $translation_texts[] = stripslashes_deep($option_value);
2745
-                }
2746
-            }
2747
-        }
2748
-    }
2743
+				if ($option_value != '' && !in_array($option_value, $translation_texts)) {
2744
+					$translation_texts[] = stripslashes_deep($option_value);
2745
+				}
2746
+			}
2747
+		}
2748
+	}
2749 2749
 
2750
-    $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
2750
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
2751 2751
 
2752
-    return $translation_texts;
2752
+	return $translation_texts;
2753 2753
 }
2754 2754
 
2755 2755
 add_filter('geodir_load_db_language', 'geodir_load_gd_options_text_translation');
@@ -2763,15 +2763,15 @@  discard block
 block discarded – undo
2763 2763
 
2764 2764
 add_filter('get_comments_link', 'gd_get_comments_link', 10, 2);
2765 2765
 function gd_get_comments_link($comments_link, $post_id) {
2766
-    $post_type = get_post_type($post_id);
2766
+	$post_type = get_post_type($post_id);
2767 2767
 
2768
-    $all_postypes = geodir_get_posttypes();
2769
-    if (in_array($post_type, $all_postypes)) {
2770
-        $comments_link = str_replace('#comments', '#reviews', $comments_link);
2771
-        $comments_link = str_replace('#respond', '#reviews', $comments_link);
2772
-    }
2768
+	$all_postypes = geodir_get_posttypes();
2769
+	if (in_array($post_type, $all_postypes)) {
2770
+		$comments_link = str_replace('#comments', '#reviews', $comments_link);
2771
+		$comments_link = str_replace('#respond', '#reviews', $comments_link);
2772
+	}
2773 2773
 
2774
-    return $comments_link;
2774
+	return $comments_link;
2775 2775
 }
2776 2776
 
2777 2777
 
@@ -2789,11 +2789,11 @@  discard block
 block discarded – undo
2789 2789
 function geodir_add_nav_menu_class( $args )
2790 2790
 {
2791 2791
 
2792
-        if(isset($args['menu_class'])){
2793
-            $args['menu_class'] = $args['menu_class']." gd-menu-z";
2794
-        }
2792
+		if(isset($args['menu_class'])){
2793
+			$args['menu_class'] = $args['menu_class']." gd-menu-z";
2794
+		}
2795 2795
     
2796
-    return $args;
2796
+	return $args;
2797 2797
 }
2798 2798
 
2799 2799
 add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' );
@@ -2810,15 +2810,15 @@  discard block
 block discarded – undo
2810 2810
  * @return string Filtered locale ID.
2811 2811
  */
2812 2812
 function geodir_wpml_filter_locale($locale) {
2813
-    global $sitepress;
2813
+	global $sitepress;
2814 2814
     
2815
-    $post_type = !empty($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (!empty($_REQUEST['post']) ? get_post_type($_REQUEST['post']) : '');
2815
+	$post_type = !empty($_REQUEST['post_type']) ? $_REQUEST['post_type'] : (!empty($_REQUEST['post']) ? get_post_type($_REQUEST['post']) : '');
2816 2816
     
2817
-    if (!empty($sitepress) && $sitepress->is_post_edit_screen() && $post_type && in_array($post_type, geodir_get_posttypes()) && $current_lang = $sitepress->get_current_language()) {
2818
-        $locale = $sitepress->get_locale($current_lang);
2819
-    }
2817
+	if (!empty($sitepress) && $sitepress->is_post_edit_screen() && $post_type && in_array($post_type, geodir_get_posttypes()) && $current_lang = $sitepress->get_current_language()) {
2818
+		$locale = $sitepress->get_locale($current_lang);
2819
+	}
2820 2820
     
2821
-    return $locale;
2821
+	return $locale;
2822 2822
 }
2823 2823
 
2824 2824
 /**
@@ -2828,15 +2828,15 @@  discard block
 block discarded – undo
2828 2828
  * @package GeoDirectory
2829 2829
  */
2830 2830
 function geodir_wpml_set_filter() {
2831
-    if (function_exists('icl_object_id')) {
2832
-        global $sitepress;
2831
+	if (function_exists('icl_object_id')) {
2832
+		global $sitepress;
2833 2833
         
2834
-        if ($sitepress->get_setting('sync_comments_on_duplicates')) {
2835
-            add_action('comment_post', 'gepdir_wpml_sync_comment', 100, 1);
2836
-        }
2834
+		if ($sitepress->get_setting('sync_comments_on_duplicates')) {
2835
+			add_action('comment_post', 'gepdir_wpml_sync_comment', 100, 1);
2836
+		}
2837 2837
         
2838
-        add_action('geodir_after_save_listing', 'geodir_wpml_duplicate_listing', 100, 2);
2839
-    }
2838
+		add_action('geodir_after_save_listing', 'geodir_wpml_duplicate_listing', 100, 2);
2839
+	}
2840 2840
 }
2841 2841
 add_filter('plugins_loaded', 'geodir_wpml_set_filter');
2842 2842
 
@@ -2849,38 +2849,38 @@  discard block
 block discarded – undo
2849 2849
  * @return array Filtered languages.
2850 2850
  */
2851 2851
 function geodir_wpml_filter_ls_languages($languages) {    
2852
-    if (geodir_is_geodir_page()) {        
2853
-        $keep_vars = array();
2852
+	if (geodir_is_geodir_page()) {        
2853
+		$keep_vars = array();
2854 2854
         
2855
-        if (geodir_is_page('add-listing')) {
2856
-            $keep_vars = array('listing_type', 'package_id');
2857
-        } else if (geodir_is_page('search')) {
2858
-            $keep_vars = array('geodir_search', 'stype', 'snear', 'set_location_type', 'set_location_val', 'sgeo_lat', 'sgeo_lon');
2859
-        } else if (geodir_is_page('author')) {
2860
-            $keep_vars = array('geodir_dashbord', 'stype', 'list');
2861
-        } else if (geodir_is_page('login')) {
2862
-            $keep_vars = array('forgot', 'signup');
2863
-        }        
2855
+		if (geodir_is_page('add-listing')) {
2856
+			$keep_vars = array('listing_type', 'package_id');
2857
+		} else if (geodir_is_page('search')) {
2858
+			$keep_vars = array('geodir_search', 'stype', 'snear', 'set_location_type', 'set_location_val', 'sgeo_lat', 'sgeo_lon');
2859
+		} else if (geodir_is_page('author')) {
2860
+			$keep_vars = array('geodir_dashbord', 'stype', 'list');
2861
+		} else if (geodir_is_page('login')) {
2862
+			$keep_vars = array('forgot', 'signup');
2863
+		}        
2864 2864
         
2865
-        if (!empty($keep_vars)) {
2866
-            foreach ( $languages as $code => $url) {
2867
-                $filter_url = $url['url'];
2865
+		if (!empty($keep_vars)) {
2866
+			foreach ( $languages as $code => $url) {
2867
+				$filter_url = $url['url'];
2868 2868
                 
2869
-                foreach ($keep_vars as $var) {
2870
-                    if (isset($_GET[$var]) && !is_array($_GET[$var])) {
2871
-                        $filter_url = remove_query_arg(array($var), $filter_url);
2872
-                        $filter_url = add_query_arg(array($var => $_GET[$var]), $filter_url);
2873
-                    }
2874
-                }
2869
+				foreach ($keep_vars as $var) {
2870
+					if (isset($_GET[$var]) && !is_array($_GET[$var])) {
2871
+						$filter_url = remove_query_arg(array($var), $filter_url);
2872
+						$filter_url = add_query_arg(array($var => $_GET[$var]), $filter_url);
2873
+					}
2874
+				}
2875 2875
                 
2876
-                if ($filter_url != $url['url']) {
2877
-                    $languages[$code]['url'] = $filter_url;
2878
-                }
2879
-            }
2880
-        }
2881
-    }
2876
+				if ($filter_url != $url['url']) {
2877
+					$languages[$code]['url'] = $filter_url;
2878
+				}
2879
+			}
2880
+		}
2881
+	}
2882 2882
 
2883
-    return $languages;
2883
+	return $languages;
2884 2884
 }
2885 2885
 add_filter( 'icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1 );
2886 2886
 
@@ -2891,18 +2891,18 @@  discard block
 block discarded – undo
2891 2891
  *
2892 2892
  */
2893 2893
 function geodir_remove_yoast_seo_metas(){
2894
-    if ( class_exists( 'WPSEO_Frontend' ) && geodir_is_geodir_page() && geodir_disable_yoast_seo_metas() ) {
2895
-        $wpseo = WPSEO_Frontend::get_instance();
2894
+	if ( class_exists( 'WPSEO_Frontend' ) && geodir_is_geodir_page() && geodir_disable_yoast_seo_metas() ) {
2895
+		$wpseo = WPSEO_Frontend::get_instance();
2896 2896
         
2897
-        remove_action( 'wp_head', array( $wpseo, 'metadesc' ), 6 );
2898
-        remove_action( 'wp_head', array( $wpseo, 'metakeywords' ), 11 );
2899
-        remove_filter( 'pre_get_document_title', array( $wpseo, 'title' ), 15 );
2900
-        remove_filter( 'wp_title', array( $wpseo, 'title' ), 15, 3 );
2901
-        remove_filter( 'thematic_doctitle', array( $wpseo, 'title' ), 15 );
2902
-        remove_filter( 'woo_title', array( $wpseo, 'fix_woo_title' ), 99 );
2897
+		remove_action( 'wp_head', array( $wpseo, 'metadesc' ), 6 );
2898
+		remove_action( 'wp_head', array( $wpseo, 'metakeywords' ), 11 );
2899
+		remove_filter( 'pre_get_document_title', array( $wpseo, 'title' ), 15 );
2900
+		remove_filter( 'wp_title', array( $wpseo, 'title' ), 15, 3 );
2901
+		remove_filter( 'thematic_doctitle', array( $wpseo, 'title' ), 15 );
2902
+		remove_filter( 'woo_title', array( $wpseo, 'fix_woo_title' ), 99 );
2903 2903
         
2904
-        remove_action( 'template_redirect', 'wpseo_frontend_head_init', 999 );
2905
-    }
2904
+		remove_action( 'template_redirect', 'wpseo_frontend_head_init', 999 );
2905
+	}
2906 2906
 }
2907 2907
 
2908 2908
 /**
@@ -2916,20 +2916,20 @@  discard block
 block discarded – undo
2916 2916
  *
2917 2917
  */
2918 2918
  function geodir_wpml_ajax_set_guest_lang() {    
2919
-    if ( geodir_is_wpml() && wpml_is_ajax() && !is_user_logged_in() ) {
2920
-        if ( empty( $_GET['lang'] ) && !( !empty( $_SERVER['REQUEST_URI'] ) && preg_match( '@\.(css|js|png|jpg|gif|jpeg|bmp)@i', basename( preg_replace( '@\?.*$@', '', $_SERVER['REQUEST_URI'] ) ) ) ) ) {
2921
-            global $sitepress;
2919
+	if ( geodir_is_wpml() && wpml_is_ajax() && !is_user_logged_in() ) {
2920
+		if ( empty( $_GET['lang'] ) && !( !empty( $_SERVER['REQUEST_URI'] ) && preg_match( '@\.(css|js|png|jpg|gif|jpeg|bmp)@i', basename( preg_replace( '@\?.*$@', '', $_SERVER['REQUEST_URI'] ) ) ) ) ) {
2921
+			global $sitepress;
2922 2922
             
2923
-            $referer = wp_get_referer();
2923
+			$referer = wp_get_referer();
2924 2924
             
2925
-            $current_lang = $sitepress->get_current_language();
2926
-            $referrer_lang = $sitepress->get_language_from_url( $referer );
2925
+			$current_lang = $sitepress->get_current_language();
2926
+			$referrer_lang = $sitepress->get_language_from_url( $referer );
2927 2927
             
2928
-            if ( $referrer_lang && $current_lang != $referrer_lang ) {
2929
-                $_GET['lang'] = $referrer_lang;
2930
-            }
2931
-        }
2932
-    }
2928
+			if ( $referrer_lang && $current_lang != $referrer_lang ) {
2929
+				$_GET['lang'] = $referrer_lang;
2930
+			}
2931
+		}
2932
+	}
2933 2933
 }
2934 2934
 add_action( 'plugins_loaded', 'geodir_wpml_ajax_set_guest_lang', -1 );
2935 2935
 
@@ -2941,35 +2941,35 @@  discard block
 block discarded – undo
2941 2941
  * @param object $wp The WordPress object.
2942 2942
  */
2943 2943
 function geodir_check_redirect($wp) {
2944
-    if (is_404() || (!empty($wp->query_vars['error']) && $wp->query_vars['error'] == '404')) {
2945
-        $current_url = geodir_curPageURL();
2946
-        $search = 'czech-republic';
2947
-        $replace = 'czechia';        
2944
+	if (is_404() || (!empty($wp->query_vars['error']) && $wp->query_vars['error'] == '404')) {
2945
+		$current_url = geodir_curPageURL();
2946
+		$search = 'czech-republic';
2947
+		$replace = 'czechia';        
2948 2948
         
2949
-        $has_slash = substr($current_url, -1);
2950
-        if ($has_slash != "/") {
2951
-            $current_url .= '/';
2952
-        }
2949
+		$has_slash = substr($current_url, -1);
2950
+		if ($has_slash != "/") {
2951
+			$current_url .= '/';
2952
+		}
2953 2953
         
2954
-        $redirect = false;
2955
-        if (strpos($current_url, '/' . $search . '/') !== false) {
2956
-            $redirect = true;
2957
-            $current_url = preg_replace('/\/' . $search . '\//', '/' . $replace . '/', $current_url, 1);
2958
-        }
2954
+		$redirect = false;
2955
+		if (strpos($current_url, '/' . $search . '/') !== false) {
2956
+			$redirect = true;
2957
+			$current_url = preg_replace('/\/' . $search . '\//', '/' . $replace . '/', $current_url, 1);
2958
+		}
2959 2959
         
2960
-        if ($has_slash != "/") {
2961
-            $current_url = trim($current_url, '/');
2962
-        }
2960
+		if ($has_slash != "/") {
2961
+			$current_url = trim($current_url, '/');
2962
+		}
2963 2963
         
2964
-        if (strpos($current_url, 'gd_country=' . $search) !== false) {
2965
-            $redirect = true;
2966
-            $current_url = str_replace('gd_country=' . $search, 'gd_country=' . $replace, $current_url);
2967
-        }
2968
-
2969
-        if ($redirect) {
2970
-            wp_redirect($current_url);
2971
-            exit;
2972
-        }
2973
-    }
2964
+		if (strpos($current_url, 'gd_country=' . $search) !== false) {
2965
+			$redirect = true;
2966
+			$current_url = str_replace('gd_country=' . $search, 'gd_country=' . $replace, $current_url);
2967
+		}
2968
+
2969
+		if ($redirect) {
2970
+			wp_redirect($current_url);
2971
+			exit;
2972
+		}
2973
+	}
2974 2974
 }
2975 2975
 add_action('parse_request', 'geodir_check_redirect', 101, 1);
2976 2976
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +169 added lines, -169 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 /* ON TEMPLATE INCLUDE */
137 137
 /////////////////////////
138 138
 
139
-add_filter('template_include', 'geodir_template_loader',9);
139
+add_filter('template_include', 'geodir_template_loader', 9);
140 140
 
141 141
 /////////////////////////
142 142
 /* CATEGORY / TAXONOMY / CUSTOM POST ACTIONS */
@@ -176,9 +176,9 @@  discard block
 block discarded – undo
176 176
 /* WP REVIEW COUNT ACTIONS */
177 177
 ////////////////////////
178 178
 
179
-add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100,1);
179
+add_action('geodir_update_postrating', 'geodir_term_review_count_force_update_single_post', 100, 1);
180 180
 //add_action('geodir_update_postrating', 'geodir_term_review_count_force_update', 100);
181
-add_action('transition_post_status', 'geodir_term_review_count_force_update', 100,3);
181
+add_action('transition_post_status', 'geodir_term_review_count_force_update', 100, 3);
182 182
 //add_action('created_term', 'geodir_term_review_count_force_update', 100);
183 183
 add_action('edited_term', 'geodir_term_review_count_force_update', 100);
184 184
 add_action('delete_term', 'geodir_term_review_count_force_update', 100);
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
  */
224 224
 function geodir_unset_prev_theme_nav_location($newname)
225 225
 {
226
-    $geodir_theme_location = get_option('geodir_theme_location_nav_' . $newname);
226
+    $geodir_theme_location = get_option('geodir_theme_location_nav_'.$newname);
227 227
     if ($geodir_theme_location) {
228 228
         update_option('geodir_theme_location_nav', $geodir_theme_location);
229 229
     } else {
@@ -321,8 +321,8 @@  discard block
 block discarded – undo
321 321
 
322 322
 /////// GEO DIRECOTORY CUSTOM HOOKS ///
323 323
 
324
-add_action('geodir_before_tab_content', 'geodir_before_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content 
325
-add_action('geodir_after_tab_content', 'geodir_after_tab_content');// this function is in custom_functions.php and it is used to wrap detail page tab content
324
+add_action('geodir_before_tab_content', 'geodir_before_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content 
325
+add_action('geodir_after_tab_content', 'geodir_after_tab_content'); // this function is in custom_functions.php and it is used to wrap detail page tab content
326 326
 
327 327
 // Detail page sidebar content 
328 328
 add_action('geodir_detail_page_sidebar', 'geodir_detail_page_sidebar_content_sorting', 1);
@@ -422,8 +422,8 @@  discard block
 block discarded – undo
422 422
     do_action('geodir_after_social_sharing_buttons');
423 423
     $content_html = ob_get_clean();
424 424
     if (trim($content_html) != '')
425
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">' . $content_html . '</div>';
426
-    if ((int)get_option('geodir_disable_tfg_buttons_section') != 1) {
425
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-social-sharing">'.$content_html.'</div>';
426
+    if ((int) get_option('geodir_disable_tfg_buttons_section') != 1) {
427 427
         /**
428 428
          * Filter the geodir_social_sharing_buttons() function content.
429 429
          *
@@ -463,12 +463,12 @@  discard block
 block discarded – undo
463 463
             $post_id = $post->ID;
464 464
             
465 465
             if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
466
-                $post_id = (int)$_REQUEST['pid'];
466
+                $post_id = (int) $_REQUEST['pid'];
467 467
             }
468 468
 
469 469
             $postlink = get_permalink(geodir_add_listing_page_id());
470 470
             $editlink = geodir_getlink($postlink, array('pid' => $post_id), false);
471
-            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="' . esc_url($editlink) . '">' . __('Edit this Post', 'geodirectory') . '</a></p>';
471
+            echo ' <p class="edit_link"><i class="fa fa-pencil"></i> <a href="'.esc_url($editlink).'">'.__('Edit this Post', 'geodirectory').'</a></p>';
472 472
         }
473 473
     }// end of if, if its a preview or not
474 474
     /**
@@ -479,8 +479,8 @@  discard block
 block discarded – undo
479 479
     do_action('geodir_after_edit_post_link');
480 480
     $content_html = ob_get_clean();
481 481
     if (trim($content_html) != '')
482
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">' . $content_html . '</div>';
483
-    if ((int)get_option('geodir_disable_user_links_section') != 1) {
482
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-user-links">'.$content_html.'</div>';
483
+    if ((int) get_option('geodir_disable_user_links_section') != 1) {
484 484
         /**
485 485
          * Filter the geodir_edit_post_link() function content.
486 486
          *
@@ -501,8 +501,8 @@  discard block
 block discarded – undo
501 501
  */
502 502
 function geodir_detail_page_google_analytics()
503 503
 {
504
-    global $post,$preview;
505
-    if($preview){return '';}
504
+    global $post, $preview;
505
+    if ($preview) {return ''; }
506 506
     $package_info = array();
507 507
     $package_info = geodir_post_package_info($package_info, $post);
508 508
 
@@ -534,14 +534,14 @@  discard block
 block discarded – undo
534 534
     $hide_refresh = get_option('geodir_ga_auto_refresh');
535 535
     
536 536
     $auto_refresh = $hide_refresh && $refresh_time && $refresh_time > 0 ? 1 : 0;
537
-    if (get_option('geodir_ga_stats') && is_user_logged_in() &&  (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id()==$post->post_author || current_user_can( 'manage_options' )) ) {
537
+    if (get_option('geodir_ga_stats') && is_user_logged_in() && (isset($package_info->google_analytics) && $package_info->google_analytics == '1') && (get_current_user_id() == $post->post_author || current_user_can('manage_options'))) {
538 538
         $page_url = urlencode($_SERVER['REQUEST_URI']);
539 539
         ?>
540 540
         <script type="text/javascript">
541 541
             var gd_gaTimeOut;
542
-            var gd_gaTime = parseInt('<?php echo $refresh_time;?>');
543
-            var gd_gaHideRefresh = <?php echo (int)$hide_refresh;?>;
544
-            var gd_gaAutoRefresh = <?php echo $auto_refresh;?>;
542
+            var gd_gaTime = parseInt('<?php echo $refresh_time; ?>');
543
+            var gd_gaHideRefresh = <?php echo (int) $hide_refresh; ?>;
544
+            var gd_gaAutoRefresh = <?php echo $auto_refresh; ?>;
545 545
             ga_data1 = false;
546 546
             ga_data2 = false;
547 547
             ga_data3 = false;
@@ -682,7 +682,7 @@  discard block
 block discarded – undo
682 682
             }
683 683
 
684 684
             function gdga_noResults() {
685
-                jQuery('#gdga-chart-container').html('<?php _e('No results available','geodirectory');?>');
685
+                jQuery('#gdga-chart-container').html('<?php _e('No results available', 'geodirectory'); ?>');
686 686
                 jQuery('#gdga-legend-container').html('');
687 687
             }
688 688
 
@@ -714,18 +714,18 @@  discard block
 block discarded – undo
714 714
                     var data2 = results[1].rows.map(function(row) { return +row[2]; });
715 715
                     //var labelsN = results[0].rows.map(function(row) { return +row[1]; });
716 716
 
717
-                    var labels = ['<?php _e('Jan', 'geodirectory');?>',
718
-                        '<?php _e('Feb', 'geodirectory');?>',
719
-                        '<?php _e('Mar', 'geodirectory');?>',
720
-                        '<?php _e('Apr', 'geodirectory');?>',
721
-                        '<?php _e('May', 'geodirectory');?>',
722
-                        '<?php _e('Jun', 'geodirectory');?>',
723
-                        '<?php _e('Jul', 'geodirectory');?>',
724
-                        '<?php _e('Aug', 'geodirectory');?>',
725
-                        '<?php _e('Sep', 'geodirectory');?>',
726
-                        '<?php _e('Oct', 'geodirectory');?>',
727
-                        '<?php _e('Nov', 'geodirectory');?>',
728
-                        '<?php _e('Dec', 'geodirectory');?>'];
717
+                    var labels = ['<?php _e('Jan', 'geodirectory'); ?>',
718
+                        '<?php _e('Feb', 'geodirectory'); ?>',
719
+                        '<?php _e('Mar', 'geodirectory'); ?>',
720
+                        '<?php _e('Apr', 'geodirectory'); ?>',
721
+                        '<?php _e('May', 'geodirectory'); ?>',
722
+                        '<?php _e('Jun', 'geodirectory'); ?>',
723
+                        '<?php _e('Jul', 'geodirectory'); ?>',
724
+                        '<?php _e('Aug', 'geodirectory'); ?>',
725
+                        '<?php _e('Sep', 'geodirectory'); ?>',
726
+                        '<?php _e('Oct', 'geodirectory'); ?>',
727
+                        '<?php _e('Nov', 'geodirectory'); ?>',
728
+                        '<?php _e('Dec', 'geodirectory'); ?>'];
729 729
 
730 730
                     // Ensure the data arrays are at least as long as the labels array.
731 731
                     // Chart.js bar charts don't (yet) accept sparse datasets.
@@ -738,13 +738,13 @@  discard block
 block discarded – undo
738 738
                         labels : labels,
739 739
                         datasets : [
740 740
                             {
741
-                                label: '<?php _e('Last Year', 'geodirectory');?>',
741
+                                label: '<?php _e('Last Year', 'geodirectory'); ?>',
742 742
                                 fillColor : "rgba(220,220,220,0.5)",
743 743
                                 strokeColor : "rgba(220,220,220,1)",
744 744
                                 data : data2
745 745
                             },
746 746
                             {
747
-                                label: '<?php _e('This Year', 'geodirectory');?>',
747
+                                label: '<?php _e('This Year', 'geodirectory'); ?>',
748 748
                                 fillColor : "rgba(151,187,205,0.5)",
749 749
                                 strokeColor : "rgba(151,187,205,1)",
750 750
                                 data : data1
@@ -789,30 +789,30 @@  discard block
 block discarded – undo
789 789
 
790 790
                     <?php
791 791
                     // Here we list the shorthand days of the week so it can be used in translation.
792
-                    __("Mon",'geodirectory');
793
-                    __("Tue",'geodirectory');
794
-                    __("Wed",'geodirectory');
795
-                    __("Thu",'geodirectory');
796
-                    __("Fri",'geodirectory');
797
-                    __("Sat",'geodirectory');
798
-                    __("Sun",'geodirectory');
792
+                    __("Mon", 'geodirectory');
793
+                    __("Tue", 'geodirectory');
794
+                    __("Wed", 'geodirectory');
795
+                    __("Thu", 'geodirectory');
796
+                    __("Fri", 'geodirectory');
797
+                    __("Sat", 'geodirectory');
798
+                    __("Sun", 'geodirectory');
799 799
                     ?>
800 800
 
801 801
                     labels = [
802
-                        "<?php _e(date('D', strtotime("+1 day")),'geodirectory'); ?>",
803
-                        "<?php _e(date('D', strtotime("+2 day")),'geodirectory'); ?>",
804
-                        "<?php _e(date('D', strtotime("+3 day")),'geodirectory'); ?>",
805
-                        "<?php _e(date('D', strtotime("+4 day")),'geodirectory'); ?>",
806
-                        "<?php _e(date('D', strtotime("+5 day")),'geodirectory'); ?>",
807
-                        "<?php _e(date('D', strtotime("+6 day")),'geodirectory'); ?>",
808
-                        "<?php _e(date('D', strtotime("+7 day")),'geodirectory'); ?>"
802
+                        "<?php _e(date('D', strtotime("+1 day")), 'geodirectory'); ?>",
803
+                        "<?php _e(date('D', strtotime("+2 day")), 'geodirectory'); ?>",
804
+                        "<?php _e(date('D', strtotime("+3 day")), 'geodirectory'); ?>",
805
+                        "<?php _e(date('D', strtotime("+4 day")), 'geodirectory'); ?>",
806
+                        "<?php _e(date('D', strtotime("+5 day")), 'geodirectory'); ?>",
807
+                        "<?php _e(date('D', strtotime("+6 day")), 'geodirectory'); ?>",
808
+                        "<?php _e(date('D', strtotime("+7 day")), 'geodirectory'); ?>"
809 809
                     ];
810 810
 
811 811
                     var data = {
812 812
                         labels : labels,
813 813
                         datasets : [
814 814
                             {
815
-                                label: '<?php _e('Last Week', 'geodirectory');?>',
815
+                                label: '<?php _e('Last Week', 'geodirectory'); ?>',
816 816
                                 fillColor : "rgba(220,220,220,0.5)",
817 817
                                 strokeColor : "rgba(220,220,220,1)",
818 818
                                 pointColor : "rgba(220,220,220,1)",
@@ -820,7 +820,7 @@  discard block
 block discarded – undo
820 820
                                 data : data2
821 821
                             },
822 822
                             {
823
-                                label: '<?php _e('This Week', 'geodirectory');?>',
823
+                                label: '<?php _e('This Week', 'geodirectory'); ?>',
824 824
                                 fillColor : "rgba(151,187,205,0.5)",
825 825
                                 strokeColor : "rgba(151,187,205,1)",
826 826
                                 pointColor : "rgba(151,187,205,1)",
@@ -1027,18 +1027,18 @@  discard block
 block discarded – undo
1027 1027
         </style>
1028 1028
         <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.min.js"></script>
1029 1029
         <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.2/moment.min.js"></script>
1030
-        <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory');?></button>
1030
+        <button type="button" class="gdga-show-analytics"><?php _e('Show Google Analytics', 'geodirectory'); ?></button>
1031 1031
         <span id="ga_stats" class="gdga-analytics-box" style="display:none">
1032
-            <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory');?></div>
1032
+            <div id="ga-analytics-title"><?php _e("Analytics", 'geodirectory'); ?></div>
1033 1033
             <div id="gd-active-users-container">
1034
-                <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory');?>"></i><?php _e("Active Users:", 'geodirectory');?>
1034
+                <div class="gd-ActiveUsers"><i id="gdga-loader-icon" class="fa fa-refresh fa-spin" title="<?php esc_attr_e("Refresh", 'geodirectory'); ?>"></i><?php _e("Active Users:", 'geodirectory'); ?>
1035 1035
                     <b class="gd-ActiveUsers-value">0</b>
1036 1036
                 </div>
1037 1037
             </div>
1038 1038
             <select id="gdga-select-analytic" onchange="gdga_select_option();" style="display: none;">
1039
-                <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory');?></option>
1040
-                <option value="years"><?php _e("This Year vs Last Year", 'geodirectory');?></option>
1041
-                <option value="country"><?php _e("Top Countries", 'geodirectory');?></option>
1039
+                <option value="weeks"><?php _e("Last Week vs This Week", 'geodirectory'); ?></option>
1040
+                <option value="years"><?php _e("This Year vs Last Year", 'geodirectory'); ?></option>
1041
+                <option value="country"><?php _e("Top Countries", 'geodirectory'); ?></option>
1042 1042
             </select>
1043 1043
             <div class="Chartjs-figure" id="gdga-chart-container"></div>
1044 1044
             <ol class="Chartjs-legend" id="gdga-legend-container"></ol>
@@ -1054,8 +1054,8 @@  discard block
 block discarded – undo
1054 1054
     do_action('geodir_after_google_analytics');
1055 1055
     $content_html = ob_get_clean();
1056 1056
     if (trim($content_html) != '')
1057
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">' . $content_html . '</div>';
1058
-    if ((int)get_option('geodir_disable_google_analytics_section') != 1) {
1057
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-google-analytics">'.$content_html.'</div>';
1058
+    if ((int) get_option('geodir_disable_google_analytics_section') != 1) {
1059 1059
         /**
1060 1060
          * Filter the geodir_edit_post_link() function content.
1061 1061
          *
@@ -1081,7 +1081,7 @@  discard block
 block discarded – undo
1081 1081
 {
1082 1082
     global $post, $preview, $post_images;
1083 1083
     
1084
-    if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int)$post->ID)) {
1084
+    if (!empty($post->ID) && geodir_cpt_has_rating_disabled((int) $post->ID)) {
1085 1085
         return;
1086 1086
     }
1087 1087
     ob_start(); // Start  buffering;
@@ -1116,10 +1116,10 @@  discard block
 block discarded – undo
1116 1116
        
1117 1117
 	   $reviews_text = $comment_count > 1 ? __("reviews", 'geodirectory') : __("review", 'geodirectory');
1118 1118
 	   
1119
-	   $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="' . $post_avgratings . '">' . $post_avgratings . '</span> / <span itemprop="best" content="5">5</span> ' . __("based on", 'geodirectory') . ' </span><span class="count" itemprop="count" content="' . $comment_count . '">' . $comment_count . ' ' . $reviews_text . '</span><br />';
1119
+	   $html .= '<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating"><span class="rating" itemprop="average" content="'.$post_avgratings.'">'.$post_avgratings.'</span> / <span itemprop="best" content="5">5</span> '.__("based on", 'geodirectory').' </span><span class="count" itemprop="count" content="'.$comment_count.'">'.$comment_count.' '.$reviews_text.'</span><br />';
1120 1120
 
1121 1121
         $html .= '<span class="item">';
1122
-        $html .= '<span class="fn" itemprop="itemreviewed">' . $post->post_title . '</span>';
1122
+        $html .= '<span class="fn" itemprop="itemreviewed">'.$post->post_title.'</span>';
1123 1123
 
1124 1124
         if ($post_images) {
1125 1125
             foreach ($post_images as $img) {
@@ -1129,7 +1129,7 @@  discard block
 block discarded – undo
1129 1129
         }
1130 1130
 
1131 1131
         if (isset($post_img) && $post_img) {
1132
-            $html .= '<br /><img src="' . $post_img . '" class="photo" alt="' . esc_attr($post->post_title) . '" itemprop="photo" content="' . $post_img . '" class="photo" />';
1132
+            $html .= '<br /><img src="'.$post_img.'" class="photo" alt="'.esc_attr($post->post_title).'" itemprop="photo" content="'.$post_img.'" class="photo" />';
1133 1133
         }
1134 1134
 
1135 1135
         $html .= '</span>';
@@ -1156,9 +1156,9 @@  discard block
 block discarded – undo
1156 1156
     do_action('geodir_after_detail_page_review_rating');
1157 1157
     $content_html = ob_get_clean();
1158 1158
     if (trim($content_html) != '') {
1159
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">' . $content_html . '</div>';
1159
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-rating">'.$content_html.'</div>';
1160 1160
     }
1161
-    if ((int)get_option('geodir_disable_rating_info_section') != 1) {
1161
+    if ((int) get_option('geodir_disable_rating_info_section') != 1) {
1162 1162
         /**
1163 1163
          * Filter the geodir_detail_page_review_rating() function content.
1164 1164
          *
@@ -1197,8 +1197,8 @@  discard block
 block discarded – undo
1197 1197
 
1198 1198
     $content_html = ob_get_clean();
1199 1199
     if (trim($content_html) != '')
1200
-        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">' . $content_html . '</div>';
1201
-    if ((int)get_option('geodir_disable_listing_info_section') != 1) {
1200
+        $content_html = '<div class="geodir-company_info geodir-details-sidebar-listing-info">'.$content_html.'</div>';
1201
+    if ((int) get_option('geodir_disable_listing_info_section') != 1) {
1202 1202
         /**
1203 1203
          * Filter the output html for function geodir_detail_page_more_info().
1204 1204
          *
@@ -1297,7 +1297,7 @@  discard block
 block discarded – undo
1297 1297
 		'gd_allowed_img_types' => !empty($allowed_img_types) ? implode(',', $allowed_img_types) : '',
1298 1298
 		'geodir_txt_form_wait' => __('Wait...', 'geodirectory'),
1299 1299
 		'geodir_txt_form_searching' => __('Searching...', 'geodirectory'),
1300
-		'fa_rating' => (int)get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1300
+		'fa_rating' => (int) get_option('geodir_reviewrating_enable_font_awesome') == 1 ? 1 : '',
1301 1301
 		'reviewrating' => defined('GEODIRREVIEWRATING_VERSION') ? 1 : '',
1302 1302
         'multirating' => defined('GEODIRREVIEWRATING_VERSION') && get_option('geodir_reviewrating_enable_rating') ? true : false,
1303 1303
         'geodir_map_name' => geodir_map_name(),
@@ -1326,10 +1326,10 @@  discard block
 block discarded – undo
1326 1326
     foreach ($arr_alert_msg as $key => $value) {
1327 1327
         if (!is_scalar($value))
1328 1328
             continue;
1329
-        $arr_alert_msg[$key] = html_entity_decode((string)$value, ENT_QUOTES, 'UTF-8');
1329
+        $arr_alert_msg[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8');
1330 1330
     }
1331 1331
 
1332
-    $script = "var geodir_all_js_msg = " . json_encode($arr_alert_msg) . ';';
1332
+    $script = "var geodir_all_js_msg = ".json_encode($arr_alert_msg).';';
1333 1333
     echo '<script>';
1334 1334
     echo $script;
1335 1335
     echo '</script>';
@@ -1419,7 +1419,7 @@  discard block
 block discarded – undo
1419 1419
         $geodir_old_sidebars = get_option('geodir_sidebars');
1420 1420
         if (is_array($geodir_old_sidebars)) {
1421 1421
             foreach ($geodir_old_sidebars as $key => $val) {
1422
-                if(0 === strpos($key, 'geodir_'))// if gd widget
1422
+                if (0 === strpos($key, 'geodir_'))// if gd widget
1423 1423
                 {
1424 1424
                     $sidebars_widgets[$key] = $geodir_old_sidebars[$key];
1425 1425
                 }
@@ -1498,7 +1498,7 @@  discard block
 block discarded – undo
1498 1498
         global $post;
1499 1499
         $term_condition = '';
1500 1500
         if (isset($_REQUEST['backandedit'])) {
1501
-            $post = (object)$gd_session->get('listing');
1501
+            $post = (object) $gd_session->get('listing');
1502 1502
             $term_condition = isset($post->geodir_accept_term_condition) ? $post->geodir_accept_term_condition : '';
1503 1503
         }
1504 1504
 
@@ -1512,7 +1512,7 @@  discard block
 block discarded – undo
1512 1512
                     echo 'checked="checked"';
1513 1513
                 } ?> field_type="checkbox" name="geodir_accept_term_condition" id="geodir_accept_term_condition"
1514 1514
                        class="geodir_textfield" value="1"
1515
-                       style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if($terms_page){ echo get_permalink($terms_page);}?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
1515
+                       style="display:inline-block"/><a href="<?php $terms_page = get_option('geodir_term_condition_page'); if ($terms_page) { echo get_permalink($terms_page); }?>" target="_blank"><?php _e('Please accept our terms and conditions', 'geodirectory'); ?></a>
1516 1516
 				</span>
1517 1517
             </div>
1518 1518
             <span class="geodir_message_error"><?php if (isset($required_msg)) {
@@ -1552,7 +1552,7 @@  discard block
 block discarded – undo
1552 1552
         /** This action is documented in geodirectory_template_actions.php */
1553 1553
         $desc_limit = apply_filters('geodir_description_field_desc_limit', '');
1554 1554
         
1555
-        if (!($desc_limit === '' || (int)$desc_limit > 0)) {
1555
+        if (!($desc_limit === '' || (int) $desc_limit > 0)) {
1556 1556
             $is_display = false;
1557 1557
         }
1558 1558
     }
@@ -1600,16 +1600,16 @@  discard block
 block discarded – undo
1600 1600
     global $wpdb, $plugin_prefix;
1601 1601
 	
1602 1602
 	// Remove unused virtual page
1603
-	$listings_page_id = (int)get_option('geodir_listing_page');
1603
+	$listings_page_id = (int) get_option('geodir_listing_page');
1604 1604
 	if ($listings_page_id) {
1605
-		$wpdb->query($wpdb->prepare("DELETE FROM " . $wpdb->posts . " WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
1605
+		$wpdb->query($wpdb->prepare("DELETE FROM ".$wpdb->posts." WHERE ID=%d AND post_name = %s AND post_type=%s", array($listings_page_id, 'listings', 'page')));
1606 1606
         delete_option('geodir_listing_page');
1607 1607
 	}
1608 1608
 
1609 1609
     if (!get_option('geodir_changes_in_custom_fields_table')) {
1610 1610
         $wpdb->query(
1611 1611
             $wpdb->prepare(
1612
-                "UPDATE " . GEODIR_CUSTOM_FIELDS_TABLE . " SET is_default=%s, is_admin=%s WHERE is_default=%s",
1612
+                "UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET is_default=%s, is_admin=%s WHERE is_default=%s",
1613 1613
                 array('1', '1', 'admin')
1614 1614
             )
1615 1615
         );
@@ -1617,9 +1617,9 @@  discard block
 block discarded – undo
1617 1617
 
1618 1618
         /* --- terms meta value set --- */
1619 1619
 
1620
-        update_option('geodir_default_marker_icon', geodir_plugin_url() . '/geodirectory-functions/map-functions/icons/pin.png');
1620
+        update_option('geodir_default_marker_icon', geodir_plugin_url().'/geodirectory-functions/map-functions/icons/pin.png');
1621 1621
 
1622
-        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . $wpdb->prefix . "options WHERE option_name LIKE %s", array('%tax_meta_%')));
1622
+        $options_data = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."options WHERE option_name LIKE %s", array('%tax_meta_%')));
1623 1623
 
1624 1624
         if (!empty($options_data)) {
1625 1625
 
@@ -1627,7 +1627,7 @@  discard block
 block discarded – undo
1627 1627
 
1628 1628
                 $option_val = str_replace('tax_meta_', '', $optobj->option_name);
1629 1629
 
1630
-                $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM " . $wpdb->prefix . "term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
1630
+                $taxonomies_data = $wpdb->get_results($wpdb->prepare("SELECT taxonomy FROM ".$wpdb->prefix."term_taxonomy WHERE taxonomy LIKE %s AND term_id=%d", array('%category%', $option_val)));
1631 1631
 
1632 1632
                 if (!empty($taxonomies_data)) {
1633 1633
 
@@ -1636,17 +1636,17 @@  discard block
 block discarded – undo
1636 1636
                         $taxObject = get_taxonomy($taxobj->taxonomy);
1637 1637
                         $post_type = $taxObject->object_type[0];
1638 1638
 
1639
-                        $opt_value = 'tax_meta_' . $post_type . '_' . $option_val;
1639
+                        $opt_value = 'tax_meta_'.$post_type.'_'.$option_val;
1640 1640
 
1641
-                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM " . $wpdb->prefix . "options WHERE option_name=%s", array('tax_meta_' . $option_val)));
1641
+                        $duplicate_data = $wpdb->get_var($wpdb->prepare("SELECT option_id FROM ".$wpdb->prefix."options WHERE option_name=%s", array('tax_meta_'.$option_val)));
1642 1642
 
1643 1643
                         if ($duplicate_data) {
1644 1644
 
1645
-                            $wpdb->query($wpdb->prepare("UPDATE " . $wpdb->prefix . "options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1645
+                            $wpdb->query($wpdb->prepare("UPDATE ".$wpdb->prefix."options SET	option_name=%s WHERE option_id=%d", array($opt_value, $optobj->option_id)));
1646 1646
 
1647 1647
                         } else {
1648 1648
 
1649
-                            $wpdb->query($wpdb->prepare("INSERT INTO " . $wpdb->prefix . "options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
1649
+                            $wpdb->query($wpdb->prepare("INSERT INTO ".$wpdb->prefix."options (option_name,option_value,autoload) VALUES (%s, %s, %s)", array($opt_value, $optobj->option_value, $optobj->autoload)));
1650 1650
 
1651 1651
                         }
1652 1652
 
@@ -1680,14 +1680,14 @@  discard block
 block discarded – undo
1680 1680
 
1681 1681
     global $wpdb, $table_prefix;
1682 1682
 
1683
-    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($slug)));
1683
+    $slug_exists = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($slug)));
1684 1684
 
1685 1685
     if ($slug_exists) {
1686 1686
 
1687 1687
         $suffix = 1;
1688 1688
         do {
1689
-            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1690
-            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s", array($alt_location_name)));
1689
+            $alt_location_name = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix";
1690
+            $location_slug_check = $wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s", array($alt_location_name)));
1691 1691
             $suffix++;
1692 1692
         } while ($location_slug_check && $suffix < 100);
1693 1693
 
@@ -1741,7 +1741,7 @@  discard block
 block discarded – undo
1741 1741
 
1742 1742
         $suffix = 1;
1743 1743
         do {
1744
-            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1)) . "-$suffix";
1744
+            $new_slug = _truncate_post_slug($slug, 200 - (strlen($suffix) + 1))."-$suffix";
1745 1745
 
1746 1746
             /** This action is documented in geodirectory_hooks_actions.php */
1747 1747
             $term_slug_check = apply_filters('geodir_term_slug_is_exists', false, $new_slug, $term_id);
@@ -1753,7 +1753,7 @@  discard block
 block discarded – undo
1753 1753
 
1754 1754
         //wp_update_term( $term_id, $taxonomy, array('slug' => $slug) );
1755 1755
 
1756
-        $wpdb->query($wpdb->prepare("UPDATE " . $table_prefix . "terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1756
+        $wpdb->query($wpdb->prepare("UPDATE ".$table_prefix."terms SET slug=%s WHERE term_id=%d", array($slug, $term_id)));
1757 1757
 
1758 1758
     }
1759 1759
 	
@@ -1762,18 +1762,18 @@  discard block
 block discarded – undo
1762 1762
 	$post_type = !empty($taxonomy_obj) ? $taxonomy_obj->object_type[0] : NULL;
1763 1763
 	
1764 1764
 	$post_types = geodir_get_posttypes();
1765
-	if ($post_type && in_array($post_type, $post_types) && $post_type . '_tags' == $taxonomy) {		
1766
-		$posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM " . $wpdb->term_relationships . " WHERE term_taxonomy_id = %d", array($tt_id)));
1765
+	if ($post_type && in_array($post_type, $post_types) && $post_type.'_tags' == $taxonomy) {		
1766
+		$posts_obj = $wpdb->get_results($wpdb->prepare("SELECT object_id FROM ".$wpdb->term_relationships." WHERE term_taxonomy_id = %d", array($tt_id)));
1767 1767
 		
1768 1768
 		if (!empty($posts_obj)) {
1769 1769
 			foreach ($posts_obj as $post_obj) {
1770 1770
 				$post_id = $post_obj->object_id;
1771 1771
 				
1772
-				$raw_tags = wp_get_object_terms($post_id, $post_type . '_tags', array('fields' => 'names'));
1772
+				$raw_tags = wp_get_object_terms($post_id, $post_type.'_tags', array('fields' => 'names'));
1773 1773
 				$post_tags = !empty($raw_tags) ? implode(',', $raw_tags) : '';
1774 1774
 				
1775
-				$listing_table = $plugin_prefix . $post_type . '_detail';
1776
-				$wpdb->query($wpdb->prepare("UPDATE " . $listing_table . " SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
1775
+				$listing_table = $plugin_prefix.$post_type.'_detail';
1776
+				$wpdb->query($wpdb->prepare("UPDATE ".$listing_table." SET post_tags=%s WHERE post_id =%d", array($post_tags, $post_id)));
1777 1777
 			}
1778 1778
 		}
1779 1779
 	}
@@ -1807,7 +1807,7 @@  discard block
 block discarded – undo
1807 1807
     if ($country_slug == $slug || $region_slug == $slug || $city_slug == $slug)
1808 1808
         return $slug_exists = true;
1809 1809
 
1810
-    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM " . $table_prefix . "terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1810
+    if ($wpdb->get_var($wpdb->prepare("SELECT slug FROM ".$table_prefix."terms WHERE slug=%s AND term_id != %d", array($slug, $term_id))))
1811 1811
         return $slug_exists = true;
1812 1812
 
1813 1813
     return $slug_exists;
@@ -1848,43 +1848,43 @@  discard block
 block discarded – undo
1848 1848
 
1849 1849
 
1850 1850
     $gd_page = '';
1851
-    if(geodir_is_page('home')){
1851
+    if (geodir_is_page('home')) {
1852 1852
         $gd_page = 'home';
1853 1853
         $title = (get_option('geodir_meta_title_homepage')) ? get_option('geodir_meta_title_homepage') : $title;
1854 1854
     }
1855
-    elseif(geodir_is_page('detail')){
1855
+    elseif (geodir_is_page('detail')) {
1856 1856
         $gd_page = 'detail';
1857 1857
         $title = (get_option('geodir_meta_title_detail')) ? get_option('geodir_meta_title_detail') : $title;
1858 1858
     }
1859
-    elseif(geodir_is_page('pt')){
1859
+    elseif (geodir_is_page('pt')) {
1860 1860
         $gd_page = 'pt';
1861 1861
         $title = (get_option('geodir_meta_title_pt')) ? get_option('geodir_meta_title_pt') : $title;
1862 1862
     }
1863
-    elseif(geodir_is_page('listing')){
1863
+    elseif (geodir_is_page('listing')) {
1864 1864
         $gd_page = 'listing';
1865 1865
         $title = (get_option('geodir_meta_title_listing')) ? get_option('geodir_meta_title_listing') : $title;
1866 1866
     }
1867
-    elseif(geodir_is_page('location')){
1867
+    elseif (geodir_is_page('location')) {
1868 1868
         $gd_page = 'location';
1869 1869
         $title = (get_option('geodir_meta_title_location')) ? get_option('geodir_meta_title_location') : $title;
1870 1870
     }
1871
-    elseif(geodir_is_page('search')){
1871
+    elseif (geodir_is_page('search')) {
1872 1872
         $gd_page = 'search';
1873 1873
         $title = (get_option('geodir_meta_title_search')) ? get_option('geodir_meta_title_search') : $title;
1874 1874
     }
1875
-    elseif(geodir_is_page('add-listing')){
1875
+    elseif (geodir_is_page('add-listing')) {
1876 1876
         $gd_page = 'add-listing';
1877 1877
         $title = (get_option('geodir_meta_title_add-listing')) ? get_option('geodir_meta_title_add-listing') : $title;
1878 1878
     }
1879
-    elseif(geodir_is_page('author')){
1879
+    elseif (geodir_is_page('author')) {
1880 1880
         $gd_page = 'author';
1881 1881
         $title = (get_option('geodir_meta_title_author')) ? get_option('geodir_meta_title_author') : $title;
1882 1882
     }
1883
-    elseif(geodir_is_page('login')){
1883
+    elseif (geodir_is_page('login')) {
1884 1884
         $gd_page = 'login';
1885 1885
         $title = (get_option('geodir_meta_title_login')) ? get_option('geodir_meta_title_login') : $title;
1886 1886
     }
1887
-    elseif(geodir_is_page('listing-success')){
1887
+    elseif (geodir_is_page('listing-success')) {
1888 1888
         $gd_page = 'listing-success';
1889 1889
         $title = (get_option('geodir_meta_title_listing-success')) ? get_option('geodir_meta_title_listing-success') : $title;
1890 1890
     }
@@ -1916,12 +1916,12 @@  discard block
 block discarded – undo
1916 1916
 
1917 1917
     if (!get_option('geodir_set_post_attachments')) {
1918 1918
 
1919
-        require_once(ABSPATH . 'wp-admin/includes/image.php');
1920
-        require_once(ABSPATH . 'wp-admin/includes/file.php');
1919
+        require_once(ABSPATH.'wp-admin/includes/image.php');
1920
+        require_once(ABSPATH.'wp-admin/includes/file.php');
1921 1921
 
1922 1922
         $all_postypes = geodir_get_posttypes();
1923 1923
 
1924
-        foreach($all_postypes as $post_type){
1924
+        foreach ($all_postypes as $post_type) {
1925 1925
             $args = array(
1926 1926
                 'posts_per_page' => -1,
1927 1927
                 'post_type' => $post_type,
@@ -2015,7 +2015,7 @@  discard block
 block discarded – undo
2015 2015
 {
2016 2016
     $user_id = get_current_user_id();
2017 2017
 
2018
-    if(!$user_id){return $post;}
2018
+    if (!$user_id) {return $post; }
2019 2019
 
2020 2020
     $gd_post_types = geodir_get_posttypes();
2021 2021
 
@@ -2124,7 +2124,7 @@  discard block
 block discarded – undo
2124 2124
 
2125 2125
         if (array_key_exists('post_video', $tabs_arr)) {
2126 2126
 
2127
-            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2127
+            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from ".GEODIR_CUSTOM_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s ", array('geodir_video', $post_type)));
2128 2128
 
2129 2129
             if (isset($tabs_arr['post_video']['heading_text']) && $field_title != '')
2130 2130
                 $tabs_arr['post_video']['heading_text'] = $field_title;
@@ -2132,7 +2132,7 @@  discard block
 block discarded – undo
2132 2132
 
2133 2133
         if (array_key_exists('special_offers', $tabs_arr)) {
2134 2134
 
2135
-            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from " . GEODIR_CUSTOM_FIELDS_TABLE . " where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2135
+            $field_title = $wpdb->get_var($wpdb->prepare("select site_title from ".GEODIR_CUSTOM_FIELDS_TABLE." where htmlvar_name = %s and post_type = %s ", array('geodir_special_offers', $post_type)));
2136 2136
 
2137 2137
             if (isset($tabs_arr['special_offers']['heading_text']) && $field_title != '')
2138 2138
                 $tabs_arr['special_offers']['heading_text'] = $field_title;
@@ -2153,7 +2153,7 @@  discard block
 block discarded – undo
2153 2153
  */
2154 2154
 function geodir_remove_template_redirect_actions()
2155 2155
 {
2156
-    if (geodir_is_page('login')){
2156
+    if (geodir_is_page('login')) {
2157 2157
         remove_all_actions('template_redirect');
2158 2158
         remove_action('init', 'avia_modify_front', 10);
2159 2159
     }
@@ -2200,25 +2200,25 @@  discard block
 block discarded – undo
2200 2200
         $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : '';
2201 2201
 
2202 2202
         $wpdb->query(
2203
-            $wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d AND file=%s ",
2203
+            $wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d AND file=%s ",
2204 2204
                 array($post_id, $split_img_file_path)
2205 2205
             )
2206 2206
         );
2207 2207
 
2208 2208
         $attachment_data = $wpdb->get_row(
2209
-            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=%d",
2209
+            $wpdb->prepare("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=%d",
2210 2210
                 array($post_id)
2211 2211
             )
2212 2212
         );
2213 2213
 
2214 2214
         if (!empty($attachment_data)) {
2215
-            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2215
+            $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
2216 2216
         }
2217 2217
 
2218 2218
 
2219
-        $table_name = $plugin_prefix . $post_type . '_detail';
2219
+        $table_name = $plugin_prefix.$post_type.'_detail';
2220 2220
 
2221
-        $wpdb->query("UPDATE " . $table_name . " SET featured_image='' WHERE post_id =" . $post_id);
2221
+        $wpdb->query("UPDATE ".$table_name." SET featured_image='' WHERE post_id =".$post_id);
2222 2222
 
2223 2223
         geodir_set_wp_featured_image($post_id);
2224 2224
 
@@ -2246,9 +2246,9 @@  discard block
 block discarded – undo
2246 2246
 
2247 2247
     foreach ($all_postypes as $posttype) {
2248 2248
 
2249
-        $tablename = $plugin_prefix . $posttype . '_detail';
2249
+        $tablename = $plugin_prefix.$posttype.'_detail';
2250 2250
 
2251
-        $get_post_data = $wpdb->get_results("SELECT post_id FROM " . $tablename);
2251
+        $get_post_data = $wpdb->get_results("SELECT post_id FROM ".$tablename);
2252 2252
 
2253 2253
         if (!empty($get_post_data)) {
2254 2254
 
@@ -2256,7 +2256,7 @@  discard block
 block discarded – undo
2256 2256
 
2257 2257
                 $post_id = $data->post_id;
2258 2258
 
2259
-                $attachment_data = $wpdb->get_results("SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id =" . $post_id . " AND file!=''");
2259
+                $attachment_data = $wpdb->get_results("SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id =".$post_id." AND file!=''");
2260 2260
 
2261 2261
                 if (!empty($attachment_data)) {
2262 2262
 
@@ -2273,22 +2273,22 @@  discard block
 block discarded – undo
2273 2273
 
2274 2274
                         $file_name = $file_info['basename'];
2275 2275
 
2276
-                        $img_arr['path'] = $uploads_path . $sub_dir . '/' . $file_name;
2276
+                        $img_arr['path'] = $uploads_path.$sub_dir.'/'.$file_name;
2277 2277
 
2278 2278
                         if (!file_exists($img_arr['path'])) {
2279 2279
 
2280
-                            $wpdb->query("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE ID=" . $attach->ID);
2280
+                            $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ID=".$attach->ID);
2281 2281
 
2282 2282
                         }
2283 2283
 
2284 2284
                     }
2285 2285
 
2286
-                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id=" . $post_id . " GROUP BY post_id");
2286
+                    $attachment_data = $wpdb->get_row("SELECT ID, MIN(`menu_order`) FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id=".$post_id." GROUP BY post_id");
2287 2287
 
2288 2288
                     if (!empty($attachment_data)) {
2289 2289
 
2290 2290
                         if ($attachment_data->ID)
2291
-                            $wpdb->query("UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order=1 WHERE ID=" . $attachment_data->ID);
2291
+                            $wpdb->query("UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order=1 WHERE ID=".$attachment_data->ID);
2292 2292
 
2293 2293
                     } else {
2294 2294
 
@@ -2302,7 +2302,7 @@  discard block
 block discarded – undo
2302 2302
 
2303 2303
                     }
2304 2304
 
2305
-                    $wpdb->query("UPDATE " . $tablename . " SET featured_image='' WHERE post_id =" . $post_id);
2305
+                    $wpdb->query("UPDATE ".$tablename." SET featured_image='' WHERE post_id =".$post_id);
2306 2306
 
2307 2307
                     geodir_set_wp_featured_image($post_id);
2308 2308
 
@@ -2331,7 +2331,7 @@  discard block
 block discarded – undo
2331 2331
 {
2332 2332
 
2333 2333
     if (!get_option('geodir_default_rating_star_icon')) {
2334
-        update_option('geodir_default_rating_star_icon', geodir_plugin_url() . '/geodirectory-assets/images/stars.png');
2334
+        update_option('geodir_default_rating_star_icon', geodir_plugin_url().'/geodirectory-assets/images/stars.png');
2335 2335
     }
2336 2336
 
2337 2337
 }
@@ -2348,10 +2348,10 @@  discard block
 block discarded – undo
2348 2348
  * @global string $plugin_prefix Geodirectory plugin table prefix.
2349 2349
  * @return array User listing count for each post type.
2350 2350
  */
2351
-function geodir_user_post_listing_count($user_id=null)
2351
+function geodir_user_post_listing_count($user_id = null)
2352 2352
 {
2353 2353
     global $wpdb, $plugin_prefix, $current_user;
2354
-    if(!$user_id){
2354
+    if (!$user_id) {
2355 2355
         $user_id = $current_user->ID;
2356 2356
     }
2357 2357
 
@@ -2362,7 +2362,7 @@  discard block
 block discarded – undo
2362 2362
     $user_listing = array();
2363 2363
     if (is_array($all_posts) && !empty($all_posts)) {
2364 2364
         foreach ($all_posts as $ptype) {
2365
-            $total_posts = $wpdb->get_var("SELECT count( ID ) FROM " . $wpdb->prefix . "posts WHERE post_author=" . $user_id . " AND post_type='" . $ptype . "' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
2365
+            $total_posts = $wpdb->get_var("SELECT count( ID ) FROM ".$wpdb->prefix."posts WHERE post_author=".$user_id." AND post_type='".$ptype."' AND ( post_status = 'publish' OR post_status = 'draft' OR post_status = 'private' )");
2366 2366
 
2367 2367
             if ($total_posts > 0) {
2368 2368
                 $user_listing[$ptype] = $total_posts;
@@ -2403,19 +2403,19 @@  discard block
 block discarded – undo
2403 2403
 
2404 2404
         $custom_fields = geodir_post_custom_fields($post_package_id, 'all', $post_type, $fields_location);
2405 2405
         //remove video and special offers if it is already set to show
2406
-        if(isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']){
2406
+        if (isset($tabs_arr['post_video']['is_display']) && $tabs_arr['post_video']['is_display']) {
2407 2407
             $unset_video = true;
2408 2408
         }
2409 2409
 
2410
-        if(isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']){
2410
+        if (isset($tabs_arr['special_offers']['is_display']) && $tabs_arr['special_offers']['is_display']) {
2411 2411
             $unset_special_offers = true;
2412 2412
         }
2413
-        if(isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)){
2414
-            foreach($custom_fields as $key => $custom_field){
2415
-                if($custom_field['name']=='geodir_video' && isset($unset_video)){
2413
+        if (isset($unset_video) || isset($unset_special_offers) && !empty($custom_fields)) {
2414
+            foreach ($custom_fields as $key => $custom_field) {
2415
+                if ($custom_field['name'] == 'geodir_video' && isset($unset_video)) {
2416 2416
                     unset($custom_fields[$key]);
2417 2417
                 }
2418
-                if($custom_field['name']=='geodir_special_offers' && isset($unset_special_offers)){
2418
+                if ($custom_field['name'] == 'geodir_special_offers' && isset($unset_special_offers)) {
2419 2419
                     unset($custom_fields[$key]);
2420 2420
                 }
2421 2421
             }
@@ -2432,7 +2432,7 @@  discard block
 block discarded – undo
2432 2432
                     $post->{$field_name} = $_REQUEST[$field_name];
2433 2433
                 }
2434 2434
 
2435
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false  && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2435
+                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file', 'address', 'taxonomy'))) {
2436 2436
                     if ($type['type'] == 'datepicker' && ($post->{$type['htmlvar_name']} == '' || $post->{$type['htmlvar_name']} == '0000-00-00')) {
2437 2437
                         continue;
2438 2438
                     }
@@ -2465,7 +2465,7 @@  discard block
 block discarded – undo
2465 2465
                     $post->{$field_name} = $_REQUEST[$field_name];
2466 2466
                 }
2467 2467
 
2468
-                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file','address','taxonomy'))) {
2468
+                if (isset($field['show_in']) && strpos($field['show_in'], '[owntab]') !== false && ((isset($post->{$field_name}) && $post->{$field_name} != '') || $field['type'] == 'fieldset' || $field['type'] == 'address') && in_array($field['type'], array('text', 'datepicker', 'textarea', 'time', 'phone', 'email', 'select', 'multiselect', 'url', 'html', 'fieldset', 'radio', 'checkbox', 'file', 'address', 'taxonomy'))) {
2469 2469
                     $label = $field['site_title'] != '' ? $field['site_title'] : $field['admin_title'];
2470 2470
                     $site_title = trim($field['site_title']);
2471 2471
                     $type = $field;
@@ -2481,21 +2481,21 @@  discard block
 block discarded – undo
2481 2481
                         $variables_array['label'] = __($type['site_title'], 'geodirectory');
2482 2482
                         $variables_array['value'] = '';
2483 2483
                         $variables_array['value'] = $post->{$type['htmlvar_name']};
2484
-                    }else{
2484
+                    } else {
2485 2485
                         $i = 0;
2486 2486
                         $fieldset_count++;
2487 2487
                         $field_set_start = 1;
2488
-                        $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_' . $fieldset_count;
2488
+                        $fieldset_arr[$fieldset_count]['htmlvar_name'] = 'gd_tab_'.$fieldset_count;
2489 2489
                         $fieldset_arr[$fieldset_count]['label'] = $label;
2490 2490
                     }
2491 2491
 
2492 2492
 
2493
-                    if(isset($type['extra_fields'])){$extra_fields= $type['extra_fields'];}
2493
+                    if (isset($type['extra_fields'])) {$extra_fields = $type['extra_fields']; }
2494 2494
                     $type = stripslashes_deep($type); // strip slashes
2495
-                    if(isset($type['extra_fields'])){$type['extra_fields'] = $extra_fields;}
2495
+                    if (isset($type['extra_fields'])) {$type['extra_fields'] = $extra_fields; }
2496 2496
                     $html = '';
2497 2497
                     $html_var = isset($type['htmlvar_name']) ? $type['htmlvar_name'] : '';
2498
-                    if($html_var=='post'){$html_var='post_address';}
2498
+                    if ($html_var == 'post') {$html_var = 'post_address'; }
2499 2499
                     $field_icon = geodir_field_icon_proccess($type);
2500 2500
                     $filed_type = $type['type'];
2501 2501
 
@@ -2508,7 +2508,7 @@  discard block
 block discarded – undo
2508 2508
                      * @param string $fields_location The location the field is to be show.
2509 2509
                      * @param array $type The array of field values.
2510 2510
                      */
2511
-                    $html = apply_filters("geodir_custom_field_output_{$filed_type}",$html,$fields_location,$type);
2511
+                    $html = apply_filters("geodir_custom_field_output_{$filed_type}", $html, $fields_location, $type);
2512 2512
 
2513 2513
 
2514 2514
                     /**
@@ -2554,7 +2554,7 @@  discard block
 block discarded – undo
2554 2554
                                  * @param string $htmlvar_name The field HTML var name.
2555 2555
                                  */
2556 2556
                                 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, $htmlvar_name),
2557
-                                'tab_content' => '<div class="geodir-company_info field-group xxx">' . $fieldset_html . '</div>'
2557
+                                'tab_content' => '<div class="geodir-company_info field-group xxx">'.$fieldset_html.'</div>'
2558 2558
                             );
2559 2559
                         }
2560 2560
                     } else {
@@ -2616,7 +2616,7 @@  discard block
 block discarded – undo
2616 2616
             }
2617 2617
             $status .= ")</strong>";
2618 2618
 
2619
-            $html = '<span class="geodir-post-status">' . $status_icon . ' <font class="geodir-status-label">' . __('Status: ', 'geodirectory') . '</font>' . $status . '</span>';
2619
+            $html = '<span class="geodir-post-status">'.$status_icon.' <font class="geodir-status-label">'.__('Status: ', 'geodirectory').'</font>'.$status.'</span>';
2620 2620
         }
2621 2621
     }
2622 2622
 
@@ -2685,7 +2685,7 @@  discard block
 block discarded – undo
2685 2685
  * @return array Modified class array.
2686 2686
  */
2687 2687
 function geodir_body_class_active_map($classes = array()) {
2688
-    $classes[] = 'gd-map-' . geodir_map_name();
2688
+    $classes[] = 'gd-map-'.geodir_map_name();
2689 2689
 
2690 2690
     return $classes;
2691 2691
 }
@@ -2700,7 +2700,7 @@  discard block
 block discarded – undo
2700 2700
  * @return string Modified class string.
2701 2701
  */
2702 2702
 function geodir_admin_body_class_active_map($class = '') {    
2703
-    $class .= ' gd-map-' . geodir_map_name();
2703
+    $class .= ' gd-map-'.geodir_map_name();
2704 2704
 
2705 2705
     return $class;
2706 2706
 }
@@ -2720,7 +2720,7 @@  discard block
 block discarded – undo
2720 2720
  * @return array Translation texts.
2721 2721
  */
2722 2722
 function geodir_load_gd_options_text_translation($translation_texts = array()) {
2723
-    $translation_texts = !empty( $translation_texts ) && is_array( $translation_texts ) ? $translation_texts : array();
2723
+    $translation_texts = !empty($translation_texts) && is_array($translation_texts) ? $translation_texts : array();
2724 2724
 
2725 2725
     $gd_options = array('geodir_post_submited_success_email_subject_admin', 'geodir_post_submited_success_email_content_admin', 'geodir_post_submited_success_email_subject', 'geodir_post_submited_success_email_content', 'geodir_forgot_password_subject', 'geodir_forgot_password_content', 'geodir_registration_success_email_subject', 'geodir_registration_success_email_content', 'geodir_post_published_email_subject', 'geodir_post_published_email_content', 'geodir_email_friend_subject', 'geodir_email_friend_content', 'geodir_email_enquiry_subject', 'geodir_email_enquiry_content', 'geodir_post_added_success_msg_content', 'geodir_post_edited_email_subject_admin', 'geodir_post_edited_email_content_admin');
2726 2726
 
@@ -2786,17 +2786,17 @@  discard block
 block discarded – undo
2786 2786
  * @param array $args The array of menu arguments.
2787 2787
  * @return array The modified arguments.
2788 2788
  */
2789
-function geodir_add_nav_menu_class( $args )
2789
+function geodir_add_nav_menu_class($args)
2790 2790
 {
2791 2791
 
2792
-        if(isset($args['menu_class'])){
2792
+        if (isset($args['menu_class'])) {
2793 2793
             $args['menu_class'] = $args['menu_class']." gd-menu-z";
2794 2794
         }
2795 2795
     
2796 2796
     return $args;
2797 2797
 }
2798 2798
 
2799
-add_filter( 'wp_nav_menu_args', 'geodir_add_nav_menu_class' );
2799
+add_filter('wp_nav_menu_args', 'geodir_add_nav_menu_class');
2800 2800
 
2801 2801
 /**
2802 2802
  * Filters WordPress locale ID.
@@ -2863,7 +2863,7 @@  discard block
 block discarded – undo
2863 2863
         }        
2864 2864
         
2865 2865
         if (!empty($keep_vars)) {
2866
-            foreach ( $languages as $code => $url) {
2866
+            foreach ($languages as $code => $url) {
2867 2867
                 $filter_url = $url['url'];
2868 2868
                 
2869 2869
                 foreach ($keep_vars as $var) {
@@ -2882,7 +2882,7 @@  discard block
 block discarded – undo
2882 2882
 
2883 2883
     return $languages;
2884 2884
 }
2885
-add_filter( 'icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1 );
2885
+add_filter('icl_ls_languages', 'geodir_wpml_filter_ls_languages', 11, 1);
2886 2886
 
2887 2887
 /**
2888 2888
  * Remove Yoast SEO hook if disabled on GD pages.
@@ -2890,18 +2890,18 @@  discard block
 block discarded – undo
2890 2890
  * @since 1.6.18
2891 2891
  *
2892 2892
  */
2893
-function geodir_remove_yoast_seo_metas(){
2894
-    if ( class_exists( 'WPSEO_Frontend' ) && geodir_is_geodir_page() && geodir_disable_yoast_seo_metas() ) {
2893
+function geodir_remove_yoast_seo_metas() {
2894
+    if (class_exists('WPSEO_Frontend') && geodir_is_geodir_page() && geodir_disable_yoast_seo_metas()) {
2895 2895
         $wpseo = WPSEO_Frontend::get_instance();
2896 2896
         
2897
-        remove_action( 'wp_head', array( $wpseo, 'metadesc' ), 6 );
2898
-        remove_action( 'wp_head', array( $wpseo, 'metakeywords' ), 11 );
2899
-        remove_filter( 'pre_get_document_title', array( $wpseo, 'title' ), 15 );
2900
-        remove_filter( 'wp_title', array( $wpseo, 'title' ), 15, 3 );
2901
-        remove_filter( 'thematic_doctitle', array( $wpseo, 'title' ), 15 );
2902
-        remove_filter( 'woo_title', array( $wpseo, 'fix_woo_title' ), 99 );
2897
+        remove_action('wp_head', array($wpseo, 'metadesc'), 6);
2898
+        remove_action('wp_head', array($wpseo, 'metakeywords'), 11);
2899
+        remove_filter('pre_get_document_title', array($wpseo, 'title'), 15);
2900
+        remove_filter('wp_title', array($wpseo, 'title'), 15, 3);
2901
+        remove_filter('thematic_doctitle', array($wpseo, 'title'), 15);
2902
+        remove_filter('woo_title', array($wpseo, 'fix_woo_title'), 99);
2903 2903
         
2904
-        remove_action( 'template_redirect', 'wpseo_frontend_head_init', 999 );
2904
+        remove_action('template_redirect', 'wpseo_frontend_head_init', 999);
2905 2905
     }
2906 2906
 }
2907 2907
 
@@ -2916,22 +2916,22 @@  discard block
 block discarded – undo
2916 2916
  *
2917 2917
  */
2918 2918
  function geodir_wpml_ajax_set_guest_lang() {    
2919
-    if ( geodir_is_wpml() && wpml_is_ajax() && !is_user_logged_in() ) {
2920
-        if ( empty( $_GET['lang'] ) && !( !empty( $_SERVER['REQUEST_URI'] ) && preg_match( '@\.(css|js|png|jpg|gif|jpeg|bmp)@i', basename( preg_replace( '@\?.*$@', '', $_SERVER['REQUEST_URI'] ) ) ) ) ) {
2919
+    if (geodir_is_wpml() && wpml_is_ajax() && !is_user_logged_in()) {
2920
+        if (empty($_GET['lang']) && !(!empty($_SERVER['REQUEST_URI']) && preg_match('@\.(css|js|png|jpg|gif|jpeg|bmp)@i', basename(preg_replace('@\?.*$@', '', $_SERVER['REQUEST_URI']))))) {
2921 2921
             global $sitepress;
2922 2922
             
2923 2923
             $referer = wp_get_referer();
2924 2924
             
2925 2925
             $current_lang = $sitepress->get_current_language();
2926
-            $referrer_lang = $sitepress->get_language_from_url( $referer );
2926
+            $referrer_lang = $sitepress->get_language_from_url($referer);
2927 2927
             
2928
-            if ( $referrer_lang && $current_lang != $referrer_lang ) {
2928
+            if ($referrer_lang && $current_lang != $referrer_lang) {
2929 2929
                 $_GET['lang'] = $referrer_lang;
2930 2930
             }
2931 2931
         }
2932 2932
     }
2933 2933
 }
2934
-add_action( 'plugins_loaded', 'geodir_wpml_ajax_set_guest_lang', -1 );
2934
+add_action('plugins_loaded', 'geodir_wpml_ajax_set_guest_lang', -1);
2935 2935
 
2936 2936
 /**
2937 2937
  * Change country slug czech-republic to czechia and redirect.
@@ -2952,18 +2952,18 @@  discard block
 block discarded – undo
2952 2952
         }
2953 2953
         
2954 2954
         $redirect = false;
2955
-        if (strpos($current_url, '/' . $search . '/') !== false) {
2955
+        if (strpos($current_url, '/'.$search.'/') !== false) {
2956 2956
             $redirect = true;
2957
-            $current_url = preg_replace('/\/' . $search . '\//', '/' . $replace . '/', $current_url, 1);
2957
+            $current_url = preg_replace('/\/'.$search.'\//', '/'.$replace.'/', $current_url, 1);
2958 2958
         }
2959 2959
         
2960 2960
         if ($has_slash != "/") {
2961 2961
             $current_url = trim($current_url, '/');
2962 2962
         }
2963 2963
         
2964
-        if (strpos($current_url, 'gd_country=' . $search) !== false) {
2964
+        if (strpos($current_url, 'gd_country='.$search) !== false) {
2965 2965
             $redirect = true;
2966
-            $current_url = str_replace('gd_country=' . $search, 'gd_country=' . $replace, $current_url);
2966
+            $current_url = str_replace('gd_country='.$search, 'gd_country='.$replace, $current_url);
2967 2967
         }
2968 2968
 
2969 2969
         if ($redirect) {
Please login to merge, or discard this patch.
upgrade.php 2 patches
Indentation   +616 added lines, -616 removed lines patch added patch discarded remove patch
@@ -10,49 +10,49 @@  discard block
 block discarded – undo
10 10
 global $wpdb;
11 11
 
12 12
 if (get_option('geodirectory' . '_db_version') != GEODIRECTORY_VERSION) {
13
-    /**
14
-     * Include custom database table related functions.
15
-     *
16
-     * @since 1.0.0
17
-     * @package GeoDirectory
18
-     */
19
-    include_once('geodirectory-admin/admin_db_install.php');
20
-    add_action('plugins_loaded', 'geodirectory_upgrade_all', 10);
21
-    if (GEODIRECTORY_VERSION <= '1.3.6') {
22
-        add_action('plugins_loaded', 'geodir_upgrade_136', 11);
23
-    }
24
-
25
-    if (GEODIRECTORY_VERSION <= '1.4.6') {
26
-        add_action('init', 'geodir_upgrade_146', 11);
27
-    }
28
-
29
-    if (GEODIRECTORY_VERSION <= '1.4.8') {
30
-        add_action('init', 'geodir_upgrade_148', 11);
31
-    }
32
-
33
-    if (GEODIRECTORY_VERSION <= '1.5.0') {
34
-        add_action('init', 'geodir_upgrade_150', 11);
35
-    }
36
-
37
-    if (GEODIRECTORY_VERSION <= '1.5.2') {
38
-        add_action('init', 'geodir_upgrade_152', 11);
39
-    }
40
-
41
-    if (GEODIRECTORY_VERSION <= '1.5.3') {
42
-        add_action('init', 'geodir_upgrade_153', 11);
43
-    }
44
-
45
-    if (GEODIRECTORY_VERSION <= '1.5.4') {
46
-        add_action('init', 'geodir_upgrade_154', 11);
47
-    }
13
+	/**
14
+	 * Include custom database table related functions.
15
+	 *
16
+	 * @since 1.0.0
17
+	 * @package GeoDirectory
18
+	 */
19
+	include_once('geodirectory-admin/admin_db_install.php');
20
+	add_action('plugins_loaded', 'geodirectory_upgrade_all', 10);
21
+	if (GEODIRECTORY_VERSION <= '1.3.6') {
22
+		add_action('plugins_loaded', 'geodir_upgrade_136', 11);
23
+	}
24
+
25
+	if (GEODIRECTORY_VERSION <= '1.4.6') {
26
+		add_action('init', 'geodir_upgrade_146', 11);
27
+	}
28
+
29
+	if (GEODIRECTORY_VERSION <= '1.4.8') {
30
+		add_action('init', 'geodir_upgrade_148', 11);
31
+	}
32
+
33
+	if (GEODIRECTORY_VERSION <= '1.5.0') {
34
+		add_action('init', 'geodir_upgrade_150', 11);
35
+	}
36
+
37
+	if (GEODIRECTORY_VERSION <= '1.5.2') {
38
+		add_action('init', 'geodir_upgrade_152', 11);
39
+	}
40
+
41
+	if (GEODIRECTORY_VERSION <= '1.5.3') {
42
+		add_action('init', 'geodir_upgrade_153', 11);
43
+	}
44
+
45
+	if (GEODIRECTORY_VERSION <= '1.5.4') {
46
+		add_action('init', 'geodir_upgrade_154', 11);
47
+	}
48 48
     
49
-    if (GEODIRECTORY_VERSION <= '1.6.18') {
50
-        add_action('init', 'geodir_upgrade_1618', 11);
51
-    }
49
+	if (GEODIRECTORY_VERSION <= '1.6.18') {
50
+		add_action('init', 'geodir_upgrade_1618', 11);
51
+	}
52 52
 
53
-    add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
53
+	add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
54 54
 
55
-    update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
55
+	update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
56 56
 
57 57
 }
58 58
 
@@ -65,10 +65,10 @@  discard block
 block discarded – undo
65 65
  */
66 66
 function geodirectory_upgrade_all()
67 67
 {
68
-    geodir_create_tables();
69
-    geodir_update_review_db();
70
-    gd_install_theme_compat();
71
-    gd_convert_custom_field_display();
68
+	geodir_create_tables();
69
+	geodir_update_review_db();
70
+	gd_install_theme_compat();
71
+	gd_convert_custom_field_display();
72 72
 }
73 73
 
74 74
 /**
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
  */
80 80
 function geodir_upgrade_136()
81 81
 {
82
-    geodir_fix_review_overall_rating();
82
+	geodir_fix_review_overall_rating();
83 83
 }
84 84
 
85 85
 /**
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
  * @package GeoDirectory
90 90
  */
91 91
 function geodir_upgrade_146(){
92
-    gd_convert_virtual_pages();
92
+	gd_convert_virtual_pages();
93 93
 }
94 94
 
95 95
 /**
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
  * @package GeoDirectory
100 100
  */
101 101
 function geodir_upgrade_150(){
102
-    gd_fix_cpt_rewrite_slug();
102
+	gd_fix_cpt_rewrite_slug();
103 103
 }
104 104
 
105 105
 
@@ -111,11 +111,11 @@  discard block
 block discarded – undo
111 111
  * @package GeoDirectory
112 112
  */
113 113
 function geodir_upgrade_148(){
114
-    /*
114
+	/*
115 115
      * Blank the users google password if present as we now use oAuth 2.0
116 116
      */
117
-    update_option('geodir_ga_pass','');
118
-    update_option('geodir_ga_user','');
117
+	update_option('geodir_ga_pass','');
118
+	update_option('geodir_ga_user','');
119 119
 
120 120
 }
121 121
 
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
  * @package GeoDirectory
128 128
  */
129 129
 function geodir_upgrade_153(){
130
-    geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
131
-    geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
130
+	geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
131
+	geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
132 132
 }
133 133
 
134 134
 /**
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
  * @package GeoDirectory
139 139
  */
140 140
 function geodir_upgrade_154(){
141
-    geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
141
+	geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
142 142
 }
143 143
 
144 144
 /**
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
  * @package GeoDirectory
149 149
  */
150 150
 function geodir_upgrade_152(){
151
-    gd_fix_address_detail_table_limit();
151
+	gd_fix_address_detail_table_limit();
152 152
 }
153 153
 
154 154
 
@@ -164,12 +164,12 @@  discard block
 block discarded – undo
164 164
  */
165 165
 function geodir_update_review_db()
166 166
 {
167
-    global $wpdb, $plugin_prefix;
167
+	global $wpdb, $plugin_prefix;
168 168
 
169
-    geodir_fix_review_date();
170
-    geodir_fix_review_post_status();
171
-    geodir_fix_review_content();
172
-    geodir_fix_review_location();
169
+	geodir_fix_review_date();
170
+	geodir_fix_review_post_status();
171
+	geodir_fix_review_content();
172
+	geodir_fix_review_location();
173 173
 
174 174
 }
175 175
 
@@ -182,8 +182,8 @@  discard block
 block discarded – undo
182 182
  */
183 183
 function geodir_fix_review_date()
184 184
 {
185
-    global $wpdb;
186
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
185
+	global $wpdb;
186
+	$wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
187 187
 }
188 188
 
189 189
 /**
@@ -195,8 +195,8 @@  discard block
 block discarded – undo
195 195
  */
196 196
 function geodir_fix_review_post_status()
197 197
 {
198
-    global $wpdb;
199
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
198
+	global $wpdb;
199
+	$wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
200 200
 }
201 201
 
202 202
 /**
@@ -209,12 +209,12 @@  discard block
 block discarded – undo
209 209
  */
210 210
 function geodir_fix_review_content()
211 211
 {
212
-    global $wpdb;
213
-    if ($wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
214
-        return true;
215
-    } else {
216
-        return false;
217
-    }
212
+	global $wpdb;
213
+	if ($wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
214
+		return true;
215
+	} else {
216
+		return false;
217
+	}
218 218
 }
219 219
 
220 220
 /**
@@ -227,20 +227,20 @@  discard block
 block discarded – undo
227 227
  */
228 228
 function geodir_fix_review_location()
229 229
 {
230
-    global $wpdb;
230
+	global $wpdb;
231 231
 
232
-    $all_postypes = geodir_get_posttypes();
232
+	$all_postypes = geodir_get_posttypes();
233 233
 
234
-    if (!empty($all_postypes)) {
235
-        foreach ($all_postypes as $key) {
236
-            // update each GD CTP
234
+	if (!empty($all_postypes)) {
235
+		foreach ($all_postypes as $key) {
236
+			// update each GD CTP
237 237
 
238
-            $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN " . $wpdb->prefix . "geodir_" . $key . "_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
238
+			$wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN " . $wpdb->prefix . "geodir_" . $key . "_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
239 239
 
240
-        }
241
-        return true;
242
-    }
243
-    return false;
240
+		}
241
+		return true;
242
+	}
243
+	return false;
244 244
 }
245 245
 
246 246
 /**
@@ -252,82 +252,82 @@  discard block
 block discarded – undo
252 252
  */
253 253
 function geodir_fix_review_overall_rating()
254 254
 {
255
-    global $wpdb;
255
+	global $wpdb;
256 256
 
257
-    $all_postypes = geodir_get_posttypes();
257
+	$all_postypes = geodir_get_posttypes();
258 258
 
259
-    if (!empty($all_postypes)) {
260
-        foreach ($all_postypes as $key) {
261
-            // update each GD CTP
262
-            $reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
259
+	if (!empty($all_postypes)) {
260
+		foreach ($all_postypes as $key) {
261
+			// update each GD CTP
262
+			$reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
263 263
 
264
-            if (!empty($reviews)) {
265
-                foreach ($reviews as $post_id) {
266
-                    geodir_update_postrating($post_id->post_id, $key);
267
-                }
264
+			if (!empty($reviews)) {
265
+				foreach ($reviews as $post_id) {
266
+					geodir_update_postrating($post_id->post_id, $key);
267
+				}
268 268
 
269
-            }
269
+			}
270 270
 
271
-        }
271
+		}
272 272
 
273
-    }
273
+	}
274 274
 }
275 275
 
276 276
 
277 277
 function gd_convert_custom_field_display(){
278
-    global $wpdb;
278
+	global $wpdb;
279 279
 
280
-    $field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
280
+	$field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
281 281
 
282
-    $has_run = get_option('gd_convert_custom_field_display');
283
-    if($has_run){return;}
282
+	$has_run = get_option('gd_convert_custom_field_display');
283
+	if($has_run){return;}
284 284
 
285
-    // set the field_type_key for standard fields
286
-    $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
285
+	// set the field_type_key for standard fields
286
+	$wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
287 287
 
288 288
 
289
-    if(is_array( $field_info)){
289
+	if(is_array( $field_info)){
290 290
 
291
-        foreach( $field_info as $cf){
291
+		foreach( $field_info as $cf){
292 292
 
293
-            $id = $cf->id;
293
+			$id = $cf->id;
294 294
 
295
-            if(!property_exists($cf,'show_in') || !$id){return;}
295
+			if(!property_exists($cf,'show_in') || !$id){return;}
296 296
 
297
-            $show_in_arr = array();
297
+			$show_in_arr = array();
298 298
 
299
-            if($cf->is_default){
300
-                $show_in_arr[] = "[detail]";
301
-            }
299
+			if($cf->is_default){
300
+				$show_in_arr[] = "[detail]";
301
+			}
302 302
 
303
-            if($cf->show_on_detail){
304
-                $show_in_arr[] = "[moreinfo]";
305
-            }
303
+			if($cf->show_on_detail){
304
+				$show_in_arr[] = "[moreinfo]";
305
+			}
306 306
 
307
-            if($cf->show_on_listing){
308
-                $show_in_arr[] = "[listing]";
309
-            }
307
+			if($cf->show_on_listing){
308
+				$show_in_arr[] = "[listing]";
309
+			}
310 310
 
311
-            if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
312
-                $show_in_arr[] = "[owntab]";
313
-            }
311
+			if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
312
+				$show_in_arr[] = "[owntab]";
313
+			}
314 314
 
315
-            if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
316
-                $show_in_arr[] = "[mapbubble]";
317
-            }
315
+			if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
316
+				$show_in_arr[] = "[mapbubble]";
317
+			}
318 318
 
319
-            if(!empty($show_in_arr )){
320
-                $show_in_arr = implode(',',$show_in_arr);
321
-            }else{
322
-                $show_in_arr = '';
323
-            }
319
+			if(!empty($show_in_arr )){
320
+				$show_in_arr = implode(',',$show_in_arr);
321
+			}else{
322
+				$show_in_arr = '';
323
+			}
324 324
 
325
-            $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET show_in='$show_in_arr' WHERE id=$id");
325
+			$wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET show_in='$show_in_arr' WHERE id=$id");
326 326
 
327
-        }
327
+		}
328 328
 
329
-        update_option('gd_convert_custom_field_display',1);
330
-    }
329
+		update_option('gd_convert_custom_field_display',1);
330
+	}
331 331
 }
332 332
 
333 333
 ############################################
@@ -343,384 +343,384 @@  discard block
 block discarded – undo
343 343
  */
344 344
 function gd_install_theme_compat()
345 345
 {
346
-    global $wpdb;
346
+	global $wpdb;
347 347
 
348
-    $theme_compat = array();
349
-    $theme_compat = get_option('gd_theme_compats');
348
+	$theme_compat = array();
349
+	$theme_compat = get_option('gd_theme_compats');
350 350
 //GDF
351
-    $theme_compat['GeoDirectory_Framework'] = array(
352
-        'geodir_wrapper_open_id' => 'geodir_wrapper',
353
-        'geodir_wrapper_open_class' => '',
354
-        'geodir_wrapper_open_replace' => '',
355
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
356
-        'geodir_wrapper_content_open_id' => 'geodir_content',
357
-        'geodir_wrapper_content_open_class' => '',
358
-        'geodir_wrapper_content_open_replace' => '',
359
-        'geodir_wrapper_content_close_replace' => '',
360
-        'geodir_article_open_id' => '',
361
-        'geodir_article_open_class' => '',
362
-        'geodir_article_open_replace' => '',
363
-        'geodir_article_close_replace' => '',
364
-        'geodir_sidebar_right_open_id' => '',
365
-        'geodir_sidebar_right_open_class' => '',
366
-        'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
367
-        'geodir_sidebar_right_close_replace' => '',
368
-        'geodir_sidebar_left_open_id' => '',
369
-        'geodir_sidebar_left_open_class' => '',
370
-        'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
371
-        'geodir_sidebar_left_close_replace' => '',
372
-        'geodir_main_content_open_id' => '',
373
-        'geodir_main_content_open_class' => '',
374
-        'geodir_main_content_open_replace' => '<!-- removed -->',
375
-        'geodir_main_content_close_replace' => '<!-- removed -->',
376
-        'geodir_top_content_add' => '',
377
-        'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
378
-        'geodir_before_widget_filter' => '',
379
-        'geodir_after_widget_filter' => '',
380
-        'geodir_theme_compat_css' => '',
381
-        'geodir_theme_compat_js' => '',
382
-        'geodir_theme_compat_default_options' => '',
383
-        'geodir_theme_compat_code' => ''
384
-    );
351
+	$theme_compat['GeoDirectory_Framework'] = array(
352
+		'geodir_wrapper_open_id' => 'geodir_wrapper',
353
+		'geodir_wrapper_open_class' => '',
354
+		'geodir_wrapper_open_replace' => '',
355
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
356
+		'geodir_wrapper_content_open_id' => 'geodir_content',
357
+		'geodir_wrapper_content_open_class' => '',
358
+		'geodir_wrapper_content_open_replace' => '',
359
+		'geodir_wrapper_content_close_replace' => '',
360
+		'geodir_article_open_id' => '',
361
+		'geodir_article_open_class' => '',
362
+		'geodir_article_open_replace' => '',
363
+		'geodir_article_close_replace' => '',
364
+		'geodir_sidebar_right_open_id' => '',
365
+		'geodir_sidebar_right_open_class' => '',
366
+		'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
367
+		'geodir_sidebar_right_close_replace' => '',
368
+		'geodir_sidebar_left_open_id' => '',
369
+		'geodir_sidebar_left_open_class' => '',
370
+		'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
371
+		'geodir_sidebar_left_close_replace' => '',
372
+		'geodir_main_content_open_id' => '',
373
+		'geodir_main_content_open_class' => '',
374
+		'geodir_main_content_open_replace' => '<!-- removed -->',
375
+		'geodir_main_content_close_replace' => '<!-- removed -->',
376
+		'geodir_top_content_add' => '',
377
+		'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
378
+		'geodir_before_widget_filter' => '',
379
+		'geodir_after_widget_filter' => '',
380
+		'geodir_theme_compat_css' => '',
381
+		'geodir_theme_compat_js' => '',
382
+		'geodir_theme_compat_default_options' => '',
383
+		'geodir_theme_compat_code' => ''
384
+	);
385 385
 
386 386
 //Directory Theme
387
-    $theme_compat['Directory_Starter'] = array(
388
-        'geodir_wrapper_open_id' => 'geodir_wrapper',
389
-        'geodir_wrapper_open_class' => '',
390
-        'geodir_wrapper_open_replace' => '',
391
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
392
-        'geodir_wrapper_content_open_id' => 'geodir_content',
393
-        'geodir_wrapper_content_open_class' => '',
394
-        'geodir_wrapper_content_open_replace' => '',
395
-        'geodir_wrapper_content_close_replace' => '',
396
-        'geodir_article_open_id' => '',
397
-        'geodir_article_open_class' => '',
398
-        'geodir_article_open_replace' => '',
399
-        'geodir_article_close_replace' => '',
400
-        'geodir_sidebar_right_open_id' => '',
401
-        'geodir_sidebar_right_open_class' => '',
402
-        'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
403
-        'geodir_sidebar_right_close_replace' => '',
404
-        'geodir_sidebar_left_open_id' => '',
405
-        'geodir_sidebar_left_open_class' => '',
406
-        'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
407
-        'geodir_sidebar_left_close_replace' => '',
408
-        'geodir_main_content_open_id' => '',
409
-        'geodir_main_content_open_class' => '',
410
-        'geodir_main_content_open_replace' => '<!-- removed -->',
411
-        'geodir_main_content_close_replace' => '<!-- removed -->',
412
-        'geodir_top_content_add' => '',
413
-        'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
414
-        'geodir_before_widget_filter' => '',
415
-        'geodir_after_widget_filter' => '',
416
-        'geodir_theme_compat_css' => '',
417
-        'geodir_theme_compat_js' => '',
418
-        'geodir_theme_compat_default_options' => '',
419
-        'geodir_theme_compat_code' => ''
420
-    );
387
+	$theme_compat['Directory_Starter'] = array(
388
+		'geodir_wrapper_open_id' => 'geodir_wrapper',
389
+		'geodir_wrapper_open_class' => '',
390
+		'geodir_wrapper_open_replace' => '',
391
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
392
+		'geodir_wrapper_content_open_id' => 'geodir_content',
393
+		'geodir_wrapper_content_open_class' => '',
394
+		'geodir_wrapper_content_open_replace' => '',
395
+		'geodir_wrapper_content_close_replace' => '',
396
+		'geodir_article_open_id' => '',
397
+		'geodir_article_open_class' => '',
398
+		'geodir_article_open_replace' => '',
399
+		'geodir_article_close_replace' => '',
400
+		'geodir_sidebar_right_open_id' => '',
401
+		'geodir_sidebar_right_open_class' => '',
402
+		'geodir_sidebar_right_open_replace' => '<aside id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
403
+		'geodir_sidebar_right_close_replace' => '',
404
+		'geodir_sidebar_left_open_id' => '',
405
+		'geodir_sidebar_left_open_class' => '',
406
+		'geodir_sidebar_left_open_replace' => '<aside  id="gd-sidebar-wrapper" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
407
+		'geodir_sidebar_left_close_replace' => '',
408
+		'geodir_main_content_open_id' => '',
409
+		'geodir_main_content_open_class' => '',
410
+		'geodir_main_content_open_replace' => '<!-- removed -->',
411
+		'geodir_main_content_close_replace' => '<!-- removed -->',
412
+		'geodir_top_content_add' => '',
413
+		'geodir_before_main_content_add' => '<div class="clearfix geodir-common">',
414
+		'geodir_before_widget_filter' => '',
415
+		'geodir_after_widget_filter' => '',
416
+		'geodir_theme_compat_css' => '',
417
+		'geodir_theme_compat_js' => '',
418
+		'geodir_theme_compat_default_options' => '',
419
+		'geodir_theme_compat_code' => ''
420
+	);
421 421
 
422 422
 //Jobby
423
-    $theme_compat['Jobby'] = $theme_compat['Directory_Starter'];
423
+	$theme_compat['Jobby'] = $theme_compat['Directory_Starter'];
424 424
 
425 425
 //GeoProperty
426
-    $theme_compat['GeoProperty'] = $theme_compat['Directory_Starter'];
426
+	$theme_compat['GeoProperty'] = $theme_compat['Directory_Starter'];
427 427
 
428 428
 //Avada
429
-    $theme_compat['Avada'] = array(
430
-        'geodir_wrapper_open_id' => '',
431
-        'geodir_wrapper_open_class' => '',
432
-        'geodir_wrapper_open_replace' => '<!-- removed -->',
433
-        'geodir_wrapper_close_replace' => '<!-- removed -->',
434
-        'geodir_wrapper_content_open_id' => 'content',
435
-        'geodir_wrapper_content_open_class' => '',
436
-        'geodir_wrapper_content_open_replace' => '',
437
-        'geodir_wrapper_content_close_replace' => '',
438
-        'geodir_article_open_id' => '',
439
-        'geodir_article_open_class' => '',
440
-        'geodir_article_open_replace' => '',
441
-        'geodir_article_close_replace' => '',
442
-        'geodir_sidebar_right_open_id' => '',
443
-        'geodir_sidebar_right_open_class' => '',
444
-        'geodir_sidebar_right_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
445
-        'geodir_sidebar_right_close_replace' => '</div><!-- end sidebar -->',
446
-        'geodir_sidebar_left_open_id' => '',
447
-        'geodir_sidebar_left_open_class' => '',
448
-        'geodir_sidebar_left_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
449
-        'geodir_sidebar_left_close_replace' => '</div><!-- end sidebar -->',
450
-        'geodir_main_content_open_id' => '',
451
-        'geodir_main_content_open_class' => '',
452
-        'geodir_main_content_open_replace' => '<!-- removed -->',
453
-        'geodir_main_content_close_replace' => '<!-- removed -->',
454
-        'geodir_top_content_add' => '',
455
-        'geodir_before_main_content_add' => '',
456
-        'geodir_before_widget_filter' => '',
457
-        'geodir_after_widget_filter' => '',
458
-        'geodir_theme_compat_css' => stripslashes('.geodir-sidebar-left{float:left}select,textarea{border-style:solid;border-width:1px}.top-menu li > div{visibility:visible}.geodir-chosen-container-single .chosen-single{height:auto}ul li#menu-item-gd-location-switcher ul{width:222px}ul li#menu-item-gd-location-switcher ul li{padding-right:0!important}#mobile-nav li#mobile-menu-item-gd-location-switcher li a{padding-left:10px;padding-right:10px}#menu-item-gd-location-switcher dd,#mobile-menu-item-gd-location-switcher{margin-left:0}#menu-item-gd-location-switcher dd a{display:block}.geodir-chosen-container .chosen-results li.highlighted{background-color:#eee;background-image:none;color:#444}#mobile-nav li.mobile-nav-item li a:before{content:\'\';margin:0}#mobile-nav li.mobile-nav-item li a{padding:10px;width:auto}.geodir-listing-search{text-align:center}.geodir-search{float:none;margin:0}.geodir-search select,.geodir-search .search_by_post,.geodir-search input[type="text"],.geodir-search button[type="button"], .geodir-search input[type="button"],.geodir-search input[type="submit"]{display:inline-block;float:none}.geodir-cat-list ul li,.map_category ul li{list-style-type:none}.wpgeo-avada .page-title ul li:after{content:\'\'}.top_banner_section{margin-bottom:0}.geodir-category-list-in{margin:0;padding:15px}.geodir_full_page .geodir-cat-list .widget-title{margin-top:0}.geodir_full_page .geodir-cat-list ul li{padding-left:0}.geodir-loc-bar{border:none;margin:0;padding:0}.geodir-loc-bar-in{padding:15px 0}.geodir_full_page section.widget{margin-bottom:20px}.sidebar .geodir-loginbox-list li{margin-bottom:10px;padding-bottom:10px}.sidebar .geodir-loginbox-list li a{display:block}.sidebar .geodir-chosen-container .chosen-results li{margin:0;padding:5px 6px}.sidebar .geodir-chosen-container .chosen-results li.highlighted{background:#eee;background-image:none;color:#000}.sidebar .geodir_category_list_view li.geodir-gridview{display:inline-block;margin-bottom:15px}.wpgeo-avada.double-sidebars #main #sidebar{margin-left:3%}.wpgeo-avada.double-sidebars #main #sidebar-2{margin-left:-100%}.wpgeo-avada.double-sidebars #content{float:left;margin-left:0}.geodir_full_page section.widget{margin-bottom: 0px;} .sidebar .widget .geodir-hide {display: none;}li.fusion-mobile-nav-item .geodir_location_tab_container a:before{content: "" !important; margin-right: auto !important;}li.fusion-mobile-nav-item .geodir_location_tab_container a{padding-left:5px !important;}'),
459
-        'geodir_theme_compat_js' => '',
460
-        'geodir_theme_compat_default_options' => '',
461
-        'geodir_theme_compat_code' => 'Avada'
462
-    );
429
+	$theme_compat['Avada'] = array(
430
+		'geodir_wrapper_open_id' => '',
431
+		'geodir_wrapper_open_class' => '',
432
+		'geodir_wrapper_open_replace' => '<!-- removed -->',
433
+		'geodir_wrapper_close_replace' => '<!-- removed -->',
434
+		'geodir_wrapper_content_open_id' => 'content',
435
+		'geodir_wrapper_content_open_class' => '',
436
+		'geodir_wrapper_content_open_replace' => '',
437
+		'geodir_wrapper_content_close_replace' => '',
438
+		'geodir_article_open_id' => '',
439
+		'geodir_article_open_class' => '',
440
+		'geodir_article_open_replace' => '',
441
+		'geodir_article_close_replace' => '',
442
+		'geodir_sidebar_right_open_id' => '',
443
+		'geodir_sidebar_right_open_class' => '',
444
+		'geodir_sidebar_right_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
445
+		'geodir_sidebar_right_close_replace' => '</div><!-- end sidebar -->',
446
+		'geodir_sidebar_left_open_id' => '',
447
+		'geodir_sidebar_left_open_class' => '',
448
+		'geodir_sidebar_left_open_replace' => '<div id="sidebar" class="sidebar [class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>',
449
+		'geodir_sidebar_left_close_replace' => '</div><!-- end sidebar -->',
450
+		'geodir_main_content_open_id' => '',
451
+		'geodir_main_content_open_class' => '',
452
+		'geodir_main_content_open_replace' => '<!-- removed -->',
453
+		'geodir_main_content_close_replace' => '<!-- removed -->',
454
+		'geodir_top_content_add' => '',
455
+		'geodir_before_main_content_add' => '',
456
+		'geodir_before_widget_filter' => '',
457
+		'geodir_after_widget_filter' => '',
458
+		'geodir_theme_compat_css' => stripslashes('.geodir-sidebar-left{float:left}select,textarea{border-style:solid;border-width:1px}.top-menu li > div{visibility:visible}.geodir-chosen-container-single .chosen-single{height:auto}ul li#menu-item-gd-location-switcher ul{width:222px}ul li#menu-item-gd-location-switcher ul li{padding-right:0!important}#mobile-nav li#mobile-menu-item-gd-location-switcher li a{padding-left:10px;padding-right:10px}#menu-item-gd-location-switcher dd,#mobile-menu-item-gd-location-switcher{margin-left:0}#menu-item-gd-location-switcher dd a{display:block}.geodir-chosen-container .chosen-results li.highlighted{background-color:#eee;background-image:none;color:#444}#mobile-nav li.mobile-nav-item li a:before{content:\'\';margin:0}#mobile-nav li.mobile-nav-item li a{padding:10px;width:auto}.geodir-listing-search{text-align:center}.geodir-search{float:none;margin:0}.geodir-search select,.geodir-search .search_by_post,.geodir-search input[type="text"],.geodir-search button[type="button"], .geodir-search input[type="button"],.geodir-search input[type="submit"]{display:inline-block;float:none}.geodir-cat-list ul li,.map_category ul li{list-style-type:none}.wpgeo-avada .page-title ul li:after{content:\'\'}.top_banner_section{margin-bottom:0}.geodir-category-list-in{margin:0;padding:15px}.geodir_full_page .geodir-cat-list .widget-title{margin-top:0}.geodir_full_page .geodir-cat-list ul li{padding-left:0}.geodir-loc-bar{border:none;margin:0;padding:0}.geodir-loc-bar-in{padding:15px 0}.geodir_full_page section.widget{margin-bottom:20px}.sidebar .geodir-loginbox-list li{margin-bottom:10px;padding-bottom:10px}.sidebar .geodir-loginbox-list li a{display:block}.sidebar .geodir-chosen-container .chosen-results li{margin:0;padding:5px 6px}.sidebar .geodir-chosen-container .chosen-results li.highlighted{background:#eee;background-image:none;color:#000}.sidebar .geodir_category_list_view li.geodir-gridview{display:inline-block;margin-bottom:15px}.wpgeo-avada.double-sidebars #main #sidebar{margin-left:3%}.wpgeo-avada.double-sidebars #main #sidebar-2{margin-left:-100%}.wpgeo-avada.double-sidebars #content{float:left;margin-left:0}.geodir_full_page section.widget{margin-bottom: 0px;} .sidebar .widget .geodir-hide {display: none;}li.fusion-mobile-nav-item .geodir_location_tab_container a:before{content: "" !important; margin-right: auto !important;}li.fusion-mobile-nav-item .geodir_location_tab_container a{padding-left:5px !important;}'),
459
+		'geodir_theme_compat_js' => '',
460
+		'geodir_theme_compat_default_options' => '',
461
+		'geodir_theme_compat_code' => 'Avada'
462
+	);
463 463
 
464 464
 //Enfold
465
-    $theme_compat['Enfold'] = array(
466
-        'geodir_wrapper_open_id' => '',
467
-        'geodir_wrapper_open_class' => '',
468
-        'geodir_wrapper_open_replace' => '',
469
-        'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
470
-        'geodir_wrapper_content_open_id' => '',
471
-        'geodir_wrapper_content_open_class' => '',
472
-        'geodir_wrapper_content_open_replace' => '',
473
-        'geodir_wrapper_content_close_replace' => '</div></main>',
474
-        'geodir_article_open_id' => '',
475
-        'geodir_article_open_class' => '',
476
-        'geodir_article_open_replace' => '',
477
-        'geodir_article_close_replace' => '',
478
-        'geodir_sidebar_right_open_id' => '',
479
-        'geodir_sidebar_right_open_class' => '',
480
-        'geodir_sidebar_right_open_replace' => '',
481
-        'geodir_sidebar_right_close_replace' => '</div></aside><!-- sidebar ends here-->',
482
-        'geodir_sidebar_left_open_id' => '',
483
-        'geodir_sidebar_left_open_class' => '',
484
-        'geodir_sidebar_left_open_replace' => '',
485
-        'geodir_sidebar_left_close_replace' => '</div></aside><!-- sidebar ends here-->',
486
-        'geodir_main_content_open_id' => '',
487
-        'geodir_main_content_open_class' => '',
488
-        'geodir_main_content_open_replace' => '',
489
-        'geodir_main_content_close_replace' => '',
490
-        'geodir_top_content_add' => '',
491
-        'geodir_before_main_content_add' => '',
492
-        'geodir_before_widget_filter' => '',
493
-        'geodir_after_widget_filter' => '',
494
-        'geodir_theme_compat_css' => stripslashes('.geodir_full_page .top_banner_section{margin-bottom:0}.widget .geodir-cat-list ul li{clear:none}.wpgeo-enfold .av-main-nav ul{width:222px}.geodir-listing-search .geodir-loc-bar{border-top:none;padding:0}#main .geodir-listing-search,.geodir-listing-search .geodir-loc-bar{margin-bottom:0}#main .geodir-loc-bar-in,#main .geodir-category-list-in{background-color:#fcfcfc;margin:20px 0;padding:20px}#main .geodir_full_page .geodir-loc-bar-in,#main .geodir_full_page .geodir-loc-bar,#main .geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}#main .geodir-loc-bar-in{padding:20px}#main .geodir-search{margin:0;width:100%}#main .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#main .geodir-search input[type="text"]{margin:0 3% 0 0;padding:10px;width:32.4%}#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"]{font-size:inherit;line-height:2.25;margin:0;padding:7px;width:13%}.enfold-home-top section.widget{margin:0;padding:0}.enfold-home-top .top_banner_section{margin-bottom:0}.enfold-home-top .geodir-loc-bar{background:#fcfcfc;border:none;margin:0;padding:0}#main .enfold-home-top .geodir-loc-bar-in{background:none;border:none;margin:0 auto;padding:20px 0}#main .geodir-breadcrumb{border-bottom-style:solid;border-bottom-width:1px}#gd-tabs dt{clear:none}#geodir_slider ul li{list-style-type:none;margin:0;padding:0}#respond{clear:both}#comments .comments-title span{display:inline;font-size:inherit;font-weight:700}#reviewsTab .comments-area .bypostauthor cite span{display:inline}#top #comments .commentlist .comment,#top #comments .commentlist .comment > div{min-height:0}.commentlist .commenttext{padding-top:15px}#comment_imagesdropbox{margin-bottom:20px}.wpgeo-enfold .geodir_category_list_view li{margin-left:0;padding:0}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_category_list_view li .geodir-post-img{display:block}.wpgeo-enfold .geodir_event_listing_calendar tr.title{background:#ccc}@media only screen and (max-width:480px){.geodir_category_list_view li .geodir-content,.geodir_category_list_view li .geodir-post-img,.geodir_category_list_view li .geodir-addinfo{float:none;width:100%;margin:10px 0}#main .geodir-search input[type="text"],#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"],#main .geodir-search select{margin:10px 0;width:100%}}#main .geodir_full_page section:last-child .geodir-loc-bar{margin-bottom: -1px;border-bottom: none;}'),
495
-        'geodir_theme_compat_js' => '',
496
-        'geodir_theme_compat_default_options' => '',
497
-        'geodir_theme_compat_code' => 'Enfold'
498
-    );
465
+	$theme_compat['Enfold'] = array(
466
+		'geodir_wrapper_open_id' => '',
467
+		'geodir_wrapper_open_class' => '',
468
+		'geodir_wrapper_open_replace' => '',
469
+		'geodir_wrapper_close_replace' => '</div></div><!-- content ends here-->',
470
+		'geodir_wrapper_content_open_id' => '',
471
+		'geodir_wrapper_content_open_class' => '',
472
+		'geodir_wrapper_content_open_replace' => '',
473
+		'geodir_wrapper_content_close_replace' => '</div></main>',
474
+		'geodir_article_open_id' => '',
475
+		'geodir_article_open_class' => '',
476
+		'geodir_article_open_replace' => '',
477
+		'geodir_article_close_replace' => '',
478
+		'geodir_sidebar_right_open_id' => '',
479
+		'geodir_sidebar_right_open_class' => '',
480
+		'geodir_sidebar_right_open_replace' => '',
481
+		'geodir_sidebar_right_close_replace' => '</div></aside><!-- sidebar ends here-->',
482
+		'geodir_sidebar_left_open_id' => '',
483
+		'geodir_sidebar_left_open_class' => '',
484
+		'geodir_sidebar_left_open_replace' => '',
485
+		'geodir_sidebar_left_close_replace' => '</div></aside><!-- sidebar ends here-->',
486
+		'geodir_main_content_open_id' => '',
487
+		'geodir_main_content_open_class' => '',
488
+		'geodir_main_content_open_replace' => '',
489
+		'geodir_main_content_close_replace' => '',
490
+		'geodir_top_content_add' => '',
491
+		'geodir_before_main_content_add' => '',
492
+		'geodir_before_widget_filter' => '',
493
+		'geodir_after_widget_filter' => '',
494
+		'geodir_theme_compat_css' => stripslashes('.geodir_full_page .top_banner_section{margin-bottom:0}.widget .geodir-cat-list ul li{clear:none}.wpgeo-enfold .av-main-nav ul{width:222px}.geodir-listing-search .geodir-loc-bar{border-top:none;padding:0}#main .geodir-listing-search,.geodir-listing-search .geodir-loc-bar{margin-bottom:0}#main .geodir-loc-bar-in,#main .geodir-category-list-in{background-color:#fcfcfc;margin:20px 0;padding:20px}#main .geodir_full_page .geodir-loc-bar-in,#main .geodir_full_page .geodir-loc-bar,#main .geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}#main .geodir-loc-bar-in{padding:20px}#main .geodir-search{margin:0;width:100%}#main .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#main .geodir-search input[type="text"]{margin:0 3% 0 0;padding:10px;width:32.4%}#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"]{font-size:inherit;line-height:2.25;margin:0;padding:7px;width:13%}.enfold-home-top section.widget{margin:0;padding:0}.enfold-home-top .top_banner_section{margin-bottom:0}.enfold-home-top .geodir-loc-bar{background:#fcfcfc;border:none;margin:0;padding:0}#main .enfold-home-top .geodir-loc-bar-in{background:none;border:none;margin:0 auto;padding:20px 0}#main .geodir-breadcrumb{border-bottom-style:solid;border-bottom-width:1px}#gd-tabs dt{clear:none}#geodir_slider ul li{list-style-type:none;margin:0;padding:0}#respond{clear:both}#comments .comments-title span{display:inline;font-size:inherit;font-weight:700}#reviewsTab .comments-area .bypostauthor cite span{display:inline}#top #comments .commentlist .comment,#top #comments .commentlist .comment > div{min-height:0}.commentlist .commenttext{padding-top:15px}#comment_imagesdropbox{margin-bottom:20px}.wpgeo-enfold .geodir_category_list_view li{margin-left:0;padding:0}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_category_list_view li .geodir-post-img{display:block}.wpgeo-enfold .geodir_event_listing_calendar tr.title{background:#ccc}@media only screen and (max-width:480px){.geodir_category_list_view li .geodir-content,.geodir_category_list_view li .geodir-post-img,.geodir_category_list_view li .geodir-addinfo{float:none;width:100%;margin:10px 0}#main .geodir-search input[type="text"],#main .geodir-search input[type="button"],#main .geodir-search input[type="submit"],#main .geodir-search select{margin:10px 0;width:100%}}#main .geodir_full_page section:last-child .geodir-loc-bar{margin-bottom: -1px;border-bottom: none;}'),
495
+		'geodir_theme_compat_js' => '',
496
+		'geodir_theme_compat_default_options' => '',
497
+		'geodir_theme_compat_code' => 'Enfold'
498
+	);
499 499
 
500 500
 // X
501
-    $theme_compat['X'] = array(
502
-        'geodir_wrapper_open_id' => '',
503
-        'geodir_wrapper_open_class' => '',
504
-        'geodir_wrapper_open_replace' => '',
505
-        'geodir_wrapper_close_replace' => '',
506
-        'geodir_wrapper_content_open_id' => '',
507
-        'geodir_wrapper_content_open_class' => '',
508
-        'geodir_wrapper_content_open_replace' => '',
509
-        'geodir_wrapper_content_close_replace' => '',
510
-        'geodir_article_open_id' => '',
511
-        'geodir_article_open_class' => '',
512
-        'geodir_article_open_replace' => '',
513
-        'geodir_article_close_replace' => '',
514
-        'geodir_sidebar_right_open_id' => '',
515
-        'geodir_sidebar_right_open_class' => '',
516
-        'geodir_sidebar_right_open_replace' => '',
517
-        'geodir_sidebar_right_close_replace' => '',
518
-        'geodir_sidebar_left_open_id' => '',
519
-        'geodir_sidebar_left_open_class' => '',
520
-        'geodir_sidebar_left_open_replace' => '',
521
-        'geodir_sidebar_left_close_replace' => '',
522
-        'geodir_main_content_open_id' => '',
523
-        'geodir_main_content_open_class' => '',
524
-        'geodir_main_content_open_replace' => '',
525
-        'geodir_main_content_close_replace' => '',
526
-        'geodir_top_content_add' => '',
527
-        'geodir_before_main_content_add' => '',
528
-        'geodir_before_widget_filter' => '',
529
-        'geodir_after_widget_filter' => '',
530
-        'geodir_theme_compat_css' => stripslashes('.x-colophon.bottom{clear:both}#geodir-main-content,.geodir_flex-container{margin-top:16px}.geodir-x ul{list-style:none}.widget ul.geodir_category_list_view{border:none}.geodir_category_list_view li.geodir-gridview:last-child{border-bottom:1px solid #e1e1e1}.home .x-header-landmark{display:none}.geodir-x .x-main .geodir_advance_search_widget{margin:0}.geodir-x .top_banner_section{margin-bottom:0}.geodir-loc-bar{background:rgba(0,0,0,0.05);margin:0;padding:0}.geodir-loc-bar-in{background:none;border:none;padding:10px}.geodir-search{margin:0;width:100%}.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{border:1px solid #ccc;box-shadow:none;height:auto;line-height:21px;margin:0 1% 0 0;padding:5px 10px}.widget .geodir-search select,.geodir-search input[type="text"]{width:28%}.geodir-search input[type="submit"],.geodir-search input[type="button"]{line-height:19px;margin-right:0;width:11%}.geodir-search input:hover[type="submit"],.geodir-search input:hover[type="button"]{background:#333;color:#fff}.geodir-cat-list .widget-title{margin-top:0}.geodir-x .geodir-category-list-in{background:rgba(0,0,0,0.05);border:none}.widget .geodir-cat-list ul.geodir-popular-cat-list{border:none;border-radius:0;box-shadow:none}.geodir_full_page .geodir-cat-list ul li{border:none}.geodir_full_page .geodir-cat-list ul li a{border:none}.post-type-archive .geodir-loc-bar{border:none;margin-top:20px}#menu-item-gd-location-switcher dd{margin-left:0}.geodir-chosen-container-single .chosen-single{height:auto}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_full_page section.widget{clear:both}.x-ethos .entry-title{margin-bottom:20px}.x-ethos .geodir-chosen-container-single .chosen-single{padding:0 0 0 8px}.x-ethos .widget ul li a,.x-ethos .geodir_category_list_view li{color:#333}@media only screen and (max-width:767px){.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{margin:0 0 10px;width:100%}}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-loc-bar,.geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-category-list-in{border-bottom:1px solid rgba(0,0,0,0.1)}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
531
-        'geodir_theme_compat_js' => '',
532
-        'geodir_theme_compat_default_options' => '',
533
-        'geodir_theme_compat_code' => 'X'
534
-    );
501
+	$theme_compat['X'] = array(
502
+		'geodir_wrapper_open_id' => '',
503
+		'geodir_wrapper_open_class' => '',
504
+		'geodir_wrapper_open_replace' => '',
505
+		'geodir_wrapper_close_replace' => '',
506
+		'geodir_wrapper_content_open_id' => '',
507
+		'geodir_wrapper_content_open_class' => '',
508
+		'geodir_wrapper_content_open_replace' => '',
509
+		'geodir_wrapper_content_close_replace' => '',
510
+		'geodir_article_open_id' => '',
511
+		'geodir_article_open_class' => '',
512
+		'geodir_article_open_replace' => '',
513
+		'geodir_article_close_replace' => '',
514
+		'geodir_sidebar_right_open_id' => '',
515
+		'geodir_sidebar_right_open_class' => '',
516
+		'geodir_sidebar_right_open_replace' => '',
517
+		'geodir_sidebar_right_close_replace' => '',
518
+		'geodir_sidebar_left_open_id' => '',
519
+		'geodir_sidebar_left_open_class' => '',
520
+		'geodir_sidebar_left_open_replace' => '',
521
+		'geodir_sidebar_left_close_replace' => '',
522
+		'geodir_main_content_open_id' => '',
523
+		'geodir_main_content_open_class' => '',
524
+		'geodir_main_content_open_replace' => '',
525
+		'geodir_main_content_close_replace' => '',
526
+		'geodir_top_content_add' => '',
527
+		'geodir_before_main_content_add' => '',
528
+		'geodir_before_widget_filter' => '',
529
+		'geodir_after_widget_filter' => '',
530
+		'geodir_theme_compat_css' => stripslashes('.x-colophon.bottom{clear:both}#geodir-main-content,.geodir_flex-container{margin-top:16px}.geodir-x ul{list-style:none}.widget ul.geodir_category_list_view{border:none}.geodir_category_list_view li.geodir-gridview:last-child{border-bottom:1px solid #e1e1e1}.home .x-header-landmark{display:none}.geodir-x .x-main .geodir_advance_search_widget{margin:0}.geodir-x .top_banner_section{margin-bottom:0}.geodir-loc-bar{background:rgba(0,0,0,0.05);margin:0;padding:0}.geodir-loc-bar-in{background:none;border:none;padding:10px}.geodir-search{margin:0;width:100%}.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{border:1px solid #ccc;box-shadow:none;height:auto;line-height:21px;margin:0 1% 0 0;padding:5px 10px}.widget .geodir-search select,.geodir-search input[type="text"]{width:28%}.geodir-search input[type="submit"],.geodir-search input[type="button"]{line-height:19px;margin-right:0;width:11%}.geodir-search input:hover[type="submit"],.geodir-search input:hover[type="button"]{background:#333;color:#fff}.geodir-cat-list .widget-title{margin-top:0}.geodir-x .geodir-category-list-in{background:rgba(0,0,0,0.05);border:none}.widget .geodir-cat-list ul.geodir-popular-cat-list{border:none;border-radius:0;box-shadow:none}.geodir_full_page .geodir-cat-list ul li{border:none}.geodir_full_page .geodir-cat-list ul li a{border:none}.post-type-archive .geodir-loc-bar{border:none;margin-top:20px}#menu-item-gd-location-switcher dd{margin-left:0}.geodir-chosen-container-single .chosen-single{height:auto}.widget ul.geodir-loginbox-list{overflow:visible}.geodir_full_page section.widget{clear:both}.x-ethos .entry-title{margin-bottom:20px}.x-ethos .geodir-chosen-container-single .chosen-single{padding:0 0 0 8px}.x-ethos .widget ul li a,.x-ethos .geodir_category_list_view li{color:#333}@media only screen and (max-width:767px){.widget .geodir-search select,.geodir-search input[type="text"],.geodir-search input[type="button"],.geodir-search input[type="submit"]{margin:0 0 10px;width:100%}}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-loc-bar,.geodir_full_page .geodir-category-list-in{margin-top:0;margin-bottom:0}.geodir_full_page .geodir-loc-bar-in,.geodir_full_page .geodir-category-list-in{border-bottom:1px solid rgba(0,0,0,0.1)}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
531
+		'geodir_theme_compat_js' => '',
532
+		'geodir_theme_compat_default_options' => '',
533
+		'geodir_theme_compat_code' => 'X'
534
+	);
535 535
 
536 536
 // Divi
537
-    $theme_compat['Divi'] = array(
538
-        'geodir_wrapper_open_id' => 'main-content',
539
-        'geodir_wrapper_open_class' => '',
540
-        'geodir_wrapper_open_replace' => '',
541
-        'geodir_wrapper_close_replace' => '',
542
-        'geodir_wrapper_content_open_id' => 'left-area',
543
-        'geodir_wrapper_content_open_class' => '',
544
-        'geodir_wrapper_content_open_replace' => '<div class="container"><div id="content-area" class="clearfix"><div id="[id]" class="[class]" role="main" >',
545
-        'geodir_wrapper_content_close_replace' => '',
546
-        'geodir_article_open_id' => '',
547
-        'geodir_article_open_class' => '',
548
-        'geodir_article_open_replace' => '',
549
-        'geodir_article_close_replace' => '',
550
-        'geodir_sidebar_right_open_id' => 'sidebar',
551
-        'geodir_sidebar_right_open_class' => '',
552
-        'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
553
-        'geodir_sidebar_right_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
554
-        'geodir_sidebar_left_open_id' => 'sidebar',
555
-        'geodir_sidebar_left_open_class' => '',
556
-        'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
557
-        'geodir_sidebar_left_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
558
-        'geodir_main_content_open_id' => '',
559
-        'geodir_main_content_open_class' => '',
560
-        'geodir_main_content_open_replace' => '',
561
-        'geodir_main_content_close_replace' => '',
562
-        'geodir_top_content_add' => '',
563
-        'geodir_before_main_content_add' => '',
564
-        'geodir_before_widget_filter' => '',
565
-        'geodir_after_widget_filter' => '',
566
-        'geodir_theme_compat_css' => stripslashes('#left-area ul.geodir-direction-nav{list-style-type:none}#sidebar .geodir-company_info{margin-left:30px}#sidebar .geodir-widget{float:none;margin:0 0 30px 30px}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.archive .entry-header,.geodir-breadcrumb{border-bottom:1px solid #e2e2e2}.archive .entry-header h1,ul#breadcrumbs{padding:0 15px;width:100%}#left-area ul.geodir_category_list_view{padding:10px 0}.nav li#menu-item-gd-location-switcher ul{width:222px}#menu-item-gd-location-switcher li.gd-location-switcher-menu-item{padding-right:0}#menu-item-gd-location-switcher dd{margin-left:0}#menu-item-gd-location-switcher .geodir_location_tab_container dd a{padding:5px;width:auto}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type=button],.geodir_full_page .geodir-search input[type=submit],.geodir_full_page .geodir-search input[type=text],.geodir_full_page .geodir-search select{display:inline-block;float:none}'),
567
-        'geodir_theme_compat_js' => '',
568
-        'geodir_theme_compat_default_options' => '',
569
-        'geodir_theme_compat_code' => 'Divi'
570
-    );
537
+	$theme_compat['Divi'] = array(
538
+		'geodir_wrapper_open_id' => 'main-content',
539
+		'geodir_wrapper_open_class' => '',
540
+		'geodir_wrapper_open_replace' => '',
541
+		'geodir_wrapper_close_replace' => '',
542
+		'geodir_wrapper_content_open_id' => 'left-area',
543
+		'geodir_wrapper_content_open_class' => '',
544
+		'geodir_wrapper_content_open_replace' => '<div class="container"><div id="content-area" class="clearfix"><div id="[id]" class="[class]" role="main" >',
545
+		'geodir_wrapper_content_close_replace' => '',
546
+		'geodir_article_open_id' => '',
547
+		'geodir_article_open_class' => '',
548
+		'geodir_article_open_replace' => '',
549
+		'geodir_article_close_replace' => '',
550
+		'geodir_sidebar_right_open_id' => 'sidebar',
551
+		'geodir_sidebar_right_open_class' => '',
552
+		'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
553
+		'geodir_sidebar_right_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
554
+		'geodir_sidebar_left_open_id' => 'sidebar',
555
+		'geodir_sidebar_left_open_class' => '',
556
+		'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="" role="complementary" itemscope itemtype="[itemtype]" >',
557
+		'geodir_sidebar_left_close_replace' => '</aside><!-- sidebar ends here--></div></div>',
558
+		'geodir_main_content_open_id' => '',
559
+		'geodir_main_content_open_class' => '',
560
+		'geodir_main_content_open_replace' => '',
561
+		'geodir_main_content_close_replace' => '',
562
+		'geodir_top_content_add' => '',
563
+		'geodir_before_main_content_add' => '',
564
+		'geodir_before_widget_filter' => '',
565
+		'geodir_after_widget_filter' => '',
566
+		'geodir_theme_compat_css' => stripslashes('#left-area ul.geodir-direction-nav{list-style-type:none}#sidebar .geodir-company_info{margin-left:30px}#sidebar .geodir-widget{float:none;margin:0 0 30px 30px}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.archive .entry-header,.geodir-breadcrumb{border-bottom:1px solid #e2e2e2}.archive .entry-header h1,ul#breadcrumbs{padding:0 15px;width:100%}#left-area ul.geodir_category_list_view{padding:10px 0}.nav li#menu-item-gd-location-switcher ul{width:222px}#menu-item-gd-location-switcher li.gd-location-switcher-menu-item{padding-right:0}#menu-item-gd-location-switcher dd{margin-left:0}#menu-item-gd-location-switcher .geodir_location_tab_container dd a{padding:5px;width:auto}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type=button],.geodir_full_page .geodir-search input[type=submit],.geodir_full_page .geodir-search input[type=text],.geodir_full_page .geodir-search select{display:inline-block;float:none}'),
567
+		'geodir_theme_compat_js' => '',
568
+		'geodir_theme_compat_default_options' => '',
569
+		'geodir_theme_compat_code' => 'Divi'
570
+	);
571 571
 
572 572
 // Genesis
573
-    $theme_compat['Genesis'] = array(
574
-        'geodir_wrapper_open_id' => '',
575
-        'geodir_wrapper_open_class' => 'content-sidebar-wrap',
576
-        'geodir_wrapper_open_replace' => '',
577
-        'geodir_wrapper_close_replace' => '',
578
-        'geodir_wrapper_content_open_id' => '',
579
-        'geodir_wrapper_content_open_class' => 'content',
580
-        'geodir_wrapper_content_open_replace' => '<div class="[class]" role="main" >',
581
-        'geodir_wrapper_content_close_replace' => '',
582
-        'geodir_article_open_id' => '',
583
-        'geodir_article_open_class' => '',
584
-        'geodir_article_open_replace' => '',
585
-        'geodir_article_close_replace' => '',
586
-        'geodir_sidebar_right_open_id' => '',
587
-        'geodir_sidebar_right_open_class' => 'sidebar sidebar-primary widget-area',
588
-        'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
589
-        'geodir_sidebar_right_close_replace' => '',
590
-        'geodir_sidebar_left_open_id' => '',
591
-        'geodir_sidebar_left_open_class' => 'sidebar sidebar-secondary widget-area',
592
-        'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
593
-        'geodir_sidebar_left_close_replace' => '',
594
-        'geodir_main_content_open_id' => '',
595
-        'geodir_main_content_open_class' => '',
596
-        'geodir_main_content_open_replace' => '<main  id="[id]" class="entry [class]"  role="main">',
597
-        'geodir_main_content_close_replace' => '',
598
-        'geodir_top_content_add' => '',
599
-        'geodir_before_main_content_add' => '',
600
-        'geodir_before_widget_filter' => '',
601
-        'geodir_after_widget_filter' => '',
602
-        'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-gd-location-switcher menu-item-has-children gd-location-switcher',
603
-        'geodir_theme_compat_css' => stripslashes('.full-width-content #geodir-wrapper-content{width:100%}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}.content{float:left}.sidebar-content .content,.sidebar-content #geodir-wrapper-content{float:right}.sidebar .geodir-company_info{background-color:#fff;border:none}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.geodir-breadcrumb-bar{margin-bottom:-35px} .search-page .entry-title,.listings-page .entry-title{font-size: 20px;}.site-inner .geodir-breadcrumb-bar{margin-bottom:0px}'),
604
-        'geodir_theme_compat_js' => '',
605
-        'geodir_theme_compat_default_options' => '',
606
-        'geodir_theme_compat_code' => 'Genesis'
607
-    );
573
+	$theme_compat['Genesis'] = array(
574
+		'geodir_wrapper_open_id' => '',
575
+		'geodir_wrapper_open_class' => 'content-sidebar-wrap',
576
+		'geodir_wrapper_open_replace' => '',
577
+		'geodir_wrapper_close_replace' => '',
578
+		'geodir_wrapper_content_open_id' => '',
579
+		'geodir_wrapper_content_open_class' => 'content',
580
+		'geodir_wrapper_content_open_replace' => '<div class="[class]" role="main" >',
581
+		'geodir_wrapper_content_close_replace' => '',
582
+		'geodir_article_open_id' => '',
583
+		'geodir_article_open_class' => '',
584
+		'geodir_article_open_replace' => '',
585
+		'geodir_article_close_replace' => '',
586
+		'geodir_sidebar_right_open_id' => '',
587
+		'geodir_sidebar_right_open_class' => 'sidebar sidebar-primary widget-area',
588
+		'geodir_sidebar_right_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
589
+		'geodir_sidebar_right_close_replace' => '',
590
+		'geodir_sidebar_left_open_id' => '',
591
+		'geodir_sidebar_left_open_class' => 'sidebar sidebar-secondary widget-area',
592
+		'geodir_sidebar_left_open_replace' => '<aside  id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]">',
593
+		'geodir_sidebar_left_close_replace' => '',
594
+		'geodir_main_content_open_id' => '',
595
+		'geodir_main_content_open_class' => '',
596
+		'geodir_main_content_open_replace' => '<main  id="[id]" class="entry [class]"  role="main">',
597
+		'geodir_main_content_close_replace' => '',
598
+		'geodir_top_content_add' => '',
599
+		'geodir_before_main_content_add' => '',
600
+		'geodir_before_widget_filter' => '',
601
+		'geodir_after_widget_filter' => '',
602
+		'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-gd-location-switcher menu-item-has-children gd-location-switcher',
603
+		'geodir_theme_compat_css' => stripslashes('.full-width-content #geodir-wrapper-content{width:100%}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}.content{float:left}.sidebar-content .content,.sidebar-content #geodir-wrapper-content{float:right}.sidebar .geodir-company_info{background-color:#fff;border:none}.geodir_full_page .geodir-loc-bar{padding:0;margin:0;border:none}.geodir_full_page .geodir-category-list-in{margin-top:0}.geodir_full_page .top_banner_section{margin-bottom:0}.geodir-breadcrumb-bar{margin-bottom:-35px} .search-page .entry-title,.listings-page .entry-title{font-size: 20px;}.site-inner .geodir-breadcrumb-bar{margin-bottom:0px}'),
604
+		'geodir_theme_compat_js' => '',
605
+		'geodir_theme_compat_default_options' => '',
606
+		'geodir_theme_compat_code' => 'Genesis'
607
+	);
608 608
 
609 609
 // Jupiter
610
-    $theme_compat['Jupiter'] = array(
611
-        'geodir_wrapper_open_id' => '',
612
-        'geodir_wrapper_open_class' => '',
613
-        'geodir_wrapper_open_replace' => '<div id="theme-page"><div class="mk-main-wrapper-holder"><div  class="theme-page-wrapper mk-main-wrapper  mk-grid vc_row-fluid">',
614
-        'geodir_wrapper_close_replace' => '</div></div></div>',
615
-        'geodir_wrapper_content_open_id' => '',
616
-        'geodir_wrapper_content_open_class' => '',
617
-        'geodir_wrapper_content_open_replace' => '',
618
-        'geodir_wrapper_content_close_replace' => '',
619
-        'geodir_article_open_id' => '',
620
-        'geodir_article_open_class' => '',
621
-        'geodir_article_open_replace' => '',
622
-        'geodir_article_close_replace' => '',
623
-        'geodir_sidebar_right_open_id' => 'mk-sidebar',
624
-        'geodir_sidebar_right_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
625
-        'geodir_sidebar_right_open_replace' => '',
626
-        'geodir_sidebar_right_close_replace' => '',
627
-        'geodir_sidebar_left_open_id' => 'mk-sidebar',
628
-        'geodir_sidebar_left_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
629
-        'geodir_sidebar_left_open_replace' => '',
630
-        'geodir_sidebar_left_close_replace' => '',
631
-        'geodir_main_content_open_id' => '',
632
-        'geodir_main_content_open_class' => '',
633
-        'geodir_main_content_open_replace' => '',
634
-        'geodir_main_content_close_replace' => '',
635
-        'geodir_top_content_add' => '',
636
-        'geodir_before_main_content_add' => '',
637
-        'geodir_before_widget_filter' => '',
638
-        'geodir_after_widget_filter' => '',
639
-        'geodir_before_title_filter' => '<h3 class="widgettitle geodir-widget-title">',
640
-        'geodir_after_title_filter' => '',
641
-        'geodir_menu_li_class_filter' => 'menu-item menu-item-has-children no-mega-menu',
642
-        'geodir_sub_menu_ul_class_filter' => '',
643
-        'geodir_sub_menu_li_class_filter' => '',
644
-        'geodir_menu_a_class_filter' => 'menu-item-link',
645
-        'geodir_sub_menu_a_class_filter' => 'menu-item-link one-page-nav-item',
646
-        'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-type-social menu-item-type-social gd-location-switcher menu-item-has-children no-mega-menu',
647
-        'geodir_location_switcher_menu_a_class_filter' => 'menu-item-link',
648
-        'geodir_location_switcher_menu_sub_ul_class_filter' => '',
649
-        'geodir_location_switcher_menu_sub_li_class_filter' => '',
650
-        'geodir_theme_compat_css' => stripslashes('.geodir-widget li,.geodir_category_list_view li{margin:0}#theme-page h3.geodir-entry-title{font-size:14px}#menu-item-gd-location-switcher dd{line-height:44px}#menu-item-gd-location-switcher .geodir_location_sugestion{line-height:20px}.geodir_loginbox{overflow:visible}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
651
-        'geodir_theme_compat_js' => '',
652
-        'geodir_theme_compat_default_options' => '',
653
-        'geodir_theme_compat_code' => 'Jupiter'
654
-    );
610
+	$theme_compat['Jupiter'] = array(
611
+		'geodir_wrapper_open_id' => '',
612
+		'geodir_wrapper_open_class' => '',
613
+		'geodir_wrapper_open_replace' => '<div id="theme-page"><div class="mk-main-wrapper-holder"><div  class="theme-page-wrapper mk-main-wrapper  mk-grid vc_row-fluid">',
614
+		'geodir_wrapper_close_replace' => '</div></div></div>',
615
+		'geodir_wrapper_content_open_id' => '',
616
+		'geodir_wrapper_content_open_class' => '',
617
+		'geodir_wrapper_content_open_replace' => '',
618
+		'geodir_wrapper_content_close_replace' => '',
619
+		'geodir_article_open_id' => '',
620
+		'geodir_article_open_class' => '',
621
+		'geodir_article_open_replace' => '',
622
+		'geodir_article_close_replace' => '',
623
+		'geodir_sidebar_right_open_id' => 'mk-sidebar',
624
+		'geodir_sidebar_right_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
625
+		'geodir_sidebar_right_open_replace' => '',
626
+		'geodir_sidebar_right_close_replace' => '',
627
+		'geodir_sidebar_left_open_id' => 'mk-sidebar',
628
+		'geodir_sidebar_left_open_class' => 'mk-builtin geodir-sidebar-right geodir-listings-sidebar-right',
629
+		'geodir_sidebar_left_open_replace' => '',
630
+		'geodir_sidebar_left_close_replace' => '',
631
+		'geodir_main_content_open_id' => '',
632
+		'geodir_main_content_open_class' => '',
633
+		'geodir_main_content_open_replace' => '',
634
+		'geodir_main_content_close_replace' => '',
635
+		'geodir_top_content_add' => '',
636
+		'geodir_before_main_content_add' => '',
637
+		'geodir_before_widget_filter' => '',
638
+		'geodir_after_widget_filter' => '',
639
+		'geodir_before_title_filter' => '<h3 class="widgettitle geodir-widget-title">',
640
+		'geodir_after_title_filter' => '',
641
+		'geodir_menu_li_class_filter' => 'menu-item menu-item-has-children no-mega-menu',
642
+		'geodir_sub_menu_ul_class_filter' => '',
643
+		'geodir_sub_menu_li_class_filter' => '',
644
+		'geodir_menu_a_class_filter' => 'menu-item-link',
645
+		'geodir_sub_menu_a_class_filter' => 'menu-item-link one-page-nav-item',
646
+		'geodir_location_switcher_menu_li_class_filter' => 'menu-item menu-item-type-social menu-item-type-social gd-location-switcher menu-item-has-children no-mega-menu',
647
+		'geodir_location_switcher_menu_a_class_filter' => 'menu-item-link',
648
+		'geodir_location_switcher_menu_sub_ul_class_filter' => '',
649
+		'geodir_location_switcher_menu_sub_li_class_filter' => '',
650
+		'geodir_theme_compat_css' => stripslashes('.geodir-widget li,.geodir_category_list_view li{margin:0}#theme-page h3.geodir-entry-title{font-size:14px}#menu-item-gd-location-switcher dd{line-height:44px}#menu-item-gd-location-switcher .geodir_location_sugestion{line-height:20px}.geodir_loginbox{overflow:visible}.geodir_full_page .geodir-listing-search{text-align:center}.geodir_full_page .geodir-search{float:none;margin:0}.geodir_full_page .geodir-search select,.geodir_full_page .geodir-search .search_by_post,.geodir_full_page .geodir-search input[type="text"],.geodir_full_page .geodir-search input[type="button"],.geodir_full_page .geodir-search input[type="submit"]{display:inline-block;float:none}'),
651
+		'geodir_theme_compat_js' => '',
652
+		'geodir_theme_compat_default_options' => '',
653
+		'geodir_theme_compat_code' => 'Jupiter'
654
+	);
655 655
 
656 656
 // Multi News
657
-    $theme_compat['Multi_News'] = array(
658
-        'geodir_wrapper_open_id' => '',
659
-        'geodir_wrapper_open_class' => 'main-container clearfix',
660
-        'geodir_wrapper_open_replace' => '',
661
-        'geodir_wrapper_close_replace' => '',
662
-        'geodir_wrapper_content_open_id' => '',
663
-        'geodir_wrapper_content_open_class' => '',
664
-        'geodir_wrapper_content_open_replace' => '<div class="main-left" ><div class="main-content  "><div class="site-content page-wrap">',
665
-        'geodir_wrapper_content_close_replace' => '</div></div></div>',
666
-        'geodir_article_open_id' => '',
667
-        'geodir_article_open_class' => '',
668
-        'geodir_article_open_replace' => '',
669
-        'geodir_article_close_replace' => '',
670
-        'geodir_sidebar_right_open_id' => '',
671
-        'geodir_sidebar_right_open_class' => '',
672
-        'geodir_sidebar_right_open_replace' => '<aside  class="sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
673
-        'geodir_sidebar_right_close_replace' => '',
674
-        'geodir_sidebar_left_open_id' => '',
675
-        'geodir_sidebar_left_open_class' => '',
676
-        'geodir_sidebar_left_open_replace' => '<aside  class="secondary-sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
677
-        'geodir_sidebar_left_close_replace' => '',
678
-        'geodir_main_content_open_id' => '',
679
-        'geodir_main_content_open_class' => '',
680
-        'geodir_main_content_open_replace' => '<div class="site-content page-wrap">',
681
-        'geodir_main_content_close_replace' => '</div>',
682
-        'geodir_top_content_add' => '',
683
-        'geodir_before_main_content_add' => '',
684
-        'geodir_full_page_class_filter' => 'section full-width-section',
685
-        'geodir_before_widget_filter' => '',
686
-        'geodir_after_widget_filter' => '',
687
-        'geodir_before_title_filter' => '<div class="widget-title"><h2>',
688
-        'geodir_after_title_filter' => '</h2></div>',
689
-        'geodir_menu_li_class_filter' => '',
690
-        'geodir_sub_menu_ul_class_filter' => '',
691
-        'geodir_sub_menu_li_class_filter' => '',
692
-        'geodir_menu_a_class_filter' => '',
693
-        'geodir_sub_menu_a_class_filter' => '',
694
-        'geodir_location_switcher_menu_li_class_filter' => '',
695
-        'geodir_location_switcher_menu_a_class_filter' => '',
696
-        'geodir_location_switcher_menu_sub_ul_class_filter' => '',
697
-        'geodir_location_switcher_menu_sub_li_class_filter' => '',
698
-        'geodir_theme_compat_css' => stripslashes('.full-width-section .geodir-search{margin:0;width:100%}.geodir_full_page .geodir-search{margin:0 auto;float:none}.geodir-search input[type=button],.geodir-search input[type=submit]{width:13%}.geodir-search input[type=text]{border:1px solid #ddd;border-radius:0;padding:0 8px}.geodir-category-list-in,.geodir-loc-bar-in{background:#f2f2f2;border-color:#dbdbdb}.geodir-category-list-in{margin-top:0}.geodir-cat-list .widget-title h2{margin:-13px -13px 13px}.widget .geodir-cat-list ul li.geodir-pcat-show a:before{display:none!important}.widget .geodir-cat-list ul li.geodir-pcat-show i{margin-right:5px}.container .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#geodir_carousel,#geodir_slider{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;margin-bottom:20px!important;border:1px solid #e1e1e1;box-shadow:none}#geodir_carousel{padding:10px}.geodir-tabs-content ol.commentlist{margin:40px 0;padding:0}li#post_mapTab{min-height:400px}#reviewsTab ol.commentlist li{border-bottom:none}#reviewsTab ol.commentlist li article.comment{border-bottom:1px solid #e1e1e1;padding-bottom:10px}.comment-content .rating{display:none}.comment-respond .gd_rating{margin-bottom:20px}div.geodir-rating{width:85px!important}.comment-respond .comment-notes{margin-bottom:10px}.average-review span,.comment-form label,.dtreviewed,.geodir-details-sidebar-user-links a,.geodir-viewall,.geodir_more_info span,.reviewer,dl.geodir-tab-head dd a{font-family:"Archivo Narrow",sans-serif}section.comment-content{margin:0 0 0 12%}#reviewsTab .comments-area .comment-content{width:auto}section.comment-content .description,section.comment-content p{margin:15px 0}dl.geodir-tab-head dd a{background:#f3f3f3;margin-top:-1px;font-size:14px;padding:0 15px}dl.geodir-tab-head dd.geodir-tab-active a{padding-bottom:1px}.geodir-widget .geodir_list_heading,.geodir-widget h3.widget-title{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px;color:#2d2d2d}.geodir-widget .geodir_list_heading h3{background:0 0;border:none}.geodir-widget .geodir_list_heading{margin:-13px -14px 13px}.geodir-map-listing-page{border-width:1px 0 0;border-style:solid;border-color:#dbdbdb}.geodir-sidebar-wrap .geodir-company_info{margin:15px}.geodir-details-sidebar-social-sharing iframe{float:left}.geodir-details-sidebar-rating{overflow:hidden}.geodir-details-sidebar-rating .gd_rating_show,.geodir-details-sidebar-rating .geodir-rating{float:left;margin-right:15px}.geodir-details-sidebar-rating span.item{float:left;margin-top:5px}.geodir-details-sidebar-rating .average-review{top:-4px;position:relative}.geodir-details-sidebar-rating span.item img{margin-top:5px}.geodir_full_page{background:#fff;border:1px solid #e1e1e1;-webkit-box-shadow:0 1px 0 #e5e5e5;box-shadow:0 1px 0 #e5e5e5;padding:15px;margin-bottom:20px;clear:both}.geodir_map_container .main_list img{margin:0 5px}.geodir_category_list_view li.geodir-gridview .geodir-post-img .geodir_thumbnail{margin-bottom:10px}.geodir-addinfo .geodir-pinpoint,.geodir-addinfo a i{margin-right:5px}.geodir_category_list_view li.geodir-gridview h3{font-size:18px;margin-bottom:10px}#related_listingTab ul.geodir_category_list_view{padding:0!important}#reviewsTab #comments .gd_rating{margin-top:5px}.widget .geodir_category_list_view li .geodir-entry-content,.widget .geodir_category_list_view li a:before{display:none!important}.geodir_category_list_view li .geodir-entry-title{margin-bottom:10px}.widget ul.geodir_category_list_view{padding:15px}.sidebar .widget .geodir_category_list_view li{width:calc(100% - 25px)}.widget .geodir-loginbox-list li{overflow:visible!important}.widget ul.chosen-results{margin:0!important}.main_list_selecter{margin-right:5px}.geodir-viewall{float:right;width:auto!important}.widget-title h2{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px}.widget:first-child .geodir_list_heading .widget-title{margin-top:0}.geodir_list_heading .widget-title{float:left;width:80%;margin-top:0}.geodir_list_heading .widget-title h2{padding:0 px;background:0 0;border:none;height:auto;line-height:auto}.chosen-default:before{content:none;display:none;position:absolute;margin-left:-1000000px;float:left}#geodir-wrapper .entry-crumbs{margin-bottom:20px}.geodir-search .mom-select{float:left;width:150px;margin:5px;border:1px solid #ddd;height:40px}.iprelative .gm-style .gm-style-iw{width:100%!important}'),
699
-        'geodir_theme_compat_js' => 'jQuery(document).ready(function(e){e(".geodir_full_page").length&&""===e.trim(e(".geodir_full_page").html())&&e(".geodir_full_page").css({display:"none"})});',
700
-        'geodir_theme_compat_default_options' => '',
701
-        'geodir_theme_compat_code' => 'Multi_News'
702
-    );
703
-
704
-    // Kelo
705
-    $theme_compat['Kleo'] = array(
706
-        'geodir_theme_compat_code' => 'Kleo'
707
-    );
708
-
709
-
710
-    // Twenty Seventeen
711
-    $theme_compat['Twenty_Seventeen'] = array(
712
-        'geodir_wrapper_open_replace' => '<div class="wrap">',
713
-        'geodir_wrapper_content_open_replace' => '<div id="primary" class="content-area" >',
714
-        'geodir_sidebar_right_open_replace' => '<aside id="secondary"  class="widget-area" itemscope itemtype="[itemtype]" >',
715
-        'geodir_sidebar_left_open_replace' => '<aside id="secondary"  class="widget-area" itemscope itemtype="[itemtype]" >',
716
-        'geodir_theme_compat_css' => stripslashes('body.geodir-page #primary header.entry-header {margin-left:0;float:none !important;} .gxeodir_flex-container{float:left;} .geodir-tabs-content.entry-content{width:100% !important;} dl.geodir-tab-head, .geodir_map_container {z-index:2;} .geodir-cat-list ul.geodir-popular-cat-list  li + li {    margin-top: 0;} .geodir-cat-list .geodir-popular-cat-list a img, .entry-content .gm-style a img, .widget .gm-style a img {    box-sizing: none; -webkit-box-shadow: none; -moz-box-shadow: none;}'),
717
-        'geodir_theme_compat_code' => 'Twenty_Seventeen'
718
-    );
719
-
720
-
721
-    update_option('gd_theme_compats', $theme_compat);
722
-
723
-    gd_set_theme_compat();// set the compat pack if avail
657
+	$theme_compat['Multi_News'] = array(
658
+		'geodir_wrapper_open_id' => '',
659
+		'geodir_wrapper_open_class' => 'main-container clearfix',
660
+		'geodir_wrapper_open_replace' => '',
661
+		'geodir_wrapper_close_replace' => '',
662
+		'geodir_wrapper_content_open_id' => '',
663
+		'geodir_wrapper_content_open_class' => '',
664
+		'geodir_wrapper_content_open_replace' => '<div class="main-left" ><div class="main-content  "><div class="site-content page-wrap">',
665
+		'geodir_wrapper_content_close_replace' => '</div></div></div>',
666
+		'geodir_article_open_id' => '',
667
+		'geodir_article_open_class' => '',
668
+		'geodir_article_open_replace' => '',
669
+		'geodir_article_close_replace' => '',
670
+		'geodir_sidebar_right_open_id' => '',
671
+		'geodir_sidebar_right_open_class' => '',
672
+		'geodir_sidebar_right_open_replace' => '<aside  class="sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
673
+		'geodir_sidebar_right_close_replace' => '',
674
+		'geodir_sidebar_left_open_id' => '',
675
+		'geodir_sidebar_left_open_class' => '',
676
+		'geodir_sidebar_left_open_replace' => '<aside  class="secondary-sidebar" role="complementary" itemscope itemtype="[itemtype]" >',
677
+		'geodir_sidebar_left_close_replace' => '',
678
+		'geodir_main_content_open_id' => '',
679
+		'geodir_main_content_open_class' => '',
680
+		'geodir_main_content_open_replace' => '<div class="site-content page-wrap">',
681
+		'geodir_main_content_close_replace' => '</div>',
682
+		'geodir_top_content_add' => '',
683
+		'geodir_before_main_content_add' => '',
684
+		'geodir_full_page_class_filter' => 'section full-width-section',
685
+		'geodir_before_widget_filter' => '',
686
+		'geodir_after_widget_filter' => '',
687
+		'geodir_before_title_filter' => '<div class="widget-title"><h2>',
688
+		'geodir_after_title_filter' => '</h2></div>',
689
+		'geodir_menu_li_class_filter' => '',
690
+		'geodir_sub_menu_ul_class_filter' => '',
691
+		'geodir_sub_menu_li_class_filter' => '',
692
+		'geodir_menu_a_class_filter' => '',
693
+		'geodir_sub_menu_a_class_filter' => '',
694
+		'geodir_location_switcher_menu_li_class_filter' => '',
695
+		'geodir_location_switcher_menu_a_class_filter' => '',
696
+		'geodir_location_switcher_menu_sub_ul_class_filter' => '',
697
+		'geodir_location_switcher_menu_sub_li_class_filter' => '',
698
+		'geodir_theme_compat_css' => stripslashes('.full-width-section .geodir-search{margin:0;width:100%}.geodir_full_page .geodir-search{margin:0 auto;float:none}.geodir-search input[type=button],.geodir-search input[type=submit]{width:13%}.geodir-search input[type=text]{border:1px solid #ddd;border-radius:0;padding:0 8px}.geodir-category-list-in,.geodir-loc-bar-in{background:#f2f2f2;border-color:#dbdbdb}.geodir-category-list-in{margin-top:0}.geodir-cat-list .widget-title h2{margin:-13px -13px 13px}.widget .geodir-cat-list ul li.geodir-pcat-show a:before{display:none!important}.widget .geodir-cat-list ul li.geodir-pcat-show i{margin-right:5px}.container .geodir-search select{margin:0 3% 0 0;padding:8px 10px;width:13%}#geodir_carousel,#geodir_slider{border-radius:0;-webkit-border-radius:0;-moz-border-radius:0;margin-bottom:20px!important;border:1px solid #e1e1e1;box-shadow:none}#geodir_carousel{padding:10px}.geodir-tabs-content ol.commentlist{margin:40px 0;padding:0}li#post_mapTab{min-height:400px}#reviewsTab ol.commentlist li{border-bottom:none}#reviewsTab ol.commentlist li article.comment{border-bottom:1px solid #e1e1e1;padding-bottom:10px}.comment-content .rating{display:none}.comment-respond .gd_rating{margin-bottom:20px}div.geodir-rating{width:85px!important}.comment-respond .comment-notes{margin-bottom:10px}.average-review span,.comment-form label,.dtreviewed,.geodir-details-sidebar-user-links a,.geodir-viewall,.geodir_more_info span,.reviewer,dl.geodir-tab-head dd a{font-family:"Archivo Narrow",sans-serif}section.comment-content{margin:0 0 0 12%}#reviewsTab .comments-area .comment-content{width:auto}section.comment-content .description,section.comment-content p{margin:15px 0}dl.geodir-tab-head dd a{background:#f3f3f3;margin-top:-1px;font-size:14px;padding:0 15px}dl.geodir-tab-head dd.geodir-tab-active a{padding-bottom:1px}.geodir-widget .geodir_list_heading,.geodir-widget h3.widget-title{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px;color:#2d2d2d}.geodir-widget .geodir_list_heading h3{background:0 0;border:none}.geodir-widget .geodir_list_heading{margin:-13px -14px 13px}.geodir-map-listing-page{border-width:1px 0 0;border-style:solid;border-color:#dbdbdb}.geodir-sidebar-wrap .geodir-company_info{margin:15px}.geodir-details-sidebar-social-sharing iframe{float:left}.geodir-details-sidebar-rating{overflow:hidden}.geodir-details-sidebar-rating .gd_rating_show,.geodir-details-sidebar-rating .geodir-rating{float:left;margin-right:15px}.geodir-details-sidebar-rating span.item{float:left;margin-top:5px}.geodir-details-sidebar-rating .average-review{top:-4px;position:relative}.geodir-details-sidebar-rating span.item img{margin-top:5px}.geodir_full_page{background:#fff;border:1px solid #e1e1e1;-webkit-box-shadow:0 1px 0 #e5e5e5;box-shadow:0 1px 0 #e5e5e5;padding:15px;margin-bottom:20px;clear:both}.geodir_map_container .main_list img{margin:0 5px}.geodir_category_list_view li.geodir-gridview .geodir-post-img .geodir_thumbnail{margin-bottom:10px}.geodir-addinfo .geodir-pinpoint,.geodir-addinfo a i{margin-right:5px}.geodir_category_list_view li.geodir-gridview h3{font-size:18px;margin-bottom:10px}#related_listingTab ul.geodir_category_list_view{padding:0!important}#reviewsTab #comments .gd_rating{margin-top:5px}.widget .geodir_category_list_view li .geodir-entry-content,.widget .geodir_category_list_view li a:before{display:none!important}.geodir_category_list_view li .geodir-entry-title{margin-bottom:10px}.widget ul.geodir_category_list_view{padding:15px}.sidebar .widget .geodir_category_list_view li{width:calc(100% - 25px)}.widget .geodir-loginbox-list li{overflow:visible!important}.widget ul.chosen-results{margin:0!important}.main_list_selecter{margin-right:5px}.geodir-viewall{float:right;width:auto!important}.widget-title h2{padding:0 15px;background:#e9e9e9;border:1px solid #dbdbdb;height:38px;line-height:38px}.widget:first-child .geodir_list_heading .widget-title{margin-top:0}.geodir_list_heading .widget-title{float:left;width:80%;margin-top:0}.geodir_list_heading .widget-title h2{padding:0 px;background:0 0;border:none;height:auto;line-height:auto}.chosen-default:before{content:none;display:none;position:absolute;margin-left:-1000000px;float:left}#geodir-wrapper .entry-crumbs{margin-bottom:20px}.geodir-search .mom-select{float:left;width:150px;margin:5px;border:1px solid #ddd;height:40px}.iprelative .gm-style .gm-style-iw{width:100%!important}'),
699
+		'geodir_theme_compat_js' => 'jQuery(document).ready(function(e){e(".geodir_full_page").length&&""===e.trim(e(".geodir_full_page").html())&&e(".geodir_full_page").css({display:"none"})});',
700
+		'geodir_theme_compat_default_options' => '',
701
+		'geodir_theme_compat_code' => 'Multi_News'
702
+	);
703
+
704
+	// Kelo
705
+	$theme_compat['Kleo'] = array(
706
+		'geodir_theme_compat_code' => 'Kleo'
707
+	);
708
+
709
+
710
+	// Twenty Seventeen
711
+	$theme_compat['Twenty_Seventeen'] = array(
712
+		'geodir_wrapper_open_replace' => '<div class="wrap">',
713
+		'geodir_wrapper_content_open_replace' => '<div id="primary" class="content-area" >',
714
+		'geodir_sidebar_right_open_replace' => '<aside id="secondary"  class="widget-area" itemscope itemtype="[itemtype]" >',
715
+		'geodir_sidebar_left_open_replace' => '<aside id="secondary"  class="widget-area" itemscope itemtype="[itemtype]" >',
716
+		'geodir_theme_compat_css' => stripslashes('body.geodir-page #primary header.entry-header {margin-left:0;float:none !important;} .gxeodir_flex-container{float:left;} .geodir-tabs-content.entry-content{width:100% !important;} dl.geodir-tab-head, .geodir_map_container {z-index:2;} .geodir-cat-list ul.geodir-popular-cat-list  li + li {    margin-top: 0;} .geodir-cat-list .geodir-popular-cat-list a img, .entry-content .gm-style a img, .widget .gm-style a img {    box-sizing: none; -webkit-box-shadow: none; -moz-box-shadow: none;}'),
717
+		'geodir_theme_compat_code' => 'Twenty_Seventeen'
718
+	);
719
+
720
+
721
+	update_option('gd_theme_compats', $theme_compat);
722
+
723
+	gd_set_theme_compat();// set the compat pack if avail
724 724
 }
725 725
 
726 726
 
@@ -732,61 +732,61 @@  discard block
 block discarded – undo
732 732
  * @global object $wpdb WordPress Database object.
733 733
  */
734 734
 function gd_convert_virtual_pages(){
735
-    global $wpdb;
736
-
737
-    // Update the add listing page settings
738
-    $add_listing_page = $wpdb->get_var(
739
-        $wpdb->prepare(
740
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
741
-            array('add-listing')
742
-        )
743
-    );
744
-
745
-    if($add_listing_page){
746
-        wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
747
-        update_option( 'geodir_add_listing_page', $add_listing_page);
748
-    }
749
-
750
-    // Update the listing preview page settings
751
-    $listing_preview_page = $wpdb->get_var(
752
-        $wpdb->prepare(
753
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
754
-            array('listing-preview')
755
-        )
756
-    );
757
-
758
-    if($listing_preview_page){
759
-        wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
760
-        update_option( 'geodir_preview_page', $listing_preview_page);
761
-    }
762
-
763
-    // Update the listing success page settings
764
-    $listing_success_page = $wpdb->get_var(
765
-        $wpdb->prepare(
766
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
767
-            array('listing-success')
768
-        )
769
-    );
770
-
771
-    if($listing_success_page){
772
-        wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
773
-        update_option( 'geodir_success_page', $listing_success_page);
774
-    }
775
-
776
-    // Update the listing success page settings
777
-    $location_page = $wpdb->get_var(
778
-        $wpdb->prepare(
779
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
780
-            array('location')
781
-        )
782
-    );
783
-
784
-    if($location_page){
785
-        $location_slug = get_option('geodir_location_prefix');
786
-        if(!$location_slug ){$location_slug  = 'location';}
787
-        wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
788
-        update_option( 'geodir_location_page', $location_page);
789
-    }
735
+	global $wpdb;
736
+
737
+	// Update the add listing page settings
738
+	$add_listing_page = $wpdb->get_var(
739
+		$wpdb->prepare(
740
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
741
+			array('add-listing')
742
+		)
743
+	);
744
+
745
+	if($add_listing_page){
746
+		wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
747
+		update_option( 'geodir_add_listing_page', $add_listing_page);
748
+	}
749
+
750
+	// Update the listing preview page settings
751
+	$listing_preview_page = $wpdb->get_var(
752
+		$wpdb->prepare(
753
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
754
+			array('listing-preview')
755
+		)
756
+	);
757
+
758
+	if($listing_preview_page){
759
+		wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
760
+		update_option( 'geodir_preview_page', $listing_preview_page);
761
+	}
762
+
763
+	// Update the listing success page settings
764
+	$listing_success_page = $wpdb->get_var(
765
+		$wpdb->prepare(
766
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
767
+			array('listing-success')
768
+		)
769
+	);
770
+
771
+	if($listing_success_page){
772
+		wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
773
+		update_option( 'geodir_success_page', $listing_success_page);
774
+	}
775
+
776
+	// Update the listing success page settings
777
+	$location_page = $wpdb->get_var(
778
+		$wpdb->prepare(
779
+			"SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
780
+			array('location')
781
+		)
782
+	);
783
+
784
+	if($location_page){
785
+		$location_slug = get_option('geodir_location_prefix');
786
+		if(!$location_slug ){$location_slug  = 'location';}
787
+		wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
788
+		update_option( 'geodir_location_page', $location_page);
789
+	}
790 790
 
791 791
 }
792 792
 
@@ -800,31 +800,31 @@  discard block
 block discarded – undo
800 800
 function gd_fix_cpt_rewrite_slug()
801 801
 {
802 802
 
803
-    $alt_post_types = array();
804
-    $post_types = get_option('geodir_post_types');
803
+	$alt_post_types = array();
804
+	$post_types = get_option('geodir_post_types');
805 805
 
806 806
 
807
-    if (is_array($post_types)){
807
+	if (is_array($post_types)){
808 808
 
809
-        foreach ($post_types as $post_type => $args) {
809
+		foreach ($post_types as $post_type => $args) {
810 810
 
811 811
 
812
-            if(isset($args['rewrite']['slug'])){
813
-                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
814
-            }
812
+			if(isset($args['rewrite']['slug'])){
813
+				$args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
814
+			}
815 815
 
816
-                $alt_post_types[$post_type] = $args;
816
+				$alt_post_types[$post_type] = $args;
817 817
 
818
-        }
819
-    }
818
+		}
819
+	}
820 820
 
821
-    if(!empty($alt_post_types)) {
822
-        update_option('geodir_post_types',$alt_post_types);
823
-        }
821
+	if(!empty($alt_post_types)) {
822
+		update_option('geodir_post_types',$alt_post_types);
823
+		}
824 824
 
825 825
 
826
-    // flush the rewrite rules
827
-    flush_rewrite_rules();
826
+	// flush the rewrite rules
827
+	flush_rewrite_rules();
828 828
 }
829 829
 
830 830
 
@@ -837,20 +837,20 @@  discard block
 block discarded – undo
837 837
  */
838 838
 function gd_fix_address_detail_table_limit()
839 839
 {
840
-    global $wpdb;
841
-
842
-    $all_postypes = geodir_get_posttypes();
843
-
844
-    if (!empty($all_postypes)) {
845
-        foreach ($all_postypes as $key) {
846
-            // update each GD CTP
847
-            try {
848
-                $wpdb->query("ALTER TABLE " . $wpdb->prefix . "geodir_" . $key . "_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
849
-            } catch(Exception $e) {
850
-                error_log( 'Error: ' . $e->getMessage() );
851
-            }
852
-        }
853
-    }
840
+	global $wpdb;
841
+
842
+	$all_postypes = geodir_get_posttypes();
843
+
844
+	if (!empty($all_postypes)) {
845
+		foreach ($all_postypes as $key) {
846
+			// update each GD CTP
847
+			try {
848
+				$wpdb->query("ALTER TABLE " . $wpdb->prefix . "geodir_" . $key . "_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
849
+			} catch(Exception $e) {
850
+				error_log( 'Error: ' . $e->getMessage() );
851
+			}
852
+		}
853
+	}
854 854
 }
855 855
 
856 856
 /**
@@ -862,61 +862,61 @@  discard block
 block discarded – undo
862 862
  * @return bool
863 863
  */
864 864
 function geodir_upgrade_1618() {
865
-    global $wpdb;
865
+	global $wpdb;
866 866
 
867
-    $gd_posttypes = geodir_get_posttypes();
868
-    $default_location = geodir_get_default_location();
867
+	$gd_posttypes = geodir_get_posttypes();
868
+	$default_location = geodir_get_default_location();
869 869
     
870
-    $old_country = 'Czech Republic';
871
-    $old_slug = 'czech-republic';
872
-    $new_country = 'Czechia';
873
-    $new_slug = 'czechia';
874
-    $flush_rewrite_rules = false;
875
-
876
-    if (!empty($gd_posttypes) && defined('POST_LOCATION_TABLE')) {        
877
-        // Update locations
878
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . POST_LOCATION_TABLE . "` SET `country` = %s, country_slug = %s WHERE `country` LIKE %s OR country_slug LIKE %s", array($new_country, $new_slug, $old_country, $old_slug)))) {
879
-            $flush_rewrite_rules = true;
880
-        }
870
+	$old_country = 'Czech Republic';
871
+	$old_slug = 'czech-republic';
872
+	$new_country = 'Czechia';
873
+	$new_slug = 'czechia';
874
+	$flush_rewrite_rules = false;
875
+
876
+	if (!empty($gd_posttypes) && defined('POST_LOCATION_TABLE')) {        
877
+		// Update locations
878
+		if ($wpdb->query($wpdb->prepare("UPDATE `" . POST_LOCATION_TABLE . "` SET `country` = %s, country_slug = %s WHERE `country` LIKE %s OR country_slug LIKE %s", array($new_country, $new_slug, $old_country, $old_slug)))) {
879
+			$flush_rewrite_rules = true;
880
+		}
881 881
         
882
-        // Update locations seo
883
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . LOCATION_SEO_TABLE . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
884
-            $flush_rewrite_rules = true;
885
-        }
886
-
887
-        // Update term meta
888
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
889
-            $flush_rewrite_rules = true;
890
-        }
891
-
892
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `location_name` = %s WHERE location_type LIKE 'gd_country' AND location_name LIKE %s", array($new_slug, $old_slug)))) {
893
-            $flush_rewrite_rules = true;
894
-        }
895
-
896
-        // Update detail table
897
-        foreach ($gd_posttypes as $pos_type) {
898
-            try {
899
-                if ($wpdb->query("UPDATE `" . $wpdb->prefix . "geodir_" . $pos_type . "_detail` SET post_country = '" . $new_country . "', post_locations = REPLACE ( post_locations, ',[" . $old_slug . "]', ',[" . $new_slug . "]' ) WHERE post_locations LIKE '%[" . $old_slug . "]' OR post_country LIKE '" . $old_country . "'")) {
900
-                    $flush_rewrite_rules = true;
901
-                }
902
-            } catch(Exception $e) {
903
-                error_log( 'Error: ' . $e->getMessage() );
904
-            }
905
-        }
906
-    }
882
+		// Update locations seo
883
+		if ($wpdb->query($wpdb->prepare("UPDATE `" . LOCATION_SEO_TABLE . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
884
+			$flush_rewrite_rules = true;
885
+		}
886
+
887
+		// Update term meta
888
+		if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
889
+			$flush_rewrite_rules = true;
890
+		}
891
+
892
+		if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `location_name` = %s WHERE location_type LIKE 'gd_country' AND location_name LIKE %s", array($new_slug, $old_slug)))) {
893
+			$flush_rewrite_rules = true;
894
+		}
895
+
896
+		// Update detail table
897
+		foreach ($gd_posttypes as $pos_type) {
898
+			try {
899
+				if ($wpdb->query("UPDATE `" . $wpdb->prefix . "geodir_" . $pos_type . "_detail` SET post_country = '" . $new_country . "', post_locations = REPLACE ( post_locations, ',[" . $old_slug . "]', ',[" . $new_slug . "]' ) WHERE post_locations LIKE '%[" . $old_slug . "]' OR post_country LIKE '" . $old_country . "'")) {
900
+					$flush_rewrite_rules = true;
901
+				}
902
+			} catch(Exception $e) {
903
+				error_log( 'Error: ' . $e->getMessage() );
904
+			}
905
+		}
906
+	}
907 907
     
908
-    if (!empty($default_location) && ((isset($default_location->country) && $default_location->country == $old_country) || (isset($default_location->country_slug) && $default_location->country_slug == $old_slug))) {
909
-        $default_location->country = $new_country;
910
-        $default_location->country_slug = $new_slug;
908
+	if (!empty($default_location) && ((isset($default_location->country) && $default_location->country == $old_country) || (isset($default_location->country_slug) && $default_location->country_slug == $old_slug))) {
909
+		$default_location->country = $new_country;
910
+		$default_location->country_slug = $new_slug;
911 911
         
912
-        update_option('geodir_default_location', $default_location);
912
+		update_option('geodir_default_location', $default_location);
913 913
         
914
-        $flush_rewrite_rules = true;
915
-    }
914
+		$flush_rewrite_rules = true;
915
+	}
916 916
     
917
-    if ($flush_rewrite_rules) {
918
-        flush_rewrite_rules();
919
-    }
917
+	if ($flush_rewrite_rules) {
918
+		flush_rewrite_rules();
919
+	}
920 920
     
921
-    return true;
921
+	return true;
922 922
 }
923 923
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 global $wpdb;
11 11
 
12
-if (get_option('geodirectory' . '_db_version') != GEODIRECTORY_VERSION) {
12
+if (get_option('geodirectory'.'_db_version') != GEODIRECTORY_VERSION) {
13 13
     /**
14 14
      * Include custom database table related functions.
15 15
      *
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
         add_action('init', 'geodir_upgrade_1618', 11);
51 51
     }
52 52
 
53
-    add_action('init', 'gd_fix_cpt_rewrite_slug', 11);// this needs to be kept for a few versions
53
+    add_action('init', 'gd_fix_cpt_rewrite_slug', 11); // this needs to be kept for a few versions
54 54
 
55
-    update_option('geodirectory' . '_db_version', GEODIRECTORY_VERSION);
55
+    update_option('geodirectory'.'_db_version', GEODIRECTORY_VERSION);
56 56
 
57 57
 }
58 58
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
  * @since 1.0.0
89 89
  * @package GeoDirectory
90 90
  */
91
-function geodir_upgrade_146(){
91
+function geodir_upgrade_146() {
92 92
     gd_convert_virtual_pages();
93 93
 }
94 94
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
  * @since 1.5.0
99 99
  * @package GeoDirectory
100 100
  */
101
-function geodir_upgrade_150(){
101
+function geodir_upgrade_150() {
102 102
     gd_fix_cpt_rewrite_slug();
103 103
 }
104 104
 
@@ -110,12 +110,12 @@  discard block
 block discarded – undo
110 110
  * @since 1.4.8
111 111
  * @package GeoDirectory
112 112
  */
113
-function geodir_upgrade_148(){
113
+function geodir_upgrade_148() {
114 114
     /*
115 115
      * Blank the users google password if present as we now use oAuth 2.0
116 116
      */
117
-    update_option('geodir_ga_pass','');
118
-    update_option('geodir_ga_user','');
117
+    update_option('geodir_ga_pass', '');
118
+    update_option('geodir_ga_user', '');
119 119
 
120 120
 }
121 121
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
  * @since 1.5.3
127 127
  * @package GeoDirectory
128 128
  */
129
-function geodir_upgrade_153(){
129
+function geodir_upgrade_153() {
130 130
     geodir_create_page(esc_sql(_x('gd-info', 'page_slug', 'geodirectory')), 'geodir_info_page', __('Info', 'geodirectory'), '');
131 131
     geodir_create_page(esc_sql(_x('gd-login', 'page_slug', 'geodirectory')), 'geodir_login_page', __('Login', 'geodirectory'), '');
132 132
 }
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
  * @since 1.5.3
138 138
  * @package GeoDirectory
139 139
  */
140
-function geodir_upgrade_154(){
140
+function geodir_upgrade_154() {
141 141
     geodir_create_page(esc_sql(_x('gd-home', 'page_slug', 'geodirectory')), 'geodir_home_page', __('GD Home page', 'geodirectory'), '');
142 142
 }
143 143
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
  * @since 1.5.2
148 148
  * @package GeoDirectory
149 149
  */
150
-function geodir_upgrade_152(){
150
+function geodir_upgrade_152() {
151 151
     gd_fix_address_detail_table_limit();
152 152
 }
153 153
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 function geodir_fix_review_date()
184 184
 {
185 185
     global $wpdb;
186
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
186
+    $wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.post_date = c.comment_date WHERE gdr.post_date='0000-00-00 00:00:00'");
187 187
 }
188 188
 
189 189
 /**
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 function geodir_fix_review_post_status()
197 197
 {
198 198
     global $wpdb;
199
-    $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
199
+    $wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN $wpdb->posts p ON gdr.post_id=p.ID SET gdr.post_status = 1 WHERE gdr.post_status IS NULL AND p.post_status='publish'");
200 200
 }
201 201
 
202 202
 /**
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 function geodir_fix_review_content()
211 211
 {
212 212
     global $wpdb;
213
-    if ($wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
213
+    if ($wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN $wpdb->comments c ON gdr.comment_id=c.comment_ID SET gdr.comment_content = c.comment_content WHERE gdr.comment_content IS NULL")) {
214 214
         return true;
215 215
     } else {
216 216
         return false;
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
         foreach ($all_postypes as $key) {
236 236
             // update each GD CTP
237 237
 
238
-            $wpdb->query("UPDATE " . GEODIR_REVIEW_TABLE . " gdr JOIN " . $wpdb->prefix . "geodir_" . $key . "_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
238
+            $wpdb->query("UPDATE ".GEODIR_REVIEW_TABLE." gdr JOIN ".$wpdb->prefix."geodir_".$key."_detail d ON gdr.post_id=d.post_id SET gdr.post_latitude = d.post_latitude, gdr.post_longitude = d.post_longitude, gdr.post_city = d.post_city,  gdr.post_region=d.post_region, gdr.post_country=d.post_country WHERE gdr.post_latitude IS NULL OR gdr.post_city IS NULL");
239 239
 
240 240
         }
241 241
         return true;
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     if (!empty($all_postypes)) {
260 260
         foreach ($all_postypes as $key) {
261 261
             // update each GD CTP
262
-            $reviews = $wpdb->get_results("SELECT post_id FROM " . $wpdb->prefix . "geodir_" . $key . "_detail d");
262
+            $reviews = $wpdb->get_results("SELECT post_id FROM ".$wpdb->prefix."geodir_".$key."_detail d");
263 263
 
264 264
             if (!empty($reviews)) {
265 265
                 foreach ($reviews as $post_id) {
@@ -274,51 +274,51 @@  discard block
 block discarded – undo
274 274
 }
275 275
 
276 276
 
277
-function gd_convert_custom_field_display(){
277
+function gd_convert_custom_field_display() {
278 278
     global $wpdb;
279 279
 
280
-    $field_info = $wpdb->get_results("select * from " . GEODIR_CUSTOM_FIELDS_TABLE);
280
+    $field_info = $wpdb->get_results("select * from ".GEODIR_CUSTOM_FIELDS_TABLE);
281 281
 
282 282
     $has_run = get_option('gd_convert_custom_field_display');
283
-    if($has_run){return;}
283
+    if ($has_run) {return; }
284 284
 
285 285
     // set the field_type_key for standard fields
286 286
     $wpdb->query("UPDATE ".GEODIR_CUSTOM_FIELDS_TABLE." SET field_type_key = field_type");
287 287
 
288 288
 
289
-    if(is_array( $field_info)){
289
+    if (is_array($field_info)) {
290 290
 
291
-        foreach( $field_info as $cf){
291
+        foreach ($field_info as $cf) {
292 292
 
293 293
             $id = $cf->id;
294 294
 
295
-            if(!property_exists($cf,'show_in') || !$id){return;}
295
+            if (!property_exists($cf, 'show_in') || !$id) {return; }
296 296
 
297 297
             $show_in_arr = array();
298 298
 
299
-            if($cf->is_default){
299
+            if ($cf->is_default) {
300 300
                 $show_in_arr[] = "[detail]";
301 301
             }
302 302
 
303
-            if($cf->show_on_detail){
303
+            if ($cf->show_on_detail) {
304 304
                 $show_in_arr[] = "[moreinfo]";
305 305
             }
306 306
 
307
-            if($cf->show_on_listing){
307
+            if ($cf->show_on_listing) {
308 308
                 $show_in_arr[] = "[listing]";
309 309
             }
310 310
 
311
-            if($cf->show_as_tab || $cf->htmlvar_name=='geodir_video' || $cf->htmlvar_name=='geodir_special_offers'){
311
+            if ($cf->show_as_tab || $cf->htmlvar_name == 'geodir_video' || $cf->htmlvar_name == 'geodir_special_offers') {
312 312
                 $show_in_arr[] = "[owntab]";
313 313
             }
314 314
 
315
-            if($cf->htmlvar_name=='post' || $cf->htmlvar_name=='geodir_contact' || $cf->htmlvar_name=='geodir_timing'){
315
+            if ($cf->htmlvar_name == 'post' || $cf->htmlvar_name == 'geodir_contact' || $cf->htmlvar_name == 'geodir_timing') {
316 316
                 $show_in_arr[] = "[mapbubble]";
317 317
             }
318 318
 
319
-            if(!empty($show_in_arr )){
320
-                $show_in_arr = implode(',',$show_in_arr);
321
-            }else{
319
+            if (!empty($show_in_arr)) {
320
+                $show_in_arr = implode(',', $show_in_arr);
321
+            } else {
322 322
                 $show_in_arr = '';
323 323
             }
324 324
 
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
 
327 327
         }
328 328
 
329
-        update_option('gd_convert_custom_field_display',1);
329
+        update_option('gd_convert_custom_field_display', 1);
330 330
     }
331 331
 }
332 332
 
@@ -720,7 +720,7 @@  discard block
 block discarded – undo
720 720
 
721 721
     update_option('gd_theme_compats', $theme_compat);
722 722
 
723
-    gd_set_theme_compat();// set the compat pack if avail
723
+    gd_set_theme_compat(); // set the compat pack if avail
724 724
 }
725 725
 
726 726
 
@@ -731,61 +731,61 @@  discard block
 block discarded – undo
731 731
  * @package GeoDirectory
732 732
  * @global object $wpdb WordPress Database object.
733 733
  */
734
-function gd_convert_virtual_pages(){
734
+function gd_convert_virtual_pages() {
735 735
     global $wpdb;
736 736
 
737 737
     // Update the add listing page settings
738 738
     $add_listing_page = $wpdb->get_var(
739 739
         $wpdb->prepare(
740
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
740
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
741 741
             array('add-listing')
742 742
         )
743 743
     );
744 744
 
745
-    if($add_listing_page){
746
-        wp_update_post( array('ID' => $add_listing_page, 'post_status' => 'publish') );
747
-        update_option( 'geodir_add_listing_page', $add_listing_page);
745
+    if ($add_listing_page) {
746
+        wp_update_post(array('ID' => $add_listing_page, 'post_status' => 'publish'));
747
+        update_option('geodir_add_listing_page', $add_listing_page);
748 748
     }
749 749
 
750 750
     // Update the listing preview page settings
751 751
     $listing_preview_page = $wpdb->get_var(
752 752
         $wpdb->prepare(
753
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
753
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
754 754
             array('listing-preview')
755 755
         )
756 756
     );
757 757
 
758
-    if($listing_preview_page){
759
-        wp_update_post( array('ID' => $listing_preview_page, 'post_status' => 'publish') );
760
-        update_option( 'geodir_preview_page', $listing_preview_page);
758
+    if ($listing_preview_page) {
759
+        wp_update_post(array('ID' => $listing_preview_page, 'post_status' => 'publish'));
760
+        update_option('geodir_preview_page', $listing_preview_page);
761 761
     }
762 762
 
763 763
     // Update the listing success page settings
764 764
     $listing_success_page = $wpdb->get_var(
765 765
         $wpdb->prepare(
766
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
766
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
767 767
             array('listing-success')
768 768
         )
769 769
     );
770 770
 
771
-    if($listing_success_page){
772
-        wp_update_post( array('ID' => $listing_success_page, 'post_status' => 'publish') );
773
-        update_option( 'geodir_success_page', $listing_success_page);
771
+    if ($listing_success_page) {
772
+        wp_update_post(array('ID' => $listing_success_page, 'post_status' => 'publish'));
773
+        update_option('geodir_success_page', $listing_success_page);
774 774
     }
775 775
 
776 776
     // Update the listing success page settings
777 777
     $location_page = $wpdb->get_var(
778 778
         $wpdb->prepare(
779
-            "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
779
+            "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s AND post_status='virtual' LIMIT 1;",
780 780
             array('location')
781 781
         )
782 782
     );
783 783
 
784
-    if($location_page){
784
+    if ($location_page) {
785 785
         $location_slug = get_option('geodir_location_prefix');
786
-        if(!$location_slug ){$location_slug  = 'location';}
787
-        wp_update_post( array('ID' => $location_page, 'post_status' => 'publish','post_name' => $location_slug) );
788
-        update_option( 'geodir_location_page', $location_page);
786
+        if (!$location_slug) {$location_slug = 'location'; }
787
+        wp_update_post(array('ID' => $location_page, 'post_status' => 'publish', 'post_name' => $location_slug));
788
+        update_option('geodir_location_page', $location_page);
789 789
     }
790 790
 
791 791
 }
@@ -804,13 +804,13 @@  discard block
 block discarded – undo
804 804
     $post_types = get_option('geodir_post_types');
805 805
 
806 806
 
807
-    if (is_array($post_types)){
807
+    if (is_array($post_types)) {
808 808
 
809 809
         foreach ($post_types as $post_type => $args) {
810 810
 
811 811
 
812
-            if(isset($args['rewrite']['slug'])){
813
-                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%","",$args['rewrite']['slug']);
812
+            if (isset($args['rewrite']['slug'])) {
813
+                $args['rewrite']['slug'] = str_replace("/%gd_taxonomy%", "", $args['rewrite']['slug']);
814 814
             }
815 815
 
816 816
                 $alt_post_types[$post_type] = $args;
@@ -818,8 +818,8 @@  discard block
 block discarded – undo
818 818
         }
819 819
     }
820 820
 
821
-    if(!empty($alt_post_types)) {
822
-        update_option('geodir_post_types',$alt_post_types);
821
+    if (!empty($alt_post_types)) {
822
+        update_option('geodir_post_types', $alt_post_types);
823 823
         }
824 824
 
825 825
 
@@ -845,9 +845,9 @@  discard block
 block discarded – undo
845 845
         foreach ($all_postypes as $key) {
846 846
             // update each GD CTP
847 847
             try {
848
-                $wpdb->query("ALTER TABLE " . $wpdb->prefix . "geodir_" . $key . "_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
849
-            } catch(Exception $e) {
850
-                error_log( 'Error: ' . $e->getMessage() );
848
+                $wpdb->query("ALTER TABLE ".$wpdb->prefix."geodir_".$key."_detail MODIFY post_city VARCHAR( 50 ) NULL,MODIFY post_region VARCHAR( 50 ) NULL,MODIFY post_country VARCHAR( 50 ) NULL");
849
+            } catch (Exception $e) {
850
+                error_log('Error: '.$e->getMessage());
851 851
             }
852 852
         }
853 853
     }
@@ -875,32 +875,32 @@  discard block
 block discarded – undo
875 875
 
876 876
     if (!empty($gd_posttypes) && defined('POST_LOCATION_TABLE')) {        
877 877
         // Update locations
878
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . POST_LOCATION_TABLE . "` SET `country` = %s, country_slug = %s WHERE `country` LIKE %s OR country_slug LIKE %s", array($new_country, $new_slug, $old_country, $old_slug)))) {
878
+        if ($wpdb->query($wpdb->prepare("UPDATE `".POST_LOCATION_TABLE."` SET `country` = %s, country_slug = %s WHERE `country` LIKE %s OR country_slug LIKE %s", array($new_country, $new_slug, $old_country, $old_slug)))) {
879 879
             $flush_rewrite_rules = true;
880 880
         }
881 881
         
882 882
         // Update locations seo
883
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . LOCATION_SEO_TABLE . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
883
+        if ($wpdb->query($wpdb->prepare("UPDATE `".LOCATION_SEO_TABLE."` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
884 884
             $flush_rewrite_rules = true;
885 885
         }
886 886
 
887 887
         // Update term meta
888
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
888
+        if ($wpdb->query($wpdb->prepare("UPDATE `".GEODIR_TERM_META."` SET `country_slug` = %s WHERE country_slug LIKE %s", array($new_slug, $old_slug)))) {
889 889
             $flush_rewrite_rules = true;
890 890
         }
891 891
 
892
-        if ($wpdb->query($wpdb->prepare("UPDATE `" . GEODIR_TERM_META . "` SET `location_name` = %s WHERE location_type LIKE 'gd_country' AND location_name LIKE %s", array($new_slug, $old_slug)))) {
892
+        if ($wpdb->query($wpdb->prepare("UPDATE `".GEODIR_TERM_META."` SET `location_name` = %s WHERE location_type LIKE 'gd_country' AND location_name LIKE %s", array($new_slug, $old_slug)))) {
893 893
             $flush_rewrite_rules = true;
894 894
         }
895 895
 
896 896
         // Update detail table
897 897
         foreach ($gd_posttypes as $pos_type) {
898 898
             try {
899
-                if ($wpdb->query("UPDATE `" . $wpdb->prefix . "geodir_" . $pos_type . "_detail` SET post_country = '" . $new_country . "', post_locations = REPLACE ( post_locations, ',[" . $old_slug . "]', ',[" . $new_slug . "]' ) WHERE post_locations LIKE '%[" . $old_slug . "]' OR post_country LIKE '" . $old_country . "'")) {
899
+                if ($wpdb->query("UPDATE `".$wpdb->prefix."geodir_".$pos_type."_detail` SET post_country = '".$new_country."', post_locations = REPLACE ( post_locations, ',[".$old_slug."]', ',[".$new_slug."]' ) WHERE post_locations LIKE '%[".$old_slug."]' OR post_country LIKE '".$old_country."'")) {
900 900
                     $flush_rewrite_rules = true;
901 901
                 }
902
-            } catch(Exception $e) {
903
-                error_log( 'Error: ' . $e->getMessage() );
902
+            } catch (Exception $e) {
903
+                error_log('Error: '.$e->getMessage());
904 904
             }
905 905
         }
906 906
     }
Please login to merge, or discard this patch.
geodirectory-functions/general_functions.php 1 patch
Spacing   +1280 added lines, -1280 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 /**
11 11
  * Get All Plugin functions from WordPress
12 12
  */
13
-include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
13
+include_once(ABSPATH.'wp-admin/includes/plugin.php');
14 14
 
15 15
 /*-----------------------------------------------------------------------------------*/
16 16
 /* Helper functions */
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
  * @return string example url eg: http://wpgeo.directory/wp-content/plugins/geodirectory
28 28
  */
29 29
 function geodir_plugin_url() {
30
-	return plugins_url( '', dirname( __FILE__ ) );
30
+	return plugins_url('', dirname(__FILE__));
31 31
 	/*
32 32
 	if ( is_ssl() ) :
33 33
 		return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
@@ -47,10 +47,10 @@  discard block
 block discarded – undo
47 47
  * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory
48 48
  */
49 49
 function geodir_plugin_path() {
50
-	if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) {
51
-		return dirname( dirname( __FILE__ ) );
50
+	if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) {
51
+		return dirname(dirname(__FILE__));
52 52
 	} else {
53
-		return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) );
53
+		return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__)));
54 54
 	}
55 55
 }
56 56
 
@@ -65,10 +65,10 @@  discard block
 block discarded – undo
65 65
  * @return bool true or false.
66 66
  * @todo    check if this is faster than normal WP check and remove if not.
67 67
  */
68
-function geodir_is_plugin_active( $plugin ) {
69
-	$active_plugins = get_option( 'active_plugins' );
70
-	foreach ( $active_plugins as $key => $active_plugin ) {
71
-		if ( strstr( $active_plugin, $plugin ) ) {
68
+function geodir_is_plugin_active($plugin) {
69
+	$active_plugins = get_option('active_plugins');
70
+	foreach ($active_plugins as $key => $active_plugin) {
71
+		if (strstr($active_plugin, $plugin)) {
72 72
 			return true;
73 73
 		}
74 74
 	}
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
  *
91 91
  * @return bool|int|string the formatted date.
92 92
  */
93
-function geodir_get_formated_date( $date ) {
94
-	return mysql2date( get_option( 'date_format' ), $date );
93
+function geodir_get_formated_date($date) {
94
+	return mysql2date(get_option('date_format'), $date);
95 95
 }
96 96
 
97 97
 /**
@@ -107,8 +107,8 @@  discard block
 block discarded – undo
107 107
  *
108 108
  * @return bool|int|string the formatted time.
109 109
  */
110
-function geodir_get_formated_time( $time ) {
111
-	return mysql2date( get_option( 'time_format' ), $time, $translate = true );
110
+function geodir_get_formated_time($time) {
111
+	return mysql2date(get_option('time_format'), $time, $translate = true);
112 112
 }
113 113
 
114 114
 
@@ -126,35 +126,35 @@  discard block
 block discarded – undo
126 126
  *
127 127
  * @return string Formatted link.
128 128
  */
129
-function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) {
130
-	if ( $use_existing_arguments ) {
129
+function geodir_getlink($url, $params = array(), $use_existing_arguments = false) {
130
+	if ($use_existing_arguments) {
131 131
 		$params = $params + $_GET;
132 132
 	}
133
-	if ( ! $params ) {
133
+	if (!$params) {
134 134
 		return $url;
135 135
 	}
136 136
 	$link = $url;
137
-	if ( strpos( $link, '?' ) === false ) {
137
+	if (strpos($link, '?') === false) {
138 138
 		$link .= '?';
139 139
 	} //If there is no '?' add one at the end
140
-	elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) {
140
+	elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) {
141 141
 		$link .= '&amp;';
142 142
 	} //If there is no '&' at the END, add one.
143
-	elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) {
143
+	elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) {
144 144
 		$link .= '&';
145 145
 	} //If there is no '&' at the END, add one.
146 146
 
147 147
 	$params_arr = array();
148
-	foreach ( $params as $key => $value ) {
149
-		if ( gettype( $value ) == 'array' ) { //Handle array data properly
150
-			foreach ( $value as $val ) {
151
-				$params_arr[] = $key . '[]=' . urlencode( $val );
148
+	foreach ($params as $key => $value) {
149
+		if (gettype($value) == 'array') { //Handle array data properly
150
+			foreach ($value as $val) {
151
+				$params_arr[] = $key.'[]='.urlencode($val);
152 152
 			}
153 153
 		} else {
154
-			$params_arr[] = $key . '=' . urlencode( $value );
154
+			$params_arr[] = $key.'='.urlencode($value);
155 155
 		}
156 156
 	}
157
-	$link .= implode( '&', $params_arr );
157
+	$link .= implode('&', $params_arr);
158 158
 
159 159
 	return $link;
160 160
 }
@@ -171,18 +171,18 @@  discard block
 block discarded – undo
171 171
  *
172 172
  * @return string Listing page url if valid. Otherwise home url will be returned.
173 173
  */
174
-function geodir_get_addlisting_link( $post_type = '' ) {
174
+function geodir_get_addlisting_link($post_type = '') {
175 175
 	global $wpdb;
176 176
 
177 177
 	//$check_pkg  = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'");
178 178
 	$check_pkg = 1;
179
-	if ( post_type_exists( $post_type ) && $check_pkg ) {
179
+	if (post_type_exists($post_type) && $check_pkg) {
180 180
 
181
-		$add_listing_link = get_page_link( geodir_add_listing_page_id() );
181
+		$add_listing_link = get_page_link(geodir_add_listing_page_id());
182 182
 
183
-		return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) );
183
+		return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link));
184 184
 	} else {
185
-		return get_bloginfo( 'url' );
185
+		return get_bloginfo('url');
186 186
 	}
187 187
 }
188 188
 
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 	if (!empty($_SERVER['PHP_SELF']) && !empty($_SERVER['REQUEST_URI'])) {
211 211
 		// To build the entire URI we need to prepend the protocol, and the http host
212 212
 		// to the URI string.
213
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
213
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
214 214
 	} else {
215 215
 		/*
216 216
 		 * Since we do not have REQUEST_URI to work with, we will assume we are
@@ -219,11 +219,11 @@  discard block
 block discarded – undo
219 219
 		 *
220 220
 		 * IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS
221 221
 		 */
222
-		$pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME'];
222
+		$pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
223 223
 		
224 224
 		// If the query string exists append it to the URI string
225 225
 		if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) {
226
-			$pageURL .= '?' . $_SERVER['QUERY_STRING'];
226
+			$pageURL .= '?'.$_SERVER['QUERY_STRING'];
227 227
 		}
228 228
 	}
229 229
 	
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 	 *
235 235
 	 * @param string $pageURL The URL of the current page.
236 236
 	 */
237
-	return apply_filters( 'geodir_curPageURL', $pageURL );
237
+	return apply_filters('geodir_curPageURL', $pageURL);
238 238
 }
239 239
 
240 240
 /**
@@ -249,12 +249,12 @@  discard block
 block discarded – undo
249 249
  *
250 250
  * @return string Cleaned variable.
251 251
  */
252
-function geodir_clean( $string ) {
252
+function geodir_clean($string) {
253 253
 
254
-	$string = trim( strip_tags( stripslashes( $string ) ) );
255
-	$string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens.
256
-	$string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars.
257
-	$string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one.
254
+	$string = trim(strip_tags(stripslashes($string)));
255
+	$string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens.
256
+	$string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars.
257
+	$string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one.
258 258
 
259 259
 	return $string;
260 260
 }
@@ -268,13 +268,13 @@  discard block
 block discarded – undo
268 268
  */
269 269
 function geodir_get_weekday() {
270 270
 	return array(
271
-		__( 'Sunday', 'geodirectory' ),
272
-		__( 'Monday', 'geodirectory' ),
273
-		__( 'Tuesday', 'geodirectory' ),
274
-		__( 'Wednesday', 'geodirectory' ),
275
-		__( 'Thursday', 'geodirectory' ),
276
-		__( 'Friday', 'geodirectory' ),
277
-		__( 'Saturday', 'geodirectory' )
271
+		__('Sunday', 'geodirectory'),
272
+		__('Monday', 'geodirectory'),
273
+		__('Tuesday', 'geodirectory'),
274
+		__('Wednesday', 'geodirectory'),
275
+		__('Thursday', 'geodirectory'),
276
+		__('Friday', 'geodirectory'),
277
+		__('Saturday', 'geodirectory')
278 278
 	);
279 279
 }
280 280
 
@@ -287,11 +287,11 @@  discard block
 block discarded – undo
287 287
  */
288 288
 function geodir_get_weeks() {
289 289
 	return array(
290
-		__( 'First', 'geodirectory' ),
291
-		__( 'Second', 'geodirectory' ),
292
-		__( 'Third', 'geodirectory' ),
293
-		__( 'Fourth', 'geodirectory' ),
294
-		__( 'Last', 'geodirectory' )
290
+		__('First', 'geodirectory'),
291
+		__('Second', 'geodirectory'),
292
+		__('Third', 'geodirectory'),
293
+		__('Fourth', 'geodirectory'),
294
+		__('Last', 'geodirectory')
295 295
 	);
296 296
 }
297 297
 
@@ -310,112 +310,112 @@  discard block
 block discarded – undo
310 310
  *
311 311
  * @return bool If valid returns true. Otherwise false.
312 312
  */
313
-function geodir_is_page( $gdpage = '' ) {
313
+function geodir_is_page($gdpage = '') {
314 314
 
315 315
 	global $wp_query, $post, $wp;
316 316
 	//if(!is_admin()):
317 317
 
318
-	switch ( $gdpage ):
318
+	switch ($gdpage):
319 319
 		case 'add-listing':
320 320
 
321
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) {
321
+			if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) {
322 322
 				return true;
323
-			} elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
323
+			} elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
324 324
 				return true;
325 325
 			}
326 326
 
327 327
 			break;
328 328
 		case 'preview':
329
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] )
330
-			     && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() )
329
+			if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type'])
330
+			     && in_array($_REQUEST['listing_type'], geodir_get_posttypes())
331 331
 			) {
332 332
 				return true;
333 333
 			}
334 334
 			break;
335 335
 		case 'listing-success':
336
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) {
336
+			if (is_page() && get_query_var('page_id') == geodir_success_page_id()) {
337 337
 				return true;
338 338
 			}
339 339
 			break;
340 340
 		case 'detail':
341
-			$post_type = get_query_var( 'post_type' );
342
-			if ( is_array( $post_type ) ) {
343
-				$post_type = reset( $post_type );
341
+			$post_type = get_query_var('post_type');
342
+			if (is_array($post_type)) {
343
+				$post_type = reset($post_type);
344 344
 			}
345
-			if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) {
345
+			if (is_single() && in_array($post_type, geodir_get_posttypes())) {
346 346
 				return true;
347 347
 			}
348 348
 			break;
349 349
 		case 'pt':
350
-			$post_type = get_query_var( 'post_type' );
351
-			if ( is_array( $post_type ) ) {
352
-				$post_type = reset( $post_type );
350
+			$post_type = get_query_var('post_type');
351
+			if (is_array($post_type)) {
352
+				$post_type = reset($post_type);
353 353
 			}
354
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) {
354
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) {
355 355
 				return true;
356 356
 			}
357 357
 
358 358
 			break;
359 359
 		case 'listing':
360
-			if ( is_tax() && geodir_get_taxonomy_posttype() ) {
360
+			if (is_tax() && geodir_get_taxonomy_posttype()) {
361 361
 				global $current_term, $taxonomy, $term;
362 362
 
363 363
 				return true;
364 364
 			}
365
-			$post_type = get_query_var( 'post_type' );
366
-			if ( is_array( $post_type ) ) {
367
-				$post_type = reset( $post_type );
365
+			$post_type = get_query_var('post_type');
366
+			if (is_array($post_type)) {
367
+				$post_type = reset($post_type);
368 368
 			}
369
-			if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) {
369
+			if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) {
370 370
 				return true;
371 371
 			}
372 372
 
373 373
 			break;
374 374
 		case 'home':
375 375
 
376
-			if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) {
376
+			if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) {
377 377
 				return true;
378 378
 			}
379 379
 
380 380
 			break;
381 381
 		case 'location':
382
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) {
382
+			if (is_page() && get_query_var('page_id') == geodir_location_page_id()) {
383 383
 				return true;
384 384
 			}
385 385
 			break;
386 386
 		case 'author':
387
-			if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) {
387
+			if (is_author() && isset($_REQUEST['geodir_dashbord'])) {
388 388
 				return true;
389 389
 			}
390 390
 
391
-			if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) {
392
-				if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) {
391
+			if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) {
392
+				if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) {
393 393
 					return true;
394 394
 				}
395 395
 			}
396 396
 			break;
397 397
 		case 'search':
398
-			if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) {
398
+			if (is_search() && isset($_REQUEST['geodir_search'])) {
399 399
 				return true;
400 400
 			}
401 401
 			break;
402 402
 		case 'info':
403
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) {
403
+			if (is_page() && get_query_var('page_id') == geodir_info_page_id()) {
404 404
 				return true;
405 405
 			}
406 406
 			break;
407 407
 		case 'login':
408
-			if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) {
408
+			if (is_page() && get_query_var('page_id') == geodir_login_page_id()) {
409 409
 				return true;
410 410
 			}
411 411
 			break;
412 412
 		case 'checkout':
413
-			if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) {
413
+			if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) {
414 414
 				return true;
415 415
 			}
416 416
 			break;
417 417
 		case 'invoices':
418
-			if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) {
418
+			if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) {
419 419
 				return true;
420 420
 			}
421 421
 			break;
@@ -440,25 +440,25 @@  discard block
 block discarded – undo
440 440
  *
441 441
  * @param object $wp WordPress object.
442 442
  */
443
-function geodir_set_is_geodir_page( $wp ) {
444
-	if ( ! is_admin() ) {
443
+function geodir_set_is_geodir_page($wp) {
444
+	if (!is_admin()) {
445 445
 		//$wp->query_vars['gd_is_geodir_page'] = false;
446 446
 		//print_r()
447
-		if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array(
447
+		if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array(
448 448
 				'preview',
449 449
 				'page',
450 450
 				'paged',
451 451
 				'cpage'
452
-			) )
452
+			))
453 453
 		) {
454
-			if ( geodir_is_page( 'home' ) ) {
454
+			if (geodir_is_page('home')) {
455 455
 				$wp->query_vars['gd_is_geodir_page'] = true;
456 456
 			}
457 457
 
458 458
 
459 459
 		}
460 460
 
461
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) {
461
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) {
462 462
 			if (
463 463
 				$wp->query_vars['page_id'] == geodir_add_listing_page_id()
464 464
 				|| $wp->query_vars['page_id'] == geodir_preview_page_id()
@@ -467,26 +467,26 @@  discard block
 block discarded – undo
467 467
 				|| $wp->query_vars['page_id'] == geodir_home_page_id()
468 468
 				|| $wp->query_vars['page_id'] == geodir_info_page_id()
469 469
 				|| $wp->query_vars['page_id'] == geodir_login_page_id()
470
-				|| ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
471
-				|| ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
470
+				|| (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
471
+				|| (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
472 472
 			) {
473 473
 				$wp->query_vars['gd_is_geodir_page'] = true;
474 474
 			}
475 475
 		}
476 476
 
477
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) {
478
-			$page = get_page_by_path( $wp->query_vars['pagename'] );
477
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) {
478
+			$page = get_page_by_path($wp->query_vars['pagename']);
479 479
 
480
-			if ( ! empty( $page ) && (
480
+			if (!empty($page) && (
481 481
 					$page->ID == geodir_add_listing_page_id()
482 482
 					|| $page->ID == geodir_preview_page_id()
483 483
 					|| $page->ID == geodir_success_page_id()
484 484
 					|| $page->ID == geodir_location_page_id()
485
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() )
486
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() )
487
-					|| ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() )
488
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() )
489
-					|| ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() )
485
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id())
486
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id())
487
+					|| (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id())
488
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id())
489
+					|| (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id())
490 490
 				)
491 491
 			) {
492 492
 				$wp->query_vars['gd_is_geodir_page'] = true;
@@ -494,20 +494,20 @@  discard block
 block discarded – undo
494 494
 		}
495 495
 
496 496
 
497
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) {
497
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') {
498 498
 			$requested_post_type = $wp->query_vars['post_type'];
499 499
 			// check if this post type is geodirectory post types
500 500
 			$post_type_array = geodir_get_posttypes();
501
-			if ( in_array( $requested_post_type, $post_type_array ) ) {
501
+			if (in_array($requested_post_type, $post_type_array)) {
502 502
 				$wp->query_vars['gd_is_geodir_page'] = true;
503 503
 			}
504 504
 		}
505 505
 
506
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) {
507
-			$geodir_taxonomis = geodir_get_taxonomies( '', true );
508
-			if ( ! empty( $geodir_taxonomis ) ) {
509
-				foreach ( $geodir_taxonomis as $taxonomy ) {
510
-					if ( array_key_exists( $taxonomy, $wp->query_vars ) ) {
506
+		if (!isset($wp->query_vars['gd_is_geodir_page'])) {
507
+			$geodir_taxonomis = geodir_get_taxonomies('', true);
508
+			if (!empty($geodir_taxonomis)) {
509
+				foreach ($geodir_taxonomis as $taxonomy) {
510
+					if (array_key_exists($taxonomy, $wp->query_vars)) {
511 511
 						$wp->query_vars['gd_is_geodir_page'] = true;
512 512
 						break;
513 513
 					}
@@ -516,20 +516,20 @@  discard block
 block discarded – undo
516 516
 
517 517
 		}
518 518
 
519
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) {
519
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) {
520 520
 			$wp->query_vars['gd_is_geodir_page'] = true;
521 521
 		}
522 522
 
523 523
 
524
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) {
524
+		if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) {
525 525
 			$wp->query_vars['gd_is_geodir_page'] = true;
526 526
 		}
527 527
 
528 528
 
529 529
 //check if homepage
530
-		if ( ! isset( $wp->query_vars['gd_is_geodir_page'] )
531
-		     && ! isset( $wp->query_vars['page_id'] )
532
-		     && ! isset( $wp->query_vars['pagename'] )
530
+		if (!isset($wp->query_vars['gd_is_geodir_page'])
531
+		     && !isset($wp->query_vars['page_id'])
532
+		     && !isset($wp->query_vars['pagename'])
533 533
 		     && is_page_geodir_home()
534 534
 		) {
535 535
 			$wp->query_vars['gd_is_geodir_page'] = true;
@@ -553,14 +553,14 @@  discard block
 block discarded – undo
553 553
  */
554 554
 function geodir_is_geodir_page() {
555 555
 	global $wp;
556
-	if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) {
556
+	if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) {
557 557
 		return true;
558 558
 	} else {
559 559
 		return false;
560 560
 	}
561 561
 }
562 562
 
563
-if ( ! function_exists( 'geodir_get_imagesize' ) ) {
563
+if (!function_exists('geodir_get_imagesize')) {
564 564
 	/**
565 565
 	 * Get image size using the size key .
566 566
 	 *
@@ -571,13 +571,13 @@  discard block
 block discarded – undo
571 571
 	 *
572 572
 	 * @return array|mixed|void|WP_Error If valid returns image size. Else returns error.
573 573
 	 */
574
-	function geodir_get_imagesize( $size = '' ) {
574
+	function geodir_get_imagesize($size = '') {
575 575
 
576 576
 		$imagesizes = array(
577
-			'list-thumb'   => array( 'w' => 283, 'h' => 188 ),
578
-			'thumbnail'    => array( 'w' => 125, 'h' => 125 ),
579
-			'widget-thumb' => array( 'w' => 50, 'h' => 50 ),
580
-			'slider-thumb' => array( 'w' => 100, 'h' => 100 )
577
+			'list-thumb'   => array('w' => 283, 'h' => 188),
578
+			'thumbnail'    => array('w' => 125, 'h' => 125),
579
+			'widget-thumb' => array('w' => 50, 'h' => 50),
580
+			'slider-thumb' => array('w' => 100, 'h' => 100)
581 581
 		);
582 582
 
583 583
 		/**
@@ -587,9 +587,9 @@  discard block
 block discarded – undo
587 587
 		 *
588 588
 		 * @param array $imagesizes Image size array.
589 589
 		 */
590
-		$imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes );
590
+		$imagesizes = apply_filters('geodir_imagesizes', $imagesizes);
591 591
 
592
-		if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) {
592
+		if (!empty($size) && array_key_exists($size, $imagesizes)) {
593 593
 			/**
594 594
 			 * Filters image size of the passed key.
595 595
 			 *
@@ -597,11 +597,11 @@  discard block
 block discarded – undo
597 597
 			 *
598 598
 			 * @param array $imagesizes [$size] Image size array of the passed key.
599 599
 			 */
600
-			return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] );
600
+			return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]);
601 601
 
602
-		} elseif ( ! empty( $size ) ) {
602
+		} elseif (!empty($size)) {
603 603
 
604
-			return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) );
604
+			return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory'));
605 605
 
606 606
 		}
607 607
 
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
 */
626 626
 
627 627
 
628
-if ( ! function_exists( 'createRandomString' ) ) {
628
+if (!function_exists('createRandomString')) {
629 629
 	/**
630 630
 	 * Creates random string.
631 631
 	 *
@@ -635,21 +635,21 @@  discard block
 block discarded – undo
635 635
 	 */
636 636
 	function createRandomString() {
637 637
 		$chars = "abcdefghijkmlnopqrstuvwxyz1023456789";
638
-		srand( (double) microtime() * 1000000 );
638
+		srand((double) microtime() * 1000000);
639 639
 		$i       = 0;
640 640
 		$rstring = '';
641
-		while ( $i <= 25 ) {
641
+		while ($i <= 25) {
642 642
 			$num     = rand() % 33;
643
-			$tmp     = substr( $chars, $num, 1 );
644
-			$rstring = $rstring . $tmp;
645
-			$i ++;
643
+			$tmp     = substr($chars, $num, 1);
644
+			$rstring = $rstring.$tmp;
645
+			$i++;
646 646
 		}
647 647
 
648 648
 		return $rstring;
649 649
 	}
650 650
 }
651 651
 
652
-if ( ! function_exists( 'geodir_getDistanceRadius' ) ) {
652
+if (!function_exists('geodir_getDistanceRadius')) {
653 653
 	/**
654 654
 	 * Calculates the distance radius.
655 655
 	 *
@@ -660,9 +660,9 @@  discard block
 block discarded – undo
660 660
 	 *
661 661
 	 * @return float The mean radius.
662 662
 	 */
663
-	function geodir_getDistanceRadius( $uom = 'km' ) {
663
+	function geodir_getDistanceRadius($uom = 'km') {
664 664
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
665
-		switch ( geodir_strtolower( $uom ) ):
665
+		switch (geodir_strtolower($uom)):
666 666
 			case 'km'    :
667 667
 				$earthMeanRadius = 6371.009; // km
668 668
 				break;
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
 }
695 695
 
696 696
 
697
-if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) {
697
+if (!function_exists('geodir_calculateDistanceFromLatLong')) {
698 698
 	/**
699 699
 	 * Calculate the great circle distance between two points identified by longitude and latitude.
700 700
 	 *
@@ -707,17 +707,17 @@  discard block
 block discarded – undo
707 707
 	 *
708 708
 	 * @return float The distance.
709 709
 	 */
710
-	function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) {
710
+	function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') {
711 711
 //	Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude
712 712
 
713
-		$earthMeanRadius = geodir_getDistanceRadius( $uom );
713
+		$earthMeanRadius = geodir_getDistanceRadius($uom);
714 714
 
715
-		$deltaLatitude  = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] );
716
-		$deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] );
717
-		$a              = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) +
718
-		                  cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) *
719
-		                  sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 );
720
-		$c              = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) );
715
+		$deltaLatitude  = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']);
716
+		$deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']);
717
+		$a              = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) +
718
+		                  cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) *
719
+		                  sin($deltaLongitude / 2) * sin($deltaLongitude / 2);
720
+		$c              = 2 * atan2(sqrt($a), sqrt(1 - $a));
721 721
 		$distance       = $earthMeanRadius * $c;
722 722
 
723 723
 		return $distance;
@@ -726,7 +726,7 @@  discard block
 block discarded – undo
726 726
 }
727 727
 
728 728
 
729
-if ( ! function_exists( 'geodir_sendEmail' ) ) {
729
+if (!function_exists('geodir_sendEmail')) {
730 730
 	/**
731 731
 	 * The main function that send transactional emails using the args provided.
732 732
 	 *
@@ -745,95 +745,95 @@  discard block
 block discarded – undo
745 745
 	 * @param string $post_id       The post ID.
746 746
 	 * @param string $user_id       The user ID.
747 747
 	 */
748
-	function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) {
748
+	function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') {
749 749
 		$login_details = '';
750 750
 
751 751
 		// strip slashes from subject & message text
752
-		$to_subject = stripslashes_deep( $to_subject );
753
-		$to_message = stripslashes_deep( $to_message );
752
+		$to_subject = stripslashes_deep($to_subject);
753
+		$to_message = stripslashes_deep($to_message);
754 754
 
755
-		if ( $message_type == 'send_friend' ) {
756
-			$subject = get_option( 'geodir_email_friend_subject' );
757
-			$message = get_option( 'geodir_email_friend_content' );
758
-		} elseif ( $message_type == 'send_enquiry' ) {
759
-			$subject = get_option( 'geodir_email_enquiry_subject' );
760
-			$message = get_option( 'geodir_email_enquiry_content' );
755
+		if ($message_type == 'send_friend') {
756
+			$subject = get_option('geodir_email_friend_subject');
757
+			$message = get_option('geodir_email_friend_content');
758
+		} elseif ($message_type == 'send_enquiry') {
759
+			$subject = get_option('geodir_email_enquiry_subject');
760
+			$message = get_option('geodir_email_enquiry_content');
761 761
 
762 762
 			// change to name in some cases
763
-			$post_author = get_post_field( 'post_author', $post_id );
764
-			if(is_super_admin( $post_author  )){// if admin probably not the post author so change name
765
-				$toEmailName = __('Business Owner','geodirectory');
766
-			}elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed
767
-				$toEmailName = __('Business Owner','geodirectory');
763
+			$post_author = get_post_field('post_author', $post_id);
764
+			if (is_super_admin($post_author)) {// if admin probably not the post author so change name
765
+				$toEmailName = __('Business Owner', 'geodirectory');
766
+			}elseif (defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id, 'claimed') != '1') {// if claim manager installed but listing not claimed
767
+				$toEmailName = __('Business Owner', 'geodirectory');
768 768
 			}
769 769
 
770 770
 
771
-		} elseif ( $message_type == 'forgot_password' ) {
772
-			$subject       = get_option( 'geodir_forgot_password_subject' );
773
-			$message       = get_option( 'geodir_forgot_password_content' );
771
+		} elseif ($message_type == 'forgot_password') {
772
+			$subject       = get_option('geodir_forgot_password_subject');
773
+			$message       = get_option('geodir_forgot_password_content');
774 774
 			$login_details = $to_message;
775
-		} elseif ( $message_type == 'registration' ) {
776
-			$subject       = get_option( 'geodir_registration_success_email_subject' );
777
-			$message       = get_option( 'geodir_registration_success_email_content' );
775
+		} elseif ($message_type == 'registration') {
776
+			$subject       = get_option('geodir_registration_success_email_subject');
777
+			$message       = get_option('geodir_registration_success_email_content');
778 778
 			$login_details = $to_message;
779
-		} elseif ( $message_type == 'post_submit' ) {
780
-			$subject = get_option( 'geodir_post_submited_success_email_subject' );
781
-			$message = get_option( 'geodir_post_submited_success_email_content' );
782
-		} elseif ( $message_type == 'listing_published' ) {
783
-			$subject = get_option( 'geodir_post_published_email_subject' );
784
-			$message = get_option( 'geodir_post_published_email_content' );
785
-		} elseif ( $message_type == 'listing_edited' ) {
786
-			$subject = get_option( 'geodir_post_edited_email_subject_admin' );
787
-			$message = get_option( 'geodir_post_edited_email_content_admin' );
779
+		} elseif ($message_type == 'post_submit') {
780
+			$subject = get_option('geodir_post_submited_success_email_subject');
781
+			$message = get_option('geodir_post_submited_success_email_content');
782
+		} elseif ($message_type == 'listing_published') {
783
+			$subject = get_option('geodir_post_published_email_subject');
784
+			$message = get_option('geodir_post_published_email_content');
785
+		} elseif ($message_type == 'listing_edited') {
786
+			$subject = get_option('geodir_post_edited_email_subject_admin');
787
+			$message = get_option('geodir_post_edited_email_content_admin');
788 788
 		}
789 789
 
790
-		if ( ! empty( $subject ) ) {
791
-			$subject = __( stripslashes_deep( $subject ), 'geodirectory' );
790
+		if (!empty($subject)) {
791
+			$subject = __(stripslashes_deep($subject), 'geodirectory');
792 792
 		}
793 793
 
794
-		if ( ! empty( $message ) ) {
795
-			$message = __( stripslashes_deep( $message ), 'geodirectory' );
794
+		if (!empty($message)) {
795
+			$message = __(stripslashes_deep($message), 'geodirectory');
796 796
 		}
797 797
 
798
-		$to_message        = nl2br( $to_message );
799
-		$sitefromEmail     = get_option( 'site_email' );
798
+		$to_message        = nl2br($to_message);
799
+		$sitefromEmail     = get_option('site_email');
800 800
 		$sitefromEmailName = get_site_emailName();
801
-		$productlink       = get_permalink( $post_id );
801
+		$productlink       = get_permalink($post_id);
802 802
 
803 803
 		$user_login = '';
804
-		if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) {
804
+		if ($user_id > 0 && $user_info = get_userdata($user_id)) {
805 805
 			$user_login = $user_info->user_login;
806 806
 		}
807 807
 
808 808
 		$posted_date = '';
809 809
 		$listingLink = '';
810 810
 
811
-		$post_info = get_post( $post_id );
811
+		$post_info = get_post($post_id);
812 812
 
813
-		if ( $post_info ) {
813
+		if ($post_info) {
814 814
 			$posted_date = $post_info->post_date;
815
-			$listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
815
+			$listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
816 816
 		}
817 817
 		$siteurl       = home_url();
818
-		$siteurl_link  = '<a href="' . $siteurl . '">' . $siteurl . '</a>';
818
+		$siteurl_link  = '<a href="'.$siteurl.'">'.$siteurl.'</a>';
819 819
 		$loginurl      = geodir_login_url();
820
-		$loginurl_link = '<a href="' . $loginurl . '">login</a>';
820
+		$loginurl_link = '<a href="'.$loginurl.'">login</a>';
821 821
         
822
-		$post_author_id   = ! empty( $post_info ) ? $post_info->post_author : 0;
823
-		$post_author_data = $post_author_id ? get_userdata( $post_author_id ) : NULL;
824
-		$post_author_name = geodir_get_client_name( $post_author_id );
825
-		$post_author_email = !empty( $post_author_data->user_email ) ? $post_author_data->user_email : '';
826
-		$current_date     = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) );
827
-
828
-		if ( $fromEmail == '' ) {
829
-			$fromEmail = get_option( 'site_email' );
822
+		$post_author_id   = !empty($post_info) ? $post_info->post_author : 0;
823
+		$post_author_data = $post_author_id ? get_userdata($post_author_id) : NULL;
824
+		$post_author_name = geodir_get_client_name($post_author_id);
825
+		$post_author_email = !empty($post_author_data->user_email) ? $post_author_data->user_email : '';
826
+		$current_date     = date_i18n('Y-m-d H:i:s', current_time('timestamp'));
827
+
828
+		if ($fromEmail == '') {
829
+			$fromEmail = get_option('site_email');
830 830
 		}
831 831
 
832
-		if ( $fromEmailName == '' ) {
833
-			$fromEmailName = get_option( 'site_email_name' );
832
+		if ($fromEmailName == '') {
833
+			$fromEmailName = get_option('site_email_name');
834 834
 		}
835 835
 
836
-		$search_array  = array(
836
+		$search_array = array(
837 837
 			'[#listing_link#]',
838 838
 			'[#site_name_url#]',
839 839
 			'[#post_id#]',
@@ -875,7 +875,7 @@  discard block
 block discarded – undo
875 875
 			$post_author_email,
876 876
 			$current_date,
877 877
 		);
878
-		$message       = str_replace( $search_array, $replace_array, $message );
878
+		$message       = str_replace($search_array, $replace_array, $message);
879 879
 
880 880
 		$search_array  = array(
881 881
 			'[#listing_link#]',
@@ -913,12 +913,12 @@  discard block
 block discarded – undo
913 913
 			$post_author_email,
914 914
 			$current_date
915 915
 		);
916
-		$subject       = str_replace( $search_array, $replace_array, $subject );
916
+		$subject = str_replace($search_array, $replace_array, $subject);
917 917
 
918
-		$headers =  array();
918
+		$headers = array();
919 919
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
920
-		$headers[] = "Reply-To: " . $fromEmail;
921
-		$headers[] = 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>';
920
+		$headers[] = "Reply-To: ".$fromEmail;
921
+		$headers[] = 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>';
922 922
 
923 923
 		$to = $toEmail;
924 924
 
@@ -940,7 +940,7 @@  discard block
 block discarded – undo
940 940
 		 * @param string $post_id       The post ID.
941 941
 		 * @param string $user_id       The user ID.
942 942
 		 */
943
-		$to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
943
+		$to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
944 944
 		/**
945 945
 		 * Filter the client email subject.
946 946
 		 *
@@ -959,7 +959,7 @@  discard block
 block discarded – undo
959 959
 		 * @param string $post_id       The post ID.
960 960
 		 * @param string $user_id       The user ID.
961 961
 		 */
962
-		$subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
962
+		$subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
963 963
 		/**
964 964
 		 * Filter the client email message.
965 965
 		 *
@@ -978,7 +978,7 @@  discard block
 block discarded – undo
978 978
 		 * @param string $post_id       The post ID.
979 979
 		 * @param string $user_id       The user ID.
980 980
 		 */
981
-		$message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
981
+		$message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
982 982
 		/**
983 983
 		 * Filter the client email headers.
984 984
 		 *
@@ -997,39 +997,39 @@  discard block
 block discarded – undo
997 997
 		 * @param string $post_id       The post ID.
998 998
 		 * @param string $user_id       The user ID.
999 999
 		 */
1000
-		$headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1000
+		$headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1001 1001
 
1002
-		$sent = wp_mail( $to, $subject, $message, $headers );
1002
+		$sent = wp_mail($to, $subject, $message, $headers);
1003 1003
 
1004
-		if ( ! $sent ) {
1005
-			if ( is_array( $to ) ) {
1006
-				$to = implode( ',', $to );
1004
+		if (!$sent) {
1005
+			if (is_array($to)) {
1006
+				$to = implode(',', $to);
1007 1007
 			}
1008 1008
 			$log_message = sprintf(
1009
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1009
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1010 1010
 				$message_type,
1011
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1011
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1012 1012
 				$to,
1013 1013
 				$subject
1014 1014
 			);
1015
-			geodir_error_log( $log_message );
1015
+			geodir_error_log($log_message);
1016 1016
 		}
1017 1017
 
1018 1018
 		///////// ADMIN BCC EMIALS
1019
-		$adminEmail = get_bloginfo( 'admin_email' );
1019
+		$adminEmail = get_bloginfo('admin_email');
1020 1020
 		$to         = $adminEmail;
1021 1021
 
1022 1022
 		$admin_bcc = false;
1023
-		if ( $message_type == 'registration' ) {
1024
-			$message_raw  = explode( __( "Password:", 'geodirectory' ), $message );
1025
-			$message_raw2 = explode( "</p>", $message_raw[1], 2 );
1026
-			$message      = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1];
1023
+		if ($message_type == 'registration') {
1024
+			$message_raw  = explode(__("Password:", 'geodirectory'), $message);
1025
+			$message_raw2 = explode("</p>", $message_raw[1], 2);
1026
+			$message      = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1];
1027 1027
 		}
1028
-		if ( $message_type == 'post_submit' ) {
1029
-			$subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' );
1030
-			$message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' );
1028
+		if ($message_type == 'post_submit') {
1029
+			$subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory');
1030
+			$message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory');
1031 1031
 
1032
-			$search_array  = array(
1032
+			$search_array = array(
1033 1033
 				'[#listing_link#]',
1034 1034
 				'[#site_name_url#]',
1035 1035
 				'[#post_id#]',
@@ -1065,7 +1065,7 @@  discard block
 block discarded – undo
1065 1065
 				$user_login,
1066 1066
 				$post_author_email,
1067 1067
 			);
1068
-			$message       = str_replace( $search_array, $replace_array, $message );
1068
+			$message       = str_replace($search_array, $replace_array, $message);
1069 1069
 
1070 1070
 			$search_array  = array(
1071 1071
 				'[#listing_link#]',
@@ -1097,26 +1097,26 @@  discard block
 block discarded – undo
1097 1097
 				$user_login,
1098 1098
 				$post_author_email,
1099 1099
 			);
1100
-			$subject       = str_replace( $search_array, $replace_array, $subject );
1100
+			$subject = str_replace($search_array, $replace_array, $subject);
1101 1101
 
1102 1102
 			$subject .= ' - ADMIN BCC COPY';
1103 1103
 			$admin_bcc = true;
1104 1104
 
1105
-		} elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) {
1105
+		} elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) {
1106 1106
 			$subject .= ' - ADMIN BCC COPY';
1107 1107
 			$admin_bcc = true;
1108
-		} elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) {
1108
+		} elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) {
1109 1109
 			$subject .= ' - ADMIN BCC COPY';
1110 1110
 			$admin_bcc = true;
1111
-		} elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) {
1111
+		} elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) {
1112 1112
 			$subject .= ' - ADMIN BCC COPY';
1113 1113
 			$admin_bcc = true;
1114
-		} elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) {
1114
+		} elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) {
1115 1115
 			$subject .= ' - ADMIN BCC COPY';
1116 1116
 			$admin_bcc = true;
1117 1117
 		}
1118 1118
 
1119
-		if ( $admin_bcc === true ) {
1119
+		if ($admin_bcc === true) {
1120 1120
 
1121 1121
 			/**
1122 1122
 			 * Filter the client email subject.
@@ -1136,7 +1136,7 @@  discard block
 block discarded – undo
1136 1136
 			 * @param string $post_id       The post ID.
1137 1137
 			 * @param string $user_id       The user ID.
1138 1138
 			 */
1139
-			$subject = apply_filters( 'geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1139
+			$subject = apply_filters('geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1140 1140
 			/**
1141 1141
 			 * Filter the client email message.
1142 1142
 			 *
@@ -1155,23 +1155,23 @@  discard block
 block discarded – undo
1155 1155
 			 * @param string $post_id       The post ID.
1156 1156
 			 * @param string $user_id       The user ID.
1157 1157
 			 */
1158
-			$message = apply_filters( 'geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id );
1158
+			$message = apply_filters('geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id);
1159 1159
 
1160 1160
 
1161
-			$sent = wp_mail( $to, $subject, $message, $headers );
1161
+			$sent = wp_mail($to, $subject, $message, $headers);
1162 1162
 
1163
-			if ( ! $sent ) {
1164
-				if ( is_array( $to ) ) {
1165
-					$to = implode( ',', $to );
1163
+			if (!$sent) {
1164
+				if (is_array($to)) {
1165
+					$to = implode(',', $to);
1166 1166
 				}
1167 1167
 				$log_message = sprintf(
1168
-					__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1168
+					__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1169 1169
 					$message_type,
1170
-					date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1170
+					date_i18n('F j Y H:i:s', current_time('timestamp')),
1171 1171
 					$to,
1172 1172
 					$subject
1173 1173
 				);
1174
-				geodir_error_log( $log_message );
1174
+				geodir_error_log($log_message);
1175 1175
 			}
1176 1176
 		}
1177 1177
 
@@ -1187,49 +1187,49 @@  discard block
 block discarded – undo
1187 1187
  */
1188 1188
 function geodir_taxonomy_breadcrumb() {
1189 1189
 
1190
-	$term   = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
1190
+	$term   = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy'));
1191 1191
 	$parent = $term->parent;
1192 1192
 
1193
-	while ( $parent ):
1193
+	while ($parent):
1194 1194
 		$parents[]  = $parent;
1195
-		$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1195
+		$new_parent = get_term_by('id', $parent, get_query_var('taxonomy'));
1196 1196
 		$parent     = $new_parent->parent;
1197 1197
 	endwhile;
1198 1198
 
1199
-	if ( ! empty( $parents ) ):
1200
-		$parents = array_reverse( $parents );
1199
+	if (!empty($parents)):
1200
+		$parents = array_reverse($parents);
1201 1201
 
1202
-		foreach ( $parents as $parent ):
1203
-			$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
1204
-			$url  = get_term_link( $item, get_query_var( 'taxonomy' ) );
1205
-			echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>';
1202
+		foreach ($parents as $parent):
1203
+			$item = get_term_by('id', $parent, get_query_var('taxonomy'));
1204
+			$url  = get_term_link($item, get_query_var('taxonomy'));
1205
+			echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>';
1206 1206
 		endforeach;
1207 1207
 
1208 1208
 	endif;
1209 1209
 
1210
-	echo '<li> > ' . $term->name . '</li>';
1210
+	echo '<li> > '.$term->name.'</li>';
1211 1211
 }
1212 1212
 
1213
-function geodir_wpml_post_type_archive_link($link, $post_type){
1213
+function geodir_wpml_post_type_archive_link($link, $post_type) {
1214 1214
 	if (function_exists('icl_object_id')) {
1215
-		$post_types   = get_option( 'geodir_post_types' );
1216
-		$slug         = $post_types[ $post_type ]['rewrite']['slug'];
1215
+		$post_types   = get_option('geodir_post_types');
1216
+		$slug         = $post_types[$post_type]['rewrite']['slug'];
1217 1217
 
1218 1218
 		// Alter the CPT slug if WPML is set to do so
1219
-		if ( function_exists( 'icl_object_id' ) ) {
1220
-			if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) {
1219
+		if (function_exists('icl_object_id')) {
1220
+			if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) {
1221 1221
 
1222 1222
 				$org_slug = $slug;
1223
-				$slug     = apply_filters( 'wpml_translate_single_string',
1223
+				$slug     = apply_filters('wpml_translate_single_string',
1224 1224
 					$slug,
1225 1225
 					'WordPress',
1226
-					'URL slug: ' . $slug,
1227
-					$language_code );
1226
+					'URL slug: '.$slug,
1227
+					$language_code);
1228 1228
                     
1229
-				if ( ! $slug ) {
1229
+				if (!$slug) {
1230 1230
 					$slug = $org_slug;
1231 1231
 				} else {
1232
-					$link = str_replace( $org_slug, $slug, $link );
1232
+					$link = str_replace($org_slug, $slug, $link);
1233 1233
 				}
1234 1234
 			}
1235 1235
 		}
@@ -1237,7 +1237,7 @@  discard block
 block discarded – undo
1237 1237
 
1238 1238
 	return $link;
1239 1239
 }
1240
-add_filter( 'post_type_archive_link','geodir_wpml_post_type_archive_link', 1000, 2);
1240
+add_filter('post_type_archive_link', 'geodir_wpml_post_type_archive_link', 1000, 2);
1241 1241
 
1242 1242
 /**
1243 1243
  * Main function that generates breadcrumb for all pages.
@@ -1258,9 +1258,9 @@  discard block
 block discarded – undo
1258 1258
 	 *
1259 1259
 	 * @since 1.0.0
1260 1260
 	 */
1261
-	$separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' );
1261
+	$separator = apply_filters('geodir_breadcrumb_separator', ' > ');
1262 1262
 
1263
-	if ( ! geodir_is_page( 'home' ) ) {
1263
+	if (!geodir_is_page('home')) {
1264 1264
 		$breadcrumb    = '';
1265 1265
 		$url_categoris = '';
1266 1266
 		$breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">';
@@ -1269,167 +1269,167 @@  discard block
 block discarded – undo
1269 1269
 		 *
1270 1270
 		 * @since 1.0.0
1271 1271
 		 */
1272
-		$breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>';
1272
+		$breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>';
1273 1273
 
1274 1274
 		$gd_post_type   = geodir_get_current_posttype();
1275
-		$post_type_info = get_post_type_object( $gd_post_type );
1275
+		$post_type_info = get_post_type_object($gd_post_type);
1276 1276
 
1277
-		remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' );
1277
+		remove_filter('post_type_archive_link', 'geodir_get_posttype_link');
1278 1278
 
1279
-		$listing_link = get_post_type_archive_link( $gd_post_type );
1279
+		$listing_link = get_post_type_archive_link($gd_post_type);
1280 1280
 
1281
-		add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 );
1282
-		$listing_link = rtrim( $listing_link, '/' );
1281
+		add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2);
1282
+		$listing_link = rtrim($listing_link, '/');
1283 1283
 		$listing_link .= '/';
1284 1284
 
1285 1285
 		$post_type_for_location_link = $listing_link;
1286
-		$location_terms              = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
1286
+		$location_terms              = geodir_get_current_location_terms('query_vars', $gd_post_type);
1287 1287
 
1288 1288
 		global $wp, $gd_session;
1289 1289
 		$location_link = $post_type_for_location_link;
1290 1290
 
1291
-		if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) {
1291
+		if (geodir_is_page('detail') || geodir_is_page('listing')) {
1292 1292
 			global $post;
1293
-			$location_manager     = defined( 'POST_LOCATION_TABLE' ) ? true : false;
1294
-			$neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false;
1293
+			$location_manager     = defined('POST_LOCATION_TABLE') ? true : false;
1294
+			$neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
1295 1295
 
1296
-			if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) {
1296
+			if (geodir_is_page('detail') && isset($post->country_slug)) {
1297 1297
 				$location_terms = array(
1298 1298
 					'gd_country' => $post->country_slug,
1299 1299
 					'gd_region'  => $post->region_slug,
1300 1300
 					'gd_city'    => $post->city_slug
1301 1301
 				);
1302 1302
 
1303
-				if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) {
1303
+				if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
1304 1304
 					$location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood;
1305 1305
 				}
1306 1306
 			}
1307 1307
 
1308
-			$geodir_show_location_url = get_option( 'geodir_show_location_url' );
1308
+			$geodir_show_location_url = get_option('geodir_show_location_url');
1309 1309
 
1310 1310
 			$hide_url_part = array();
1311
-			if ( $location_manager ) {
1312
-				$hide_country_part = get_option( 'geodir_location_hide_country_part' );
1313
-				$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
1314
-
1315
-				if ( $hide_region_part && $hide_country_part ) {
1316
-					$hide_url_part = array( 'gd_country', 'gd_region' );
1317
-				} else if ( $hide_region_part && ! $hide_country_part ) {
1318
-					$hide_url_part = array( 'gd_region' );
1319
-				} else if ( ! $hide_region_part && $hide_country_part ) {
1320
-					$hide_url_part = array( 'gd_country' );
1311
+			if ($location_manager) {
1312
+				$hide_country_part = get_option('geodir_location_hide_country_part');
1313
+				$hide_region_part  = get_option('geodir_location_hide_region_part');
1314
+
1315
+				if ($hide_region_part && $hide_country_part) {
1316
+					$hide_url_part = array('gd_country', 'gd_region');
1317
+				} else if ($hide_region_part && !$hide_country_part) {
1318
+					$hide_url_part = array('gd_region');
1319
+				} else if (!$hide_region_part && $hide_country_part) {
1320
+					$hide_url_part = array('gd_country');
1321 1321
 				}
1322 1322
 			}
1323 1323
 
1324 1324
 			$hide_text_part = array();
1325
-			if ( $geodir_show_location_url == 'country_city' ) {
1326
-				$hide_text_part = array( 'gd_region' );
1325
+			if ($geodir_show_location_url == 'country_city') {
1326
+				$hide_text_part = array('gd_region');
1327 1327
 
1328
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1329
-					unset( $location_terms['gd_region'] );
1328
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1329
+					unset($location_terms['gd_region']);
1330 1330
 				}
1331
-			} else if ( $geodir_show_location_url == 'region_city' ) {
1332
-				$hide_text_part = array( 'gd_country' );
1331
+			} else if ($geodir_show_location_url == 'region_city') {
1332
+				$hide_text_part = array('gd_country');
1333 1333
 
1334
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1335
-					unset( $location_terms['gd_country'] );
1334
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1335
+					unset($location_terms['gd_country']);
1336 1336
 				}
1337
-			} else if ( $geodir_show_location_url == 'city' ) {
1338
-				$hide_text_part = array( 'gd_country', 'gd_region' );
1337
+			} else if ($geodir_show_location_url == 'city') {
1338
+				$hide_text_part = array('gd_country', 'gd_region');
1339 1339
 
1340
-				if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) {
1341
-					unset( $location_terms['gd_country'] );
1340
+				if (isset($location_terms['gd_country']) && !$location_manager) {
1341
+					unset($location_terms['gd_country']);
1342 1342
 				}
1343
-				if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) {
1344
-					unset( $location_terms['gd_region'] );
1343
+				if (isset($location_terms['gd_region']) && !$location_manager) {
1344
+					unset($location_terms['gd_region']);
1345 1345
 				}
1346 1346
 			}
1347 1347
 
1348 1348
 			$is_location_last = '';
1349 1349
 			$is_taxonomy_last = '';
1350 1350
 			$breadcrumb .= '<li>';
1351
-			if ( get_query_var( $gd_post_type . 'category' ) ) {
1352
-				$gd_taxonomy = $gd_post_type . 'category';
1353
-			} elseif ( get_query_var( $gd_post_type . '_tags' ) ) {
1354
-				$gd_taxonomy = $gd_post_type . '_tags';
1351
+			if (get_query_var($gd_post_type.'category')) {
1352
+				$gd_taxonomy = $gd_post_type.'category';
1353
+			} elseif (get_query_var($gd_post_type.'_tags')) {
1354
+				$gd_taxonomy = $gd_post_type.'_tags';
1355 1355
 			}
1356 1356
 
1357
-			$breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1358
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1357
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1358
+			if (!empty($gd_taxonomy) || geodir_is_page('detail')) {
1359 1359
 				$is_location_last = false;
1360 1360
 			} else {
1361 1361
 				$is_location_last = true;
1362 1362
 			}
1363 1363
 
1364
-			if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) {
1364
+			if (!empty($gd_taxonomy) && geodir_is_page('listing')) {
1365 1365
 				$is_taxonomy_last = true;
1366 1366
 			} else {
1367 1367
 				$is_taxonomy_last = false;
1368 1368
 			}
1369 1369
 
1370
-			if ( ! empty( $location_terms ) ) {
1371
-				$geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false;
1370
+			if (!empty($location_terms)) {
1371
+				$geodir_get_locations = function_exists('get_actual_location_name') ? true : false;
1372 1372
 
1373
-				foreach ( $location_terms as $key => $location_term ) {
1374
-					if ( $location_term != '' ) {
1375
-						if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb.
1373
+				foreach ($location_terms as $key => $location_term) {
1374
+					if ($location_term != '') {
1375
+						if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb.
1376 1376
 							continue;
1377 1377
 						}
1378 1378
 
1379
-						$gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term );
1380
-						$gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text );
1381
-						$gd_location_link_text = geodir_utf8_ucfirst( $gd_location_link_text );
1379
+						$gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term);
1380
+						$gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text);
1381
+						$gd_location_link_text = geodir_utf8_ucfirst($gd_location_link_text);
1382 1382
 
1383 1383
 						$location_term_actual_country = '';
1384 1384
 						$location_term_actual_region  = '';
1385 1385
 						$location_term_actual_city    = '';
1386 1386
 						$location_term_actual_neighbourhood = '';
1387
-						if ( $geodir_get_locations ) {
1388
-							if ( $key == 'gd_country' ) {
1389
-								$location_term_actual_country = get_actual_location_name( 'country', $location_term, true );
1390
-							} else if ( $key == 'gd_region' ) {
1391
-								$location_term_actual_region = get_actual_location_name( 'region', $location_term, true );
1392
-							} else if ( $key == 'gd_city' ) {
1393
-								$location_term_actual_city = get_actual_location_name( 'city', $location_term, true );
1394
-							} else if ( $key == 'gd_neighbourhood' ) {
1395
-								$location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true );
1387
+						if ($geodir_get_locations) {
1388
+							if ($key == 'gd_country') {
1389
+								$location_term_actual_country = get_actual_location_name('country', $location_term, true);
1390
+							} else if ($key == 'gd_region') {
1391
+								$location_term_actual_region = get_actual_location_name('region', $location_term, true);
1392
+							} else if ($key == 'gd_city') {
1393
+								$location_term_actual_city = get_actual_location_name('city', $location_term, true);
1394
+							} else if ($key == 'gd_neighbourhood') {
1395
+								$location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true);
1396 1396
 							}
1397 1397
 						} else {
1398 1398
 							$location_info = geodir_get_location();
1399 1399
 
1400
-							if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) {
1401
-								if ( $key == 'gd_country' ) {
1402
-									$location_term_actual_country = __( $location_info->country, 'geodirectory' );
1403
-								} else if ( $key == 'gd_region' ) {
1404
-									$location_term_actual_region = __( $location_info->region, 'geodirectory' );
1405
-								} else if ( $key == 'gd_city' ) {
1406
-									$location_term_actual_city = __( $location_info->city, 'geodirectory' );
1400
+							if (!empty($location_info) && isset($location_info->location_id)) {
1401
+								if ($key == 'gd_country') {
1402
+									$location_term_actual_country = __($location_info->country, 'geodirectory');
1403
+								} else if ($key == 'gd_region') {
1404
+									$location_term_actual_region = __($location_info->region, 'geodirectory');
1405
+								} else if ($key == 'gd_city') {
1406
+									$location_term_actual_city = __($location_info->city, 'geodirectory');
1407 1407
 								}
1408 1408
 							}
1409 1409
 						}
1410 1410
 
1411
-						if ( $is_location_last && $key == 'gd_country' && ! ( isset( $location_terms['gd_region'] ) && $location_terms['gd_region'] != '' ) && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1412
-							$breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text;
1413
-						} else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) {
1414
-							$breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text;
1415
-						} else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) {
1416
-							$breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text;
1417
-						} else if ( $is_location_last && $key == 'gd_neighbourhood' ) {
1418
-							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text;
1411
+						if ($is_location_last && $key == 'gd_country' && !(isset($location_terms['gd_region']) && $location_terms['gd_region'] != '') && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1412
+							$breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text;
1413
+						} else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) {
1414
+							$breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text;
1415
+						} else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) {
1416
+							$breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text;
1417
+						} else if ($is_location_last && $key == 'gd_neighbourhood') {
1418
+							$breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text;
1419 1419
 						} else {
1420
-							if ( get_option( 'permalink_structure' ) != '' ) {
1421
-								$location_link .= $location_term . '/';
1420
+							if (get_option('permalink_structure') != '') {
1421
+								$location_link .= $location_term.'/';
1422 1422
 							} else {
1423
-								$location_link .= "&$key=" . $location_term;
1423
+								$location_link .= "&$key=".$location_term;
1424 1424
 							}
1425 1425
 
1426
-							if ( $key == 'gd_country' && $location_term_actual_country != '' ) {
1426
+							if ($key == 'gd_country' && $location_term_actual_country != '') {
1427 1427
 								$gd_location_link_text = $location_term_actual_country;
1428
-							} else if ( $key == 'gd_region' && $location_term_actual_region != '' ) {
1428
+							} else if ($key == 'gd_region' && $location_term_actual_region != '') {
1429 1429
 								$gd_location_link_text = $location_term_actual_region;
1430
-							} else if ( $key == 'gd_city' && $location_term_actual_city != '' ) {
1430
+							} else if ($key == 'gd_city' && $location_term_actual_city != '') {
1431 1431
 								$gd_location_link_text = $location_term_actual_city;
1432
-							} else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) {
1432
+							} else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') {
1433 1433
 								$gd_location_link_text = $location_term_actual_neighbourhood;
1434 1434
 							}
1435 1435
 
@@ -1439,76 +1439,76 @@  discard block
 block discarded – undo
1439 1439
                             }
1440 1440
                             */
1441 1441
 
1442
-							$breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>';
1442
+							$breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>';
1443 1443
 						}
1444 1444
 					}
1445 1445
 				}
1446 1446
 			}
1447 1447
 
1448
-			if ( ! empty( $gd_taxonomy ) ) {
1448
+			if (!empty($gd_taxonomy)) {
1449 1449
 				$term_index = 1;
1450 1450
 
1451 1451
 				//if(get_option('geodir_add_categories_url'))
1452 1452
 				{
1453
-					if ( get_query_var( $gd_post_type . '_tags' ) ) {
1454
-						$cat_link = $listing_link . 'tags/';
1453
+					if (get_query_var($gd_post_type.'_tags')) {
1454
+						$cat_link = $listing_link.'tags/';
1455 1455
 					} else {
1456 1456
 						$cat_link = $listing_link;
1457 1457
 					}
1458 1458
 
1459
-					foreach ( $location_terms as $key => $location_term ) {
1460
-						if ( $location_manager && in_array( $key, $hide_url_part ) ) {
1459
+					foreach ($location_terms as $key => $location_term) {
1460
+						if ($location_manager && in_array($key, $hide_url_part)) {
1461 1461
 							continue;
1462 1462
 						}
1463 1463
 
1464
-						if ( $location_term != '' ) {
1465
-							if ( get_option( 'permalink_structure' ) != '' ) {
1466
-								$cat_link .= $location_term . '/';
1464
+						if ($location_term != '') {
1465
+							if (get_option('permalink_structure') != '') {
1466
+								$cat_link .= $location_term.'/';
1467 1467
 							}
1468 1468
 						}
1469 1469
 					}
1470 1470
 
1471
-					$term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) );
1472
-					foreach ( $term_array as $term ) {
1473
-						$term_link_text = preg_replace( '/-(\d+)$/', '', $term );
1474
-						$term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text );
1471
+					$term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/"));
1472
+					foreach ($term_array as $term) {
1473
+						$term_link_text = preg_replace('/-(\d+)$/', '', $term);
1474
+						$term_link_text = preg_replace('/[_-]/', ' ', $term_link_text);
1475 1475
 
1476 1476
 						// get term actual name
1477
-						$term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' );
1478
-						if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) {
1479
-							$term_link_text = urldecode( $term_info['name'] );
1477
+						$term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A');
1478
+						if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') {
1479
+							$term_link_text = urldecode($term_info['name']);
1480 1480
 						} else {
1481 1481
 							continue;
1482 1482
 							//$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text)));
1483 1483
 						}
1484 1484
 
1485
-						if ( $term_index == count( $term_array ) && $is_taxonomy_last ) {
1486
-							$breadcrumb .= $separator . $term_link_text;
1485
+						if ($term_index == count($term_array) && $is_taxonomy_last) {
1486
+							$breadcrumb .= $separator.$term_link_text;
1487 1487
 						} else {
1488
-							$cat_link .= $term . '/';
1489
-							$breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>';
1488
+							$cat_link .= $term.'/';
1489
+							$breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>';
1490 1490
 						}
1491
-						$term_index ++;
1491
+						$term_index++;
1492 1492
 					}
1493 1493
 				}
1494 1494
 
1495 1495
 
1496 1496
 			}
1497 1497
 
1498
-			if ( geodir_is_page( 'detail' ) ) {
1499
-				$breadcrumb .= $separator . get_the_title();
1498
+			if (geodir_is_page('detail')) {
1499
+				$breadcrumb .= $separator.get_the_title();
1500 1500
 			}
1501 1501
 
1502 1502
 			$breadcrumb .= '</li>';
1503 1503
 
1504 1504
 
1505
-		} elseif ( geodir_is_page( 'author' ) ) {
1505
+		} elseif (geodir_is_page('author')) {
1506 1506
 			$user_id             = get_current_user_id();
1507
-			$author_link         = get_author_posts_url( $user_id );
1508
-			$default_author_link = geodir_getlink( $author_link, array(
1507
+			$author_link         = get_author_posts_url($user_id);
1508
+			$default_author_link = geodir_getlink($author_link, array(
1509 1509
 				'geodir_dashbord' => 'true',
1510 1510
 				'stype'           => 'gd_place'
1511
-			), false );
1511
+			), false);
1512 1512
 
1513 1513
 			/**
1514 1514
 			 * Filter author page link.
@@ -1518,16 +1518,16 @@  discard block
 block discarded – undo
1518 1518
 			 * @param string $default_author_link Default author link.
1519 1519
 			 * @param int $user_id                Author ID.
1520 1520
 			 */
1521
-			$default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id );
1521
+			$default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id);
1522 1522
 
1523 1523
 			$breadcrumb .= '<li>';
1524
-			$breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>';
1524
+			$breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>';
1525 1525
 
1526
-			if ( isset( $_REQUEST['list'] ) ) {
1527
-				$author_link = geodir_getlink( $author_link, array(
1526
+			if (isset($_REQUEST['list'])) {
1527
+				$author_link = geodir_getlink($author_link, array(
1528 1528
 					'geodir_dashbord' => 'true',
1529 1529
 					'stype'           => $_REQUEST['stype']
1530
-				), false );
1530
+				), false);
1531 1531
 
1532 1532
 				/**
1533 1533
 				 * Filter author page link.
@@ -1538,61 +1538,61 @@  discard block
 block discarded – undo
1538 1538
 				 * @param int $user_id        Author ID.
1539 1539
 				 * @param string $_REQUEST    ['stype'] Post type.
1540 1540
 				 */
1541
-				$author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] );
1541
+				$author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']);
1542 1542
 
1543
-				$breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1544
-				$breadcrumb .= $separator . geodir_utf8_ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] );
1543
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1544
+				$breadcrumb .= $separator.geodir_utf8_ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
1545 1545
 			} else {
1546
-				$breadcrumb .= $separator . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' );
1546
+				$breadcrumb .= $separator.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory');
1547 1547
 			}
1548 1548
 
1549 1549
 			$breadcrumb .= '</li>';
1550
-		} elseif ( is_category() || is_single() ) {
1550
+		} elseif (is_category() || is_single()) {
1551 1551
 			$category = get_the_category();
1552
-			if ( is_category() ) {
1553
-				$breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>';
1552
+			if (is_category()) {
1553
+				$breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>';
1554 1554
 			}
1555
-			if ( is_single() ) {
1556
-				$breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>';
1557
-				$breadcrumb .= '<li>' . $separator . get_the_title() . '</li>';
1555
+			if (is_single()) {
1556
+				$breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>';
1557
+				$breadcrumb .= '<li>'.$separator.get_the_title().'</li>';
1558 1558
 			}
1559 1559
 			/* End of my version ##################################################### */
1560
-		} else if ( is_page() ) {
1560
+		} else if (is_page()) {
1561 1561
 			$page_title = get_the_title();
1562 1562
 
1563
-			if ( geodir_is_page( 'location' ) ) {
1563
+			if (geodir_is_page('location')) {
1564 1564
 				$location_page_id = geodir_location_page_id();
1565
-				$loc_post         = get_post( $location_page_id );
1565
+				$loc_post         = get_post($location_page_id);
1566 1566
 				$post_name        = $loc_post->post_name;
1567
-				$slug             = ucwords( str_replace( '-', ' ', $post_name ) );
1568
-				$page_title       = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' );
1567
+				$slug             = ucwords(str_replace('-', ' ', $post_name));
1568
+				$page_title       = !empty($slug) ? $slug : __('Location', 'geodirectory');
1569 1569
 			}
1570 1570
 
1571
-			$breadcrumb .= '<li>' . $separator;
1572
-			$breadcrumb .= stripslashes_deep( $page_title );
1571
+			$breadcrumb .= '<li>'.$separator;
1572
+			$breadcrumb .= stripslashes_deep($page_title);
1573 1573
 			$breadcrumb .= '</li>';
1574
-		} else if ( is_tag() ) {
1575
-			$breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>';
1576
-		} else if ( is_day() ) {
1577
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1578
-			the_time( 'F jS, Y' );
1574
+		} else if (is_tag()) {
1575
+			$breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>';
1576
+		} else if (is_day()) {
1577
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1578
+			the_time('F jS, Y');
1579 1579
 			$breadcrumb .= '</li>';
1580
-		} else if ( is_month() ) {
1581
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1582
-			the_time( 'F, Y' );
1580
+		} else if (is_month()) {
1581
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1582
+			the_time('F, Y');
1583 1583
 			$breadcrumb .= '</li>';
1584
-		} else if ( is_year() ) {
1585
-			$breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " ";
1586
-			the_time( 'Y' );
1584
+		} else if (is_year()) {
1585
+			$breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." ";
1586
+			the_time('Y');
1587 1587
 			$breadcrumb .= '</li>';
1588
-		} else if ( is_author() ) {
1589
-			$breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' );
1588
+		} else if (is_author()) {
1589
+			$breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory');
1590 1590
 			$breadcrumb .= '</li>';
1591
-		} else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) {
1592
-			$breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' );
1591
+		} else if (isset($_GET['paged']) && !empty($_GET['paged'])) {
1592
+			$breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory');
1593 1593
 			$breadcrumb .= '</li>';
1594
-		} else if ( is_search() ) {
1595
-			$breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' );
1594
+		} else if (is_search()) {
1595
+			$breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory');
1596 1596
 			$breadcrumb .= '</li>';
1597 1597
 		}
1598 1598
 		$breadcrumb .= '</ul></div>';
@@ -1605,13 +1605,13 @@  discard block
 block discarded – undo
1605 1605
 		 * @param string $breadcrumb Breadcrumb HTML.
1606 1606
 		 * @param string $separator  Breadcrumb separator.
1607 1607
 		 */
1608
-		echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator );
1608
+		echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator);
1609 1609
 	}
1610 1610
 }
1611 1611
 
1612 1612
 
1613
-add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin
1614
-if ( ! function_exists( 'geodir_allow_wpadmin' ) ) {
1613
+add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin
1614
+if (!function_exists('geodir_allow_wpadmin')) {
1615 1615
 	/**
1616 1616
 	 * Allow only admins to access wp-admin.
1617 1617
 	 *
@@ -1623,12 +1623,12 @@  discard block
 block discarded – undo
1623 1623
 	 */
1624 1624
 	function geodir_allow_wpadmin() {
1625 1625
 		global $wpdb;
1626
-		if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through
1626
+		if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through
1627 1627
 		{
1628
-			if ( current_user_can( 'administrator' ) ) {
1628
+			if (current_user_can('administrator')) {
1629 1629
 			} else {
1630 1630
 
1631
-				wp_redirect( home_url() );
1631
+				wp_redirect(home_url());
1632 1632
 				exit;
1633 1633
 			}
1634 1634
 
@@ -1647,23 +1647,23 @@  discard block
 block discarded – undo
1647 1647
  *
1648 1648
  * @return array|WP_Error The uploaded data as array. When failure returns error.
1649 1649
  */
1650
-function fetch_remote_file( $url ) {
1650
+function fetch_remote_file($url) {
1651 1651
 	// extract the file name and extension from the url
1652
-	require_once( ABSPATH . 'wp-includes/pluggable.php' );
1653
-	$file_name = basename( $url );
1654
-	if ( strpos( $file_name, '?' ) !== false ) {
1655
-		list( $file_name ) = explode( '?', $file_name );
1652
+	require_once(ABSPATH.'wp-includes/pluggable.php');
1653
+	$file_name = basename($url);
1654
+	if (strpos($file_name, '?') !== false) {
1655
+		list($file_name) = explode('?', $file_name);
1656 1656
 	}
1657 1657
 	$dummy        = false;
1658 1658
 	$add_to_cache = false;
1659 1659
 	$key          = null;
1660
-	if ( strpos( $url, '/dummy/' ) !== false ) {
1660
+	if (strpos($url, '/dummy/') !== false) {
1661 1661
 		$dummy = true;
1662
-		$key   = "dummy_" . str_replace( '.', '_', $file_name );
1663
-		$value = get_transient( 'cached_dummy_images' );
1664
-		if ( $value ) {
1665
-			if ( isset( $value[ $key ] ) ) {
1666
-				return $value[ $key ];
1662
+		$key   = "dummy_".str_replace('.', '_', $file_name);
1663
+		$value = get_transient('cached_dummy_images');
1664
+		if ($value) {
1665
+			if (isset($value[$key])) {
1666
+				return $value[$key];
1667 1667
 			} else {
1668 1668
 				$add_to_cache = true;
1669 1669
 			}
@@ -1674,58 +1674,58 @@  discard block
 block discarded – undo
1674 1674
 
1675 1675
 	// get placeholder file in the upload dir with a unique, sanitized filename
1676 1676
 
1677
-	$post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : '';
1677
+	$post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : '';
1678 1678
 
1679
-	$upload = wp_upload_bits( $file_name, 0, '', $post_upload_date );
1680
-	if ( $upload['error'] ) {
1681
-		return new WP_Error( 'upload_dir_error', $upload['error'] );
1679
+	$upload = wp_upload_bits($file_name, 0, '', $post_upload_date);
1680
+	if ($upload['error']) {
1681
+		return new WP_Error('upload_dir_error', $upload['error']);
1682 1682
 	}
1683 1683
 
1684 1684
 
1685
-	sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay
1685
+	sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay
1686 1686
 
1687 1687
 	// fetch the remote url and write it to the placeholder file
1688
-	$headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) );
1688
+	$headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file']));
1689 1689
 
1690 1690
 	$log_message = '';
1691
-	if ( is_wp_error( $headers ) ) {
1692
-		echo 'file: ' . $url;
1691
+	if (is_wp_error($headers)) {
1692
+		echo 'file: '.$url;
1693 1693
 
1694
-		return new WP_Error( 'import_file_error', $headers->get_error_message() );
1694
+		return new WP_Error('import_file_error', $headers->get_error_message());
1695 1695
 	}
1696 1696
 
1697
-	$filesize = filesize( $upload['file'] );
1697
+	$filesize = filesize($upload['file']);
1698 1698
 	// request failed
1699
-	if ( ! $headers ) {
1700
-		$log_message = __( 'Remote server did not respond', 'geodirectory' );
1699
+	if (!$headers) {
1700
+		$log_message = __('Remote server did not respond', 'geodirectory');
1701 1701
 	} // make sure the fetch was successful
1702
-	elseif ( $headers['response']['code'] != '200' ) {
1703
-		$log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) );
1704
-	} elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) {
1705
-		$log_message = __( 'Remote file is incorrect size', 'geodirectory' );
1706
-	} elseif ( 0 == $filesize ) {
1707
-		$log_message = __( 'Zero size file downloaded', 'geodirectory' );
1708
-	}
1709
-
1710
-	if ( $log_message ) {
1711
-		$del = unlink( $upload['file'] );
1712
-		if ( ! $del ) {
1713
-			geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) );
1702
+	elseif ($headers['response']['code'] != '200') {
1703
+		$log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response']));
1704
+	} elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) {
1705
+		$log_message = __('Remote file is incorrect size', 'geodirectory');
1706
+	} elseif (0 == $filesize) {
1707
+		$log_message = __('Zero size file downloaded', 'geodirectory');
1708
+	}
1709
+
1710
+	if ($log_message) {
1711
+		$del = unlink($upload['file']);
1712
+		if (!$del) {
1713
+			geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory'));
1714 1714
 		}
1715 1715
 
1716
-		return new WP_Error( 'import_file_error', $log_message );
1716
+		return new WP_Error('import_file_error', $log_message);
1717 1717
 	}
1718 1718
 
1719
-	if ( $dummy && $add_to_cache && is_array( $upload ) ) {
1720
-		$images = get_transient( 'cached_dummy_images' );
1721
-		if ( is_array( $images ) ) {
1722
-			$images[ $key ] = $upload;
1719
+	if ($dummy && $add_to_cache && is_array($upload)) {
1720
+		$images = get_transient('cached_dummy_images');
1721
+		if (is_array($images)) {
1722
+			$images[$key] = $upload;
1723 1723
 		} else {
1724
-			$images = array( $key => $upload );
1724
+			$images = array($key => $upload);
1725 1725
 		}
1726 1726
 
1727 1727
 		//setting the cache using the WP Transient API
1728
-		set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache
1728
+		set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache
1729 1729
 	}
1730 1730
 
1731 1731
 	return $upload;
@@ -1739,12 +1739,12 @@  discard block
 block discarded – undo
1739 1739
  * @return string|void Max upload size.
1740 1740
  */
1741 1741
 function geodir_max_upload_size() {
1742
-	$max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 );
1742
+	$max_filesize = (float) get_option('geodir_upload_max_filesize', 2);
1743 1743
 
1744
-	if ( $max_filesize > 0 && $max_filesize < 1 ) {
1745
-		$max_filesize = (int) ( $max_filesize * 1024 ) . 'kb';
1744
+	if ($max_filesize > 0 && $max_filesize < 1) {
1745
+		$max_filesize = (int) ($max_filesize * 1024).'kb';
1746 1746
 	} else {
1747
-		$max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb';
1747
+		$max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb';
1748 1748
 	}
1749 1749
 
1750 1750
 	/**
@@ -1754,7 +1754,7 @@  discard block
 block discarded – undo
1754 1754
 	 *
1755 1755
 	 * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb.
1756 1756
 	 */
1757
-	return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize );
1757
+	return apply_filters('geodir_default_image_upload_size_limit', $max_filesize);
1758 1758
 }
1759 1759
 
1760 1760
 /**
@@ -1767,8 +1767,8 @@  discard block
 block discarded – undo
1767 1767
  * @return bool If dummy folder exists returns true, else false.
1768 1768
  */
1769 1769
 function geodir_dummy_folder_exists() {
1770
-	$path = geodir_plugin_path() . '/geodirectory-admin/dummy/';
1771
-	if ( ! is_dir( $path ) ) {
1770
+	$path = geodir_plugin_path().'/geodirectory-admin/dummy/';
1771
+	if (!is_dir($path)) {
1772 1772
 		return false;
1773 1773
 	} else {
1774 1774
 		return true;
@@ -1787,17 +1787,17 @@  discard block
 block discarded – undo
1787 1787
  *
1788 1788
  * @return object Author info.
1789 1789
  */
1790
-function geodir_get_author_info( $aid ) {
1790
+function geodir_get_author_info($aid) {
1791 1791
 	global $wpdb;
1792 1792
 	/*$infosql = "select * from $wpdb->users where ID=$aid";*/
1793
-	$infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) );
1794
-	$info    = $wpdb->get_results( $infosql );
1795
-	if ( $info ) {
1793
+	$infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid));
1794
+	$info    = $wpdb->get_results($infosql);
1795
+	if ($info) {
1796 1796
 		return $info[0];
1797 1797
 	}
1798 1798
 }
1799 1799
 
1800
-if ( ! function_exists( 'adminEmail' ) ) {
1800
+if (!function_exists('adminEmail')) {
1801 1801
 	/**
1802 1802
 	 * Send emails to client on post submission, renew etc.
1803 1803
 	 *
@@ -1810,67 +1810,67 @@  discard block
 block discarded – undo
1810 1810
 	 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1811 1811
 	 * @param string $custom_1     Custom data to be sent.
1812 1812
 	 */
1813
-	function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) {
1813
+	function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') {
1814 1814
 		global $wpdb;
1815
-		if ( $message_type == 'expiration' ) {
1816
-			$subject        = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) );
1817
-			$client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) );
1818
-		} elseif ( $message_type == 'post_submited' ) {
1819
-			$subject        = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' );
1820
-			$client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' );
1821
-		} elseif ( $message_type == 'renew' ) {
1822
-			$subject        = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' );
1823
-			$client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' );
1824
-		} elseif ( $message_type == 'upgrade' ) {
1825
-			$subject        = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' );
1826
-			$client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' );
1827
-		} elseif ( $message_type == 'claim_approved' ) {
1828
-			$subject        = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' );
1829
-			$client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' );
1830
-		} elseif ( $message_type == 'claim_rejected' ) {
1831
-			$subject        = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' );
1832
-			$client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' );
1833
-		} elseif ( $message_type == 'claim_requested' ) {
1834
-			$subject        = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' );
1835
-			$client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' );
1836
-		} elseif ( $message_type == 'auto_claim' ) {
1837
-			$subject        = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' );
1838
-			$client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' );
1839
-		} elseif ( $message_type == 'payment_success' ) {
1840
-			$subject        = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' );
1841
-			$client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' );
1842
-		} elseif ( $message_type == 'payment_fail' ) {
1843
-			$subject        = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' );
1844
-			$client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' );
1815
+		if ($message_type == 'expiration') {
1816
+			$subject        = stripslashes(__(get_option('renew_email_subject'), 'geodirectory'));
1817
+			$client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory'));
1818
+		} elseif ($message_type == 'post_submited') {
1819
+			$subject        = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory');
1820
+			$client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory');
1821
+		} elseif ($message_type == 'renew') {
1822
+			$subject        = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory');
1823
+			$client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory');
1824
+		} elseif ($message_type == 'upgrade') {
1825
+			$subject        = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory');
1826
+			$client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory');
1827
+		} elseif ($message_type == 'claim_approved') {
1828
+			$subject        = __(get_option('claim_approved_email_subject'), 'geodirectory');
1829
+			$client_message = __(get_option('claim_approved_email_content'), 'geodirectory');
1830
+		} elseif ($message_type == 'claim_rejected') {
1831
+			$subject        = __(get_option('claim_rejected_email_subject'), 'geodirectory');
1832
+			$client_message = __(get_option('claim_rejected_email_content'), 'geodirectory');
1833
+		} elseif ($message_type == 'claim_requested') {
1834
+			$subject        = __(get_option('claim_email_subject_admin'), 'geodirectory');
1835
+			$client_message = __(get_option('claim_email_content_admin'), 'geodirectory');
1836
+		} elseif ($message_type == 'auto_claim') {
1837
+			$subject        = __(get_option('auto_claim_email_subject'), 'geodirectory');
1838
+			$client_message = __(get_option('auto_claim_email_content'), 'geodirectory');
1839
+		} elseif ($message_type == 'payment_success') {
1840
+			$subject        = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory');
1841
+			$client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory');
1842
+		} elseif ($message_type == 'payment_fail') {
1843
+			$subject        = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory');
1844
+			$client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory');
1845 1845
 		}
1846 1846
 		$transaction_details = $custom_1;
1847
-		$fromEmail           = get_option( 'site_email' );
1847
+		$fromEmail           = get_option('site_email');
1848 1848
 		$fromEmailName       = get_site_emailName();
1849 1849
 //$alivedays = get_post_meta($page_id,'alive_days',true);
1850
-		$pkg_limit            = get_property_price_info_listing( $page_id );
1850
+		$pkg_limit            = get_property_price_info_listing($page_id);
1851 1851
 		$alivedays            = $pkg_limit['days'];
1852
-		$productlink          = get_permalink( $page_id );
1853
-		$post_info            = get_post( $page_id );
1854
-		$post_date            = date( 'dS F,Y', strtotime( $post_info->post_date ) );
1855
-		$listingLink          = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>';
1852
+		$productlink          = get_permalink($page_id);
1853
+		$post_info            = get_post($page_id);
1854
+		$post_date            = date('dS F,Y', strtotime($post_info->post_date));
1855
+		$listingLink          = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>';
1856 1856
 		$loginurl             = geodir_login_url();
1857
-		$loginurl_link        = '<a href="' . $loginurl . '">login</a>';
1857
+		$loginurl_link        = '<a href="'.$loginurl.'">login</a>';
1858 1858
 		$siteurl              = home_url();
1859
-		$siteurl_link         = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>';
1860
-		$user_info            = get_userdata( $user_id );
1859
+		$siteurl_link         = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>';
1860
+		$user_info            = get_userdata($user_id);
1861 1861
 		$user_email           = $user_info->user_email;
1862
-		$display_name         = geodir_get_client_name( $user_id );
1862
+		$display_name         = geodir_get_client_name($user_id);
1863 1863
 		$user_login           = $user_info->user_login;
1864
-		$number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' );
1865
-		if ( $number_of_grace_days == '' ) {
1864
+		$number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days');
1865
+		if ($number_of_grace_days == '') {
1866 1866
 			$number_of_grace_days = 1;
1867 1867
 		}
1868
-		if ( $post_info->post_type == 'event' ) {
1868
+		if ($post_info->post_type == 'event') {
1869 1869
 			$post_type = 'event';
1870 1870
 		} else {
1871 1871
 			$post_type = 'listing';
1872 1872
 		}
1873
-		$renew_link     = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>';
1873
+		$renew_link     = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>';
1874 1874
 		$search_array   = array(
1875 1875
 			'[#client_name#]',
1876 1876
 			'[#listing_link#]',
@@ -1886,7 +1886,7 @@  discard block
 block discarded – undo
1886 1886
 			'[#site_name#]',
1887 1887
 			'[#transaction_details#]'
1888 1888
 		);
1889
-		$replace_array  = array(
1889
+		$replace_array = array(
1890 1890
 			$display_name,
1891 1891
 			$listingLink,
1892 1892
 			$post_date,
@@ -1901,13 +1901,13 @@  discard block
 block discarded – undo
1901 1901
 			$fromEmailName,
1902 1902
 			$transaction_details
1903 1903
 		);
1904
-		$client_message = str_replace( $search_array, $replace_array, $client_message );
1905
-		$subject        = str_replace( $search_array, $replace_array, $subject );
1904
+		$client_message = str_replace($search_array, $replace_array, $client_message);
1905
+		$subject        = str_replace($search_array, $replace_array, $subject);
1906 1906
 		
1907 1907
 		
1908
-		$headers  = array();
1908
+		$headers = array();
1909 1909
 		$headers[] = 'Content-type: text/html; charset=UTF-8';
1910
-		$headers[] = 'From: ' . $fromEmailName . ' <' . $fromEmail . '>';
1910
+		$headers[] = 'From: '.$fromEmailName.' <'.$fromEmail.'>';
1911 1911
 
1912 1912
 		$to      = $fromEmail;
1913 1913
 		$message = $client_message;
@@ -1925,7 +1925,7 @@  discard block
 block discarded – undo
1925 1925
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1926 1926
 		 * @param string $custom_1     Custom data to be sent.
1927 1927
 		 */
1928
-		$to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 );
1928
+		$to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1);
1929 1929
 		/**
1930 1930
 		 * Filter the admin email subject.
1931 1931
 		 *
@@ -1938,7 +1938,7 @@  discard block
 block discarded – undo
1938 1938
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1939 1939
 		 * @param string $custom_1     Custom data to be sent.
1940 1940
 		 */
1941
-		$subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 );
1941
+		$subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1);
1942 1942
 		/**
1943 1943
 		 * Filter the admin email message.
1944 1944
 		 *
@@ -1951,7 +1951,7 @@  discard block
 block discarded – undo
1951 1951
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1952 1952
 		 * @param string $custom_1     Custom data to be sent.
1953 1953
 		 */
1954
-		$message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 );
1954
+		$message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1);
1955 1955
 		/**
1956 1956
 		 * Filter the admin email headers.
1957 1957
 		 *
@@ -1964,22 +1964,22 @@  discard block
 block discarded – undo
1964 1964
 		 * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'.
1965 1965
 		 * @param string $custom_1     Custom data to be sent.
1966 1966
 		 */
1967
-		$headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 );
1967
+		$headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1);
1968 1968
 
1969 1969
 
1970
-		$sent = wp_mail( $to, $subject, $message, $headers );
1971
-		if ( ! $sent ) {
1972
-			if ( is_array( $to ) ) {
1973
-				$to = implode( ',', $to );
1970
+		$sent = wp_mail($to, $subject, $message, $headers);
1971
+		if (!$sent) {
1972
+			if (is_array($to)) {
1973
+				$to = implode(',', $to);
1974 1974
 			}
1975 1975
 			$log_message = sprintf(
1976
-				__( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ),
1976
+				__("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'),
1977 1977
 				$message_type,
1978
-				date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ),
1978
+				date_i18n('F j Y H:i:s', current_time('timestamp')),
1979 1979
 				$to,
1980 1980
 				$subject
1981 1981
 			);
1982
-			geodir_error_log( $log_message );
1982
+			geodir_error_log($log_message);
1983 1983
 		}
1984 1984
 	}
1985 1985
 }
@@ -1999,12 +1999,12 @@  discard block
 block discarded – undo
1999 1999
  *
2000 2000
  * @return array Category IDs.
2001 2001
  */
2002
-function gd_lang_object_ids( $ids_array, $type ) {
2003
-	if ( function_exists( 'icl_object_id' ) ) {
2002
+function gd_lang_object_ids($ids_array, $type) {
2003
+	if (function_exists('icl_object_id')) {
2004 2004
 		$res = array();
2005
-		foreach ( $ids_array as $id ) {
2006
-			$xlat = icl_object_id( $id, $type, false );
2007
-			if ( ! is_null( $xlat ) ) {
2005
+		foreach ($ids_array as $id) {
2006
+			$xlat = icl_object_id($id, $type, false);
2007
+			if (!is_null($xlat)) {
2008 2008
 				$res[] = $xlat;
2009 2009
 			}
2010 2010
 		}
@@ -2028,20 +2028,20 @@  discard block
 block discarded – undo
2028 2028
  *
2029 2029
  * @return array Modified Body CSS classes.
2030 2030
  */
2031
-function geodir_custom_posts_body_class( $classes ) {
2031
+function geodir_custom_posts_body_class($classes) {
2032 2032
 	global $wpdb, $wp;
2033
-	$post_types = geodir_get_posttypes( 'object' );
2034
-	if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) {
2033
+	$post_types = geodir_get_posttypes('object');
2034
+	if (!empty($post_types) && count((array) $post_types) > 1) {
2035 2035
 		$classes[] = 'geodir_custom_posts';
2036 2036
 	}
2037 2037
 
2038 2038
 	// fix body class for signup page
2039
-	if ( geodir_is_page( 'login' ) ) {
2039
+	if (geodir_is_page('login')) {
2040 2040
 		$new_classes   = array();
2041 2041
 		$new_classes[] = 'signup page-geodir-signup';
2042
-		if ( ! empty( $classes ) ) {
2043
-			foreach ( $classes as $class ) {
2044
-				if ( $class && $class != 'home' && $class != 'blog' ) {
2042
+		if (!empty($classes)) {
2043
+			foreach ($classes as $class) {
2044
+				if ($class && $class != 'home' && $class != 'blog') {
2045 2045
 					$new_classes[] = $class;
2046 2046
 				}
2047 2047
 			}
@@ -2049,14 +2049,14 @@  discard block
 block discarded – undo
2049 2049
 		$classes = $new_classes;
2050 2050
 	}
2051 2051
 
2052
-	if ( geodir_is_geodir_page() ) {
2052
+	if (geodir_is_geodir_page()) {
2053 2053
 		$classes[] = 'geodir-page';
2054 2054
 	}
2055 2055
 
2056 2056
 	return $classes;
2057 2057
 }
2058 2058
 
2059
-add_filter( 'body_class', 'geodir_custom_posts_body_class' ); // let's add a class to the body so we can style the new addition to the search
2059
+add_filter('body_class', 'geodir_custom_posts_body_class'); // let's add a class to the body so we can style the new addition to the search
2060 2060
 
2061 2061
 
2062 2062
 /**
@@ -2072,7 +2072,7 @@  discard block
 block discarded – undo
2072 2072
 	 *
2073 2073
 	 * @since 1.0.0
2074 2074
 	 */
2075
-	return apply_filters( 'geodir_map_zoom_level', array(
2075
+	return apply_filters('geodir_map_zoom_level', array(
2076 2076
 		1,
2077 2077
 		2,
2078 2078
 		3,
@@ -2092,7 +2092,7 @@  discard block
 block discarded – undo
2092 2092
 		17,
2093 2093
 		18,
2094 2094
 		19
2095
-	) );
2095
+	));
2096 2096
 
2097 2097
 }
2098 2098
 
@@ -2105,12 +2105,12 @@  discard block
 block discarded – undo
2105 2105
  *
2106 2106
  * @param string $geodir_option_name Option key.
2107 2107
  */
2108
-function geodir_option_version_backup( $geodir_option_name ) {
2108
+function geodir_option_version_backup($geodir_option_name) {
2109 2109
 	$version_date  = time();
2110
-	$geodir_option = get_option( $geodir_option_name );
2110
+	$geodir_option = get_option($geodir_option_name);
2111 2111
 
2112
-	if ( ! empty( $geodir_option ) ) {
2113
-		add_option( $geodir_option_name . '_' . $version_date, $geodir_option );
2112
+	if (!empty($geodir_option)) {
2113
+		add_option($geodir_option_name.'_'.$version_date, $geodir_option);
2114 2114
 	}
2115 2115
 }
2116 2116
 
@@ -2124,10 +2124,10 @@  discard block
 block discarded – undo
2124 2124
  *
2125 2125
  * @return int Page ID.
2126 2126
  */
2127
-function get_page_id_geodir_add_listing_page( $page_id ) {
2128
-	if ( geodir_wpml_multilingual_status() ) {
2127
+function get_page_id_geodir_add_listing_page($page_id) {
2128
+	if (geodir_wpml_multilingual_status()) {
2129 2129
 		$post_type = 'post_page';
2130
-		$page_id   = geodir_get_wpml_element_id( $page_id, $post_type );
2130
+		$page_id   = geodir_get_wpml_element_id($page_id, $post_type);
2131 2131
 	}
2132 2132
 
2133 2133
 	return $page_id;
@@ -2141,7 +2141,7 @@  discard block
 block discarded – undo
2141 2141
  * @return bool Returns true when sitepress multilingual CMS active. else returns false.
2142 2142
  */
2143 2143
 function geodir_wpml_multilingual_status() {
2144
-	if ( function_exists( 'icl_object_id' ) ) {
2144
+	if (function_exists('icl_object_id')) {
2145 2145
 		return true;
2146 2146
 	}
2147 2147
 
@@ -2159,19 +2159,19 @@  discard block
 block discarded – undo
2159 2159
  *
2160 2160
  * @return int Element ID when exists. Else the page id.
2161 2161
  */
2162
-function geodir_get_wpml_element_id( $page_id, $post_type ) {
2162
+function geodir_get_wpml_element_id($page_id, $post_type) {
2163 2163
 	global $sitepress;
2164
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2165
-		$trid = $sitepress->get_element_trid( $page_id, $post_type );
2164
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2165
+		$trid = $sitepress->get_element_trid($page_id, $post_type);
2166 2166
 
2167
-		if ( $trid > 0 ) {
2168
-			$translations = $sitepress->get_element_translations( $trid, $post_type );
2167
+		if ($trid > 0) {
2168
+			$translations = $sitepress->get_element_translations($trid, $post_type);
2169 2169
 
2170 2170
 			$lang = $sitepress->get_current_language();
2171 2171
 			$lang = $lang ? $lang : $sitepress->get_default_language();
2172 2172
 
2173
-			if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) {
2174
-				$page_id = $translations[ $lang ]->element_id;
2173
+			if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) {
2174
+				$page_id = $translations[$lang]->element_id;
2175 2175
 			}
2176 2176
 		}
2177 2177
 	}
@@ -2188,15 +2188,15 @@  discard block
 block discarded – undo
2188 2188
  */
2189 2189
 function geodir_wpml_check_element_id() {
2190 2190
 	global $sitepress;
2191
-	if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) {
2191
+	if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) {
2192 2192
 		$el_type      = 'post_page';
2193
-		$el_id        = get_option( 'geodir_add_listing_page' );
2193
+		$el_id        = get_option('geodir_add_listing_page');
2194 2194
 		$default_lang = $sitepress->get_default_language();
2195
-		$el_details   = $sitepress->get_element_language_details( $el_id, $el_type );
2195
+		$el_details   = $sitepress->get_element_language_details($el_id, $el_type);
2196 2196
 
2197
-		if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) {
2198
-			if ( ! $el_details->source_language_code ) {
2199
-				$sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang );
2197
+		if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) {
2198
+			if (!$el_details->source_language_code) {
2199
+				$sitepress->set_element_language_details($el_id, $el_type, '', $default_lang);
2200 2200
 				$sitepress->icl_translations_cache->clear();
2201 2201
 			}
2202 2202
 		}
@@ -2215,41 +2215,41 @@  discard block
 block discarded – undo
2215 2215
  *
2216 2216
  * @return string Orderby SQL.
2217 2217
  */
2218
-function geodir_widget_listings_get_order( $query_args ) {
2218
+function geodir_widget_listings_get_order($query_args) {
2219 2219
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2220 2220
 
2221 2221
 	$query_args = $gd_query_args_widgets;
2222
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2223
-		return $wpdb->posts . ".post_date DESC, ";
2222
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2223
+		return $wpdb->posts.".post_date DESC, ";
2224 2224
 	}
2225 2225
 
2226
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2227
-	$table     = $plugin_prefix . $post_type . '_detail';
2226
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2227
+	$table     = $plugin_prefix.$post_type.'_detail';
2228 2228
 
2229
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2229
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2230 2230
 
2231
-	switch ( $sort_by ) {
2231
+	switch ($sort_by) {
2232 2232
 		case 'latest':
2233 2233
 		case 'newest':
2234
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2234
+			$orderby = $wpdb->posts.".post_date DESC, ";
2235 2235
 			break;
2236 2236
 		case 'featured':
2237
-			$orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, ";
2237
+			$orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, ";
2238 2238
 			break;
2239 2239
 		case 'az':
2240
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2240
+			$orderby = $wpdb->posts.".post_title ASC, ";
2241 2241
 			break;
2242 2242
 		case 'high_review':
2243
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2243
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2244 2244
 			break;
2245 2245
 		case 'high_rating':
2246
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2246
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2247 2247
 			break;
2248 2248
 		case 'random':
2249 2249
 			$orderby = "RAND(), ";
2250 2250
 			break;
2251 2251
 		default:
2252
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2252
+			$orderby = $wpdb->posts.".post_title ASC, ";
2253 2253
 			break;
2254 2254
 	}
2255 2255
 
@@ -2272,15 +2272,15 @@  discard block
 block discarded – undo
2272 2272
  *
2273 2273
  * @return mixed Result object.
2274 2274
  */
2275
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2275
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2276 2276
 	global $wpdb, $plugin_prefix, $table_prefix;
2277 2277
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2278 2278
 	$gd_query_args_widgets            = $query_args;
2279 2279
 
2280
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2281
-	$table     = $plugin_prefix . $post_type . '_detail';
2280
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2281
+	$table     = $plugin_prefix.$post_type.'_detail';
2282 2282
 
2283
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2283
+	$fields = $wpdb->posts.".*, ".$table.".*";
2284 2284
 	/**
2285 2285
 	 * Filter widget listing fields string part that is being used for query.
2286 2286
 	 *
@@ -2290,17 +2290,17 @@  discard block
 block discarded – undo
2290 2290
 	 * @param string $table     Table name.
2291 2291
 	 * @param string $post_type Post type.
2292 2292
 	 */
2293
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2293
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2294 2294
 
2295
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2295
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2296 2296
 
2297 2297
 	########### WPML ###########
2298 2298
 
2299
-	if ( function_exists( 'icl_object_id' ) ) {
2299
+	if (function_exists('icl_object_id')) {
2300 2300
 		global $sitepress;
2301 2301
 		$lang_code = ICL_LANGUAGE_CODE;
2302
-		if ( $lang_code ) {
2303
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2302
+		if ($lang_code) {
2303
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2304 2304
 		}
2305 2305
 	}
2306 2306
 
@@ -2314,15 +2314,15 @@  discard block
 block discarded – undo
2314 2314
 	 * @param string $join      Join clause string.
2315 2315
 	 * @param string $post_type Post type.
2316 2316
 	 */
2317
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2317
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2318 2318
 
2319
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2319
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2320 2320
 
2321
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2321
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2322 2322
 
2323 2323
 	########### WPML ###########
2324
-	if ( function_exists( 'icl_object_id' ) ) {
2325
-		if ( $lang_code ) {
2324
+	if (function_exists('icl_object_id')) {
2325
+		if ($lang_code) {
2326 2326
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2327 2327
 		}
2328 2328
 	}
@@ -2335,8 +2335,8 @@  discard block
 block discarded – undo
2335 2335
 	 * @param string $where     Where clause string.
2336 2336
 	 * @param string $post_type Post type.
2337 2337
 	 */
2338
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2339
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2338
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2339
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2340 2340
 
2341 2341
 	$groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster without
2342 2342
 	/**
@@ -2347,15 +2347,15 @@  discard block
 block discarded – undo
2347 2347
 	 * @param string $groupby   Group by clause string.
2348 2348
 	 * @param string $post_type Post type.
2349 2349
 	 */
2350
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2350
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2351 2351
 
2352
-	if ( $count_only ) {
2353
-		$sql  = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2354
-			" . $join . "
2352
+	if ($count_only) {
2353
+		$sql  = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2354
+			" . $join."
2355 2355
 			" . $where;
2356
-		$rows = (int) $wpdb->get_var( $sql );
2356
+		$rows = (int) $wpdb->get_var($sql);
2357 2357
 	} else {
2358
-		$orderby = geodir_widget_listings_get_order( $query_args );
2358
+		$orderby = geodir_widget_listings_get_order($query_args);
2359 2359
 		/**
2360 2360
 		 * Filter widget listing orderby clause string part that is being used for query.
2361 2361
 		 *
@@ -2365,11 +2365,11 @@  discard block
 block discarded – undo
2365 2365
 		 * @param string $table     Table name.
2366 2366
 		 * @param string $post_type Post type.
2367 2367
 		 */
2368
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2369
-		$orderby .= $wpdb->posts . ".post_title ASC";
2370
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2368
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2369
+		$orderby .= $wpdb->posts.".post_title ASC";
2370
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2371 2371
 
2372
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2372
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2373 2373
 		/**
2374 2374
 		 * Filter widget listing limit that is being used for query.
2375 2375
 		 *
@@ -2378,27 +2378,27 @@  discard block
 block discarded – undo
2378 2378
 		 * @param int $limit        Query results limit.
2379 2379
 		 * @param string $post_type Post type.
2380 2380
 		 */
2381
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2381
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2382 2382
 
2383
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2384
-		if ( ! $page ) {
2383
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2384
+		if (!$page) {
2385 2385
 			$page = 1;
2386 2386
 		}
2387 2387
 
2388
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2388
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2389 2389
 
2390 2390
 		//@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without
2391
-		$sql  = "SELECT " . $fields . " FROM " . $wpdb->posts . "
2392
-			" . $join . "
2393
-			" . $where . "
2394
-			" . $groupby . "
2395
-			" . $orderby . "
2391
+		$sql = "SELECT ".$fields." FROM ".$wpdb->posts."
2392
+			" . $join."
2393
+			" . $where."
2394
+			" . $groupby."
2395
+			" . $orderby."
2396 2396
 			" . $limit;
2397
-		$rows = $wpdb->get_results( $sql );
2397
+		$rows = $wpdb->get_results($sql);
2398 2398
 	}
2399 2399
 
2400
-	unset( $GLOBALS['gd_query_args_widgets'] );
2401
-	unset( $gd_query_args_widgets );
2400
+	unset($GLOBALS['gd_query_args_widgets']);
2401
+	unset($gd_query_args_widgets);
2402 2402
 
2403 2403
 	return $rows;
2404 2404
 }
@@ -2415,11 +2415,11 @@  discard block
 block discarded – undo
2415 2415
  *
2416 2416
  * @return string Modified fields SQL.
2417 2417
  */
2418
-function geodir_function_widget_listings_fields( $fields ) {
2418
+function geodir_function_widget_listings_fields($fields) {
2419 2419
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2420 2420
 
2421 2421
 	$query_args = $gd_query_args_widgets;
2422
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2422
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2423 2423
 		return $fields;
2424 2424
 	}
2425 2425
 
@@ -2438,24 +2438,24 @@  discard block
 block discarded – undo
2438 2438
  *
2439 2439
  * @return string Modified join clause SQL.
2440 2440
  */
2441
-function geodir_function_widget_listings_join( $join ) {
2441
+function geodir_function_widget_listings_join($join) {
2442 2442
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2443 2443
 
2444 2444
 	$query_args = $gd_query_args_widgets;
2445
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2445
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2446 2446
 		return $join;
2447 2447
 	}
2448 2448
 
2449
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2450
-	$table     = $plugin_prefix . $post_type . '_detail';
2449
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2450
+	$table     = $plugin_prefix.$post_type.'_detail';
2451 2451
 
2452
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2453
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2452
+	if (!empty($query_args['with_pics_only'])) {
2453
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2454 2454
 	}
2455 2455
 
2456
-	if ( ! empty( $query_args['tax_query'] ) ) {
2457
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2458
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2456
+	if (!empty($query_args['tax_query'])) {
2457
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2458
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2459 2459
 			$join .= $tax_queries['join'];
2460 2460
 		}
2461 2461
 	}
@@ -2476,60 +2476,60 @@  discard block
 block discarded – undo
2476 2476
  *
2477 2477
  * @return string Modified where clause SQL.
2478 2478
  */
2479
-function geodir_function_widget_listings_where( $where ) {
2479
+function geodir_function_widget_listings_where($where) {
2480 2480
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2481 2481
 
2482 2482
 	$query_args = $gd_query_args_widgets;
2483
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2483
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2484 2484
 		return $where;
2485 2485
 	}
2486
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2487
-	$table     = $plugin_prefix . $post_type . '_detail';
2486
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2487
+	$table     = $plugin_prefix.$post_type.'_detail';
2488 2488
 
2489
-	if ( ! empty( $query_args ) ) {
2490
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2491
-			$where = geodir_default_location_where( $where, $table );
2489
+	if (!empty($query_args)) {
2490
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2491
+			$where = geodir_default_location_where($where, $table);
2492 2492
 		}
2493 2493
 
2494
-		if ( ! empty( $query_args['post_author'] ) ) {
2495
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2494
+		if (!empty($query_args['post_author'])) {
2495
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2496 2496
 		}
2497 2497
 
2498
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2499
-			$where .= " AND " . $table . ".is_featured = '1'";
2498
+		if (!empty($query_args['show_featured_only'])) {
2499
+			$where .= " AND ".$table.".is_featured = '1'";
2500 2500
 		}
2501 2501
 
2502
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2503
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2502
+		if (!empty($query_args['show_special_only'])) {
2503
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2504 2504
 		}
2505 2505
 
2506
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2507
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2506
+		if (!empty($query_args['with_pics_only'])) {
2507
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2508 2508
 		}
2509 2509
 
2510
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2511
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2510
+		if (!empty($query_args['featured_image_only'])) {
2511
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2512 2512
 		}
2513 2513
 
2514
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2515
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2514
+		if (!empty($query_args['with_videos_only'])) {
2515
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2516 2516
 		}
2517 2517
         
2518
-		if ( ! empty( $query_args['show_favorites_only'] ) ) {
2518
+		if (!empty($query_args['show_favorites_only'])) {
2519 2519
 			$user_favorites = '-1';
2520 2520
 			
2521
-			if ( !empty( $query_args['favorites_by_user'] ) ) {
2522
-				$user_favorites = get_user_meta( (int)$query_args['favorites_by_user'], 'gd_user_favourite_post', true );
2521
+			if (!empty($query_args['favorites_by_user'])) {
2522
+				$user_favorites = get_user_meta((int) $query_args['favorites_by_user'], 'gd_user_favourite_post', true);
2523 2523
 				$user_favorites = !empty($user_favorites) && is_array($user_favorites) ? implode("','", $user_favorites) : '-1';
2524 2524
 			}
2525 2525
 			
2526
-			$where .= " AND `" . $wpdb->posts . "`.`ID` IN('" . $user_favorites . "')";
2526
+			$where .= " AND `".$wpdb->posts."`.`ID` IN('".$user_favorites."')";
2527 2527
 		}
2528 2528
 
2529
-		if ( ! empty( $query_args['tax_query'] ) ) {
2530
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2529
+		if (!empty($query_args['tax_query'])) {
2530
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2531 2531
 
2532
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2532
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2533 2533
 				$where .= $tax_queries['where'];
2534 2534
 			}
2535 2535
 		}
@@ -2550,11 +2550,11 @@  discard block
 block discarded – undo
2550 2550
  *
2551 2551
  * @return string Modified orderby clause SQL.
2552 2552
  */
2553
-function geodir_function_widget_listings_orderby( $orderby ) {
2553
+function geodir_function_widget_listings_orderby($orderby) {
2554 2554
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2555 2555
 
2556 2556
 	$query_args = $gd_query_args_widgets;
2557
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2557
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2558 2558
 		return $orderby;
2559 2559
 	}
2560 2560
 
@@ -2573,15 +2573,15 @@  discard block
 block discarded – undo
2573 2573
  *
2574 2574
  * @return int Query limit.
2575 2575
  */
2576
-function geodir_function_widget_listings_limit( $limit ) {
2576
+function geodir_function_widget_listings_limit($limit) {
2577 2577
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2578 2578
 
2579 2579
 	$query_args = $gd_query_args_widgets;
2580
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2580
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2581 2581
 		return $limit;
2582 2582
 	}
2583 2583
 
2584
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2584
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2585 2585
 		$limit = (int) $query_args['posts_per_page'];
2586 2586
 	}
2587 2587
 
@@ -2599,12 +2599,12 @@  discard block
 block discarded – undo
2599 2599
  *
2600 2600
  * @return int Large size width.
2601 2601
  */
2602
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2603
-	$large_size_w = get_option( 'large_size_w' );
2602
+function geodir_media_image_large_width($default = 800, $params = '') {
2603
+	$large_size_w = get_option('large_size_w');
2604 2604
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2605
-	$large_size_w = absint( $large_size_w );
2605
+	$large_size_w = absint($large_size_w);
2606 2606
 
2607
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2607
+	if (!get_option('geodir_use_wp_media_large_size')) {
2608 2608
 		$large_size_w = 800;
2609 2609
 	}
2610 2610
 
@@ -2617,7 +2617,7 @@  discard block
 block discarded – undo
2617 2617
 	 * @param int $default         Default width.
2618 2618
 	 * @param string|array $params Image parameters.
2619 2619
 	 */
2620
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2620
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2621 2621
 
2622 2622
 	return $large_size_w;
2623 2623
 }
@@ -2633,12 +2633,12 @@  discard block
 block discarded – undo
2633 2633
  *
2634 2634
  * @return int Large size height.
2635 2635
  */
2636
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2637
-	$large_size_h = get_option( 'large_size_h' );
2636
+function geodir_media_image_large_height($default = 800, $params = '') {
2637
+	$large_size_h = get_option('large_size_h');
2638 2638
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2639
-	$large_size_h = absint( $large_size_h );
2639
+	$large_size_h = absint($large_size_h);
2640 2640
 
2641
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2641
+	if (!get_option('geodir_use_wp_media_large_size')) {
2642 2642
 		$large_size_h = 800;
2643 2643
 	}
2644 2644
 
@@ -2651,7 +2651,7 @@  discard block
 block discarded – undo
2651 2651
 	 * @param int $default         Default height.
2652 2652
 	 * @param string|array $params Image parameters.
2653 2653
 	 */
2654
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2654
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2655 2655
 
2656 2656
 	return $large_size_h;
2657 2657
 }
@@ -2668,8 +2668,8 @@  discard block
 block discarded – undo
2668 2668
  *
2669 2669
  * @return string Sanitized name.
2670 2670
  */
2671
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2672
-	if ( $name == '' ) {
2671
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2672
+	if ($name == '') {
2673 2673
 		return null;
2674 2674
 	}
2675 2675
 
@@ -2678,13 +2678,13 @@  discard block
 block discarded – undo
2678 2678
 	$type = $type == 'gd_city' ? 'city' : $type;
2679 2679
 
2680 2680
 	$return = $name;
2681
-	if ( function_exists( 'get_actual_location_name' ) ) {
2682
-		$return = get_actual_location_name( $type, $name, $translate );
2681
+	if (function_exists('get_actual_location_name')) {
2682
+		$return = get_actual_location_name($type, $name, $translate);
2683 2683
 	} else {
2684
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2685
-		$return = preg_replace( '/[_-]/', ' ', $return );
2686
-		$return = geodir_ucwords( $return );
2687
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2684
+		$return = preg_replace('/-(\d+)$/', '', $return);
2685
+		$return = preg_replace('/[_-]/', ' ', $return);
2686
+		$return = geodir_ucwords($return);
2687
+		$return = $translate ? __($return, 'geodirectory') : $return;
2688 2688
 	}
2689 2689
 
2690 2690
 	return $return;
@@ -2702,26 +2702,26 @@  discard block
 block discarded – undo
2702 2702
  *
2703 2703
  * @param int $number Comments number.
2704 2704
  */
2705
-function geodir_comments_number( $number ) {
2705
+function geodir_comments_number($number) {
2706 2706
 	global $post;
2707 2707
 	
2708
-	if ( !empty( $post->post_type ) && geodir_cpt_has_rating_disabled( $post->post_type ) ) {
2708
+	if (!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type)) {
2709 2709
 		$number = get_comments_number();
2710 2710
 		
2711
-		if ( $number > 1 ) {
2712
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Comments', 'geodirectory' ) );
2713
-		} elseif ( $number == 0 || $number == '' ) {
2714
-			$output = __( 'No Comments', 'geodirectory' );
2711
+		if ($number > 1) {
2712
+			$output = str_replace('%', number_format_i18n($number), __('% Comments', 'geodirectory'));
2713
+		} elseif ($number == 0 || $number == '') {
2714
+			$output = __('No Comments', 'geodirectory');
2715 2715
 		} else { // must be one
2716
-			$output = __( '1 Comment', 'geodirectory' );
2716
+			$output = __('1 Comment', 'geodirectory');
2717 2717
 		}
2718 2718
 	} else {    
2719
-		if ( $number > 1 ) {
2720
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2721
-		} elseif ( $number == 0 || $number == '' ) {
2722
-			$output = __( 'No Reviews', 'geodirectory' );
2719
+		if ($number > 1) {
2720
+			$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2721
+		} elseif ($number == 0 || $number == '') {
2722
+			$output = __('No Reviews', 'geodirectory');
2723 2723
 		} else { // must be one
2724
-			$output = __( '1 Review', 'geodirectory' );
2724
+			$output = __('1 Review', 'geodirectory');
2725 2725
 		}
2726 2726
 	}
2727 2727
 	
@@ -2738,18 +2738,18 @@  discard block
 block discarded – undo
2738 2738
  */
2739 2739
 function is_page_geodir_home() {
2740 2740
 	global $wpdb;
2741
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2742
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2743
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2741
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2742
+	if (function_exists('geodir_location_geo_home_link')) {
2743
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2744 2744
 	}
2745
-	$home_url = home_url( '', 'http' );
2746
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2747
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2745
+	$home_url = home_url('', 'http');
2746
+	if (function_exists('geodir_location_geo_home_link')) {
2747
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2748 2748
 	}
2749
-	$home_url = str_replace( "www.", "", $home_url );
2750
-	if ( ( strpos( $home_url, $cur_url ) !== false || strpos( $home_url . '/', $cur_url ) !== false ) && ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) ) {
2749
+	$home_url = str_replace("www.", "", $home_url);
2750
+	if ((strpos($home_url, $cur_url) !== false || strpos($home_url.'/', $cur_url) !== false) && ('page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page'))) {
2751 2751
 		return true;
2752
-	} elseif ( get_query_var( 'page_id' ) == get_option( 'page_on_front' ) && 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) {
2752
+	} elseif (get_query_var('page_id') == get_option('page_on_front') && 'page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page')) {
2753 2753
 		return true;
2754 2754
 	} else {
2755 2755
 		return false;
@@ -2769,18 +2769,18 @@  discard block
 block discarded – undo
2769 2769
  *
2770 2770
  * @return string The canonical URL.
2771 2771
  */
2772
-function geodir_wpseo_homepage_canonical( $url ) {
2772
+function geodir_wpseo_homepage_canonical($url) {
2773 2773
 	global $post;
2774 2774
 
2775
-	if ( is_page_geodir_home() ) {
2775
+	if (is_page_geodir_home()) {
2776 2776
 		return home_url();
2777 2777
 	}
2778 2778
 
2779 2779
 	return $url;
2780 2780
 }
2781 2781
 
2782
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2783
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2782
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2783
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2784 2784
 
2785 2785
 /**
2786 2786
  * Add extra fields to google maps script call.
@@ -2793,20 +2793,20 @@  discard block
 block discarded – undo
2793 2793
  *
2794 2794
  * @return string Modified extra string.
2795 2795
  */
2796
-function geodir_googlemap_script_extra_details_page( $extra ) {
2796
+function geodir_googlemap_script_extra_details_page($extra) {
2797 2797
 	global $post;
2798 2798
 	$add_google_places_api = false;
2799
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2799
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2800 2800
 		$add_google_places_api = true;
2801 2801
 	}
2802
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2802
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2803 2803
 		$extra .= "&amp;libraries=places";
2804 2804
 	}
2805 2805
 
2806 2806
 	return $extra;
2807 2807
 }
2808 2808
 
2809
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2809
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2810 2810
 
2811 2811
 
2812 2812
 /**
@@ -2825,119 +2825,119 @@  discard block
 block discarded – undo
2825 2825
  *                                          after_widget.
2826 2826
  * @param array|string $instance            The settings for the particular instance of the widget.
2827 2827
  */
2828
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2828
+function geodir_popular_post_category_output($args = '', $instance = '') {
2829 2829
 	// prints the widget
2830 2830
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2831
-	extract( $args, EXTR_SKIP );
2831
+	extract($args, EXTR_SKIP);
2832 2832
 
2833 2833
 	echo $before_widget;
2834 2834
 
2835 2835
 	/** This filter is documented in geodirectory_widgets.php */
2836
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2836
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2837 2837
 
2838 2838
 	$gd_post_type = geodir_get_current_posttype();
2839 2839
 
2840
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2840
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2841 2841
 	if (!isset($category_restrict)) {
2842 2842
 		$category_restrict = false;
2843 2843
 	}
2844
-	if ( ! empty( $gd_post_type ) ) {
2844
+	if (!empty($gd_post_type)) {
2845 2845
 		$default_post_type = $gd_post_type;
2846
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2846
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2847 2847
 		$default_post_type = $instance['default_post_type'];
2848 2848
 	} else {
2849 2849
 		$all_gd_post_type  = geodir_get_posttypes();
2850
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2850
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2851 2851
 	}
2852
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2852
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2853 2853
 
2854 2854
 	$taxonomy = array();
2855
-	if ( ! empty( $gd_post_type ) ) {
2856
-		$taxonomy[] = $gd_post_type . "category";
2855
+	if (!empty($gd_post_type)) {
2856
+		$taxonomy[] = $gd_post_type."category";
2857 2857
 	} else {
2858
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2858
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2859 2859
 	}
2860 2860
 
2861 2861
 	$taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy);
2862 2862
 
2863
-	$term_args = array( 'taxonomy' => $taxonomy );
2864
-	if ( $parent_only ) {
2863
+	$term_args = array('taxonomy' => $taxonomy);
2864
+	if ($parent_only) {
2865 2865
 		$term_args['parent'] = 0;
2866 2866
 	}
2867 2867
 
2868
-	$terms   = get_terms( $term_args );
2868
+	$terms   = get_terms($term_args);
2869 2869
 	$a_terms = array();
2870 2870
 	$b_terms = array();
2871 2871
 
2872
-	foreach ( $terms as $term ) {
2873
-		if ( $term->count > 0 ) {
2874
-			$a_terms[ $term->taxonomy ][] = $term;
2872
+	foreach ($terms as $term) {
2873
+		if ($term->count > 0) {
2874
+			$a_terms[$term->taxonomy][] = $term;
2875 2875
 		}
2876 2876
 	}
2877 2877
 
2878
-	if ( ! empty( $a_terms ) ) {
2878
+	if (!empty($a_terms)) {
2879 2879
 		// Sort CPT taxonomies in categories widget.
2880
-		if ( !empty( $taxonomy ) && is_array( $taxonomy ) && count( $taxonomy ) > 1 ) {
2880
+		if (!empty($taxonomy) && is_array($taxonomy) && count($taxonomy) > 1) {
2881 2881
 			$gd_post_types = geodir_get_posttypes();
2882 2882
 			$sort_taxonomies = array();
2883 2883
 			
2884
-			foreach ( $gd_post_types as $gd_post_type ) {
2885
-				$taxonomy_name = $gd_post_type . 'category';
2884
+			foreach ($gd_post_types as $gd_post_type) {
2885
+				$taxonomy_name = $gd_post_type.'category';
2886 2886
 				
2887
-				if ( !empty( $a_terms[$taxonomy_name] ) ) {
2887
+				if (!empty($a_terms[$taxonomy_name])) {
2888 2888
 					$sort_taxonomies[$taxonomy_name] = $a_terms[$taxonomy_name];
2889 2889
 				}
2890 2890
 			}
2891
-			$a_terms = !empty( $sort_taxonomies ) ? $sort_taxonomies : $a_terms;
2891
+			$a_terms = !empty($sort_taxonomies) ? $sort_taxonomies : $a_terms;
2892 2892
 		}
2893 2893
 		
2894
-		foreach ( $a_terms as $b_key => $b_val ) {
2895
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' );
2894
+		foreach ($a_terms as $b_key => $b_val) {
2895
+			$b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2896 2896
 		}
2897 2897
 
2898
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2898
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2899 2899
 
2900 2900
 		$tax_change_output = '';
2901
-		if ( count( $b_terms ) > 1 ) {
2902
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2903
-			foreach ( $b_terms as $key => $val ) {
2904
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2905
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2906
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2901
+		if (count($b_terms) > 1) {
2902
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2903
+			foreach ($b_terms as $key => $val) {
2904
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2905
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2906
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2907 2907
 			}
2908 2908
 			$tax_change_output .= "</select>";
2909 2909
 		}
2910 2910
 
2911
-		if ( ! empty( $b_terms ) ) {
2912
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2913
-			global $cat_count;//make global so we can change via function
2911
+		if (!empty($b_terms)) {
2912
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2913
+			global $cat_count; //make global so we can change via function
2914 2914
 			$cat_count = 0;
2915 2915
 			?>
2916 2916
 			<div class="geodir-category-list-in clearfix">
2917 2917
 				<div class="geodir-cat-list clearfix">
2918 2918
 					<?php
2919
-					echo $before_title . __( $title ) . $after_title;
2919
+					echo $before_title.__($title).$after_title;
2920 2920
 
2921 2921
 					echo $tax_change_output;
2922 2922
 
2923 2923
 					echo '<ul class="geodir-popular-cat-list">';
2924 2924
 
2925
-					geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict);
2925
+					geodir_helper_cat_list_output($terms, $category_limit, $category_restrict);
2926 2926
 
2927 2927
 					echo '</ul>';
2928 2928
 					?>
2929 2929
 				</div>
2930 2930
 				<?php
2931 2931
 				$hide = '';
2932
-				if ( $cat_count < $category_limit ) {
2932
+				if ($cat_count < $category_limit) {
2933 2933
 					$hide = 'style="display:none;"';
2934 2934
 				}
2935 2935
 				echo "<div class='geodir-cat-list-more' $hide >";
2936
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2937
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2936
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2937
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2938 2938
 				echo "</div>";
2939 2939
 				/* add scripts */
2940
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2940
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2941 2941
 				?>
2942 2942
 			</div>
2943 2943
 			<?php
@@ -2957,28 +2957,28 @@  discard block
 block discarded – undo
2957 2957
  * @param int $category_limit               Number of categories to display by default.
2958 2958
  * @param bool $category_restrict           If the cat limit should be hidden or not shown.
2959 2959
  */
2960
-function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
2960
+function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
2961 2961
 	global $geodir_post_category_str, $cat_count;
2962 2962
 	$term_icons = geodir_get_term_icon();
2963 2963
 
2964 2964
 	$geodir_post_category_str = array();
2965 2965
 
2966 2966
 
2967
-	foreach ( $terms as $cat ) {
2968
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
2969
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
2967
+	foreach ($terms as $cat) {
2968
+		$post_type     = str_replace("category", "", $cat->taxonomy);
2969
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
2970 2970
 
2971
-		$cat_count ++;
2971
+		$cat_count++;
2972 2972
 
2973
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
2973
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
2974 2974
 
2975
-		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2976
-		if($category_restrict && $cat_count > $category_limit ){
2975
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
2976
+		if ($category_restrict && $cat_count > $category_limit) {
2977 2977
 			continue;
2978 2978
 		}
2979 2979
 		$total_post = $cat->count;
2980 2980
 
2981
-		$term_link = get_term_link( $cat, $cat->taxonomy );
2981
+		$term_link = get_term_link($cat, $cat->taxonomy);
2982 2982
 		/**
2983 2983
 		 * Filer the category term link.
2984 2984
 		 *
@@ -2988,11 +2988,11 @@  discard block
 block discarded – undo
2988 2988
 		 * @param int $cat          ->term_id The term id.
2989 2989
 		 * @param string $post_type Wordpress post type.
2990 2990
 		 */
2991
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
2991
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
2992 2992
 
2993
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
2994
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
2995
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
2993
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
2994
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
2995
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
2996 2996
 		echo '</a></li>';
2997 2997
 	}
2998 2998
 }
@@ -3007,14 +3007,14 @@  discard block
 block discarded – undo
3007 3007
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3008 3008
  * @param array|string $instance The settings for the particular instance of the widget.
3009 3009
  */
3010
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
3010
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
3011 3011
 	// prints the widget
3012
-	extract( $args, EXTR_SKIP );
3012
+	extract($args, EXTR_SKIP);
3013 3013
 
3014 3014
 	echo $before_widget;
3015 3015
 
3016 3016
 	/** This filter is documented in geodirectory_widgets.php */
3017
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3017
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3018 3018
 	/**
3019 3019
 	 * Filter the widget post type.
3020 3020
 	 *
@@ -3022,7 +3022,7 @@  discard block
 block discarded – undo
3022 3022
 	 *
3023 3023
 	 * @param string $instance ['post_type'] Post type of listing.
3024 3024
 	 */
3025
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3025
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3026 3026
 	/**
3027 3027
 	 * Filter the widget's term.
3028 3028
 	 *
@@ -3030,7 +3030,7 @@  discard block
 block discarded – undo
3030 3030
 	 *
3031 3031
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3032 3032
 	 */
3033
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3033
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3034 3034
 	/**
3035 3035
 	 * Filter widget's "add_location_filter" value.
3036 3036
 	 *
@@ -3038,7 +3038,7 @@  discard block
 block discarded – undo
3038 3038
 	 *
3039 3039
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3040 3040
 	 */
3041
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3041
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3042 3042
 	/**
3043 3043
 	 * Filter the widget listings limit.
3044 3044
 	 *
@@ -3046,7 +3046,7 @@  discard block
 block discarded – undo
3046 3046
 	 *
3047 3047
 	 * @param string $instance ['post_number'] Number of listings to display.
3048 3048
 	 */
3049
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3049
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3050 3050
 	/**
3051 3051
 	 * Filter the widget listings limit shown at one time.
3052 3052
 	 *
@@ -3054,7 +3054,7 @@  discard block
 block discarded – undo
3054 3054
 	 *
3055 3055
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
3056 3056
 	 */
3057
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
3057
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
3058 3058
 	/**
3059 3059
 	 * Filter the widget slide width.
3060 3060
 	 *
@@ -3062,7 +3062,7 @@  discard block
 block discarded – undo
3062 3062
 	 *
3063 3063
 	 * @param string $instance ['slide_width'] Width of the slides shown.
3064 3064
 	 */
3065
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
3065
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
3066 3066
 	/**
3067 3067
 	 * Filter widget's "show title" value.
3068 3068
 	 *
@@ -3070,7 +3070,7 @@  discard block
 block discarded – undo
3070 3070
 	 *
3071 3071
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
3072 3072
 	 */
3073
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
3073
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
3074 3074
 	/**
3075 3075
 	 * Filter widget's "slideshow" value.
3076 3076
 	 *
@@ -3078,7 +3078,7 @@  discard block
 block discarded – undo
3078 3078
 	 *
3079 3079
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
3080 3080
 	 */
3081
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
3081
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
3082 3082
 	/**
3083 3083
 	 * Filter widget's "animationLoop" value.
3084 3084
 	 *
@@ -3086,7 +3086,7 @@  discard block
 block discarded – undo
3086 3086
 	 *
3087 3087
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
3088 3088
 	 */
3089
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
3089
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
3090 3090
 	/**
3091 3091
 	 * Filter widget's "directionNav" value.
3092 3092
 	 *
@@ -3094,7 +3094,7 @@  discard block
 block discarded – undo
3094 3094
 	 *
3095 3095
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
3096 3096
 	 */
3097
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
3097
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
3098 3098
 	/**
3099 3099
 	 * Filter widget's "slideshowSpeed" value.
3100 3100
 	 *
@@ -3102,7 +3102,7 @@  discard block
 block discarded – undo
3102 3102
 	 *
3103 3103
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
3104 3104
 	 */
3105
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
3105
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
3106 3106
 	/**
3107 3107
 	 * Filter widget's "animationSpeed" value.
3108 3108
 	 *
@@ -3110,7 +3110,7 @@  discard block
 block discarded – undo
3110 3110
 	 *
3111 3111
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
3112 3112
 	 */
3113
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
3113
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
3114 3114
 	/**
3115 3115
 	 * Filter widget's "animation" value.
3116 3116
 	 *
@@ -3118,7 +3118,7 @@  discard block
 block discarded – undo
3118 3118
 	 *
3119 3119
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
3120 3120
 	 */
3121
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
3121
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3122 3122
 	/**
3123 3123
 	 * Filter widget's "list_sort" type.
3124 3124
 	 *
@@ -3126,10 +3126,10 @@  discard block
 block discarded – undo
3126 3126
 	 *
3127 3127
 	 * @param string $instance ['list_sort'] Listing sort by type.
3128 3128
 	 */
3129
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3130
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3129
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3130
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3131 3131
 
3132
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3132
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3133 3133
 	?>
3134 3134
 		<script type="text/javascript">
3135 3135
 		jQuery(window).load(function () {
@@ -3148,7 +3148,7 @@  discard block
 block discarded – undo
3148 3148
 				itemWidth: 75,
3149 3149
 				itemMargin: 5,
3150 3150
 				asNavFor: '#geodir_widget_slider',
3151
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>,
3151
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>,
3152 3152
 				start: function (slider) {
3153 3153
 					// chrome 53 introduced a bug, so we need to repaint the slider when shown.
3154 3154
 					jQuery('.geodir-slides', jQuery(slider)).removeClass('flexslider-fix-rtl');
@@ -3156,19 +3156,19 @@  discard block
 block discarded – undo
3156 3156
 			});
3157 3157
 			
3158 3158
 			jQuery('#geodir_widget_slider').flexslider({
3159
-				animation: "<?php echo $animation;?>",
3159
+				animation: "<?php echo $animation; ?>",
3160 3160
 				selector: ".geodir-slides > li",
3161 3161
 				namespace: "geodir-",
3162 3162
 				controlNav: true,
3163
-				animationLoop: <?php echo $animationLoop;?>,
3164
-				slideshow: <?php echo $slideshow;?>,
3165
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3166
-				animationSpeed: <?php echo $animationSpeed;?>,
3167
-				directionNav: <?php echo $directionNav;?>,
3168
-				maxItems: <?php echo $max_show;?>,
3163
+				animationLoop: <?php echo $animationLoop; ?>,
3164
+				slideshow: <?php echo $slideshow; ?>,
3165
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3166
+				animationSpeed: <?php echo $animationSpeed; ?>,
3167
+				directionNav: <?php echo $directionNav; ?>,
3168
+				maxItems: <?php echo $max_show; ?>,
3169 3169
 				move: 1,
3170
-				<?php if ( $slide_width ) {
3171
-				echo "itemWidth: " . $slide_width . ",";
3170
+				<?php if ($slide_width) {
3171
+				echo "itemWidth: ".$slide_width.",";
3172 3172
 			}?>
3173 3173
 				sync: "#geodir_widget_carousel",
3174 3174
 				start: function (slider) {
@@ -3179,7 +3179,7 @@  discard block
 block discarded – undo
3179 3179
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3180 3180
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3181 3181
 				},
3182
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3182
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3183 3183
 			});
3184 3184
 		});
3185 3185
 	</script>
@@ -3192,62 +3192,62 @@  discard block
 block discarded – undo
3192 3192
 		'order_by'       => $list_sort
3193 3193
 	);
3194 3194
 
3195
-	if ( $show_featured_only ) {
3195
+	if ($show_featured_only) {
3196 3196
 		$query_args['show_featured_only'] = 1;
3197 3197
 	}
3198 3198
 
3199
-	if ( $category != 0 || $category != '' ) {
3200
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3199
+	if ($category != 0 || $category != '') {
3200
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3201 3201
 		$tax_query         = array(
3202 3202
 			'taxonomy' => $category_taxonomy[0],
3203 3203
 			'field'    => 'id',
3204 3204
 			'terms'    => $category
3205 3205
 		);
3206 3206
 
3207
-		$query_args['tax_query'] = array( $tax_query );
3207
+		$query_args['tax_query'] = array($tax_query);
3208 3208
 	}
3209 3209
 
3210 3210
 	// we want listings with featured image only
3211 3211
 	$query_args['featured_image_only'] = 1;
3212 3212
 
3213
-	if ( $post_type == 'gd_event' ) {
3213
+	if ($post_type == 'gd_event') {
3214 3214
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3215 3215
 	}// show only upcoming events
3216 3216
 
3217
-	$widget_listings = geodir_get_widget_listings( $query_args );
3218
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3219
-		if ( $title ) {
3220
-			echo $before_title . $title . $after_title;
3217
+	$widget_listings = geodir_get_widget_listings($query_args);
3218
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3219
+		if ($title) {
3220
+			echo $before_title.$title.$after_title;
3221 3221
 		}
3222 3222
 
3223 3223
 		global $post;
3224 3224
 
3225
-		$current_post = $post;// keep current post info
3225
+		$current_post = $post; // keep current post info
3226 3226
 
3227 3227
 		$widget_main_slides = '';
3228 3228
 		$nav_slides         = '';
3229 3229
 		$widget_slides      = 0;
3230 3230
 
3231
-		foreach ( $widget_listings as $widget_listing ) {
3231
+		foreach ($widget_listings as $widget_listing) {
3232 3232
 			global $gd_widget_listing_type;
3233 3233
 			$post         = $widget_listing;
3234
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3234
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3235 3235
 
3236
-			if ( ! empty( $widget_image ) ) {
3237
-				if ( $widget_image->height >= 200 ) {
3236
+			if (!empty($widget_image)) {
3237
+				if ($widget_image->height >= 200) {
3238 3238
 					$widget_spacer_height = 0;
3239 3239
 				} else {
3240
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3240
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3241 3241
 				}
3242 3242
 
3243
-				$widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:' . $widget_spacer_height . 'px !important;margin:0 auto;" width="100" />';
3243
+				$widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:'.$widget_spacer_height.'px !important;margin:0 auto;" width="100" />';
3244 3244
 
3245 3245
 				$title = '';
3246
-				if ( $show_title ) {
3247
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3246
+				if ($show_title) {
3247
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3248 3248
 					$post_id        = $post->ID;
3249
-					$post_permalink = get_permalink( $post->ID );
3250
-					$post_title     = get_the_title( $post->ID );
3249
+					$post_permalink = get_permalink($post->ID);
3250
+					$post_title     = get_the_title($post->ID);
3251 3251
 					/**
3252 3252
 					 * Filter the listing slider widget title.
3253 3253
 					 *
@@ -3258,12 +3258,12 @@  discard block
 block discarded – undo
3258 3258
 					 * @param string $post_permalink The post permalink url.
3259 3259
 					 * @param string $post_title     The post title text.
3260 3260
 					 */
3261
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3261
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3262 3262
 				}
3263 3263
 
3264
-				$widget_main_slides .= $title . '<img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></li>';
3265
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3266
-				$widget_slides ++;
3264
+				$widget_main_slides .= $title.'<img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></li>';
3265
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3266
+				$widget_slides++;
3267 3267
 			}
3268 3268
 		}
3269 3269
 		?>
@@ -3272,7 +3272,7 @@  discard block
 block discarded – undo
3272 3272
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3273 3273
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3274 3274
 			</div>
3275
-			<?php if ( $widget_slides > 1 ) { ?>
3275
+			<?php if ($widget_slides > 1) { ?>
3276 3276
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3277 3277
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3278 3278
 				</div>
@@ -3280,7 +3280,7 @@  discard block
 block discarded – undo
3280 3280
 		</div>
3281 3281
 		<?php
3282 3282
 		$GLOBALS['post'] = $current_post;
3283
-		setup_postdata( $current_post );
3283
+		setup_postdata($current_post);
3284 3284
 	}
3285 3285
 	echo $after_widget;
3286 3286
 }
@@ -3296,46 +3296,46 @@  discard block
 block discarded – undo
3296 3296
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3297 3297
  * @param array|string $instance The settings for the particular instance of the widget.
3298 3298
  */
3299
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3299
+function geodir_loginwidget_output($args = '', $instance = '') {
3300 3300
 	//print_r($args);
3301 3301
 	//print_r($instance);
3302 3302
 	// prints the widget
3303
-	extract( $args, EXTR_SKIP );
3303
+	extract($args, EXTR_SKIP);
3304 3304
 
3305 3305
 	/** This filter is documented in geodirectory_widgets.php */
3306
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3306
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3307 3307
 
3308 3308
 	echo $before_widget;
3309
-	echo $before_title . $title . $after_title;
3309
+	echo $before_title.$title.$after_title;
3310 3310
 
3311
-	if ( is_user_logged_in() ) {
3311
+	if (is_user_logged_in()) {
3312 3312
 		global $current_user;
3313 3313
 
3314
-		$author_link = get_author_posts_url( $current_user->data->ID );
3315
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3314
+		$author_link = get_author_posts_url($current_user->data->ID);
3315
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3316 3316
 
3317 3317
 		echo '<ul class="geodir-loginbox-list">';
3318 3318
 		ob_start();
3319 3319
 		?>
3320 3320
 		<li><a class="signin"
3321
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3321
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3322 3322
 		<?php
3323
-		$post_types                           = geodir_get_posttypes( 'object' );
3324
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3325
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3323
+		$post_types                           = geodir_get_posttypes('object');
3324
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3325
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3326 3326
 
3327
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3327
+		if (!empty($show_add_listing_post_types_main_nav)) {
3328 3328
 			$addlisting_links = '';
3329
-			foreach ( $post_types as $key => $postobj ) {
3329
+			foreach ($post_types as $key => $postobj) {
3330 3330
 
3331
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3331
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3332 3332
 
3333
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3333
+					if ($add_link = geodir_get_addlisting_link($key)) {
3334 3334
 
3335 3335
 						$name = $postobj->labels->name;
3336 3336
 
3337 3337
 						$selected = '';
3338
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3338
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3339 3339
 							$selected = 'selected="selected"';
3340 3340
 						}
3341 3341
 
@@ -3348,22 +3348,22 @@  discard block
 block discarded – undo
3348 3348
 						 * @param string $key       Add listing array key.
3349 3349
 						 * @param int $current_user ->ID Current user ID.
3350 3350
 						 */
3351
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3351
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3352 3352
 
3353
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3353
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3354 3354
 
3355 3355
 					}
3356 3356
 				}
3357 3357
 
3358 3358
 			}
3359 3359
 
3360
-			if ( $addlisting_links != '' ) { ?>
3360
+			if ($addlisting_links != '') { ?>
3361 3361
 
3362 3362
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3363 3363
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3364
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3364
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3365 3365
 						<option value="" disabled="disabled" selected="selected"
3366
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3366
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3367 3367
 						<?php echo $addlisting_links; ?>
3368 3368
 					</select></li> <?php
3369 3369
 
@@ -3371,23 +3371,23 @@  discard block
 block discarded – undo
3371 3371
 
3372 3372
 		}
3373 3373
 		// My Favourites in Dashboard
3374
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3374
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3375 3375
 		$user_favourite                    = geodir_user_favourite_listing_count();
3376 3376
 
3377
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3377
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3378 3378
 			$favourite_links = '';
3379 3379
 
3380
-			foreach ( $post_types as $key => $postobj ) {
3381
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3380
+			foreach ($post_types as $key => $postobj) {
3381
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3382 3382
 					$name           = $postobj->labels->name;
3383
-					$post_type_link = geodir_getlink( $author_link, array(
3383
+					$post_type_link = geodir_getlink($author_link, array(
3384 3384
 						'stype' => $key,
3385 3385
 						'list'  => 'favourite'
3386
-					), false );
3386
+					), false);
3387 3387
 
3388 3388
 					$selected = '';
3389 3389
 
3390
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3390
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3391 3391
 						$selected = 'selected="selected"';
3392 3392
 					}
3393 3393
 					/**
@@ -3399,20 +3399,20 @@  discard block
 block discarded – undo
3399 3399
 					 * @param string $key            Favorite listing array key.
3400 3400
 					 * @param int $current_user      ->ID Current user ID.
3401 3401
 					 */
3402
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3402
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3403 3403
 
3404
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3404
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3405 3405
 				}
3406 3406
 			}
3407 3407
 
3408
-			if ( $favourite_links != '' ) {
3408
+			if ($favourite_links != '') {
3409 3409
 				?>
3410 3410
 				<li>
3411 3411
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3412 3412
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3413
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3413
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3414 3414
 						<option value="" disabled="disabled" selected="selected"
3415
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3415
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3416 3416
 						<?php echo $favourite_links; ?>
3417 3417
 					</select>
3418 3418
 				</li>
@@ -3421,19 +3421,19 @@  discard block
 block discarded – undo
3421 3421
 		}
3422 3422
 
3423 3423
 
3424
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3424
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3425 3425
 		$user_listing                     = geodir_user_post_listing_count();
3426 3426
 
3427
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3427
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3428 3428
 			$listing_links = '';
3429 3429
 
3430
-			foreach ( $post_types as $key => $postobj ) {
3431
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3430
+			foreach ($post_types as $key => $postobj) {
3431
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3432 3432
 					$name         = $postobj->labels->name;
3433
-					$listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false );
3433
+					$listing_link = geodir_getlink($author_link, array('stype' => $key), false);
3434 3434
 
3435 3435
 					$selected = '';
3436
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3436
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3437 3437
 						$selected = 'selected="selected"';
3438 3438
 					}
3439 3439
 
@@ -3446,20 +3446,20 @@  discard block
 block discarded – undo
3446 3446
 					 * @param string $key          My listing array key.
3447 3447
 					 * @param int $current_user    ->ID Current user ID.
3448 3448
 					 */
3449
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3449
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3450 3450
 
3451
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3451
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3452 3452
 				}
3453 3453
 			}
3454 3454
 
3455
-			if ( $listing_links != '' ) {
3455
+			if ($listing_links != '') {
3456 3456
 				?>
3457 3457
 				<li>
3458 3458
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3459 3459
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3460
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3460
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3461 3461
 						<option value="" disabled="disabled" selected="selected"
3462
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3462
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3463 3463
 						<?php echo $listing_links; ?>
3464 3464
 					</select>
3465 3465
 				</li>
@@ -3475,7 +3475,7 @@  discard block
 block discarded – undo
3475 3475
 		 *
3476 3476
 		 * @param string $dashboard_link Dashboard links HTML.
3477 3477
 		 */
3478
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3478
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3479 3479
 		echo '</ul>';
3480 3480
 
3481 3481
 		/**
@@ -3483,7 +3483,7 @@  discard block
 block discarded – undo
3483 3483
 		 *
3484 3484
 		 * @since 1.6.6
3485 3485
 		 */
3486
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3486
+		do_action('geodir_after_loginwidget_form_logged_in');
3487 3487
 
3488 3488
 
3489 3489
 	} else {
@@ -3498,18 +3498,18 @@  discard block
 block discarded – undo
3498 3498
 		<form name="loginform" class="loginform1"
3499 3499
 		      action="<?php echo geodir_login_url(); ?>"
3500 3500
 		      method="post">
3501
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log"
3501
+			<div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log"
3502 3502
 			                                    type="text" class="textfield user_login1"/> <span
3503 3503
 					class="user_loginInfo"></span></div>
3504
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3504
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3505 3505
 			                                    name="pwd" type="password"
3506 3506
 			                                    class="textfield user_pass1 input-text"/><span
3507 3507
 					class="user_passInfo"></span></div>
3508 3508
 
3509
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3509
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3510 3510
 			<input type="hidden" name="testcookie" value="1"/>
3511 3511
 
3512
-				<?php do_action( 'login_form' ); ?>
3512
+				<?php do_action('login_form'); ?>
3513 3513
 
3514 3514
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3515 3515
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3521,11 +3521,11 @@  discard block
 block discarded – undo
3521 3521
 					 *
3522 3522
 					 * @since 1.0.0
3523 3523
 					 */
3524
-					$is_enable_signup = get_option( 'users_can_register' );
3524
+					$is_enable_signup = get_option('users_can_register');
3525 3525
 					
3526
-					if ( $is_enable_signup ) {
3526
+					if ($is_enable_signup) {
3527 3527
 					?>
3528
-						<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3528
+						<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3529 3529
 						   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3530 3530
 
3531 3531
 					<?php
@@ -3536,7 +3536,7 @@  discard block
 block discarded – undo
3536 3536
 					 * @since 1.0.0
3537 3537
 					 */
3538 3538
 					?>
3539
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3539
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3540 3540
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3541 3541
 		</form>
3542 3542
 		<?php
@@ -3545,7 +3545,7 @@  discard block
 block discarded – undo
3545 3545
 		 *
3546 3546
 		 * @since 1.6.6
3547 3547
 		 */
3548
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3548
+		do_action('geodir_after_loginwidget_form_logged_out');
3549 3549
 	}
3550 3550
 
3551 3551
 	echo $after_widget;
@@ -3567,16 +3567,16 @@  discard block
 block discarded – undo
3567 3567
  *                                         after_widget.
3568 3568
  * @param array|string $instance           The settings for the particular instance of the widget.
3569 3569
  */
3570
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3570
+function geodir_popular_postview_output($args = '', $instance = '') {
3571 3571
 	global $gd_session;
3572 3572
 
3573 3573
 	// prints the widget
3574
-	extract( $args, EXTR_SKIP );
3574
+	extract($args, EXTR_SKIP);
3575 3575
 
3576 3576
 	echo $before_widget;
3577 3577
 
3578 3578
 	/** This filter is documented in geodirectory_widgets.php */
3579
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3579
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3580 3580
 	/**
3581 3581
 	 * Filter the widget post type.
3582 3582
 	 *
@@ -3584,7 +3584,7 @@  discard block
 block discarded – undo
3584 3584
 	 *
3585 3585
 	 * @param string $instance ['post_type'] Post type of listing.
3586 3586
 	 */
3587
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3587
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3588 3588
 	/**
3589 3589
 	 * Filter the widget's term.
3590 3590
 	 *
@@ -3592,7 +3592,7 @@  discard block
 block discarded – undo
3592 3592
 	 *
3593 3593
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3594 3594
 	 */
3595
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3595
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3596 3596
 	/**
3597 3597
 	 * Filter the widget listings limit.
3598 3598
 	 *
@@ -3600,7 +3600,7 @@  discard block
 block discarded – undo
3600 3600
 	 *
3601 3601
 	 * @param string $instance ['post_number'] Number of listings to display.
3602 3602
 	 */
3603
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3603
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3604 3604
 	/**
3605 3605
 	 * Filter widget's "layout" type.
3606 3606
 	 *
@@ -3608,7 +3608,7 @@  discard block
 block discarded – undo
3608 3608
 	 *
3609 3609
 	 * @param string $instance ['layout'] Widget layout type.
3610 3610
 	 */
3611
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3611
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3612 3612
 	/**
3613 3613
 	 * Filter widget's "add_location_filter" value.
3614 3614
 	 *
@@ -3616,7 +3616,7 @@  discard block
 block discarded – undo
3616 3616
 	 *
3617 3617
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3618 3618
 	 */
3619
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3619
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3620 3620
 	/**
3621 3621
 	 * Filter widget's listing width.
3622 3622
 	 *
@@ -3624,7 +3624,7 @@  discard block
 block discarded – undo
3624 3624
 	 *
3625 3625
 	 * @param string $instance ['listing_width'] Listing width.
3626 3626
 	 */
3627
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3627
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3628 3628
 	/**
3629 3629
 	 * Filter widget's "list_sort" type.
3630 3630
 	 *
@@ -3632,25 +3632,25 @@  discard block
 block discarded – undo
3632 3632
 	 *
3633 3633
 	 * @param string $instance ['list_sort'] Listing sort by type.
3634 3634
 	 */
3635
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3636
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3635
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3636
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3637 3637
 
3638 3638
 	// set post type to current viewing post type
3639
-	if ( $use_viewing_post_type ) {
3639
+	if ($use_viewing_post_type) {
3640 3640
 		$current_post_type = geodir_get_current_posttype();
3641
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3641
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3642 3642
 			$post_type = $current_post_type;
3643 3643
 			$category  = array(); // old post type category will not work for current changed post type
3644 3644
 		}
3645 3645
 	}
3646 3646
 	// replace widget title dynamically
3647
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3648
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3647
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3648
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3649 3649
 
3650
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3651
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3650
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3651
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3652 3652
 
3653
-	if ( isset( $instance['character_count'] ) ) {
3653
+	if (isset($instance['character_count'])) {
3654 3654
 		/**
3655 3655
 		 * Filter the widget's excerpt character count.
3656 3656
 		 *
@@ -3658,37 +3658,37 @@  discard block
 block discarded – undo
3658 3658
 		 *
3659 3659
 		 * @param int $instance ['character_count'] Excerpt character count.
3660 3660
 		 */
3661
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3661
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3662 3662
 	} else {
3663 3663
 		$character_count = '';
3664 3664
 	}
3665 3665
 
3666
-	if ( empty( $title ) || $title == 'All' ) {
3667
-		$title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3666
+	if (empty($title) || $title == 'All') {
3667
+		$title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory');
3668 3668
 	}
3669 3669
 
3670 3670
 	$location_url = array();
3671
-	$city         = get_query_var( 'gd_city' );
3672
-	if ( ! empty( $city ) ) {
3673
-		$country = get_query_var( 'gd_country' );
3674
-		$region  = get_query_var( 'gd_region' );
3671
+	$city         = get_query_var('gd_city');
3672
+	if (!empty($city)) {
3673
+		$country = get_query_var('gd_country');
3674
+		$region  = get_query_var('gd_region');
3675 3675
 
3676
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3676
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3677 3677
 
3678
-		if ( $geodir_show_location_url == 'all' ) {
3679
-			if ( $country != '' ) {
3678
+		if ($geodir_show_location_url == 'all') {
3679
+			if ($country != '') {
3680 3680
 				$location_url[] = $country;
3681 3681
 			}
3682 3682
 
3683
-			if ( $region != '' ) {
3683
+			if ($region != '') {
3684 3684
 				$location_url[] = $region;
3685 3685
 			}
3686
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3687
-			if ( $country != '' ) {
3686
+		} else if ($geodir_show_location_url == 'country_city') {
3687
+			if ($country != '') {
3688 3688
 				$location_url[] = $country;
3689 3689
 			}
3690
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3691
-			if ( $region != '' ) {
3690
+		} else if ($geodir_show_location_url == 'region_city') {
3691
+			if ($region != '') {
3692 3692
 				$location_url[] = $region;
3693 3693
 			}
3694 3694
 		}
@@ -3696,37 +3696,37 @@  discard block
 block discarded – undo
3696 3696
 		$location_url[] = $city;
3697 3697
 	}
3698 3698
 
3699
-	$location_url  = implode( '/', $location_url );
3699
+	$location_url  = implode('/', $location_url);
3700 3700
 	$skip_location = false;
3701
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3701
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3702 3702
 		$skip_location = true;
3703
-		$gd_session->un_set( 'gd_multi_location' );
3703
+		$gd_session->un_set('gd_multi_location');
3704 3704
 	}
3705 3705
 
3706
-	if ( get_option( 'permalink_structure' ) ) {
3707
-		$viewall_url = get_post_type_archive_link( $post_type );
3706
+	if (get_option('permalink_structure')) {
3707
+		$viewall_url = get_post_type_archive_link($post_type);
3708 3708
 	} else {
3709
-		$viewall_url = get_post_type_archive_link( $post_type );
3709
+		$viewall_url = get_post_type_archive_link($post_type);
3710 3710
 	}
3711 3711
 
3712
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3712
+	if (!empty($category) && $category[0] != '0') {
3713 3713
 		global $geodir_add_location_url;
3714 3714
 
3715 3715
 		$geodir_add_location_url = '0';
3716 3716
 
3717
-		if ( $add_location_filter != '0' ) {
3717
+		if ($add_location_filter != '0') {
3718 3718
 			$geodir_add_location_url = '1';
3719 3719
 		}
3720 3720
 
3721
-		$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3721
+		$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3722 3722
 
3723 3723
 		$geodir_add_location_url = null;
3724 3724
 	}
3725
-	if ( $skip_location ) {
3726
-		$gd_session->set( 'gd_multi_location', 1 );
3725
+	if ($skip_location) {
3726
+		$gd_session->set('gd_multi_location', 1);
3727 3727
 	}
3728 3728
 
3729
-	if ( is_wp_error( $viewall_url ) ) {
3729
+	if (is_wp_error($viewall_url)) {
3730 3730
 		$viewall_url = '';
3731 3731
 	}
3732 3732
 
@@ -3738,34 +3738,34 @@  discard block
 block discarded – undo
3738 3738
 		'order_by'       => $list_sort
3739 3739
 	);
3740 3740
 
3741
-	if ( $character_count ) {
3741
+	if ($character_count) {
3742 3742
 		$query_args['excerpt_length'] = $character_count;
3743 3743
 	}
3744 3744
 
3745
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3745
+	if (!empty($instance['show_featured_only'])) {
3746 3746
 		$query_args['show_featured_only'] = 1;
3747 3747
 	}
3748 3748
 
3749
-	if ( ! empty( $instance['show_special_only'] ) ) {
3749
+	if (!empty($instance['show_special_only'])) {
3750 3750
 		$query_args['show_special_only'] = 1;
3751 3751
 	}
3752 3752
 
3753
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3753
+	if (!empty($instance['with_pics_only'])) {
3754 3754
 		$query_args['with_pics_only']      = 0;
3755 3755
 		$query_args['featured_image_only'] = 1;
3756 3756
 	}
3757 3757
 
3758
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3758
+	if (!empty($instance['with_videos_only'])) {
3759 3759
 		$query_args['with_videos_only'] = 1;
3760 3760
 	}
3761
-	$with_no_results = ! empty( $instance['without_no_results'] ) ? false : true;
3761
+	$with_no_results = !empty($instance['without_no_results']) ? false : true;
3762 3762
 
3763
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3764
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3763
+	if (!empty($category) && $category[0] != '0') {
3764
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3765 3765
 
3766 3766
 		######### WPML #########
3767
-		if ( function_exists( 'icl_object_id' ) ) {
3768
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3767
+		if (function_exists('icl_object_id')) {
3768
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3769 3769
 		}
3770 3770
 		######### WPML #########
3771 3771
 
@@ -3775,14 +3775,14 @@  discard block
 block discarded – undo
3775 3775
 			'terms'    => $category
3776 3776
 		);
3777 3777
 
3778
-		$query_args['tax_query'] = array( $tax_query );
3778
+		$query_args['tax_query'] = array($tax_query);
3779 3779
 	}
3780 3780
 
3781 3781
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3782 3782
 
3783
-	$widget_listings = geodir_get_widget_listings( $query_args );
3783
+	$widget_listings = geodir_get_widget_listings($query_args);
3784 3784
 
3785
-	if ( ! empty( $widget_listings ) || $with_no_results ) {
3785
+	if (!empty($widget_listings) || $with_no_results) {
3786 3786
 		?>
3787 3787
 		<div class="geodir_locations geodir_location_listing">
3788 3788
 
@@ -3792,11 +3792,11 @@  discard block
 block discarded – undo
3792 3792
 			 *
3793 3793
 			 * @since 1.0.0
3794 3794
 			 */
3795
-			do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3795
+			do_action('geodir_before_view_all_link_in_widget'); ?>
3796 3796
 			<div class="geodir_list_heading clearfix">
3797
-				<?php echo $before_title . $title . $after_title; ?>
3797
+				<?php echo $before_title.$title.$after_title; ?>
3798 3798
 				<a href="<?php echo $viewall_url; ?>"
3799
-				   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3799
+				   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3800 3800
 			</div>
3801 3801
 			<?php
3802 3802
 			/**
@@ -3804,10 +3804,10 @@  discard block
 block discarded – undo
3804 3804
 			 *
3805 3805
 			 * @since 1.0.0
3806 3806
 			 */
3807
-			do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3807
+			do_action('geodir_after_view_all_link_in_widget'); ?>
3808 3808
 			<?php
3809
-			if ( strstr( $layout, 'gridview' ) ) {
3810
-				$listing_view_exp        = explode( '_', $layout );
3809
+			if (strstr($layout, 'gridview')) {
3810
+				$listing_view_exp        = explode('_', $layout);
3811 3811
 				$gridview_columns_widget = $layout;
3812 3812
 				$layout                  = $listing_view_exp[0];
3813 3813
 			} else {
@@ -3819,8 +3819,8 @@  discard block
 block discarded – undo
3819 3819
 			 *
3820 3820
 			 * @since 1.0.0
3821 3821
 			 */
3822
-			$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3823
-			if ( ! isset( $character_count ) ) {
3822
+			$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3823
+			if (!isset($character_count)) {
3824 3824
 				/**
3825 3825
 				 * Filter the widget's excerpt character count.
3826 3826
 				 *
@@ -3828,7 +3828,7 @@  discard block
 block discarded – undo
3828 3828
 				 *
3829 3829
 				 * @param int $instance ['character_count'] Excerpt character count.
3830 3830
 				 */
3831
-				$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3831
+				$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3832 3832
 			}
3833 3833
 
3834 3834
 			global $post, $map_jason, $map_canvas_arr;
@@ -3843,13 +3843,13 @@  discard block
 block discarded – undo
3843 3843
 			 *
3844 3844
 			 * @since 1.0.0
3845 3845
 			 */
3846
-			include( $template );
3846
+			include($template);
3847 3847
 
3848 3848
 			$geodir_is_widget_listing = false;
3849 3849
 
3850 3850
 			$GLOBALS['post'] = $current_post;
3851
-			if ( ! empty( $current_post ) ) {
3852
-				setup_postdata( $current_post );
3851
+			if (!empty($current_post)) {
3852
+				setup_postdata($current_post);
3853 3853
 			}
3854 3854
 			$map_jason      = $current_map_jason;
3855 3855
 			$map_canvas_arr = $current_map_canvas_arr;
@@ -3880,12 +3880,12 @@  discard block
 block discarded – undo
3880 3880
  *
3881 3881
  * @return int Reviews count.
3882 3882
  */
3883
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3883
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3884 3884
 	global $wpdb, $plugin_prefix;
3885 3885
 
3886
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3886
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3887 3887
 
3888
-	$sql = "SELECT COALESCE(SUM(rating_count),0) FROM " . $detail_table . " WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(" . $term_id . ", " . $taxonomy . ")";
3888
+	$sql = "SELECT COALESCE(SUM(rating_count),0) FROM ".$detail_table." WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(".$term_id.", ".$taxonomy.")";
3889 3889
 
3890 3890
 	/**
3891 3891
 	 * Filter count review sql query.
@@ -3897,9 +3897,9 @@  discard block
 block discarded – undo
3897 3897
 	 * @param int $taxonomy     The taxonomy Id.
3898 3898
 	 * @param string $post_type The post type.
3899 3899
 	 */
3900
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3900
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3901 3901
 
3902
-	$count = $wpdb->get_var( $sql );
3902
+	$count = $wpdb->get_var($sql);
3903 3903
 
3904 3904
 	return $count;
3905 3905
 }
@@ -3917,7 +3917,7 @@  discard block
 block discarded – undo
3917 3917
  *
3918 3918
  * @return array Term array data.
3919 3919
  */
3920
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3920
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3921 3921
 	/**
3922 3922
 	 * Filter review count option data.
3923 3923
 	 *
@@ -3927,78 +3927,78 @@  discard block
 block discarded – undo
3927 3927
 	 * @param bool $force_update Force update option value?. Default.false.
3928 3928
 	 * @param int $post_ID       The post id to update if any.
3929 3929
 	 */
3930
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
3931
-	if ( ! empty( $option_data ) ) {
3930
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
3931
+	if (!empty($option_data)) {
3932 3932
 		return $option_data;
3933 3933
 	}
3934 3934
 
3935
-	$option_data = get_option( 'geodir_global_review_count' );
3935
+	$option_data = get_option('geodir_global_review_count');
3936 3936
 
3937
-	if ( ! $option_data || $force_update ) {
3938
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
3937
+	if (!$option_data || $force_update) {
3938
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
3939 3939
 			global $gd_session;
3940 3940
 			$term_array = (array) $option_data;
3941
-			$post_type  = get_post_type( $post_ID );
3942
-			$taxonomy   = $post_type . 'category';
3943
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
3944
-
3945
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
3946
-				foreach ( $terms as $term_id ) {
3947
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3948
-					$children               = get_term_children( $term_id, $taxonomy );
3949
-					$term_array[ $term_id ] = $count;
3941
+			$post_type  = get_post_type($post_ID);
3942
+			$taxonomy   = $post_type.'category';
3943
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3944
+
3945
+			if (!empty($terms) && !is_wp_error($terms)) {
3946
+				foreach ($terms as $term_id) {
3947
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3948
+					$children               = get_term_children($term_id, $taxonomy);
3949
+					$term_array[$term_id] = $count;
3950 3950
 				}
3951 3951
 			}
3952 3952
 
3953
-			$session_listing = $gd_session->get( 'listing' );
3953
+			$session_listing = $gd_session->get('listing');
3954 3954
 
3955 3955
 			$terms = array();
3956
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
3957
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
3958
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
3959
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
3956
+			if (isset($_POST['post_category'][$taxonomy])) {
3957
+				$terms = (array) $_POST['post_category'][$taxonomy];
3958
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
3959
+				$terms = (array) $session_listing['post_category'][$taxonomy];
3960 3960
 			}
3961 3961
 
3962
-			if ( ! empty( $terms ) ) {
3963
-				foreach ( $terms as $term_id ) {
3964
-					if ( $term_id > 0 ) {
3965
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3966
-						$children               = get_term_children( $term_id, $taxonomy );
3967
-						$term_array[ $term_id ] = $count;
3962
+			if (!empty($terms)) {
3963
+				foreach ($terms as $term_id) {
3964
+					if ($term_id > 0) {
3965
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3966
+						$children               = get_term_children($term_id, $taxonomy);
3967
+						$term_array[$term_id] = $count;
3968 3968
 					}
3969 3969
 				}
3970 3970
 			}
3971 3971
 		} else { // Update reviews count for all post categories.
3972 3972
 			$term_array = array();
3973 3973
 			$post_types = geodir_get_posttypes();
3974
-			foreach ( $post_types as $post_type ) {
3974
+			foreach ($post_types as $post_type) {
3975 3975
 
3976
-				$taxonomy = geodir_get_taxonomies( $post_type );
3976
+				$taxonomy = geodir_get_taxonomies($post_type);
3977 3977
 				$taxonomy = $taxonomy[0];
3978 3978
 
3979 3979
 				$args = array(
3980 3980
 					'hide_empty' => false
3981 3981
 				);
3982 3982
 
3983
-				$terms = get_terms( $taxonomy, $args );
3983
+				$terms = get_terms($taxonomy, $args);
3984 3984
 
3985
-				foreach ( $terms as $term ) {
3986
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
3987
-					$children = get_term_children( $term->term_id, $taxonomy );
3985
+				foreach ($terms as $term) {
3986
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
3987
+					$children = get_term_children($term->term_id, $taxonomy);
3988 3988
 					/*if ( is_array( $children ) ) {
3989 3989
                         foreach ( $children as $child_id ) {
3990 3990
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
3991 3991
                             $count = $count + $child_count;
3992 3992
                         }
3993 3993
                     }*/
3994
-					$term_array[ $term->term_id ] = $count;
3994
+					$term_array[$term->term_id] = $count;
3995 3995
 				}
3996 3996
 			}
3997 3997
 		}
3998 3998
 
3999
-		update_option( 'geodir_global_review_count', $term_array );
3999
+		update_option('geodir_global_review_count', $term_array);
4000 4000
 		//clear cache
4001
-		wp_cache_delete( 'geodir_global_review_count' );
4001
+		wp_cache_delete('geodir_global_review_count');
4002 4002
 
4003 4003
 		return $term_array;
4004 4004
 	} else {
@@ -4014,39 +4014,39 @@  discard block
 block discarded – undo
4014 4014
  * @package GeoDirectory
4015 4015
  * @return bool
4016 4016
  */
4017
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
4018
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
4017
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
4018
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
4019 4019
 		return; // do not run if importing listings
4020 4020
 	}
4021 4021
 
4022
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
4022
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
4023 4023
 		return;
4024 4024
 	}
4025 4025
 
4026 4026
 	$post_ID = 0;
4027
-	if ( ! empty( $post ) ) {
4028
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
4027
+	if (!empty($post)) {
4028
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
4029 4029
 			return;
4030 4030
 		}
4031 4031
 
4032
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
4032
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
4033 4033
 			return;
4034 4034
 		}
4035 4035
 
4036
-		if ( ! empty( $post->ID ) ) {
4036
+		if (!empty($post->ID)) {
4037 4037
 			$post_ID = $post->ID;
4038 4038
 		}
4039 4039
 	}
4040 4040
 
4041
-	if ( $new_status != $old_status ) {
4042
-		geodir_count_reviews_by_terms( true, $post_ID );
4041
+	if ($new_status != $old_status) {
4042
+		geodir_count_reviews_by_terms(true, $post_ID);
4043 4043
 	}
4044 4044
 
4045 4045
 	return true;
4046 4046
 }
4047 4047
 
4048
-function geodir_term_review_count_force_update_single_post( $post_id ) {
4049
-	geodir_count_reviews_by_terms( true, $post_id );
4048
+function geodir_term_review_count_force_update_single_post($post_id) {
4049
+	geodir_count_reviews_by_terms(true, $post_id);
4050 4050
 }
4051 4051
 
4052 4052
 /*-----------------------------------------------------------------------------------*/
@@ -4063,11 +4063,11 @@  discard block
 block discarded – undo
4063 4063
  *
4064 4064
  * @return int Post count.
4065 4065
  */
4066
-function geodir_count_posts_by_term( $data, $term ) {
4066
+function geodir_count_posts_by_term($data, $term) {
4067 4067
 
4068
-	if ( $data ) {
4069
-		if ( isset( $data[ $term->term_id ] ) ) {
4070
-			return $data[ $term->term_id ];
4068
+	if ($data) {
4069
+		if (isset($data[$term->term_id])) {
4070
+			return $data[$term->term_id];
4071 4071
 		} else {
4072 4072
 			return 0;
4073 4073
 		}
@@ -4084,8 +4084,8 @@  discard block
 block discarded – undo
4084 4084
  * param array $terms An array of term objects.
4085 4085
  * @return array Sorted terms array.
4086 4086
  */
4087
-function geodir_sort_terms_by_count( $terms ) {
4088
-	usort( $terms, "geodir_sort_by_count_obj" );
4087
+function geodir_sort_terms_by_count($terms) {
4088
+	usort($terms, "geodir_sort_by_count_obj");
4089 4089
 
4090 4090
 	return $terms;
4091 4091
 }
@@ -4100,8 +4100,8 @@  discard block
 block discarded – undo
4100 4100
  *
4101 4101
  * @return array Sorted terms array.
4102 4102
  */
4103
-function geodir_sort_terms_by_review_count( $terms ) {
4104
-	usort( $terms, "geodir_sort_by_review_count_obj" );
4103
+function geodir_sort_terms_by_review_count($terms) {
4104
+	usort($terms, "geodir_sort_by_review_count_obj");
4105 4105
 
4106 4106
 	return $terms;
4107 4107
 }
@@ -4117,12 +4117,12 @@  discard block
 block discarded – undo
4117 4117
  *
4118 4118
  * @return array Sorted terms array.
4119 4119
  */
4120
-function geodir_sort_terms( $terms, $sort = 'count' ) {
4121
-	if ( $sort == 'count' ) {
4122
-		return geodir_sort_terms_by_count( $terms );
4120
+function geodir_sort_terms($terms, $sort = 'count') {
4121
+	if ($sort == 'count') {
4122
+		return geodir_sort_terms_by_count($terms);
4123 4123
 	}
4124
-	if ( $sort == 'review_count' ) {
4125
-		return geodir_sort_terms_by_review_count( $terms );
4124
+	if ($sort == 'review_count') {
4125
+		return geodir_sort_terms_by_review_count($terms);
4126 4126
 	}
4127 4127
 }
4128 4128
 
@@ -4140,7 +4140,7 @@  discard block
 block discarded – undo
4140 4140
  *
4141 4141
  * @return bool
4142 4142
  */
4143
-function geodir_sort_by_count( $a, $b ) {
4143
+function geodir_sort_by_count($a, $b) {
4144 4144
 	return $a['count'] < $b['count'];
4145 4145
 }
4146 4146
 
@@ -4155,7 +4155,7 @@  discard block
 block discarded – undo
4155 4155
  *
4156 4156
  * @return bool
4157 4157
  */
4158
-function geodir_sort_by_count_obj( $a, $b ) {
4158
+function geodir_sort_by_count_obj($a, $b) {
4159 4159
 	return $a->count < $b->count;
4160 4160
 }
4161 4161
 
@@ -4170,7 +4170,7 @@  discard block
 block discarded – undo
4170 4170
  *
4171 4171
  * @return bool
4172 4172
  */
4173
-function geodir_sort_by_review_count_obj( $a, $b ) {
4173
+function geodir_sort_by_review_count_obj($a, $b) {
4174 4174
 	return $a->review_count < $b->review_count;
4175 4175
 }
4176 4176
 
@@ -4187,35 +4187,35 @@  discard block
 block discarded – undo
4187 4187
 	 * @since   1.4.2
4188 4188
 	 * @package GeoDirectory
4189 4189
 	 */
4190
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4190
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4191 4191
 
4192
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4193
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4192
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4193
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4194 4194
 
4195 4195
 	/**
4196 4196
 	 * Define language constants.
4197 4197
 	 *
4198 4198
 	 * @since 1.0.0
4199 4199
 	 */
4200
-	require_once( geodir_plugin_path() . '/language.php' );
4200
+	require_once(geodir_plugin_path().'/language.php');
4201 4201
 
4202
-	$language_file = geodir_plugin_path() . '/db-language.php';
4202
+	$language_file = geodir_plugin_path().'/db-language.php';
4203 4203
 
4204 4204
 	// Load language string file if not created yet
4205
-	if ( ! file_exists( $language_file ) ) {
4205
+	if (!file_exists($language_file)) {
4206 4206
 		geodirectory_load_db_language();
4207 4207
 	}
4208 4208
 
4209
-	if ( file_exists( $language_file ) ) {
4209
+	if (file_exists($language_file)) {
4210 4210
 		/**
4211 4211
 		 * Language strings from database.
4212 4212
 		 *
4213 4213
 		 * @since 1.4.2
4214 4214
 		 */
4215 4215
 		try {
4216
-			require_once( $language_file );
4217
-		} catch ( Exception $e ) {
4218
-			error_log( 'Language Error: ' . $e->getMessage() );
4216
+			require_once($language_file);
4217
+		} catch (Exception $e) {
4218
+			error_log('Language Error: '.$e->getMessage());
4219 4219
 		}
4220 4220
 	}
4221 4221
 }
@@ -4232,19 +4232,19 @@  discard block
 block discarded – undo
4232 4232
  */
4233 4233
 function geodirectory_load_db_language() {
4234 4234
 	global $wp_filesystem;
4235
-	if ( empty( $wp_filesystem ) ) {
4236
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4235
+	if (empty($wp_filesystem)) {
4236
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4237 4237
 		WP_Filesystem();
4238 4238
 		global $wp_filesystem;
4239 4239
 	}
4240 4240
 
4241
-	$language_file = geodir_plugin_path() . '/db-language.php';
4241
+	$language_file = geodir_plugin_path().'/db-language.php';
4242 4242
 
4243
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4243
+	if (is_file($language_file) && !is_writable($language_file)) {
4244 4244
 		return false;
4245 4245
 	} // Not possible to create.
4246 4246
 
4247
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4247
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4248 4248
 		return false;
4249 4249
 	} // Not possible to create.
4250 4250
 
@@ -4258,9 +4258,9 @@  discard block
 block discarded – undo
4258 4258
 	 *
4259 4259
 	 * @param array $contents_strings Array of strings.
4260 4260
 	 */
4261
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4261
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4262 4262
 
4263
-	$contents_strings = array_unique( $contents_strings );
4263
+	$contents_strings = array_unique($contents_strings);
4264 4264
 
4265 4265
 	$contents_head   = array();
4266 4266
 	$contents_head[] = "<?php";
@@ -4277,21 +4277,21 @@  discard block
 block discarded – undo
4277 4277
 	$contents_foot[] = "";
4278 4278
 	$contents_foot[] = "";
4279 4279
 
4280
-	$contents = implode( PHP_EOL, $contents_head );
4280
+	$contents = implode(PHP_EOL, $contents_head);
4281 4281
 
4282
-	if ( ! empty( $contents_strings ) ) {
4283
-		foreach ( $contents_strings as $string ) {
4284
-			if ( is_scalar( $string ) && $string != '' ) {
4285
-				$string = str_replace( "'", "\'", $string );
4286
-				geodir_wpml_register_string( $string );
4287
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4282
+	if (!empty($contents_strings)) {
4283
+		foreach ($contents_strings as $string) {
4284
+			if (is_scalar($string) && $string != '') {
4285
+				$string = str_replace("'", "\'", $string);
4286
+				geodir_wpml_register_string($string);
4287
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4288 4288
 			}
4289 4289
 		}
4290 4290
 	}
4291 4291
 
4292
-	$contents .= implode( PHP_EOL, $contents_foot );
4292
+	$contents .= implode(PHP_EOL, $contents_foot);
4293 4293
 
4294
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4294
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4295 4295
 		return false;
4296 4296
 	} // Failure; could not write file.
4297 4297
 
@@ -4312,49 +4312,49 @@  discard block
 block discarded – undo
4312 4312
  *
4313 4313
  * @return array Translation texts.
4314 4314
  */
4315
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4315
+function geodir_load_custom_field_translation($translation_texts = array()) {
4316 4316
 	global $wpdb;
4317 4317
 
4318 4318
 	// Custom fields table
4319
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4320
-	$rows = $wpdb->get_results( $sql );
4319
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4320
+	$rows = $wpdb->get_results($sql);
4321 4321
 
4322
-	if ( ! empty( $rows ) ) {
4323
-		foreach ( $rows as $row ) {
4324
-			if ( ! empty( $row->admin_title ) ) {
4325
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4322
+	if (!empty($rows)) {
4323
+		foreach ($rows as $row) {
4324
+			if (!empty($row->admin_title)) {
4325
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4326 4326
 			}
4327 4327
 
4328
-			if ( ! empty( $row->admin_desc ) ) {
4329
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4328
+			if (!empty($row->admin_desc)) {
4329
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4330 4330
 			}
4331 4331
 
4332
-			if ( ! empty( $row->site_title ) ) {
4333
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4332
+			if (!empty($row->site_title)) {
4333
+				$translation_texts[] = stripslashes_deep($row->site_title);
4334 4334
 			}
4335 4335
 
4336
-			if ( ! empty( $row->clabels ) ) {
4337
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4336
+			if (!empty($row->clabels)) {
4337
+				$translation_texts[] = stripslashes_deep($row->clabels);
4338 4338
 			}
4339 4339
 
4340
-			if ( ! empty( $row->required_msg ) ) {
4341
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4340
+			if (!empty($row->required_msg)) {
4341
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4342 4342
 			}
4343 4343
             
4344
-			if ( ! empty( $row->validation_msg ) ) {
4345
-				$translation_texts[] = stripslashes_deep( $row->validation_msg );
4344
+			if (!empty($row->validation_msg)) {
4345
+				$translation_texts[] = stripslashes_deep($row->validation_msg);
4346 4346
 			}
4347 4347
 
4348
-			if ( ! empty( $row->default_value ) ) {
4349
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4348
+			if (!empty($row->default_value)) {
4349
+				$translation_texts[] = stripslashes_deep($row->default_value);
4350 4350
 			}
4351 4351
 
4352
-			if ( ! empty( $row->option_values ) ) {
4353
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4352
+			if (!empty($row->option_values)) {
4353
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4354 4354
 
4355
-				if ( ! empty( $option_values ) ) {
4356
-					foreach ( $option_values as $option_value ) {
4357
-						if ( ! empty( $option_value['label'] ) ) {
4355
+				if (!empty($option_values)) {
4356
+					foreach ($option_values as $option_value) {
4357
+						if (!empty($option_value['label'])) {
4358 4358
 							$translation_texts[] = $option_value['label'];
4359 4359
 						}
4360 4360
 					}
@@ -4364,56 +4364,56 @@  discard block
 block discarded – undo
4364 4364
 	}
4365 4365
 
4366 4366
 	// Custom sorting fields table
4367
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4368
-	$rows = $wpdb->get_results( $sql );
4367
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4368
+	$rows = $wpdb->get_results($sql);
4369 4369
 
4370
-	if ( ! empty( $rows ) ) {
4371
-		foreach ( $rows as $row ) {
4372
-			if ( ! empty( $row->site_title ) ) {
4373
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4370
+	if (!empty($rows)) {
4371
+		foreach ($rows as $row) {
4372
+			if (!empty($row->site_title)) {
4373
+				$translation_texts[] = stripslashes_deep($row->site_title);
4374 4374
 			}
4375 4375
 
4376
-			if ( ! empty( $row->asc_title ) ) {
4377
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4376
+			if (!empty($row->asc_title)) {
4377
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4378 4378
 			}
4379 4379
 
4380
-			if ( ! empty( $row->desc_title ) ) {
4381
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4380
+			if (!empty($row->desc_title)) {
4381
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4382 4382
 			}
4383 4383
 		}
4384 4384
 	}
4385 4385
 
4386 4386
 	// Advance search filter fields table
4387
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4388
-		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4389
-		$rows = $wpdb->get_results( $sql );
4390
-
4391
-		if ( ! empty( $rows ) ) {
4392
-			foreach ( $rows as $row ) {
4393
-				if ( ! empty( $row->field_site_name ) ) {
4394
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4387
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4388
+		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4389
+		$rows = $wpdb->get_results($sql);
4390
+
4391
+		if (!empty($rows)) {
4392
+			foreach ($rows as $row) {
4393
+				if (!empty($row->field_site_name)) {
4394
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4395 4395
 				}
4396 4396
 
4397
-				if ( ! empty( $row->front_search_title ) ) {
4398
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4397
+				if (!empty($row->front_search_title)) {
4398
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4399 4399
 				}
4400 4400
 
4401
-				if ( ! empty( $row->first_search_text ) ) {
4402
-					$translation_texts[] = stripslashes_deep( $row->first_search_text );
4401
+				if (!empty($row->first_search_text)) {
4402
+					$translation_texts[] = stripslashes_deep($row->first_search_text);
4403 4403
 				}
4404 4404
 
4405
-				if ( ! empty( $row->last_search_text ) ) {
4406
-					$translation_texts[] = stripslashes_deep( $row->last_search_text );
4405
+				if (!empty($row->last_search_text)) {
4406
+					$translation_texts[] = stripslashes_deep($row->last_search_text);
4407 4407
 				}
4408 4408
 
4409
-				if ( ! empty( $row->field_desc ) ) {
4410
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4409
+				if (!empty($row->field_desc)) {
4410
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4411 4411
 				}
4412 4412
 			}
4413 4413
 		}
4414 4414
 	}
4415 4415
 
4416
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4416
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4417 4417
 
4418 4418
 	return $translation_texts;
4419 4419
 }
@@ -4435,7 +4435,7 @@  discard block
 block discarded – undo
4435 4435
 	 *
4436 4436
 	 * @param array $geodir_allowed_mime_types and file extensions.
4437 4437
 	 */
4438
-	return apply_filters( 'geodir_allowed_mime_types', array(
4438
+	return apply_filters('geodir_allowed_mime_types', array(
4439 4439
 			'Image'       => array( // Image formats.
4440 4440
 				'jpg'  => 'image/jpeg',
4441 4441
 				'jpe'  => 'image/jpeg',
@@ -4503,18 +4503,18 @@  discard block
 block discarded – undo
4503 4503
  *
4504 4504
  * @return string User display name.
4505 4505
  */
4506
-function geodir_get_client_name( $user_id ) {
4506
+function geodir_get_client_name($user_id) {
4507 4507
 	$client_name = '';
4508 4508
 
4509
-	$user_data = get_userdata( $user_id );
4509
+	$user_data = get_userdata($user_id);
4510 4510
 
4511
-	if ( ! empty( $user_data ) ) {
4512
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4513
-			$client_name = trim( $user_data->display_name );
4514
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4515
-			$client_name = trim( $user_data->user_nicename );
4511
+	if (!empty($user_data)) {
4512
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4513
+			$client_name = trim($user_data->display_name);
4514
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4515
+			$client_name = trim($user_data->user_nicename);
4516 4516
 		} else {
4517
-			$client_name = trim( $user_data->user_login );
4517
+			$client_name = trim($user_data->user_login);
4518 4518
 		}
4519 4519
 	}
4520 4520
 
@@ -4522,17 +4522,17 @@  discard block
 block discarded – undo
4522 4522
 }
4523 4523
 
4524 4524
 
4525
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4525
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4526 4526
 /*
4527 4527
  * Add location variables to wpseo replacements.
4528 4528
  *
4529 4529
  * @since 1.5.4
4530 4530
  */
4531
-function geodir_wpseo_replacements( $vars ) {
4531
+function geodir_wpseo_replacements($vars) {
4532 4532
 
4533 4533
 	// location variables
4534 4534
 	$gd_post_type   = geodir_get_current_posttype();
4535
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4535
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4536 4536
 	/**
4537 4537
 	 * Filter the title variables location variables array
4538 4538
 	 *
@@ -4542,7 +4542,7 @@  discard block
 block discarded – undo
4542 4542
 	 * @param array $location_array The array of location variables.
4543 4543
 	 * @param array $vars           The page title variables.
4544 4544
 	 */
4545
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4545
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4546 4546
 
4547 4547
 
4548 4548
 	$location_replace_vars = geodir_location_replace_vars($location_array, NULL, '');
@@ -4557,13 +4557,13 @@  discard block
 block discarded – undo
4557 4557
 	 * @param string $vars          The title with variables.
4558 4558
 	 * @param array $location_array The array of location variables.
4559 4559
 	 */
4560
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4560
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4561 4561
 }
4562 4562
 
4563 4563
 
4564
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4565
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4566
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4564
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4565
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4566
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4567 4567
 
4568 4568
 /**
4569 4569
  * Filter the title variables.
@@ -4605,14 +4605,14 @@  discard block
 block discarded – undo
4605 4605
  *
4606 4606
  * @return string Title after filtered variables.
4607 4607
  */
4608
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4608
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4609 4609
 	global $wp, $post;
4610 4610
 
4611
-	if ( ! $gd_page || ! $title ) {
4611
+	if (!$gd_page || !$title) {
4612 4612
 		return $title; // if no a GD page then bail.
4613 4613
 	}
4614 4614
 
4615
-	if ( $sep == '' ) {
4615
+	if ($sep == '') {
4616 4616
 		/**
4617 4617
 		 * Filter the page title separator.
4618 4618
 		 *
@@ -4621,100 +4621,100 @@  discard block
 block discarded – undo
4621 4621
 		 *
4622 4622
 		 * @param string $sep The separator, default: `|`.
4623 4623
 		 */
4624
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4624
+		$sep = apply_filters('geodir_page_title_separator', '|');
4625 4625
 	}
4626 4626
 
4627
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4628
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4627
+	if (strpos($title, '%%title%%') !== false) {
4628
+		$title = str_replace("%%title%%", $post->post_title, $title);
4629 4629
 	}
4630 4630
 
4631
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4632
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4631
+	if (strpos($title, '%%sitename%%') !== false) {
4632
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4633 4633
 	}
4634 4634
 
4635
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4636
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4635
+	if (strpos($title, '%%sitedesc%%') !== false) {
4636
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4637 4637
 	}
4638 4638
 
4639
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4640
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4639
+	if (strpos($title, '%%excerpt%%') !== false) {
4640
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4641 4641
 	}
4642 4642
 
4643
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4644
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4645
-	} else if ( $gd_page == 'add-listing' ) {
4646
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4647
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4648
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4643
+	if ($gd_page == 'search' || $gd_page == 'author') {
4644
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4645
+	} else if ($gd_page == 'add-listing') {
4646
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4647
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4648
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4649 4649
 		$post_type = $post->post_type;
4650 4650
 	} else {
4651
-		$post_type = get_query_var( 'post_type' );
4651
+		$post_type = get_query_var('post_type');
4652 4652
 	}
4653 4653
 
4654
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4654
+	if (strpos($title, '%%pt_single%%') !== false) {
4655 4655
 		$singular_name = '';
4656
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4657
-			$singular_name = __( $singular_name, 'geodirectory' );
4656
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4657
+			$singular_name = __($singular_name, 'geodirectory');
4658 4658
 		}
4659 4659
 
4660
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4660
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4661 4661
 	}
4662 4662
 
4663
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4663
+	if (strpos($title, '%%pt_plural%%') !== false) {
4664 4664
 		$plural_name = '';
4665
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4666
-			$plural_name = __( $plural_name, 'geodirectory' );
4665
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4666
+			$plural_name = __($plural_name, 'geodirectory');
4667 4667
 		}
4668 4668
 
4669
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4669
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4670 4670
 	}
4671 4671
 
4672
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4672
+	if (strpos($title, '%%category%%') !== false) {
4673 4673
 		$cat_name = '';
4674 4674
 
4675
-		if ( $gd_page == 'detail' ) {
4676
-			if ( $post->default_category ) {
4677
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4678
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4675
+		if ($gd_page == 'detail') {
4676
+			if ($post->default_category) {
4677
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4678
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4679 4679
 			}
4680
-		} else if ( $gd_page == 'listing' ) {
4680
+		} else if ($gd_page == 'listing') {
4681 4681
 			$queried_object = get_queried_object();
4682
-			if ( isset( $queried_object->name ) ) {
4682
+			if (isset($queried_object->name)) {
4683 4683
 				$cat_name = $queried_object->name;
4684 4684
 			}
4685 4685
 		}
4686
-		$title = str_replace( "%%category%%", $cat_name, $title );
4686
+		$title = str_replace("%%category%%", $cat_name, $title);
4687 4687
 	}
4688 4688
 
4689
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4689
+	if (strpos($title, '%%tag%%') !== false) {
4690 4690
 		$cat_name = '';
4691 4691
 
4692
-		if ( $gd_page == 'detail' ) {
4693
-			if ( $post->default_category ) {
4694
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4695
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4692
+		if ($gd_page == 'detail') {
4693
+			if ($post->default_category) {
4694
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4695
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4696 4696
 			}
4697
-		} else if ( $gd_page == 'listing' ) {
4697
+		} else if ($gd_page == 'listing') {
4698 4698
 			$queried_object = get_queried_object();
4699
-			if ( isset( $queried_object->name ) ) {
4699
+			if (isset($queried_object->name)) {
4700 4700
 				$cat_name = $queried_object->name;
4701 4701
 			}
4702 4702
 		}
4703
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4703
+		$title = str_replace("%%tag%%", $cat_name, $title);
4704 4704
 	}
4705 4705
 
4706
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4707
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4708
-		$title = str_replace( "%%id%%", $ID, $title );
4706
+	if (strpos($title, '%%id%%') !== false) {
4707
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4708
+		$title = str_replace("%%id%%", $ID, $title);
4709 4709
 	}
4710 4710
 
4711
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4712
-		$title = str_replace( "%%sep%%", $sep, $title );
4711
+	if (strpos($title, '%%sep%%') !== false) {
4712
+		$title = str_replace("%%sep%%", $sep, $title);
4713 4713
 	}
4714 4714
 
4715 4715
 	// location variables
4716 4716
 	$gd_post_type   = geodir_get_current_posttype();
4717
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4717
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4718 4718
 	
4719 4719
 	/**
4720 4720
 	 * Filter the title variables location variables array
@@ -4727,20 +4727,20 @@  discard block
 block discarded – undo
4727 4727
 	 * @param string $gd_page       The page being filtered.
4728 4728
 	 * @param string $sep           The separator, default: `|`.
4729 4729
 	 */
4730
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4730
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4731 4731
 	
4732
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4733
-		if ( get_query_var( 'gd_country_full' ) ) {
4734
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4732
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4733
+		if (get_query_var('gd_country_full')) {
4734
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4735 4735
 		}
4736
-		if ( get_query_var( 'gd_region_full' ) ) {
4737
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4736
+		if (get_query_var('gd_region_full')) {
4737
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4738 4738
 		}
4739
-		if ( get_query_var( 'gd_city_full' ) ) {
4740
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4739
+		if (get_query_var('gd_city_full')) {
4740
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4741 4741
 		}
4742
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4743
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4742
+		if (get_query_var('gd_neighbourhood_full')) {
4743
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4744 4744
 		}
4745 4745
 	}
4746 4746
 	
@@ -4755,57 +4755,57 @@  discard block
 block discarded – undo
4755 4755
 	 * @param string $gd_page       The page being filtered.
4756 4756
 	 * @param string $sep           The separator, default: `|`.
4757 4757
 	 */
4758
-	$title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep );
4758
+	$title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
4759 4759
 	
4760
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4760
+	if (strpos($title, '%%search_term%%') !== false) {
4761 4761
 		$search_term = '';
4762
-		if ( isset( $_REQUEST['s'] ) ) {
4763
-			$search_term = esc_attr( $_REQUEST['s'] );
4762
+		if (isset($_REQUEST['s'])) {
4763
+			$search_term = esc_attr($_REQUEST['s']);
4764 4764
 		}
4765
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4765
+		$title = str_replace("%%search_term%%", $search_term, $title);
4766 4766
 	}
4767 4767
 
4768
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4768
+	if (strpos($title, '%%search_near%%') !== false) {
4769 4769
 		$search_term = '';
4770
-		if ( isset( $_REQUEST['snear'] ) ) {
4771
-			$search_term = esc_attr( $_REQUEST['snear'] );
4770
+		if (isset($_REQUEST['snear'])) {
4771
+			$search_term = esc_attr($_REQUEST['snear']);
4772 4772
 		}
4773
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4773
+		$title = str_replace("%%search_near%%", $search_term, $title);
4774 4774
 	}
4775 4775
 
4776
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4777
-		if ( is_author() ) {
4778
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4776
+	if (strpos($title, '%%name%%') !== false) {
4777
+		if (is_author()) {
4778
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4779 4779
 			$author_name = $curauth->display_name;
4780 4780
 		} else {
4781 4781
 			$author_name = get_the_author();
4782 4782
 		}
4783
-		if ( ! $author_name || $author_name === '' ) {
4783
+		if (!$author_name || $author_name === '') {
4784 4784
 			$queried_object = get_queried_object();
4785 4785
 
4786
-			if ( isset( $queried_object->data->user_nicename ) ) {
4786
+			if (isset($queried_object->data->user_nicename)) {
4787 4787
 				$author_name = $queried_object->data->display_name;
4788 4788
 			}
4789 4789
 		}
4790
-		$title = str_replace( "%%name%%", $author_name, $title );
4790
+		$title = str_replace("%%name%%", $author_name, $title);
4791 4791
 	}
4792 4792
 
4793
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4794
-		$page  = geodir_title_meta_page( $sep );
4795
-		$title = str_replace( "%%page%%", $page, $title );
4793
+	if (strpos($title, '%%page%%') !== false) {
4794
+		$page  = geodir_title_meta_page($sep);
4795
+		$title = str_replace("%%page%%", $page, $title);
4796 4796
 	}
4797
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4797
+	if (strpos($title, '%%pagenumber%%') !== false) {
4798 4798
 		$pagenumber = geodir_title_meta_pagenumber();
4799
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4799
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4800 4800
 	}
4801
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4801
+	if (strpos($title, '%%pagetotal%%') !== false) {
4802 4802
 		$pagetotal = geodir_title_meta_pagetotal();
4803
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4803
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4804 4804
 	}
4805 4805
 
4806
-	$title = wptexturize( $title );
4807
-	$title = convert_chars( $title );
4808
-	$title = esc_html( $title );
4806
+	$title = wptexturize($title);
4807
+	$title = convert_chars($title);
4808
+	$title = esc_html($title);
4809 4809
 
4810 4810
 	/**
4811 4811
 	 * Filter the title variables after standard ones have been filtered.
@@ -4819,7 +4819,7 @@  discard block
 block discarded – undo
4819 4819
 	 * @param string $sep           The separator, default: `|`.
4820 4820
 	 */
4821 4821
 
4822
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4822
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4823 4823
 }
4824 4824
 
4825 4825
 /**
@@ -4832,82 +4832,82 @@  discard block
 block discarded – undo
4832 4832
  *
4833 4833
  * @return array Translation texts.
4834 4834
  */
4835
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4836
-	$gd_post_types = geodir_get_posttypes( 'array' );
4835
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4836
+	$gd_post_types = geodir_get_posttypes('array');
4837 4837
 
4838
-	if ( ! empty( $gd_post_types ) ) {
4839
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4840
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4841
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4842
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4838
+	if (!empty($gd_post_types)) {
4839
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4840
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4841
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4842
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4843 4843
 
4844
-			if ( ! empty( $labels ) ) {
4845
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4844
+			if (!empty($labels)) {
4845
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4846 4846
 					$translation_texts[] = $labels['name'];
4847 4847
 				}
4848
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4848
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4849 4849
 					$translation_texts[] = $labels['singular_name'];
4850 4850
 				}
4851
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4851
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4852 4852
 					$translation_texts[] = $labels['add_new'];
4853 4853
 				}
4854
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4854
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4855 4855
 					$translation_texts[] = $labels['add_new_item'];
4856 4856
 				}
4857
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4857
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4858 4858
 					$translation_texts[] = $labels['edit_item'];
4859 4859
 				}
4860
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4860
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4861 4861
 					$translation_texts[] = $labels['new_item'];
4862 4862
 				}
4863
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4863
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4864 4864
 					$translation_texts[] = $labels['view_item'];
4865 4865
 				}
4866
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4866
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4867 4867
 					$translation_texts[] = $labels['search_items'];
4868 4868
 				}
4869
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4869
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4870 4870
 					$translation_texts[] = $labels['not_found'];
4871 4871
 				}
4872
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4872
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4873 4873
 					$translation_texts[] = $labels['not_found_in_trash'];
4874 4874
 				}
4875
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4875
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4876 4876
 					$translation_texts[] = $labels['label_post_profile'];
4877 4877
 				}
4878
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4878
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4879 4879
 					$translation_texts[] = $labels['label_post_info'];
4880 4880
 				}
4881
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4881
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4882 4882
 					$translation_texts[] = $labels['label_post_images'];
4883 4883
 				}
4884
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4884
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4885 4885
 					$translation_texts[] = $labels['label_post_map'];
4886 4886
 				}
4887
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4887
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4888 4888
 					$translation_texts[] = $labels['label_reviews'];
4889 4889
 				}
4890
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4890
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4891 4891
 					$translation_texts[] = $labels['label_related_listing'];
4892 4892
 				}
4893 4893
 			}
4894 4894
 
4895
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4896
-				$translation_texts[] = normalize_whitespace( $description );
4895
+			if ($description != '' && !in_array($description, $translation_texts)) {
4896
+				$translation_texts[] = normalize_whitespace($description);
4897 4897
 			}
4898 4898
 
4899
-			if ( ! empty( $seo ) ) {
4900
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4901
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4899
+			if (!empty($seo)) {
4900
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4901
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4902 4902
 				}
4903 4903
 
4904
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4905
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4904
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4905
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4906 4906
 				}
4907 4907
 			}
4908 4908
 		}
4909 4909
 	}
4910
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4910
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4911 4911
 
4912 4912
 	return $translation_texts;
4913 4913
 }
@@ -4922,27 +4922,27 @@  discard block
 block discarded – undo
4922 4922
  *
4923 4923
  * @return array Location terms.
4924 4924
  */
4925
-function geodir_remove_location_terms( $location_terms = array() ) {
4926
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
4925
+function geodir_remove_location_terms($location_terms = array()) {
4926
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4927 4927
 
4928
-	if ( ! empty( $location_terms ) && $location_manager ) {
4929
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
4930
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
4928
+	if (!empty($location_terms) && $location_manager) {
4929
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4930
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
4931 4931
 
4932
-		if ( $hide_region_part && $hide_country_part ) {
4933
-			if ( isset( $location_terms['gd_country'] ) ) {
4934
-				unset( $location_terms['gd_country'] );
4932
+		if ($hide_region_part && $hide_country_part) {
4933
+			if (isset($location_terms['gd_country'])) {
4934
+				unset($location_terms['gd_country']);
4935 4935
 			}
4936
-			if ( isset( $location_terms['gd_region'] ) ) {
4937
-				unset( $location_terms['gd_region'] );
4936
+			if (isset($location_terms['gd_region'])) {
4937
+				unset($location_terms['gd_region']);
4938 4938
 			}
4939
-		} else if ( $hide_region_part && ! $hide_country_part ) {
4940
-			if ( isset( $location_terms['gd_region'] ) ) {
4941
-				unset( $location_terms['gd_region'] );
4939
+		} else if ($hide_region_part && !$hide_country_part) {
4940
+			if (isset($location_terms['gd_region'])) {
4941
+				unset($location_terms['gd_region']);
4942 4942
 			}
4943
-		} else if ( ! $hide_region_part && $hide_country_part ) {
4944
-			if ( isset( $location_terms['gd_country'] ) ) {
4945
-				unset( $location_terms['gd_country'] );
4943
+		} else if (!$hide_region_part && $hide_country_part) {
4944
+			if (isset($location_terms['gd_country'])) {
4945
+				unset($location_terms['gd_country']);
4946 4946
 			}
4947 4947
 		}
4948 4948
 	}
@@ -4963,40 +4963,40 @@  discard block
 block discarded – undo
4963 4963
  * @param WP_Post $post Post object.
4964 4964
  * @param bool $update  Whether this is an existing listing being updated or not.
4965 4965
  */
4966
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
4966
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
4967 4967
 	global $gd_notified_edited;
4968 4968
 	
4969
-	if ( ! $update ) {
4969
+	if (!$update) {
4970 4970
 		return;
4971 4971
 	}
4972 4972
 
4973
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
4974
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
4973
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
4974
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
4975 4975
 	$inline_save = $action == 'inline-save' ? true : false;
4976 4976
 
4977
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
4977
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
4978 4978
 		return;
4979 4979
 	}
4980 4980
 
4981
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
4981
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
4982 4982
 		return;
4983 4983
 	}
4984 4984
 
4985 4985
 	$user_id = (int) get_current_user_id();
4986 4986
 
4987
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4988
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
4987
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
4988
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
4989 4989
 
4990
-		if ( $user_id == $author_id && ! is_super_admin() && empty( $gd_notified_edited[$post_ID] ) ) {
4991
-			if ( !empty( $gd_notified_edited ) ) {
4990
+		if ($user_id == $author_id && !is_super_admin() && empty($gd_notified_edited[$post_ID])) {
4991
+			if (!empty($gd_notified_edited)) {
4992 4992
 				$gd_notified_edited = array();
4993 4993
 			}
4994 4994
 			$gd_notified_edited[$post_ID] = true;
4995 4995
 			
4996
-			$from_email   = get_option( 'site_email' );
4996
+			$from_email   = get_option('site_email');
4997 4997
 			$from_name    = get_site_emailName();
4998
-			$to_email     = get_option( 'admin_email' );
4999
-			$to_name      = get_option( 'name' );
4998
+			$to_email     = get_option('admin_email');
4999
+			$to_name      = get_option('name');
5000 5000
 			$message_type = 'listing_edited';
5001 5001
 
5002 5002
 			$notify_edited = true;
@@ -5008,9 +5008,9 @@  discard block
 block discarded – undo
5008 5008
 			 * @param bool $notify_edited Notify on listing edited by author?
5009 5009
 			 * @param object $post        The current post object.
5010 5010
 			 */
5011
-			$notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post );
5011
+			$notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
5012 5012
 
5013
-			geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
5013
+			geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
5014 5014
 		}
5015 5015
 	}
5016 5016
 }
@@ -5025,14 +5025,14 @@  discard block
 block discarded – undo
5025 5025
  *
5026 5026
  * @return string|null The current page start & end numbering.
5027 5027
  */
5028
-function geodir_title_meta_page( $sep ) {
5028
+function geodir_title_meta_page($sep) {
5029 5029
 	$replacement = null;
5030 5030
 
5031
-	$max = geodir_title_meta_pagenumbering( 'max' );
5032
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
5031
+	$max = geodir_title_meta_pagenumbering('max');
5032
+	$nr  = geodir_title_meta_pagenumbering('nr');
5033 5033
 
5034
-	if ( $max > 1 && $nr > 1 ) {
5035
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
5034
+	if ($max > 1 && $nr > 1) {
5035
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
5036 5036
 	}
5037 5037
 
5038 5038
 	return $replacement;
@@ -5049,8 +5049,8 @@  discard block
 block discarded – undo
5049 5049
 function geodir_title_meta_pagenumber() {
5050 5050
 	$replacement = null;
5051 5051
 
5052
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5053
-	if ( isset( $nr ) && $nr > 0 ) {
5052
+	$nr = geodir_title_meta_pagenumbering('nr');
5053
+	if (isset($nr) && $nr > 0) {
5054 5054
 		$replacement = (string) $nr;
5055 5055
 	}
5056 5056
 
@@ -5068,8 +5068,8 @@  discard block
 block discarded – undo
5068 5068
 function geodir_title_meta_pagetotal() {
5069 5069
 	$replacement = null;
5070 5070
 
5071
-	$max = geodir_title_meta_pagenumbering( 'max' );
5072
-	if ( isset( $max ) && $max > 0 ) {
5071
+	$max = geodir_title_meta_pagenumbering('max');
5072
+	if (isset($max) && $max > 0) {
5073 5073
 		$replacement = (string) $max;
5074 5074
 	}
5075 5075
 
@@ -5089,36 +5089,36 @@  discard block
 block discarded – undo
5089 5089
  *
5090 5090
  * @return int|null The current page numbering.
5091 5091
  */
5092
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5092
+function geodir_title_meta_pagenumbering($request = 'nr') {
5093 5093
 	global $wp_query, $post;
5094 5094
 	$max_num_pages = null;
5095 5095
 	$page_number   = null;
5096 5096
 
5097 5097
 	$max_num_pages = 1;
5098 5098
 
5099
-	if ( ! is_singular() ) {
5100
-		$page_number = get_query_var( 'paged' );
5101
-		if ( $page_number === 0 || $page_number === '' ) {
5099
+	if (!is_singular()) {
5100
+		$page_number = get_query_var('paged');
5101
+		if ($page_number === 0 || $page_number === '') {
5102 5102
 			$page_number = 1;
5103 5103
 		}
5104 5104
 
5105
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5105
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5106 5106
 			$max_num_pages = $wp_query->max_num_pages;
5107 5107
 		}
5108 5108
 	} else {
5109
-		$page_number = get_query_var( 'page' );
5110
-		if ( $page_number === 0 || $page_number === '' ) {
5109
+		$page_number = get_query_var('page');
5110
+		if ($page_number === 0 || $page_number === '') {
5111 5111
 			$page_number = 1;
5112 5112
 		}
5113 5113
 
5114
-		if ( isset( $post->post_content ) ) {
5115
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5114
+		if (isset($post->post_content)) {
5115
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5116 5116
 		}
5117 5117
 	}
5118 5118
 
5119 5119
 	$return = null;
5120 5120
 
5121
-	switch ( $request ) {
5121
+	switch ($request) {
5122 5122
 		case 'nr':
5123 5123
 			$return = $page_number;
5124 5124
 			break;
@@ -5139,14 +5139,14 @@  discard block
 block discarded – undo
5139 5139
  *
5140 5140
  * @return array Terms.
5141 5141
  */
5142
-function geodir_filter_empty_terms( $terms ) {
5143
-	if ( empty( $terms ) ) {
5142
+function geodir_filter_empty_terms($terms) {
5143
+	if (empty($terms)) {
5144 5144
 		return $terms;
5145 5145
 	}
5146 5146
 
5147 5147
 	$return = array();
5148
-	foreach ( $terms as $term ) {
5149
-		if ( isset( $term->count ) && $term->count > 0 ) {
5148
+	foreach ($terms as $term) {
5149
+		if (isset($term->count) && $term->count > 0) {
5150 5150
 			$return[] = $term;
5151 5151
 		} else {
5152 5152
 			/**
@@ -5157,7 +5157,7 @@  discard block
 block discarded – undo
5157 5157
 			 * @param array $return The array of terms to return.
5158 5158
 			 * @param object $term  The term object.
5159 5159
 			 */
5160
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5160
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5161 5161
 		}
5162 5162
 	}
5163 5163
 
@@ -5174,15 +5174,15 @@  discard block
 block discarded – undo
5174 5174
  *
5175 5175
  * @return array
5176 5176
  */
5177
-function geodir_remove_hentry( $class ) {
5178
-	if ( geodir_is_page( 'detail' ) ) {
5179
-		$class = array_diff( $class, array( 'hentry' ) );
5177
+function geodir_remove_hentry($class) {
5178
+	if (geodir_is_page('detail')) {
5179
+		$class = array_diff($class, array('hentry'));
5180 5180
 	}
5181 5181
 
5182 5182
 	return $class;
5183 5183
 }
5184 5184
 
5185
-add_filter( 'post_class', 'geodir_remove_hentry' );
5185
+add_filter('post_class', 'geodir_remove_hentry');
5186 5186
 
5187 5187
 /**
5188 5188
  * Registers a individual text string for WPML translation.
@@ -5194,8 +5194,8 @@  discard block
 block discarded – undo
5194 5194
  * @param string $domain The plugin domain. Default geodirectory.
5195 5195
  * @param string $name The name of the string which helps to know what's being translated.
5196 5196
  */
5197
-function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5198
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5197
+function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
5198
+    do_action('wpml_register_single_string', $domain, $name, $string);
5199 5199
 }
5200 5200
 
5201 5201
 /**
@@ -5210,6 +5210,6 @@  discard block
 block discarded – undo
5210 5210
  * @param string $language_code Return the translation in this language. Default is NULL which returns the current language.
5211 5211
  * @return string The translated string.
5212 5212
  */
5213
-function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5214
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5213
+function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
5214
+    return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
5215 5215
 }
5216 5216
\ No newline at end of file
Please login to merge, or discard this patch.