add shortcode in short description
<?php echo do_shortcode("[shortcode]"); ?>
add shortcode in short description
<?php echo do_shortcode("[shortcode]"); ?>
add shortcode in short description
remove_action( 'woocommerce_after_shop_loop_item', 'sp_loop_product_description', 6 );
add_action( 'woocommerce_after_shop_loop_item', 'wp_11326339_custom_description', 6 );
function wp_11326339_custom_description() {
global $product;
$wc_product = wc_get_product( $product );
if ( ! $wc_product ) {
return false;
}
$short_description = $wc_product->get_short_description();
if ( '' !== $short_description ) {
echo '<div itemprop="description">' . do_shortcode( wpautop( wptexturize( $short_description ) ) ) . '</div>';
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us