Changeset 2555668
- Timestamp:
- 06/29/2021 08:58:51 AM (5 years ago)
- Location:
- hfd-integration/trunk
- Files:
-
- 6 edited
-
hfd-woocommerce-epost.php (modified) (1 diff)
-
js/epost-admin.js (modified) (1 diff)
-
js/epost-list.js (modified) (2 diffs)
-
languages/betanet_epost-he_IL.mo (modified) (previous)
-
languages/betanet_epost-he_IL.po (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hfd-integration/trunk/hfd-woocommerce-epost.php
r2536274 r2555668 4 4 Plugin URI: 5 5 Description: Add shipping method of ePost, allowing the user on the checkout, to select the pickup location point from a google map popup. Also allows to synch the order to HFD API after the order is created. 6 Version: 2. 0.06 Version: 2.1.0 7 7 Author: HFD 8 8 Author URI: https://www.hfd.co.il -
hfd-integration/trunk/js/epost-admin.js
r2393139 r2555668 54 54 for( i in spots ){ 55 55 spot = spots[i]; 56 locations[i] = spot.name + ' , ' + spot.house + ' ' + spot.street;56 locations[i] = spot.name + ' - ' + spot.house + ' ' + spot.street + ' - ' +city; 57 57 } 58 58 var spotList = $( '#spot-list' ); -
hfd-integration/trunk/js/epost-list.js
r2393139 r2555668 82 82 var i, city, option 83 83 for (i in cities) { 84 city = cities[i] 85 option = $j('<option>', {value: city, text: city}) 86 if (selected && selected === city) { 84 city = cities[i]; 85 //city = city.replace( /\(/g, " )" ); 86 var nth = 0; 87 city = city.replace(/\)/g, function (match, i, original) { 88 nth++; 89 return (nth === 1) ? "(" : match; 90 }); 91 var nnth = 0; 92 city = city.replace(/\(/g, function (match, i, original) { 93 nnth++; 94 return (nnth === 2) ? ")" : match; 95 }); 96 option = $j('<option>', { value: city, text: city } ) 97 if( selected && selected === city ){ 87 98 option.attr('selected', 'selected'); 88 99 } … … 121 132 for (i in spots) { 122 133 spot = spots[i]; 123 locations[i] = spot.name + ' , ' + spot.house + ' ' + spot.street;134 locations[i] = spot.name + ' - ' + spot.street + ' ' + spot.house + ' - ' + city; 124 135 } 125 136 -
hfd-integration/trunk/languages/betanet_epost-he_IL.po
r2458311 r2555668 4 4 "Report-Msgid-Bugs-To: \n" 5 5 "POT-Creation-Date: 2021-01-18 12:08+0000\n" 6 "PO-Revision-Date: 2021-0 1-18 12:09+0000\n"6 "PO-Revision-Date: 2021-06-28 12:55+0000\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: עִבְרִית\n" … … 13 13 "Content-Transfer-Encoding: 8bit\n" 14 14 "X-Generator: Loco https://localise.biz/\n" 15 "X-Loco-Version: 2. 4.3; wp-5.5.3"15 "X-Loco-Version: 2.5.2; wp-5.7.2" 16 16 17 17 msgid "Branch name" … … 31 31 32 32 msgid "Please choose pickup branch" 33 msgstr " בחר ענף איסוף to אנא בחר נקודות איסוף"33 msgstr "אנא בחר נקודת חלוקה" 34 34 35 35 msgid "Please enter an address" -
hfd-integration/trunk/readme.txt
r2536274 r2555668 66 66 67 67 == Changelog == 68 = 2.1 = 69 * הוספת שם עיר בנקודת חלוקה 68 70 = 2.0 = 69 71 * הוספת תמיכה ב hooks עבור מתכנתים
Note: See TracChangeset
for help on using the changeset viewer.