compatibility
5 years ago
currency-switchers
4 weeks ago
multi-currency
1 year ago
multilingual
1 year ago
setup
10 months ago
status
1 year ago
store-urls
5 years ago
custom-files.twig
5 years ago
languages-notice.twig
5 years ago
menus-wrap.twig
1 year ago
nav-menus-full.twig
1 year ago
nav-menus-standalone.twig
4 years ago
pointer-ui.twig
1 year ago
removed-cart-items.twig
5 years ago
settings-ui.twig
2 months ago
st-taxonomy-ui.twig
5 years ago
sync-taxonomy.twig
5 years ago
trnsl-attributes.twig
5 years ago
troubleshooting.twig
1 year ago
troubleshooting.twig
150 lines
| 1 | <div class="wrap wcml_trblsh"> |
| 2 | <h2>{{ header.title }}</h2> |
| 3 | <div class="wcml_trbl_warning"> |
| 4 | <h3>{{ header.warning }}</h3> |
| 5 | </div> |
| 6 | <div class="wcml_trbl_status"> |
| 7 | <h3>{{ status.title }}</h3> |
| 8 | <ul class="ul-square"> |
| 9 | {% for statusItem in status.items %} |
| 10 | <li>{{ statusItem|raw }}</li> |
| 11 | {% endfor %} |
| 12 | </ul> |
| 13 | </div> |
| 14 | <div class="wcml_trbl_section"> |
| 15 | <h3>{{ synchronizeData.title }}</h3> |
| 16 | <ul> |
| 17 | <li> |
| 18 | <label> |
| 19 | <input type="checkbox" id="wcml_sync_product_variations" /> |
| 20 | {{ synchronizeData.items.variations }} |
| 21 | </label> |
| 22 | <span class="counter">{{ counter|raw }}</span> |
| 23 | </li> |
| 24 | {% if synchronizeData.galleryEnable %} |
| 25 | <li> |
| 26 | <label> |
| 27 | <input type="checkbox" id="wcml_sync_gallery_images" /> |
| 28 | {{ synchronizeData.items.gallery }} |
| 29 | </label> |
| 30 | <span class="counter">{{ counter|raw }}</span> |
| 31 | </li> |
| 32 | {% endif %} |
| 33 | <li> |
| 34 | <label> |
| 35 | <input type="checkbox" id="wcml_sync_categories" /> |
| 36 | {{ synchronizeData.items.categoriesMetadata }} |
| 37 | </label> |
| 38 | <span class="counter">{{ counter|raw }}</span> |
| 39 | </li> |
| 40 | <li> |
| 41 | <label> |
| 42 | <input type="checkbox" id="wcml_sync_stock" /> |
| 43 | {{ synchronizeData.items.stock }} |
| 44 | </label> |
| 45 | <span class="counter">{{ counter|raw }}</span> |
| 46 | </li> |
| 47 | </ul> |
| 48 | </div> |
| 49 | <div class="wcml_trbl_section"> |
| 50 | <h3>{{ connect.title }}</h3> |
| 51 | <ul> |
| 52 | <li> |
| 53 | <label> |
| 54 | <input type="checkbox" id="wcml_fix_relationships" /> |
| 55 | {{ connect.items.variations }} |
| 56 | </label> |
| 57 | <span class="counter">{{ counter|raw }}</span> |
| 58 | </li> |
| 59 | </ul> |
| 60 | </div> |
| 61 | <div class="wcml_trbl_section"> |
| 62 | <h3>{{ taxonomies.title }}</h3> |
| 63 | <ul> |
| 64 | {% if taxonomies.productTypeEnable %} |
| 65 | <li> |
| 66 | <label> |
| 67 | <input type="checkbox" id="wcml_translate_product_type" /> |
| 68 | {{ taxonomies.items.productType }} |
| 69 | </label> |
| 70 | <span class="doing">{{ doing }}</span> |
| 71 | <span class="done">{{ done }}</span> |
| 72 | </li> |
| 73 | {% endif %} |
| 74 | <li> |
| 75 | <label> |
| 76 | <input type="checkbox" id="wcml_duplicate_terms" {% if taxonomies.data.attributes is empty %}disabled="disabled"{% endif %} /> |
| 77 | {{ taxonomies.items.attributes }} |
| 78 | <select id="attr_to_duplicate" {% if taxonomies.data.attributes is empty %}disabled="disabled"{% endif %} > |
| 79 | {% if taxonomies.data.attributes is empty %} |
| 80 | <option value="0" >{{ taxonomies.data.none }}</option> |
| 81 | {% endif %} |
| 82 | {% set terms_count = 0 %} |
| 83 | {% for tax in taxonomies.data.attributes %} |
| 84 | <option value="{{ tax.tax_key|e }}"> |
| 85 | {{ tax.labels.name|capitalize }} |
| 86 | </option> |
| 87 | {% endfor %} |
| 88 | </select> |
| 89 | </label> |
| 90 | <span class="counter">{{ counter|raw }}</span> |
| 91 | </li> |
| 92 | <li>{{ taxonomies.link|raw }}</li> |
| 93 | </ul> |
| 94 | </div> |
| 95 | {% if reviews.reviewsEnable %} |
| 96 | <div class="wcml_trbl_section"> |
| 97 | <h3>{{ reviews.title }}</h3> |
| 98 | <ul> |
| 99 | <li> |
| 100 | <label> |
| 101 | <input type="checkbox" id="register_reviews_in_st" /> |
| 102 | {{ reviews.items.register }} |
| 103 | </label> |
| 104 | <span class="doing">{{ doing }}</span> |
| 105 | <span class="done">{{ done }}</span> |
| 106 | </li> |
| 107 | <li>{{ reviews.link|raw }}</li> |
| 108 | </ul> |
| 109 | </div> |
| 110 | {% endif %} |
| 111 | <div class="wcml_trbl_section"> |
| 112 | <h3>{{ cleanup.title }}</h3> |
| 113 | <ul> |
| 114 | <li> |
| 115 | <label> |
| 116 | <input type="checkbox" id="wcml_sync_deleted_meta" /> |
| 117 | {{ cleanup.items.orphanedMeta }} |
| 118 | </label> |
| 119 | <span class="counter">{{ counter|raw }}</span> |
| 120 | </li> |
| 121 | </ul> |
| 122 | </div> |
| 123 | <div class="wcml_trbl_action"> |
| 124 | <button type="button" class="button-primary" id="wcml_trbl_run">{{ run.start }}</button> |
| 125 | <span class="spinner"></span> |
| 126 | </div> |
| 127 | <div class="wcml_trbl_warning wcml_trbl_error"> |
| 128 | <h3>{{ error }}</h3> |
| 129 | </div> |
| 130 | <div> |
| 131 | <ul> |
| 132 | <li> |
| 133 | {{ nonces.trbl_update_count|raw }} |
| 134 | {{ nonces.trbl_sync_variations|raw }} |
| 135 | {{ nonces.trbl_gallery_images|raw }} |
| 136 | {{ nonces.trbl_sync_categories|raw }} |
| 137 | {{ nonces.trbl_product_type_terms|raw }} |
| 138 | {{ nonces.trbl_duplicate_terms|raw }} |
| 139 | {{ nonces.trbl_sync_stock|raw }} |
| 140 | {{ nonces.fix_relationships|raw }} |
| 141 | {{ nonces.sync_deleted_meta|raw }} |
| 142 | {{ nonces.register_reviews_in_st|raw }} |
| 143 | </li> |
| 144 | </ul> |
| 145 | </div> |
| 146 | <div class="wcml_trbl_status"> |
| 147 | <h3>{{ settings.title }}</h3> |
| 148 | <textarea style="font-size:12px;width:100%;margin-bottom:10px" wrap="off" rows="16" readonly="readonly">{{ settings.data|raw }}</textarea> |
| 149 | </div> |
| 150 | </div> |