// Обрізання довжини опису категорій товарів в адмінці WooCommerce add_filter( 'manage_edit-product_cat_columns', 'custom_shorten_category_description', 99 ); function custom_shorten_category_description( $columns ) { add_action( 'manage_product_cat_custom_column', function( $deprecated, $column_name, $term_id ) { if ( 'description' === $column_name ) { $term = get_term( $term_id, 'product_cat' ); if ( $term && ! is_wp_error( $term ) ) { // Видаляємо HTML теги та залишаємо 120 символів $clean_text = wp_strip_all_tags( $term->description ); if ( mb_strlen( $clean_text ) > 120 ) { echo mb_substr( $clean_text, 0, 120 ) . '...'; } else { echo $clean_text; } } } }, 10, 3 ); return $columns; } Shop item style 3 - kiddymall

Shop item style 3

Product was successfully added to your cart!

Select at least 2 products
to compare