#1. Suppose you have some sub-pages with URL
- /projects/temania
- /projects/tainui-bathroom
You want to unlink these items from Project Page (users won’t click on these items)
#2. You can use this code to Code Injection > Footer
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script> jQuery(document).ready(function($){ $('a.grid-item[href="/projects/temania"]').removeAttr('href'); $('a.grid-item[href="/projects/tainui-bathroom"]').removeAttr('href'); }) </script>