duhmingo Posted October 11, 2019 Share Posted October 11, 2019 Hi, I've searched around and found similar questions but none of the solutions work using the Jones template. How can i change the logo link address destination to redirect at another page instead of the landing page (which is set as home). I found multiple solutions but they seem to be template specific and none of the header or footer injections work. Link to comment
tuanphan Posted October 11, 2019 Share Posted October 11, 2019 @duhmingo Insert this code to Header (or Footer) <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function () { $(".logo-image a[href]").attr("href", "http://www.google.com/"); }); </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
duhmingo Posted October 12, 2019 Author Share Posted October 12, 2019 Thanks! I had to take the risk to set my website to public in order to test this but it works! Is there a way to make this work on the mobile counterparts? When i switch to Ipad and IPhone (mobile) versions, clicking on the logo takes me to the landing page instead of a page in my website that I'm using as my home page. Link to comment
tuanphan Posted October 12, 2019 Share Posted October 12, 2019 @duhmingo <script> $(document).ready(function () { $(".mobile-logo-image a[href]").attr("href", "http://www.google.com/"); }); </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
Archived
This topic is now archived and is closed to further replies.