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> |