admin issues
This topic contains 14 replies, has 4 voices, and was last updated by Guust 6 years, 10 months ago.
We have moved to a support ticketing system and our forums are now closed.
Open Support TicketTagged: admin
-
AuthorPosts
-
December 12, 2017 at 9:47 pm #409283
From the developer:
I uninstalled the framework, including removing all of the data, and now it won’t reinstall. Does that mean that I have to remove all data and all of the third party add ons? That would be an absolute nightmare, we would have to reconfigure everything! All because of the upgrade we did a few weeks ago. Is there a way to fix the admin without uninstalling and reinstalling everything? We are loosing too much time and data doing that, and it’s not an efficient answer. Can the admin files be fixed without rebuilding all of it? it looks like an admin style sheet issue…I honestly don’t know. it could be another aspect affecting it.
Is this something Geodirectory can fix for us?
Please let me know.
Thank youDecember 12, 2017 at 11:32 pm #409293The issue you describe at https://wpgeodirectory.com/support/topic/admin-issues is because there is a conflict with another plugin. If you post your URL and WP admin details we will check it out.
You should de-activate all dependent plugins first, before de-activating a core plugin.
If you delete data, you will loose all listings.Thanks
December 12, 2017 at 11:38 pm #409294This reply has been marked as private.December 13, 2017 at 1:17 am #409296This reply has been marked as private.December 13, 2017 at 5:12 am #409306Hi Kathy,
There is a jQuery Chosen javascript causing conflicts and breaking settings page.
Let us provide FTP credentials so we can look into more and fix it.
Kiran
December 13, 2017 at 7:41 am #409321This reply has been marked as private.December 13, 2017 at 10:17 am #409336Hi Kathy,
The jQuery Chosen loaded via WP Editor plugin causing conflicts with GeoDirectory jQuery Chosen.
Please add following code snippet in your theme functions.php or via any snippet plugin. This snippet will fix the conflict.function _gd_custom_fix_chosen_conflict() { if ( defined( 'GEODIRECTORY_VERSION' ) && is_admin() && wp_script_is( 'geodirectory-choose-ajax', 'enqueued' ) && wp_script_is( 'chosen', 'enqueued' ) ) { wp_deregister_script( 'chosen' ); wp_register_script( 'chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array( 'jquery' ), GEODIRECTORY_VERSION ); wp_enqueue_script( 'chosen' ); } } add_action( 'admin_print_styles', '_gd_custom_fix_chosen_conflict', 1000 );
Thanks,
KiranDecember 13, 2017 at 9:47 pm #409442This reply has been marked as private.December 13, 2017 at 10:41 pm #409451Just a note: I use WP edit on a number of GD sites without any problem at all. So it may be a WP Edit setting or something else.
Have you tried https://wpgeodirectory.com/docs/useful-plugins/#snippets
I will leave the rest to Kiran.
Thanks
December 14, 2017 at 6:17 am #409493Hi Kathy,
The bad news is that WordPress kept saying that there was a code error and wouldn’t accept their snippet. Specifically it said that the two closing brackets were unexpected, but of course removing them breaks the code and it wouldn’t accept that either.
Please, can you tell us what code error it shows after adding my code snippet? I have tested that code snippet putting in your theme functions.php and after seen it worked fine i passed snippet to you.
In case if there is any an error, let us know so we can assist you to fix it.If you allow me i will add snippet in your theme functions.php file. 🙂
Let us know.
Thanks,
KiranDecember 14, 2017 at 6:51 pm #409570This reply has been marked as private.December 15, 2017 at 4:02 am #409624Hello!
You can try the Code Snippets plugin if you like. Most of our members don’t use child themes.
https://wpgeodirectory.com/docs/useful-plugins/#snippets
Thanks
December 17, 2017 at 8:59 am #409793We are not using a child theme.
December 17, 2017 at 9:42 am #409794I have added the code using Code Snippets plugin and all seems to be working.
Can you please check. ThanksDecember 17, 2017 at 9:44 am #409795This reply has been marked as private. -
AuthorPosts
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket