Enable checkout methods using customer tag

Kurvi Kansagra

Last Update 4 tháng trước

Show or hide pickup, delivery, or shipping method based on your customer's tags


Enable/Disable pickup by customer tag

Steps 1: Goto Online Stores -> Themes and Click to Edit Code

Steps 2: Open theme.liquid file

Steps 3: Add following code into theme.liquid file before body tag close

<script> 

var disable_gafcnc = true;

{% if customer %}  

  {% if customer.tags contains "Pickup Enable" %}

    disable_gafcnc = false;

  {% endif %}

{% endif %}

</script>

Steps 4: You can now see the Pickup option Enable if a customer has the "Pickup Enable" tag. otherwise, it's disabled.


You can use the following variables for other functions


  1. force_cnc_app_disabled (To enable/disable full widget)
  2. disable_gafcnc (To enable/disable pickup method)
  3. disable_gafdelivery (To enable/disable local delivery method)
  4. disable_gafshipping (To enable/disable shipping method)

Still need help? Message Us