Kiran
Forum Replies Created
-
AuthorPosts
-
December 4, 2018 at 2:20 pm in reply to: GD Output Location Shortcut bug on GD Listings Page Template #457083
Hello,
One categories printed by [gd_single_taxonomies] & another category printed by [gd_output_location].
Either remove [gd_single_taxonomies] or disable categories from detail page sidebar.Kiran
This reply has been marked as private.Hello,
Option added in GD Listings shortcode/widget to filter listing by author. It will be in next release.
Here is patch: https://github.com/AyeCode/geodirectory/pull/523/commits/02b66134f96ca534e0b847bc627099f984a0c170
current_user – Filters the listings by author id of the logged in user.
current_author – Filters the listings by author id of current viewing post/listing.
ID (ex:11): Filters the listings by author id = 11.
Leave blank to show posts from all authors.Kiran
Hello,
When you add a listing it says “Post has been submitted, you need to complete checkout to make it live, you can preview it here”. Can we make it so that the here bit opens a new window? The problem is at the moment when you click here there is no way for the user to go back to actually complete the checkout.
This has been fixed and it will be in next release of Pricing Manager.
Kiran
Hi anders,
Listing detail page and listing archive page has different url structures. You should click on category from detail page or from breadcrumb(if exists on page) to filter the listings in current listing’s location.
Kiran
December 4, 2018 at 11:50 am in reply to: GeoDirectory does not have access to your filesystem #457042Hello Eric,
This happens when it does not have access to WP file system. Please follow instructions given at the link posted by Guust.
It helped customers in past. See https://wpgeodirectory.com/support/topic/error-geodirectory-clean-install/#post-358652 &
https://wpgeodirectory.com/support/topic/geodirectory-does-not-have-access-to-your-filesystem-2/#post-430850Kiran
December 4, 2018 at 9:30 am in reply to: Map not displayed on search page and search not working #457017This reply has been marked as private.Hi Kenneth,
In next version we have added font-awesome setting to prevent conflict between font-awesome v4 & v5. Currently it is on development version and not released yet. If you have staging site then you have upload development version there to confirm.
If this not works then we will find some solution.Let us know.
Thanks,
KiranHello,
Apply lower priority to the sorting filter.
1) Use following filter
add_filter( 'geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend', 999, 1 ) ;instead of
add_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend') ;2) Add following lines in the tab ordering snippet after post_profile lines.
if (isset($tab_array['event_schedule'])) { $new_tab_array['event_schedule'] = $tab_array['event_schedule']; $new_tab_array['event_schedule']['is_active_tab']='1'; unset($tab_array['event_schedule']); }I tried this on my tests site and it worked fine.
Thanks,
KiranHello Lise,
I have tested with one demo user & with demo testing. I successfully received claim listing verification email at my gmail account.
Please try with another email address.Let us know.
Thanks,
KiranDecember 4, 2018 at 7:55 am in reply to: Default Map Center on Home Page with Multi Location #456996Hello Susan,
Map center calculated by Google map bounds function, so all markers covered on the map.
You can use following code snippet to set own custom map center(Replace MAP_CANVAS_NAME to respective canvas name used).
function gd_snippet_map_options_home_map( $args = array() ) { $args['enable_marker_cluster_no_reposition'] = true; // Don't reposition after load $args['autozoom'] = false; // Disable auto-zoom to set custom map center $args['zoom'] = 2; // Default zoom $args['latitude'] = 48.858372; // Default latitude $args['longitude'] = 2.294481; // Default longitude return $args; } add_filter ('geodir_map_options_MAP_CANVAS_NAME', 'gd_snippet_map_options_home_map', 10, 1 ); // Replace MAP_CANVAS_NAME to respective canvas name used. Ex: geodir_map_v3_home_mapThanks,
KiranDecember 4, 2018 at 7:54 am in reply to: GD Output Location Shortcut bug on GD Listings Page Template #456995Hello Derek,
all thats showing up on the live page is the text: “]
In location parameter use value without [ & ]. Ex:
[gd_output_location location="detail"].
I have corrected and added location=”detail” to show sidebar values.I also can’t get the ninja forms to show up in the same way, but the ninja form contact button is blank.
I shortcode you have used post_contact=1 this requires the listing must have “email” field non-empty. Try post_contact=0 to show contact form even listing has email field empty.
Thanks,
KiranDecember 3, 2018 at 2:09 pm in reply to: Can't find feature listing setting in v2 pricing manager #456910Hello Derek,
In v2 we have used custom field to set featured. Only admin have permission to set/unset featured.
We have added to manage it via package as well. But this will be available in next release of Pricing Manager. So from next release it will set featured listing if package allows it.
Kiran
December 3, 2018 at 10:19 am in reply to: Unable to add listings – no listing + no invoice created #456888This reply has been marked as private.Hello,
This has been fixed, fix will be available in next release.
I have updated patch on your site so on your issue is fixed.
Update following patch if you want to fix on other sites before next release. https://github.com/AyeCode/geodirectory/commit/fbb7a7a635610ca9e9e32c4925270ae84e79d489Kiran
-
AuthorPosts