Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Swenn

    (@swenn)

    I figured out how to do it. See below:

    // Disable wpDiscuz stylesheet
    wp_dequeue_style('wpdiscuz-frontend-css');
    wp_deregister_style('wpdiscuz-frontend-css');
    
    // Enable custom wpDiscuz stylesheet (located in /wp-content/themes/yourtheme/css/wpdiscuz.css)
    wp_register_style('wpdiscuz-frontend-css', get_stylesheet_directory_uri() .'/css/wpdiscuz.css', null);
    wp_enqueue_style('wpdiscuz-frontend-css');
    Plugin Author gVectors Team

    (@gvectors-team)

    Thank you for sharing this code, we’ll add such options in feature releases.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Disable all CSS’ is closed to new replies.