Shipping policy different on product page to actual shipping policy page

Hi @bellandrew96 ,

Go to Online Store, then Theme, and select Edit Code.
Search for global.js/theme.js file Add the provided code at the end of the file.

document.addEventListener("DOMContentLoaded", function () {
    var policyLink = document.querySelector(".product__policies.rte a");
    if (policyLink) {
        policyLink.setAttribute("href", "https://marrabellclothing.com/pages/shipping-policy");
    }
});