Kiran
Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Hi Brandon.
Please check now after clearing your browser cache.
Let us know.
Regards,
KiranThis reply has been marked as private.Hello,
Please follow this documentation to customize map style(for Google & OSM both): https://wpgeodirectory.com/docs-v2/addons/map-styles/
Let us know.
Kiran
This reply has been marked as private.April 23, 2019 at 8:22 am in reply to: GDv2 Upgrade Problem – Database error: [Unknown column 'country' in 'field list' #482241Hello,
After upgrade from GDv1 ot GDv2 I am getting the following failure displayed while add listings process.
Please check now.
Just be informed we are also on the process of working at the dev site to establish the further usage of GT-Vouchers plugin for GDv2.
Some functions are no longer available/depreciated in GeoDirectory v2, so please take of it.
Kiran
This reply has been marked as private.This reply has been marked as private.It is already happening. I clicked in input and it shows me default to 10:00.
Kiran
If you want to remove 00:00 from list then use following snippet, but it will also remove that option from “Ends at”.
function gd_snippet_190422_event_schedule_times( $times ) { if ( isset( $times['00:00'] ) ) { unset( $times['00:00'] ); } return $times; } add_filter( 'geodir_event_schedule_times', 'gd_snippet_190422_event_schedule_times', 10, 1 );Kiran
This reply has been marked as private.Hello,
I checked in database for “Strutture” posts. I found that in wpxn_posts posts it has around 4500 items for gd_place post type, but in wpxn_geodir_gd_place_detail table it has only around 1500 items.
How you created this listings? I have created new listing https://glutenfreeyes.com/wp-admin/post.php?post=12767&action=edit and it exists in both table. It successfully allows to edit and it also updates data.
For the listing which has issue in update has no records available in wpxn_geodir_gd_place_detail table.
Do you have v1 database so we can check old database?
Regards,
KiranThis reply has been marked as private.Hello Beneet,
I have done some debugging and found error “Warning: mysqli_real_escape_string() expects parameter 2 to be string, array given in <b>/xxx/wp-includes/wp-db.php</b> on line 1172”.
This error comes due to conflict with “Indeed Ultimate Membership Pro” plugin.
For the post map it successfully returns the marker data but error mess the json response.In that plugin there is a function ihc_get_post_id_by_cpt_name() which raises error due to 2nd parameter passed as an array.
Please contact plugin developer to get help on this error.
Let us know what they reply.
Kiran
Hello,
There was a jQuery Timepicker conflict with KBoard plugin.
I have added following code snippet in your child theme functions.php to prevent conflict.
/** * Fix jQuery timepicker with KBoard : 게시판 plugin. */ function gd_snippet_220417_kboard_conflict() { global $pagenow; if ( defined( 'KBOARD_VERSION' ) && ( 'edit.php' === $pagenow || 'post.php' === $pagenow || 'post-new.php' == $pagenow ) && wp_script_is( 'geodir-jquery-ui-timepicker', 'enqueued' ) && wp_script_is( 'jquery-timepicker', 'enqueued' ) ) { $screen = get_current_screen(); $screen_id = $screen ? $screen->id : ''; if ( in_array( $screen_id, geodir_get_screen_ids() ) ) { wp_dequeue_script( 'jquery-timepicker' ); wp_dequeue_style( 'jquery-timepicker' ); } } } add_action( 'admin_enqueue_scripts', 'gd_snippet_220417_kboard_conflict', 9999 ); // Backend pagesLet us know.
Regards,
Kiran -
AuthorPosts