diff --git a/make_post_sell/templates/product_edit.j2 b/make_post_sell/templates/product_edit.j2 index d4a8f26..709c000 100644 --- a/make_post_sell/templates/product_edit.j2 +++ b/make_post_sell/templates/product_edit.j2 @@ -546,85 +546,6 @@
{% endif %} - {# MPS-24: manual tagging is "ghost metadata" — invisible to the - humans and agents reading the page. Hidden by default - (request.manual_tags_enabled, see CLAUDE.md). Tags are derived - linguistically from the title + description instead and auto- - applied on save. Flip MPS_FEATURES_MANUAL_TAGS_ENABLED=True to - restore the manual chip editor below. #} - {% if request.manual_tags_enabled %} - {# Capability-driven: no-JS edits the comma field (persists on - "Save Settings"); product_tags.js turns it into a chip editor - that POSTs each add/remove to /p/{id}/tags. #} -
- - - {# JS-enhanced chip editor. base.j2 ships - , so this stays hidden - without JS; product_tags.js drops `hidden` once it initialises. #} - - - {# No-JS fallback / sync target for the chip editor. #} - - - Tags group this product on your shop's home page. Manage all tags at - your tag editor. - -
- {% else %} -
- -
-

- Tags are derived from your title & description — not - hand-attached. Manual tags are ghost metadata: invisible - to the shoppers and agents actually reading the page. When you - save, this product is automatically filed into your shop's - existing categories by the words in its title and description. -

-

- Want it in a category? Say so in the title or description. To - see or create the categories themselves, visit - your tag editor. -

- {% if request.product.tags|list %} -

- Currently filed under: - {% for t in request.product.tags %}{{ t.name }}{% if not loop.last %} {% endif %}{% endfor %} -

- {% endif %} -
-
- {% endif %} - -
-
- @@ -655,6 +576,72 @@ {% endif %} +{# MPS-24: Tags well — bottom-of-page explainer. Manual tagging is + "ghost metadata" hidden by default (request.manual_tags_enabled). + Tags are derived linguistically from the title + description and + auto-applied on save. Flip MPS_FEATURES_MANUAL_TAGS_ENABLED=True to + restore the manual chip editor. #} +
+

+ 🏷️ + Tags +

+ {% if request.manual_tags_enabled %} + {# Capability-driven: with JS the chip editor POSTs each add/remove + to /p/{id}/tags via AJAX; product_tags.js drops `hidden` once it + initialises. Manual-mode no-JS edits are out-of-band (no parent + form here) — flip the kill switch only when JS is available. #} +
+ + + Tags group this product on your shop's home page. Manage all tags at + your tag editor. + +
+ {% else %} +

+ Tags are derived from your title & description — not + hand-attached. Manual tags are ghost metadata: invisible + to the shoppers and agents actually reading the page. When you + save, this product is automatically filed into your shop's + existing categories by the words in its title and description. +

+

+ Want it in a category? Say so in the title or description. To + see or create the categories themselves, visit + your tag editor. +

+ {% if request.product.tags|list %} +

+ Currently filed under: + {% for t in request.product.tags %}{{ t.name }}{% if not loop.last %} {% endif %}{% endfor %} +

+ {% endif %} + {% endif %} +
+ {% if request.manual_tags_enabled %}