Collapse

Announcement

Collapse
No announcement yet.

Steps to Fix W3C Validation Errors?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Steps to Fix W3C Validation Errors?

    Steps:

    1. Install the minification plugin:

    Minification Plugin bundle all the CSS on your page into a single file and include it in the <head>Click image for larger version

Name:	w3-total-cache.jpg
Views:	5
Size:	19.5 KB
ID:	688

    There are lots of minification plugins available but we recommend w3 Total Cache,

    To enable minification install W3 Total Cache from the appearances-> Plugins ->Activate the Plugins.

    Then Go to Performance->General Settings->Enable Minify


    Click image for larger version

Name:	minify.jpg
Views:	0
Size:	81.0 KB
ID:	689

    2. Manually include the CSS in your theme
    Paste the following theme code in functions.php file:

    Code:
    /**
     * Enqueue Meta Slider CSS files in the <head> of every page.
     */
    function metaslider_styles() {
     
        // flex slider
        wp_enqueue_style( 'metaslider-flexslider', plugins_url() . '/ml-slider/assets/sliders/flexslider/flexslider.css' );
     
        // coin slider
        wp_enqueue_style( 'metaslider-coinslider', plugins_url() . '/ml-slider/assets/sliders/sliders/coinslider/coin-slider-styles.css' );
     
        // nivo slider
        wp_enqueue_style( 'metaslider-nivoslider', plugins_url() . '/ml-slider/assets/sliders/nivoslider/nivo-slider.css' );
     
        // responsive slides
        wp_enqueue_style( 'metaslider-reslides', plugins_url() . '/ml-slider/assets/sliders/responsiveslides/responsiveslides.css' );
     
        // general CSS (do not remove)
        wp_enqueue_style( 'metaslider-public', plugins_url() . '/ml-slider/assets/metaslider/public.css' );
     
        // uncomment these lines if you are using Meta Slider Pro
        // wp_enqueue_style( 'metaslider-public-pro', plugins_url() . '/ml-slider-pro/assets/public.css' );
        // wp_enqueue_style( 'metaslider-pro-animate', plugins_url() . '/ml-slider-pro/modules/layer/assets/animate/animate.css' );
    }
    add_action('wp_head', 'metaslider_styles');
    If you do not need any of the code above you can remove it for example , if you’re only using Flex Slider slideshows, delete the Nivo, Coin and R slides includes. You could also choose to conditionally load the CSS on specific pages using the is_front_page() or is_page() functions.

Working...
X