Horje
How to limit WooCommerce Title Lenght?
Just copy and paste following codes to yourdomain.com/wp-content/themes/activated-theme/fucntions.php in the most below.

How to decrease title size of WooCommerce Product

fucntions.php
Example: PHP
// Limit WooCommerce product titles​​
function astra_limit_woocommerce_product_title($title, $id = null) {
    $limit = 40; // Set the character limit you prefer
    if (strlen($title) > $limit) {
        $title = substr($title, 0, $limit) . '...';
    }
    return $title;
}
add_filter('the_title', 'astra_limit_woocommerce_product_title', 10, 2);

Output should be:

How to decrease title size of WooCommerce Product





Category:
Web Tutorial
Sub Category:
Wordpress Profile Shortcode
Uploaded by:
Admin