2fec068aff
- Added Optional Recommended Items - Item Full Page minor UI Refresh - Floating wishlist button in item full page - Reviews section UI Refresh
12 lines
392 B
HTML
12 lines
392 B
HTML
{% if shopping_cart and shopping_cart.cart_settings.enabled %}
|
|
{% set cart_settings = shopping_cart.cart_settings %}
|
|
{% if cart_settings.show_contact_us_button | int %}
|
|
<button class="btn btn-inquiry font-md w-30-40" data-item-code="{{ doc.name }}">
|
|
{{ _('Contact Us') }}
|
|
</button>
|
|
{% endif %}
|
|
<script>
|
|
{% include "templates/generators/item/item_inquiry.js" %}
|
|
</script>
|
|
{% endif %}
|