Search code examples
wordpresssvgwoocommercecategorieshook-woocommerce

WordPress WooCommerce product category Thumbnail not support SVG image


enter image description here> i have upload product category image but .svg not support

Blockquote


Solution

  • function additional_mime_types($mime_types) {
        $mime_types['svg'] = 'image/svg'; //Adding svg extension
        return $mime_types;
    }
    
    add_filter('upload_mimes', 'additional_mime_types', 1, 1);
    

    Add additional support file types by adding this to your active theme functions.php file.

    Snippet inspired from here