• Is it possible to limit the number of lines of the product short description/excerpt that is shown below each product title?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Towhid

    (@cryptex_vinci)

    Hey @lrunnells

    Insert this in your themes functions.php

    add_filter('woocommerce_short_description', 'custom_woocommerce_short_description', 10, 1);
    function custom_woocommerce_short_description($post_excerpt){
        if (!is_product()) {
            $post_excerpt = substr($post_excerpt, 0, 10);
        }
        return $post_excerpt;
    }

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Limit excerpt length on shop pages’ is closed to new replies.