Kiran
Forum Replies Created
-
AuthorPosts
-
July 29, 2019 at 1:48 pm in reply to: There is no list of regions in the administrative part of the non-main language #500137This reply has been marked as private.July 29, 2019 at 1:43 pm in reply to: There is no list of regions in the administrative part of the non-main language #500135This reply has been marked as private.
Hello,
PHP snippet can be executed via plugin. There are many free plugins available on WordPress. Ex: https://wordpress.org/plugins/code-snippets/
See for more info: https://wpgeodirectory.com/docs/useful-plugins/#snippets
Kiran
July 29, 2019 at 1:28 pm in reply to: There is no list of regions in the administrative part of the non-main language #500131This reply has been marked as private.Hi Timothy,
It look like FB Connect APP is not successful. On successful connect app it shows “Refresh Access Token” instead of “FB Connect APP”.
Please try again and let us know if you still see issue, we will check.
Kiran
Hi Matthew,
Please check and let us know.
Kiran
Thanks for letting us know.
Kiran
July 29, 2019 at 12:45 pm in reply to: There is no list of regions in the administrative part of the non-main language #500119This reply has been marked as private.July 29, 2019 at 12:23 pm in reply to: There is no list of regions in the administrative part of the non-main language #500115Hi Alexander,
This has been fixed and it will be in next release of Location Manager.
Provide us FTP credentials if you want me to apply patch on your site.
Thanks for spotting.
Regards,
KiranHi,
I have done some debugging and found following database error.
WordPress database error Column 'post_category' in field list is ambiguous for queryIt looks like any plugin/theme has added database column ‘post_category’ to WordPress core xxx_posts table. It should avoid modifying structure of the WordPress core tables, otherwise it may create troubles like this.
I have added snippet (Snippets > GeoDirectory: Fix CSV export issue) to prevent error during export by adding alias to ‘post_category’.
Let us know.
Thanks,
KiranHello Masoud,
This is a JavaScript error on that page that breaking image lazy loading.
TypeError: jQuery(...).gdunveil is not a functionI checked page view source and found there are two jQuery JavaScript loaded of two different versions are loaded. One via WordPress core and another via theme /themes/Divi-SlothGeeks-Theme/assets/js/jquery-1.12.0.min.js. WordPress is loading own JQuery v1.12.4, so no need to load jQuery again.
Please try to remove line
wp_enqueue_script( 'dct-carousel-jquery', get_stylesheet_directory_uri() . '/assets/js/jquery-1.12.0.min.js', array( 'jquery' ), '', true );from child theme functions.php.
Let us know how it goes. If you still see issue then provide us FTP credentials to check more.
Regards,
KiranHello Yael,
Currently package description is not displayed on frontend.
We have reasons to add package description field in add/edit package form.
– In past customers asked for field to use package description for customization.
– In future it can be used in pricing table.Thanks,
KiranHello There,
It looks like timezone issue. What timezone you have on your system?
Kiran
Hi Timothy,
I have added following PHP snippet at “Snippets > GeoDirectory: add listing map controls” to manage map controls.
/** * Filter the add listing map arguments. */ function gd_snippet_190729_template_render_map_js_params() { $screen = function_exists( 'get_current_screen' ) ? get_current_screen() : NULL; $screen_id = $screen ? $screen->id : ''; if ( ! ( $screen_id && geodir_is_gd_post_type( $screen_id ) || geodir_is_page( 'add-listing' ) ) ) { return; } $params = array(); //$params[] = "maptype: 'ROADMAP'"; // Map type (ex: HYBRID, ROADMAP, SATELLITE, TERRAIN) //$params[] = "zoom: 10"; // Default zoom (ex: 12). $params[] = "scrollwheel: false"; // Mouse scroll (ex: true or false). //$params[] = "streetViewControl: false"; // Street view control (ex: true or false). if ( ! empty( $params ) ) { echo implode( ',', $params ) . ','; } } add_filter( 'geodir_template_render_map_js_params', 'gd_snippet_190729_template_render_map_js_params' , 20, 1 );Please check and let us know.
Regards,
KiranThis reply has been marked as private. -
AuthorPosts