{# # Loop Product Price (Bootstrap 5 Override) # # Renders the product price within the shop loop. # Price HTML is pre-formatted by WooCommerce (includes sale/regular markup). # # Expected context: # product - WC_Product object with: # .get_price_html() - Formatted price HTML (includes / for sales) # # WooCommerce PHP equivalent: loop/price.php # # @package WcBootstrap # @since 0.1.0 #} {% if product is defined %} {{ product.get_price_html()|raw }} {% endif %}