vendor store description Resolved
-
-
Hello, how can i set a character limit for vendors sore description
Thank you
-
Hi,
Please add this code in the function.php of the current active theme :
add_filter('the_content', 'wcmp_description_charecter_limit');
function wcmp_description_charecter_limit( $description ){
$description = substr( $description, 0 , 6 );
return $description;
}
Copy
Regards,
-
-
Thank you for the update. We are closing the ticket now. In case any issue arises kindly raise a new ticket.
The topic ‘vendor store description’ is closed to new replies.