You've already forked wc-bootstrap
18 lines
468 B
Twig
18 lines
468 B
Twig
|
|
{#
|
||
|
|
# 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 %}
|