Hi,
The search icon, hamburger icon and review scroll are not working on my debut theme mobile website and the search icon is not working on my debut theme desktop version. Does anyone have a solution to this? My website is itsthequestiongame.com
Hi,
The search icon, hamburger icon and review scroll are not working on my debut theme mobile website and the search icon is not working on my debut theme desktop version. Does anyone have a solution to this? My website is itsthequestiongame.com
Hi @ITQG
You got an error on the theme.js https://prnt.sc/yTzjt8EmrwtC
On theme.js at the end of the file find below code
for (let i = 0, linksLength = links.length ; i < linksLength ; i++) {
if (links[i].hostname !== window.location.hostname) {
links[i].target = '_blank';
links[i].rel = 'noreferrer noopener';
}
}
Replace with below code
for (let i = 0, linksLength = links.length; i
That worked! Thank you so much!