We do not provide support for hacks, so use them at your own risk. If you're not comfortable with coding, we recommend against using this workaround.
Say you have a project and it's not ready to share yet, but you want to show that it's coming soon with a placeholder in your portfolio grid. It's possible with this hack! Here's how to do it.
Step 1: Grab the related project URL
Set your portfolio grid up as you normally would, then get the URL for the page you want to unlink from your grid.
Step 2: Paste the code
Go to Semplice Dashboard > Customize > Advanced > Edit JavaScript. Paste the following code and add your URL in place of YOUR-URL-HERE:
(function($) {
$('a[href="YOUR-URL-HERE"]').removeAttr('href');
})(jQuery);
Step 3: Save your edits
Click Save on the Code Editor, then Save again on the dashboard.
Your project should no longer be linked! To enable the link again, simply remove the code.
If you have Single Page App mode enabled:
For the javascript to work properly in Single App mode, you must place your script either in a code module on your page (wrapped in script tags) or in a custom footer.