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



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


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

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



Share on: