{# # 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 %}

{{ heading|esc_html }}

{% endif %} {% if description is defined %} {{ description|raw }} {% else %} {{ the_content() }} {% endif %}