How to Create an Affiliate Shop on Squarespace (No E-commerce Needed!)
<!-- Add jQuery Library -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function () {
$(".blog-basic-grid article .image-wrapper").each(function () {
$(this).on("click", function (e) {
e.preventDefault(); // Prevent default link behavior
e.stopPropagation(); // Stop event bubbling
}).css("pointer-events", "none"); // Disable clicks
});
});
</script>