Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <!-- BEGIN: Divido-Widget -->
  2. {% assign dividoShop = shop.metafields.divido %}
  3. {% assign dividoProduct = product.metafields.divido %}
  4. {% assign dividoShowWidget = false %}
  5. {% assign dividoProductPrice = product.price | remove: "," | divided_by:100 %}
  6. {% assign threshold = dividoShop.priceThreshold | plus: 0 %}
  7.  
  8. {% if dividoShop.active == '1' %}
  9.  
  10. {% if dividoProduct.available == 'selected_finances' and dividoProduct.selected_finances != 'none' %}
  11. {% assign dividoPlans = dividoProduct.selected_finances %}
  12. {% elsif dividoShop.showDefaultPlan == 'all' %}
  13. {% assign dividoPlans = '' %}
  14. {% elsif dividoShop.showDefaultPlan == 'selected_finances' %}
  15. {% assign dividoPlans = dividoShop.selectedPlans %}
  16. {% endif %}
  17.  
  18. {% if dividoProduct.available == 'selected_plans' %}
  19. {% if dividoProduct.selected_finances != 'none' %}
  20. {% assign dividoShowWidget = true %}
  21. {% endif %}
  22. {% elsif dividoShop.productSelection == 'all' %}
  23. {% assign dividoShowWidget = true %}
  24. {% elsif dividoProductPrice >= threshold %}
  25. {% assign dividoShowWidget = true %}
  26. {% endif %}
  27. {% endif %}
  28.  
  29. {% if dividoShowWidget %}
  30. <div class="divido-widget" style="margin-top:10px;" data-divido-widget data-divido-mode="popup" data-divido-plans="{{ dividoPlans }}" data-divido-amount="{{ product.price | money_without_currency }}"></div>
  31. {% endif %}
  32. <!-- BEGIN: Divido-End -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement