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
custom-files.twig
28 lines
| 1 | {% if is_variation %} |
| 2 | <tr><td> |
| 3 | {% endif %} |
| 4 | |
| 5 | <div class="wcml-downloadable-options"> |
| 6 | |
| 7 | <input type="checkbox" name="wcml_file_path_option[{{ product_id }}]" id="wcml_file_path_option" {% if sync_custom %} checked="checked"{% endif %} /> |
| 8 | <label for="wcml_file_path_option">{{ strings.use_custom }}</label> |
| 9 | |
| 10 | <ul {% if sync_custom is empty %} style="display: none"{% endif %}> |
| 11 | <li> |
| 12 | <input type="radio" name="wcml_file_path_sync[{{ product_id }}]" value="auto" |
| 13 | {% if sync_custom == 'auto' or sync_custom is empty %} checked="checked"{% endif %} id="wcml_file_path_sync_auto" /> |
| 14 | <label for="wcml_file_path_sync_auto">{{ strings.use_same }}</label> |
| 15 | </li> |
| 16 | <li> |
| 17 | <input type="radio" name="wcml_file_path_sync[{{ product_id }}]" value="self" |
| 18 | {% if sync_custom == 'self' %} checked="checked"{% endif %} id="wcml_file_path_sync_self" /> |
| 19 | <label for="wcml_file_path_sync_self">{{ strings.separate }}</label> |
| 20 | </li> |
| 21 | </ul> |
| 22 | <p></p> |
| 23 | {{ nonce|raw }} |
| 24 | </div> |
| 25 | |
| 26 | {% if is_variation %} |
| 27 | </td></tr> |
| 28 | {% endif %} |