Viewing 2 replies - 1 through 2 (of 2 total)
  • You could overwrite it with CSS using !important, or just modify the CSS that comes with the plugin.

    Thread Starter minimamente

    (@minimamente)

    Hello, i’ve just resolved.

    in your file in: /wc-vendors/classes/front/dashboard/class-vendor-dashboard.php

    on the line 184 i found

    wp_enqueue_style( 'wcv_frontend_style', wcv_assets_url . 'css/wcv-frontend.css' );

    but without wp_register_style. So, to deregister style i’ve made an action, and it work. But for a better “Coding Standards” you need first register style.

    /**
     * Remove default style css
     */
    add_action('wp_footer', 'remove_wc_vendors_style');
    
    function remove_wc_vendors_style() {
    	wp_dequeue_style('wcv_frontend_style');
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove css wcv_frontend_style’ is closed to new replies.