Wp-admin super slow - by fan - on WordPress WooCommerce support

This topic has 4 replies, 2 voices, and was last updated 8 years, 2 months ago ago by Eva Kemp

  • Avatar: fan
    fan
    Participant
    February 2, 2016 at 09:17

    you royal theme is awesome, but the backpanel soooo slow. I try disable all plugin it is still performance not really good.

    I have try change other theme speed is better. did you have plan to OPT the theme back panel spped ?

    I already doing those suggest
    https://brianjackson.io/diagnose-admin-ajax-php-causing-slow-load-times-wordpress/
    http://stackoverflow.com/questions/22705185/load-time-issues-related-to-admin-ajax-php-with-pingdom-results-link
    https://wordpress.org/support/topic/admin-ajaxphp-issue-3

    3 Answers
    Avatar: Eva
    Eva Kemp
    Support staff
    February 2, 2016 at 11:43

    Hello,

    I’ve checked your wp-admin panel and it’s loading quite fast.
    Try to disable 3rd-party plugins and check the dashboard again.

    Regards,
    Eva Kemp.

    Avatar: fan
    fan
    Participant
    February 4, 2016 at 19:21

    about the admin-ajaxphp-issue

    could I add the fix code to global CSS not in theme function.php ?

    <?php
    /**
    * Optimize WooCommerce Scripts
    * Remove WooCommerce Generator tag, styles, and scripts from non WooCommerce pages.
    */
    add_action( ‘wp_enqueue_scripts’, ‘child_manage_woocommerce_styles’, 99 );

    function child_manage_woocommerce_styles() {
    //remove generator meta tag
    remove_action( ‘wp_head’, array( $GLOBALS[‘woocommerce’], ‘generator’ ) );

    //first check that woo exists to prevent fatal errors
    if ( function_exists( ‘is_woocommerce’ ) ) {
    //dequeue scripts and styles
    if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) {
    wp_dequeue_style( ‘woocommerce_frontend_styles’ );
    wp_dequeue_style( ‘woocommerce_fancybox_styles’ );
    wp_dequeue_style( ‘woocommerce_chosen_styles’ );
    wp_dequeue_style( ‘woocommerce_prettyPhoto_css’ );
    wp_dequeue_script( ‘wc_price_slider’ );
    wp_dequeue_script( ‘wc-single-product’ );
    wp_dequeue_script( ‘wc-add-to-cart’ );
    wp_dequeue_script( ‘wc-cart-fragments’ );
    wp_dequeue_script( ‘wc-checkout’ );
    wp_dequeue_script( ‘wc-add-to-cart-variation’ );
    wp_dequeue_script( ‘wc-single-product’ );
    wp_dequeue_script( ‘wc-cart’ );
    wp_dequeue_script( ‘wc-chosen’ );
    wp_dequeue_script( ‘woocommerce’ );
    wp_dequeue_script( ‘prettyPhoto’ );
    wp_dequeue_script( ‘prettyPhoto-init’ );
    wp_dequeue_script( ‘jquery-blockui’ );
    wp_dequeue_script( ‘jquery-placeholder’ );
    wp_dequeue_script( ‘fancybox’ );
    wp_dequeue_script( ‘jqueryui’ );
    }
    }

    }

    Avatar: Eva
    Eva Kemp
    Support staff
    February 5, 2016 at 09:31

    Hello,

    This is php code and it won’t work in css file.
    You need add it to functions.php.

    Regards,
    Eva Kemp.

  • Viewing 4 results - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.Log in/Sign up

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.