@rankmathsupport It really worked thank you. God bless you.
@rankmathsupport
You are truly amazing. You’ve given me another reason to recommend the Rankmath plugin to my clients.
The 150 character limit gave me an error, but I solved it with such a code correction.
function woo_full_desc_callback() {
global $post;
if ( empty( $post ) ) {
return 'Product Description';
}
$full_description = get_the_content( null, false, $post );
$short_description = mb_substr( $full_description, 0, 150, 'UTF-8' ) . '…';
return $short_description;
}
How can I print the description of the relevant category here?
This shows the description of the first product in that category
-
This reply was modified 1 year, 3 months ago by traquila.
-
This reply was modified 1 year, 3 months ago by traquila.