Files
wc-bootstrap/templates/single-product/short-description.html.twig

18 lines
468 B
Twig
Raw Normal View History

{#
# Product Short Description (Bootstrap 5 Override)
#
# Expected context:
# short_description - Product short description HTML
#
# WooCommerce PHP equivalent: single-product/short-description.php
#
# @package WcBootstrap
# @since 0.1.0
#}
{% if short_description is defined and short_description %}
<div class="woocommerce-product-details__short-description lead text-body-secondary mb-3">
{{ short_description|raw }}
</div>
{% endif %}