Where you can achieve what your competitors can’t


Shopify Show Enquiry Button On Specific Products Only

Benefits of Shopify Show Enquiry Button For Specific Products Only :

Strategic Product Management

  • Creates dedicated inquiry channels for complex, custom, or high value items
  • Maintains streamlined purchase flows for standard products requiring no consultation
  • Enables special handling for products with unique specifications or customization options
  • Provides controlled information flow for products with fluctuating availability or pricing

Customer Experience

  • Reduces interface clutter by showing inquiry options only where genuinely needed
  • Guides customers toward appropriate engagement methods based on product complexity
  • Signals to customers which products might benefit from pre-purchase consultation
  • Creates intuitive shopping pathways tailored to different product requirements

Sales Conversion

  • Removes purchase barriers for products that frequently generate pre-sale questions
  • Creates personalized sales opportunities through direct customer conversations
  • Prevents abandonment by offering assistance for products with higher decision complexity
  • Builds customer confidence through accessible expert guidance for selected items

Operational Efficiency

  • Focuses customer service resources on products that truly require consultation
  • Reduces unnecessary inquiries about straightforward products with complete information
  • Streamlines inventory management for specialty, limited, or made to order items
  • Creates structured data collection specific to products requiring special attention

Customer Relationship

  • Establishes personalized connections for products that benefit from consultative selling
  • Demonstrates attentiveness to customer needs for complex purchase decisions
  • Balances self service and assisted shopping based on product requirements
  • Creates opportunities for upselling and cross selling during meaningful interactions
{%- if product.tags contains "enquiry" -%}
  <div class="onhow-enquiry-container">
    {% comment %}
    <!-- Designed by OnHOW YouTube Channel - Anas El Medlaoui -->
    {% endcomment %}
    <a href="your_custom_url" class="onhow-enquiry-button">
      <span class="onhow-enquiry-text">Make An Enquiry</span>
      <span class="onhow-enquiry-icon">→</span>
    </a>
  </div>
  
  {% style %}
    .onhow-enquiry-container {
      width: 100%;
      margin: 0;
      padding: 0;
      perspective: 1000px;
      transform-style: preserve-3d;
    }
    
    .onhow-enquiry-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      background: linear-gradient(135deg, #0078e7 0%, #0055b3 100%);
      color: #ffffff;
      text-align: center;
      padding: 0.875rem 1.25rem;
      text-decoration: none;
      border-radius: 0.25rem;
      font-weight: 500;
      font-family: var(--font-body-family);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
      transition: all 0.3s ease-in-out;
      transform: translateZ(0);
    }
    
    {% comment %}
    <!-- Designed by OnHOW YouTube Channel - Anas El Medlaoui -->
    {% endcomment %}
    
    .onhow-enquiry-button:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
      transform: translateX(-100%);
      transition: transform 0.8s ease-in-out;
      z-index: 1;
    }
    
    .onhow-enquiry-text {
      position: relative;
      z-index: 2;
      font-size: clamp(1.375rem, 1.65vw, 1.54rem);
      letter-spacing: 0.02em;
    }
    
    .onhow-enquiry-icon {
      margin-left: 0.6rem;
      position: relative;
      z-index: 2;
      font-size: clamp(1.515rem, 1.82vw, 1.7rem); /* 10% larger than text */
      transform: translateY(2px) translateX(0);
      transition: transform 0.3s ease-in-out;
    }
    
    /* Hover & Focus States */
    .onhow-enquiry-button:hover,
    .onhow-enquiry-button:focus {
      box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
      transform: translateY(-2px) translateZ(20px);
    }
    
    .onhow-enquiry-button:hover:before {
      transform: translateX(100%);
    }
    
    .onhow-enquiry-button:hover .onhow-enquiry-icon {
      transform: translateY(2px) translateX(5px);
    }
    
    .onhow-enquiry-button:active {
      transform: translateY(1px) translateZ(10px);
      box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
    }
    
    /* Responsive adjustments */
    @media screen and (max-width: 990px) {
      .onhow-enquiry-button {
        padding: 0.75rem 1rem;
      }
    }
    
    @media screen and (max-width: 750px) {
      .onhow-enquiry-container {
        margin-bottom: 1rem;
      }
      
      .onhow-enquiry-button {
        padding: 0.75rem 1rem;
        box-shadow: 0 3px 8px rgba(0, 102, 204, 0.15);
      }
      
      .onhow-enquiry-text {
        font-size: 1.375rem;
      }
      
      .onhow-enquiry-icon {
        font-size: 1.515rem;
      }
    }
  {% endstyle %}
{%- endif -%}