You've already forked wc-bootstrap
16 lines
301 B
Twig
16 lines
301 B
Twig
|
|
{#
|
||
|
|
# Product Title (Bootstrap 5 Override)
|
||
|
|
#
|
||
|
|
# Expected context:
|
||
|
|
# product - WC_Product object (or uses the_title())
|
||
|
|
#
|
||
|
|
# WooCommerce PHP equivalent: single-product/title.php
|
||
|
|
#
|
||
|
|
# @package WcBootstrap
|
||
|
|
# @since 0.1.0
|
||
|
|
#}
|
||
|
|
|
||
|
|
<h1 class="product_title entry-title mb-2">
|
||
|
|
{{ the_title() }}
|
||
|
|
</h1>
|