admin issues

This topic contains 14 replies, has 4 voices, and was last updated by  Guust 6 years, 3 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket

Tagged: 

  • Author
    Posts
  • #409283

    Kathy Geisler
    Lifetime Member
    Post count: 313

    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 you

    #409293

    Guust
    Moderator
    Post count: 29970

    The 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

    #409294

    Guust
    Moderator
    Post count: 29970
    This reply has been marked as private.
    #409296

    Kathy Geisler
    Lifetime Member
    Post count: 313
    This reply has been marked as private.
    #409306

    Kiran
    Moderator
    Post count: 7069

    Hi 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

    #409321

    Kathy Geisler
    Lifetime Member
    Post count: 313
    This reply has been marked as private.
    #409336

    Kiran
    Moderator
    Post count: 7069

    Hi 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,
    Kiran

    #409442

    Kathy Geisler
    Lifetime Member
    Post count: 313
    This reply has been marked as private.
    #409451

    Guust
    Moderator
    Post count: 29970

    Just 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

    #409493

    Kiran
    Moderator
    Post count: 7069

    Hi 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,
    Kiran

    #409570

    Kathy Geisler
    Lifetime Member
    Post count: 313
    This reply has been marked as private.
    #409624

    Alex Rollin
    Moderator
    Post count: 27815

    Hello!

    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

    #409793

    Kathy Geisler
    Lifetime Member
    Post count: 313

    We are not using a child theme.

    #409794

    Guust
    Moderator
    Post count: 29970

    I have added the code using Code Snippets plugin and all seems to be working.
    Can you please check. Thanks

    #409795

    Guust
    Moderator
    Post count: 29970
    This reply has been marked as private.
Viewing 15 posts - 1 through 15 (of 15 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket