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





Related Articles
How to Add Custom User Profile Fields Wordpress Profile Shortcode
How to limit WooCommerce Title Lenght? Wordpress Profile Shortcode

Single Articles
How to decrease title size of WooCommerce ProductWordpress Profile Shortcode

Read Full:
Wordpress Profile Shortcode
Category:
Web Tutorial
Sub Category:
Wordpress Profile Shortcode
Uploaded by:
Admin
Views:
107
Tested on:
PHP 7 and Wordpress 6.6+