• Hi, i wanna switch back to botiga for speed. The reason i left was because the short description wasnt showing fully the way astra does. Is there any way i can edit on my end for it to display the short description entirely on product catalog? Currently im using kadence, which also shows the entire description but only on list style (has to toggle on mobile).

Viewing 1 replies (of 1 total)
  • Hi @fartbrat,

    Product short description is currently limited to not more than 12 words while it shows in shop page or product archive.

    To change it, if you can access the theme’s inc/plugins/woocommerce/woocommerce.php file, go to this code block:

    /**
     * Loop product description
     */
    function botiga_loop_product_description() {
    	$content = get_the_excerpt();
    
    	echo '<div class="product-description">' . wp_kses_post( wp_trim_words( $content, 12, '&hellip;' ) ) . '</div>';
    }

    Change 12 to 99999 or any number that shows all your short product description.

    Please note this change won’t take any effect after updating the theme in the future as all files are wiped out during update process. So you will need to do this change again after updating.

Viewing 1 replies (of 1 total)
  • The topic ‘Short Description on Product Catalog not fully displayed’ is closed to new replies.