<script>
jQuery(document).on('.projectindex-project-slug-stageclothing a', 'click', function(e)){
e.preventDefault();
e.stopPropagation();
return;
});
</script>
look, u need to look at the html code and find the slugs, i underlined them here
(in google: right click ā inspect element)
[image: 1682588726553-screenshot-2023-04-27-at-11.44.48.png]
then use the code above
so for .projectindex-project-slug-stageclothing and .projectindex-project-slug-iconic-calender
it would be:
<script>
jQuery(document).on('.projectindex-project-slug-stageclothing a, .projectindex-project-slug-iconic-calender a', 'click', function(e)){
e.preventDefault();
e.stopPropagation();
return;
});
</script>
and css:
.projectindex-project-slug-stageclothing a, .projectindex-project-slug-iconic-calender a{
cursor: default;
}