Giri
Forum Replies Created
-
AuthorPosts
-
Check this setting.
Geodirectory > Design > Listings> LISTING GENERAL SETTINGS > New listings settings > Enter number of days a listing will appear new.(enter 0 to disable feature)
This reply has been marked as private.I have checked our code. There is no option available to set default post type in home page search form.
But if you are in a post type page (Ex: yourdomain.com/events) then the current post type will be automatically selected.
Thanks
Hi Jimmy,
Use only this code and nothing else. As paolo advised use code snippets plugin. So you don’t have to worry about the updates.
https://gist.github.com/mistergiri/768694977713a37fa8c6a39390e9914c
Thanks
Hi Colin, I have tried to style the location switcher. But your theme styles are overriding ours styles.
Please take a look at your home page.
While its little bit better than what you had shown in screenshot, its not perfect.
I would advise you to use a GD compatible theme. Themes like kleo, avada are compatible with GD. You can also use our Directory Starter theme.
Thanks
Ok Thanks Belen
I’m glad its solved your issue. Thanks for letting us know
Hey can you give us more detail?
By default detail page images are getting displayed in a lightbox.
So can you tell us which image you are talking about?
Hi there,
It looks like your page broken because of js errors.
We are looking into it.
Thanks
Hi I guess thats because the page fully not loaded yet. There might be some js issue breaking the slider.
Slider uses the same single image for looping.
Can you give me the direct link to that listing?
I couldn’t find it.
Thanks
You are welcome Marina and thanks for the code.
Hi Christina,
Try this code in your child theme’s functions.php file.
add_filter('geodir_details_taxonomies_output', 'geodir_details_taxonomies_output_as_ul', 10, 4); function geodir_details_taxonomies_output_as_ul($taxonomies, $post_type,$listing_label, $listing_label_uc) { if (!geodir_is_page('detail')) { return $taxonomies; } $post_taxonomy = $post_type . 'category'; if (isset($taxonomies[$post_taxonomy])) { $cats = str_replace(__("$listing_label_uc Category:", 'geodirectory'), '', $taxonomies[$post_taxonomy]); $cats = str_replace("</a> and <a", "</a>,<a", $cats); $cats = explode(',', $cats); $output = ""; if ($cats) { $output .= "<ul class='gd_tax_cat_ul'>"; foreach ($cats as $cat) { $output .= "<li>$cat</li>"; } $output .= "</ul>"; } $taxonomies[$post_taxonomy] = $output; } if (isset($taxonomies[$post_type . '_tags'])) { $cats = str_replace(__("$listing_label_uc Tags:", 'geodirectory'), '', $taxonomies[$post_type . '_tags']); $cats = str_replace("</a> and <a", "</a>,<a", $cats); $cats = explode(',', $cats); $output = ""; if ($cats) { $output .= "<ul class='gd_tax_tags_ul'>"; foreach ($cats as $cat) { $output .= "<li>$cat</li>"; } $output .= "</ul>"; } $taxonomies[$post_type . '_tags'] = $output; } return $taxonomies; }
Let me know how that goes.
Thanks
Hi Marina,
Try placing this code in your child theme’s functions.php file.
add_filter('whoop_big_header_show_add_photo_btn', '__return_false');
That would disable the “Add Photo” button
Thanks
Cool. All the best
Hi Chris,
I have explained everything clearly with screenshots in our whoop documentation.
You probably have not read whoop docs.
Start here
https://wpgeodirectory.com/docs/whoop-theme-overview/
Then check here for widgets
https://wpgeodirectory.com/docs/whoop-theme-available-widgets/
If you are planning to use bp compliments with whoop check here
https://wpgeodirectory.com/docs/buddypress-compliments-overview/
Lists documentation can be found here.
https://wpgeodirectory.com/docs/geodirectory-lists-overview/
Let me know if you have any trouble.
Thanks
-
AuthorPosts