Okay
  Public Ticket #1033594
Menu Items, CSS, JS Composer Updates
Closed

Comments

  •  2
    Brad started the conversation

    I just had a huge issue with my customers site today.  The wp-admin page was completely blank.  I had to manually FTP over all the theme files also including the JS Composer Plugin which I think was causing the issue.

    Now the Theme Menu items does not have the button style dropdown option and it is not reading the Child Theme CSS file.


    Thank you,


    Brad

  •  8,998
    Tahir replied

    Hey Again,

    Your WP Core was likely updated by your hosting provider.  You need to update the Child Theme Code and use the wp_enqueue method instead of @import in the Child Theme . 

    And as for the Menu Button Style. Please see: WP 4.7 Bug | Menu Item Style not showing in Menu Options in WP Dashboard

    Best.



    ThemeNectar Support Team 

  •  8,998
    Tahir replied

    Add this to the Child Theme functions.php and remove the @import Line in Child Theme Style.css : 

    <?php 
    add_action( 'wp_enqueue_scripts', 'salient_child_enqueue_styles');
    function salient_child_enqueue_styles() {
        
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css', array('font-awesome'));
        wp_enqueue_script('isotope');
        
        if ( is_rtl() ) 
               wp_enqueue_style(  'salient-rtl',  get_template_directory_uri(). '/rtl.css', array(), '1', 'screen' );
    }
    ?>
    


    ThemeNectar Support Team