PluginProbe ʕ •ᴥ•ʔ
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel / 1.2.2
WP All Export – Drag & Drop Export to Any Custom CSV, XML & Excel v1.2.2
trunk 0.9.0 0.9.1 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.14 1.4.15 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0
wp-all-export / frontend / src / uniqueIdentifiers / uniqueIdentifiers.tpl.html
wp-all-export / frontend / src / uniqueIdentifiers Last commit date
uniqueIdentifiers.controller.js 7 years ago uniqueIdentifiers.directive.js 7 years ago uniqueIdentifiers.scss 7 years ago uniqueIdentifiers.tpl.html 7 years ago
uniqueIdentifiers.tpl.html
45 lines
1 <div class="wpallexport-collapsed wpallexport-section" ng-class="{closed: !uniqueIdentifiers.open}">
2 <div class="wpallexport-content-section">
3 <div class="wpallexport-collapsed-header disable-jquery" ng-click="uniqueIdentifiers.open = !uniqueIdentifiers.open">
4 <h3>Unique Identifiers</h3>
5 </div>
6 <div class="wpallexport-collapsed-content slide-toggle" id="unique-identifiers" ng-slide-down="uniqueIdentifiers.open" duration="0.5">
7 <div class="wpallexport-collapsed-content-inner">
8 <p>
9 Unique product identifiers are product codes associated with your products.
10 Products submitted without unique identifiers are difficult to classify and may not be able to take advantage of all Google shopping features.
11 <a href="https://support.google.com/merchants/answer/7052112?hl=en&ref_topic=3404778#intro-product-identifiers" target="_blank">Read more about unique product identifiers</a>.
12 </p>
13 <h4>GTIN</h4>
14 <p>
15 Global Trade Item Numbers include UPC, EAN (in Europe), JAN (in Japan), and ISBN. <a href="https://support.google.com/merchants/answer/6219078" target="_blank">Read how to find your products' GTIN</a>.
16 </p>
17 <div class="input">
18 <input type="text" class="wpae-default-input" ng-model="uniqueIdentifiers.gtin" droppable />
19 </div>
20
21 <h4>MPN</h4>
22 <div class="input">
23 <input type="text" class="wpae-default-input" ng-model="uniqueIdentifiers.mpn" droppable />
24 </div>
25
26 <h4>Brand</h4>
27 <div class="input">
28 <input type="text" class="wpae-default-input" ng-model="uniqueIdentifiers.brand" droppable />
29 </div>
30
31 <h4>Identifier Exists</h4>
32 <div class="input">
33 <label><input type="radio" ng-model="uniqueIdentifiers.identifierExists" value="1" />Set to false if product has no GTIN or MPN</label>
34 </div>
35 <div class="input">
36 <label><input type="radio" ng-model="uniqueIdentifiers.identifierExists" value="customValue" />Custom data</label>
37 <div class="input inner" ng-slide-down="uniqueIdentifiers.identifierExists == 'customValue'" duration="0.2">
38 <input type="text" class="wpae-default-input" ng-model="uniqueIdentifiers.identifierExistsCV" droppable />
39 </div>
40 </div>
41
42 </div>
43 </div>
44 </div>
45 </div>