At the moment, there are two things about this website that are bothering me.
1. It's the rel="canonical" tag. I still haven't figured out where to place it. Since this is a bilingual site, Google treats the secondary language as a copy of the primary language of the site. Well, there is some logic to that, and we could discuss it, but I don't want to get sidetracked. So, the site has two languages: the primary language is Ukrainian, and the secondary language is Russian.
I placed the rel="canonical" tag on all the pages with the secondary language, i.e., Russian. But Google told me that there was an issue with the rel="canonical" tag. Then I switched things around by placing the rel="canonical" tag on the pages of the primary language and requested Google to rescan the site. Now, I'm waiting for their response. However, I still don't fully understand when and where to use the rel="canonical" tag.
2. The second issue is the burger menu. There is a line of code like this: `<div class="container navigation-links"><a class="glyph mobile-nav-button close-button-cross" href="#"><i class="coffeecup-icons-cross2"></i></a>`
Here, instead of a link, there is "#". Some SEO tools are telling me that I have two broken links, showing me these two lines:
`<div class="container navigation-links"><a class="glyph mobile-nav-button close-button-cross" href="#"><i class="coffeecup-icons-cross2"></i></a>`
`</script></div><a href="#" class="responsive-picture mobile-nav-button close-button-cross">`
When I tried to replace the "#" in the first line with the actual page address, it worked. But when I tried to do the same in the second line, the site stopped opening and kept redirecting me to the homepage, which makes sense since I replaced "#" with the homepage address.
But the worst part is something else. For some reason, "#" appeared in the site's URL, and it now looks like this:
https://psydopomoga.com/#
I still don't understand in which cases the hash appears. But I can't find such a link in the body of the site; I've gone through all the code but haven't found anything.