Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #341446

    HI
    a couple of questions:

    I am trying to disable the tool tips on this site: http://www.marlowfilm.dk
    but the appearance editor is missing.
    I updated to enfold 3.0 but it’s still not there.
    I have had this problem before but can’t remember what the issue was.

    also – Part of the heading – the “S” in “It’s all about connections” – is getting cut off on mobile devices.
    I have increased the content width to 330px with this code:

    @media only screen and (max-width: 480px) {
    .responsive .container {
    width: 330px; }
    }
    but am not seeing any changes.

    Can you help me with this?
    thanks
    nancy

    • This topic was modified 9 years, 5 months ago by Munford.
    #341917

    Hey Munford!

    1- Please try de-activating all active plugins and check if editor appears also try switching to one of the default themes.
    You can add following code to Functions.php file via FTP

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    2- Please add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    #top #wrap_all .main_color h1 {
    font-size: 36px !important; 
    }}

    Regards,
    Yigit

    #342101

    Hi Yigit-guru
    I deactivated my plugins but still no editor. Don’t understand that. If I switch themes and then switch back will I lose Enfold settings? Site is online and I don’t really want to mess with that.

    thanks for the code – worked like a charm
    Nancy

    #342302

    Hi Nancy!

    No, you will not lose your settings. Switching the theme will make us understand if it is theme related or not

    Cheers!
    Yigit

    #342306

    I figured it out – there was this line:
    define(‘DISALLOW_FILE_EDIT’, true);
    in the wp-config.php file, which can come from a one-click installation.
    Changed it to “false” and got the editor back.

    #342335

    thanks for the info – good to know. it was not theme related – see above.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘appearance editor missing’ is closed to new replies.