MTakai Posted June 1, 2021 Share Posted June 1, 2021 (edited) Site URL: https://takai.works Hi there, Was wondering how I could disable clicking on portfolio hover items? They're the four links you see in the center of my homepage. I have access to code injection, by the way. Thanks! Edited June 1, 2021 by MTakai Link to comment
Solution Agha_Waqas Posted June 1, 2021 Solution Share Posted June 1, 2021 15 minutes ago, MTakai said: Site URL: https://takai.works Hi there, Was wondering how I could disable clicking on portfolio hover items? They're the four links you see in the center of my homepage. I have access to code injection, by the way. Thanks! Hi you can add below script into footer injection <script> var all_links = document.querySelectorAll(".portfolio-hover-items-list li a"); for(var i=0; i<all_links.length; i++){ all_links[i].removeAttribute("href"); } </script> tuanphan 1 Link to comment
MTakai Posted June 1, 2021 Author Share Posted June 1, 2021 @Agha_Waqas Perfect, thank you! Link to comment
Itamar Posted March 12 Share Posted March 12 @Agha_Waqas any way this can be don to a specific grid item href? site URL: https://quillfish-star-szda.squarespace.com/ Pass: planetapes Link to comment
tuanphan Posted March 16 Share Posted March 16 On 3/13/2023 at 2:14 AM, Itamar said: @Agha_Waqas any way this can be don to a specific grid item href? site URL: https://quillfish-star-szda.squarespace.com/ Pass: planetapes Add to Settings > Advanced > Code Injection > Footer <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function() { $('#gridThumbs a.grid-item').removeAttr('href'); }); </script> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment