Limit short description on archive page
-
Hello, I tried to remove to limit of the Short description on the archive page in the list view. I searched and found below code:
add_filter(‘woocommerce_short_description’,’limit_short_descr’);
function limit_short_descr($description){
return (strlen($description) > 30) ? substr($description, 0 , 30) : $description;
}But the Problem is, when I use the up code, the Archive description is removed also, but I want to keep it. Please help me. Thanks
function limit_short_descr($description){
return (strlen($description) > 30) ? substr($description, 0 , 30) : $description;
}
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Limit short description on archive page’ is closed to new replies.