Jump to content

how to change URL of navigation menu, based on user device? (make it mobile link automatically)

Go to solution Solved by Web_Solutions,

Recommended Posts

I've been trying to change a URL for one of my navigation menu from Pc version to mobile version, based on user device.

The code below is how I tried to do it. In the screen below 600 px, I specified to redirect to the link inside content: url("");, but it doesn't seem to work. 

@media screen and (max-width: 600px) {
  .Header-nav-item--external
a[href="http://www.chamdoctor.com/re/sub09/sub09_02.html"] {
    content: url("http://m.chamdoctor.com/sub04/sub04_03.html");
  }
}

@media screen and (min-width: 601px) {
  .Header-nav-item--external
a[href="http://www.chamdoctor.com/re/sub09/sub09_02.html"] {
    content: url("http://www.chamdoctor.com/re/sub09/sub09_02.html");
  }
}

 

Link to comment
7 hours ago, YKL said:

I've been trying to change a URL for one of my navigation menu from Pc version to mobile version, based on user device.

The code below is how I tried to do it. In the screen below 600 px, I specified to redirect to the link inside content: url("");, but it doesn't seem to work. 

@media screen and (max-width: 600px) {
  .Header-nav-item--external
a[href="http://www.chamdoctor.com/re/sub09/sub09_02.html"] {
    content: url("http://m.chamdoctor.com/sub04/sub04_03.html");
  }
}

@media screen and (min-width: 601px) {
  .Header-nav-item--external
a[href="http://www.chamdoctor.com/re/sub09/sub09_02.html"] {
    content: url("http://www.chamdoctor.com/re/sub09/sub09_02.html");
  }
}

 

Can you share your website URL?

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment
34 minutes ago, Web_Solutions said:

Can you share your website URL?

Sure, Here it is.
https://chamdoctor-jp.com/

As I mentioned, I want a URL of the link menu in the navigation to change to a different URL only on mobile devices.

As is : 
Link of Navigation menu (症例写真) : 
http://www.chamdoctor.com/re/sub09/sub09_02.html > on PC
http://www.chamdoctor.com/re/sub09/sub09_02.html > on mobile

To be : 
Link of Navigation menu (症例写真) : 
http://www.chamdoctor.com/re/sub09/sub09_02.html > on PC
http://m.chamdoctor.com/sub04/sub04_03.html > on mobile

image.thumb.png.e639907d98bc2297712af9541fb48bb4.png

 

Edited by YKL
Link to comment
  • Solution
29 minutes ago, YKL said:

Sure, Here it is.
https://chamdoctor-jp.com/

As I mentioned, I want a URL of the link menu in the navigation to change to a different URL only on mobile devices.

As is : 
Link of Navigation menu (症例写真) : 
http://www.chamdoctor.com/re/sub09/sub09_02.html > on PC
http://www.chamdoctor.com/re/sub09/sub09_02.html > on mobile

To be : 
Link of Navigation menu (症例写真) : 
http://www.chamdoctor.com/re/sub09/sub09_02.html > on PC
http://m.chamdoctor.com/sub04/sub04_03.html > on mobile

image.thumb.png.e639907d98bc2297712af9541fb48bb4.png

 

Add these code on Code Injection panel in Website > Utilities > Website Tools > Code Injection. Add the code under Footer section. See the image

 

<script src="https://code.jquery.com/jquery-3.6.3.min.js"></script>
<script>
  $(function(){
    $('.header-menu-nav-wrapper .header-menu-nav-item [href="http://www.chamdoctor.com/re/sub09/sub09_02.html"]').attr("href","http://m.chamdoctor.com/sub04/sub04_03.html");
  });
</script>

 

Screenshot_535.png

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.