Quality check and fix shop pages when partner programs end
#quali <URL>
<instructions>
#quali https://gutes-gewissen.com/haus-und-garten/atisan/
partnerprogramm beendet, button-link auf kategorie, text-link entfernen
#quali https://gutes-gewissen.com/mode-und-kleidung/fafigo/
partnerprogramm beendet, button-link auf kategorie, textlink ändern in "https://www.fafigo.de/pages/uber-uns"
Extract the shop name from the URL (e.g. from ). Search for the corresponding file in the directories.
atisan.../haus-und-garten/atisan/.md_postsExample: haus-und-garten/_posts/2021-12-22-atisan.md
button-link auf kategorie — Change targetUrlIn the frontmatter, change targetUrl to ../ so the button links to the category page instead of the (now dead) partner link.
Before:
targetUrl: https://www.awin1.com/cread.php?awinmid=21013&awinaffid=731132
After:
targetUrl: ../
Directly under targetUrl, add (or update) these three properties:
ctaButtonText: "Ähnliche Produkte in der Rubrik <RUBRIC>"
sidebarButtonText: "Ähnliche Produkte in der Rubrik <RUBRIC>"
contentButtonText: "Ähnliche Produkte in der Rubrik <RUBRIC>"
Replace <RUBRIC> with the value of the rubric property from the same file's frontmatter.
Example: If rubric: Haus & Garten, then:
targetUrl: ../
ctaButtonText: "Ähnliche Produkte in der Rubrik Haus & Garten"
sidebarButtonText: "Ähnliche Produkte in der Rubrik Haus & Garten"
contentButtonText: "Ähnliche Produkte in der Rubrik Haus & Garten"
The instructions will specify one of two actions for markdown links in the content body:
text-link entfernen — Remove linksRemove all markdown links but keep the link text.
Before:
Die atisan Produkte werden aus [Materialien](https://www.atisan.de/pages/unsere-materialien){:target="_blank"} gefertigt
After:
Die atisan Produkte werden aus Materialien gefertigt
The pattern to match and replace is:
[Link Text](URL){:target="_blank"} → Link Text[Link Text](URL) → Link Texttextlink ändern in "<NEW_URL>" — Change link targetsReplace the URL in all markdown links with the provided new URL. Keep the link text and the {:target="_blank"} attribute intact.
Before:
Die fafigo Produkte werden aus [Materialien](https://www.fafigo.de/old-page){:target="_blank"} gefertigt
After (with new URL https://www.fafigo.de/pages/uber-uns):
Die fafigo Produkte werden aus [Materialien](https://www.fafigo.de/pages/uber-uns){:target="_blank"} gefertigt
The pattern to match and replace is:
[Link Text](OLD_URL){:target="_blank"} → [Link Text](NEW_URL){:target="_blank"}[Link Text](OLD_URL) → [Link Text](NEW_URL)targetUrl: https://www.awin1.com/cread.php?awinmid=21013&awinaffid=731132