• Hi, the plugin showing up category description. Som categories have no decriptions others not and the categories with the plugin looking funny. How to disbale the description?

Viewing 1 replies (of 1 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi trejka,
    The plugin doesn’t allow to hide the category description.

    Try to add this custom code in functions.php in your theme

    add_action( 'wp_enqueue_scripts', 'ywcca_add_script', 99 );
    
    if( !function_exists('ywcca_add_script' ) ) {
        function ywcca_add_script(){
    
            $script = "jQuery(document).ready(function($){
            
            $('.widget_yith_wc_category_accordion').find( 'a' ).attr('title','') ;
            
            });";
    
            wp_add_inline_script( 'ywcca_accordion', $script );
        }
    }

    Let me know
    YITHEMES

Viewing 1 replies (of 1 total)
  • The topic ‘Disable category description’ is closed to new replies.