Product Links in Modal Cart/Checkout flow

We have a custom built website that integrates with WineDirect’s tools. The modal cart, WineDirect Cart and Checkout all present the user with links to the products they added, however, the links are directed at the WineDirect version of the Product pages, and not the custom website that we have built. Is there a way to either update those product links to something custom, or disable the links in the modal cart/checkout process?

The website is www.gloriaferrer.com and the winedirect instance is shop.gloriaferrer.com.

Oooh… might be something WD can hard-code fix for you.

If you can apply scripts there, something like this might work:

<script>
    $(document).ready(function() {
        $(".remove-attr").click(function(){            
            $("#v65-modalCartTable a").removeAttr("href");
        });
    });
</script>
1 Like