Horje

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




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