Admin Controls Not Visible

This topic contains 8 replies, has 4 voices, and was last updated by  Kiran 6 years, 4 months ago.

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

Open Support Ticket
  • Author
    Posts
  • #413205

    Tim Timmermann
    Expired Member
    Post count: 6

    This has cropped up since new WP update (or maybe its been there?). Various GD admin controls have a display:none directly in the element. To make modifications, I have to change the HTML on the client side.

    Any ideas?

    #413219

    Alex Rollin
    Moderator
    Post count: 27815

    Hello,

    try clearing your local browser cache and see if that fixes it.

    https://www.google.co.id/search?q=chrome+how+to+clear+cache

    #413227

    Tim Timmermann
    Expired Member
    Post count: 6

    Sorry. Multiple browsers. Mulitple devices. It’s in the raw code. Display:none

    #413231

    Guust
    Moderator
    Post count: 29970

    Your error is usually a conflict with another plugin.
    If you can’t find the conflicting plugin by de-activating and re-activating them, post your URL and WP admin details in a private reply and we will check have a look.

    Thanks

    #413280

    Tim Timmermann
    Expired Member
    Post count: 6
    This reply has been marked as private.
    #413285

    Kiran
    Moderator
    Post count: 7069

    Hi Tim,

    Please provide us FTP credentials so we can apply patch on your site.

    Thanks,
    Kiran

    #413314

    Tim Timmermann
    Expired Member
    Post count: 6
    This reply has been marked as private.
    #413342

    Tim Timmermann
    Expired Member
    Post count: 6
    This reply has been marked as private.
    #413421

    Kiran
    Moderator
    Post count: 7069

    Hello Tim,

    There was a jQuery Chosen JavaScript conflict between GeoDirectory & Fb Crawler plugin.
    I have added following code snippet in Admin > Snippets and now issue has been fixed.

    
    
    function _gd_custom_fix_chosen_conflict() {
        if ( is_admin() && wp_script_is( 'fb_crawler_choosen_js', 'enqueued' ) && wp_script_is( 'chosen', 'enqueued' ) ) {
            wp_dequeue_script( 'fb_crawler_choosen_js' );
        }
    }
    add_action( 'admin_print_styles', '_gd_custom_fix_chosen_conflict', 1000 );

    Thanks,
    Kiran

Viewing 9 posts - 1 through 9 (of 9 total)

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

Open Support Ticket