Paolo
Forum Replies Created
-
AuthorPosts
-
Hi,
you asked the same exact thing a couple of months ago, am I missing something? https://wpgeodirectory.com/support/topic/style-listing-box-on-homepage-and-map/
Let us know,
Thanks
December 8, 2015 at 7:55 pm in reply to: Custom Field: Multiselect Display Type not saving 1st attempt #62969Hi,
this is a bug and it has been reported to developers to fix it.
Thanks for spotting it.
HI,
there are no options to do such thing. It will require a customization.
Thanks
Hi,
this is super strange, I need to pass it up to the developers though as I can’t find the problem.
Must be something I’m overlooking.We’ll let you know asap.
Thanks
Hi Jan,
I don’t see any difference if I disable GD booster, can you please clarify?
What do you mean by “my site crashes”?
Let us know,
Thanks
Hi,
I just tested here: http://wpgeo.directory/shortcodes/ (down at the bottom)
[gd_cpt_categories post_type=gd_place]
and it shows categories only of the place cpt.
Please provide admin credentials and a link to the page where you see this not working and we will have a look.
Thanks
You are welcome 🙂
Hi,
please provide admin credentials and we will have a look.
Let us know,
Thanks
Hi,
that setting is only for the /location/me/ page (geolocation), not for search.
In this case you are searching in the “Everywhere” location (at least that looks like it) and it is normal that returns any listings from any location, unless you limit the search radius in GeoDiretory >> General >> Search >> Limit squared distance area to X miles (helps improve search speed).
What value do you have in there now?
Let us know,
Thanks
Hi,
in GeoDirectory >> Design >> Navigation >> Allow post type to add from frontend
Events is not selected.
Thanks
Hi,
that is normal, shortcodes work in text widgets only if you add that snippet to functions.php of your theme. Otherwise they only work in pages and posts content. Probably you had a plugin or theme that was adding that by default?
Let us know,
Hi,
1) we took inspiration from trip advisor where you can give an overall and then also rate individual rating criterias.2) By reading these 2 posts you should be able to figure it out:
https://wpgeodirectory.com/re-order-tabs-in-a-listing-detail-page/
https://wpgeodirectory.com/remove-tabs/With the 1st article you will get an idea of how to remove the review tab. (by just removing it from the array), than you can add it back with a hook. For example:
remove_action( 'geodir_details_main_content', 'geodir_show_detail_page_tabs',60); add_action( 'geodir_details_main_content', 'move_comments_template',35); function move_comments_template(){ global $post; comments_template(); }Let us know how you went,
Thanks
Hi,
login_frm and reg_frm.php templates can’t be moved in a child theme for editing. They are included in the template geodir-signup.php via this action :
do_action('geodir_signup_forms');The best way to do what you need to do would be this:
In your child theme functions.php Remove the action calling the original function that includes the forms:
remove_action('geodir_signup_forms', 'geodir_action_signup_forms', 10);Copy the function geodir_action_signup_forms from geodirectory_template_actions.php, paste it in your child theme functions.php and rename it to :
my_geodir_action_signup_formsNow you can modify the function as you wish, you can even make it include customized login_frm and reg_frm.php templates taken from your child theme.
Least, add a new action to call your customized function:
add_action('geodir_signup_forms', 'my_geodir_action_signup_forms', 10);Let me know if this helped,
Thanks
You are welcome 🙂
You are welcome 🙂
-
AuthorPosts