Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. var flag = false,
  2. items_regex = /(1196510|1196529|1196539|1196686|1196694|1196709|1196715|1209022)/;
  3. if ($('#order_show_cart > table > tbody > tr > td.col1 > a').attr('href').match(items_regex)) {
  4. flag = true;
  5. $('label#cart_shipping_option').before('<div>בחרת מוצר בסל שלא ניתן לבצע עבורו משלוח, לכן ניתן לבצע איסוף עצמי בלבד</div>');
  6. }
  7. /* $('.layout_order #selectsHook label select option').each(function(index, el) {
  8. if($(this).text().indexOf('איסוף עצמי') > -1){
  9. flag = true;
  10. $('label#cart_shipping_option').before('<div>בחרת מוצר בסל שלא ניתן לבצע עבורו משלוח, לכן ניתן לבצע איסוף עצמי בלבד</div>');
  11. }
  12. }); */
  13.  
  14. var _removeShipping = function() {
  15. if (flag) {
  16. $('.layout_order #selectsHook label select#order_shipping_option_id option').each(function(index, el) {
  17. if ($(this).text().indexOf('איסוף עצמי') < 0) {
  18. $(this).remove();
  19. }
  20. });
  21. }
  22. }
  23.  
  24. $(function() {
  25. _removeShipping()
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement