custom/plugins/ATNTheme/src/Resources/views/storefront/component/product/card/action.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/product/card/action.html.twig' %}
  2. {% block page_product_detail_product_buy_button %}
  3.     <button class="btn btn-block btn-buy btn-animated mx-auto"
  4.             title="{{ "listing.boxAddProduct"|trans|striptags }}">
  5.         <span class="button-text">{{ "listing.boxAddProduct"|trans|sw_sanitize }}</span>
  6.         {% sw_icon 'arrow-right' style {
  7.             'color': 'primary'
  8.         } %}
  9.     </button>
  10. {% endblock %}
  11. {% block component_product_box_action_detail %}
  12.     <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
  13.        class="btn btn-outline-primary btn-animated mx-auto"
  14.        title="{{ "listing.boxProductDetails"|trans|striptags }}">
  15.         <span class="button-text">{{ "listing.boxProductDetails"|trans|sw_sanitize }}</span>
  16.         {% sw_icon 'arrow-right' style {
  17.             'color': 'primary'
  18.         } %}
  19.     </a>
  20. {% endblock %}
  21. {% block component_product_box_action_inner %}
  22.     {% set nb_is_por = product.extensions.nimbits_por.is_por %}
  23.     {% set nb_show_price = product.extensions.nimbits_por.show_price %}
  24.     {% set showPrice = config('WebkulShowPriceAfterLogin.config.status') %}
  25.     {% set categorySetting = config('WebkulShowPriceAfterLogin.config.categorySetting') %}
  26.     {% set productRedirectPathPara = app.request.attributes.get('_route_params') %}
  27.     {% set productRedirectPath = app.request.attributes.get('_route') %}
  28.     {% set allowedCategories = config('WebkulShowPriceAfterLogin.config.categoryIds') %}
  29.     {% set addtocartLabel = config('WebkulShowPriceAfterLogin.config.addtocartlabel') %}
  30.     {% set addtocartlabelStatus = config('WebkulShowPriceAfterLogin.config.addtocartlabelStatus') %}
  31.     {% if config('WebkulShowPriceAfterLogin.config.configPriority') == 'product' %}
  32.         {% if product.customFields['show_price_enabled'] %}
  33.             {% set showPrice = false %}
  34.         {% endif %}
  35.         {% if product.customFields['show_price_cart_label_status'] and product.customFields['show_price_cart_title'] %}
  36.             {% set buttonTitle = product.customFields['show_price_cart_title'] %}
  37.         {% elseif addtocartlabelStatus and addtocartLabel %}
  38.             {% set buttonTitle = addtocartLabel %}
  39.         {% elseif not nb_show_price and nb_is_por %}
  40.             {% set buttonTitle = 'webkul.information.buyButtonLabel_Request'|trans %}
  41.         {% else %}
  42.             {% set buttonTitle = 'webkul.information.buyButtonLabel'|trans %}
  43.         {% endif %}
  44.     {% else %}
  45.         {% if addtocartlabelStatus and addtocartLabel %}
  46.             {% set buttonTitle = addtocartLabel %}
  47.         {% elseif not nb_show_price and nb_is_por %}
  48.             {% set buttonTitle = 'webkul.information.buyButtonLabel_Request'|trans %}
  49.         {% else %}
  50.             {% set buttonTitle = 'webkul.information.buyButtonLabel'|trans %}
  51.         {% endif %}
  52.     {% endif %}
  53.     {% set foundCategory = false %}
  54.     {% for category in product.categoryTree %}
  55.         {% if category in allowedCategories %}
  56.             {% set foundCategory = true %}
  57.         {% endif %}
  58.     {% endfor %}
  59.     {% if categorySetting and foundCategory %}
  60.         {% set showPrice = false %}
  61.     {% endif %}
  62.     {% if  not context.customer and showPrice %}
  63.         <div>
  64.             <a href="{{ path('frontend.account.login.page') }}"
  65.                title="{{ buttonTitle }}"
  66.                class="btn btn-block btn-buy">
  67.                 {{ buttonTitle }}
  68.             </a>
  69.         </div>
  70.     {% else %}
  71.         <div>
  72.             <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"
  73.                class="btn btn-outline-primary btn-animated btn-block btn-buy btn-nb-pricerequest-listing"
  74.                title="{{ "listing.boxProductDetails"|trans|striptags }}">
  75.                 <span class="button-text">{{ "listing.boxProductDetails"|trans|sw_sanitize }}</span>
  76.                 {% sw_icon 'arrow-right' style {
  77.                     'color': 'primary'
  78.                 } %}
  79.             </a>
  80.         </div>
  81.     {% endif %}
  82. {% endblock %}