Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1468785

    Hi, goodmorning,

    When I want to edit a page the layout of the avia editor is not in one line.
    You should see (from top to bottom) Title, Layout editor, Yoast and on the right side image, publish, category, tags etc.
    This is on multiple websites with Enfold.

    So far I have:
    Reinstalled WordPress;
    Downgraded Enfold to 6.0 and updated to 6.0. 5;
    Deactivated plugins and activated them one by one.

    I have not found an answer for this problem anywhere.

    I have made a small video and a screenshot and would like to share it with you so you know what I mean. But I can’t find an upload possibility.

    #1468815
    #1468816

    I used Safari and Chrome. If one doesn’t work I trybthe other one.
    Both have the same problem.

    #1468820

    Hi,

    Thanks for the login details. The problem goes away when the parent theme is active, so I’m guessing that this in your child theme is causing the problem:

    function your_theme_enqueue_styles() {
    
        $parent_style = 'parent-style';
    
        wp_enqueue_style( $parent_style, 
          get_template_directory_uri() . '/style.css'); 
    
        wp_enqueue_style( 'child-style', 
          get_stylesheet_directory_uri() . '/style.css', 
          array($parent_style), 
          wp_get_theme()->get('Version') 
        );
    }

    Why exactly do you need that?

    Best regards,
    Rikard

    • This reply was modified 1 month, 1 week ago by Rikard.
    #1468832

    I’ve used a plugin to create this child theme.
    I’ve removed it and replaced it with:

    <?php

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */

    but it doesn’t solve the problem.

    #1468852

    Hi,
    Thank you for the link to your site but your Wordfence plugin is blocking my access, please disable. Also please upload your video to DropBox or similar and link to it here so we can view.

    Best regards,
    Mike

    #1468853

    Wordfence deactivated.
    Below the link and you can see for yourself what is wrong, when you are logged in.

    #1468866

    Hi,

    Thanks for that, it’s still working when the parent theme is activate though. You could try using a clean child theme insted: https://kriesi.at/documentation/enfold/child-theme/. There’s no need to use plugins for that.

    Best regards,
    Rikard

    #1468869

    Hi Rikard,
    Yes I know, but this was years ago. In the early stages of my job. Everything was allright. Didn’t have any need to change it.
    Now I changed it… Problem still remains.

    #1468896

    Hi,

    Thank you for the update.

    Have you tried adding this code in the functions.php file as @Guenni007 suggested in the previous thread?

    function admin_head_mod() {
    echo '<style type="text/css">
    	#postbox-container-2 { clear: left; }
    	.index-php #postbox-container-2 { clear: none; }
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');
    

    Thread; https://kriesi.at/support/topic/enfold-back-end-not-working-in-safari-on-sequoia/#post-1468431

    Best regards,
    Ismael

    #1468917

    Hi Ismael,

    Have added the code on my own website and it looks okay now.
    I’m testing it also on an other website, but will be responding next Monday if that is also okay.

    #1468930

    Hi,

    Thanks for the update, we’ll keep this thread open for you.

    Best regards,
    Rikard

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.