Kiran
Forum Replies Created
-
AuthorPosts
-
Make sure all data are correct and post type exists. Please attach csv file in zip format so we can review csv file.
Kiran
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.Hello,
In add listing page when form finds field updated it makes request to save data via AJAX. It follows WordPress revision system.
When page refreshed or left before submit, it shows saved revision post when going to add listing again. If there is post revision saved then it will show message about revision(remove changes…).
For more details about revisions/autosaves see https://wordpress.org/support/article/revisions/
For Rest API with post revisions see https://developer.wordpress.org/rest-api/reference/post-revisions/
Kiran
Hello There,
Admin credentials are no longer working, did you changed?
Please provide FTP credentials as well, in case it require to do debugging.
Kiran
This reply has been marked as private.Hello,
You can continue with this site. If you find any issue just let us know.
For English site not sure actual reason. I just done few things.
– re-save category
– re-save permalinks
– run tool “Clear DB version” from GeoDirectory > Settings > Status > Tools
etcFor other site i have first switched theme to Directory Starter, because Whoop is supported in GeoDirectory v1. Whoop for GeoDirectory v2 is under development.
Please set widgets that you want. I just set basic widget like Dashboard, Recent Reviews etc.
Let us know.
Kiran
Hello There,
I have checked and it worked for me. I can’t replicate issue (see attachment).
Let us know.
Kiran
This reply has been marked as private.Hi Nicolas,
This has been fixed.
You have assigned Location page as a front page, which is incorrect. Location page should not be set as a front page.
I have set Settings > Reading > Home page as a front page.
Kiran
Hi Craig,
There was a conflict with select2 JavaScript library. I have added following PHP code snippet in supreme-directory theme functions.php file.
Now issue has been solved./** * Fix select2 conflict with GeoDirectory & Post Grid (post-grid) plugin. */ function gd_snippet_190509_post_grid_select2_conflict() { $screen = get_current_screen(); $screen_id = $screen ? $screen->id : ''; if ( wp_script_is( 'select2', 'enqueued' ) && wp_script_is( 'select2.min', 'enqueued' ) ) { if ( $screen_id && in_array( $screen_id, geodir_get_screen_ids() ) ) { wp_dequeue_script( 'select2.min' ); // Dequeue Post Grid select2 on GD pages wp_dequeue_script( 'post_grid_admin_js' ); } else { wp_dequeue_script( 'select2' ); // Dequeue GD select2 on non-GD pages } } if ( wp_style_is( 'select2', 'enqueued' ) && wp_style_is( 'select2.min', 'enqueued' ) ) { if ( $screen_id && in_array( $screen_id, geodir_get_screen_ids() ) ) { wp_dequeue_style( 'select2.min' ); // Dequeue Post Grid select2 on GD pages } else { wp_dequeue_style( 'select2' ); // Dequeue GD select2 on non-GD pages } } } add_action( 'admin_enqueue_scripts', 'gd_snippet_190509_post_grid_select2_conflict', 100 );Please check and let us know.
Regards,
KiranThis reply has been marked as private.This reply has been marked as private.This reply has been marked as private. -
AuthorPosts