You've already forked wc-bootstrap
27 lines
616 B
Twig
27 lines
616 B
Twig
|
|
{#
|
||
|
|
# Description Tab Content (Bootstrap 5 Override)
|
||
|
|
#
|
||
|
|
# Renders the product description inside the Description tab pane.
|
||
|
|
#
|
||
|
|
# Expected context:
|
||
|
|
# heading - Tab heading text (filtered)
|
||
|
|
# description - Product description HTML (the_content())
|
||
|
|
#
|
||
|
|
# WooCommerce PHP equivalent: single-product/tabs/description.php
|
||
|
|
#
|
||
|
|
# @package WcBootstrap
|
||
|
|
# @since 0.1.0
|
||
|
|
#}
|
||
|
|
|
||
|
|
{% set heading = heading|default(__('Description')) %}
|
||
|
|
|
||
|
|
{% if heading %}
|
||
|
|
<h2 class="h5 mb-3">{{ heading|esc_html }}</h2>
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
{% if description is defined %}
|
||
|
|
{{ description|raw }}
|
||
|
|
{% else %}
|
||
|
|
{{ the_content() }}
|
||
|
|
{% endif %}
|