Hi,
Trying to figure out how to get this href link to function within a SIGNUP button. Link works fine but just not clickable from our store page:
Get a 15% Discount and Enter to Win $250
<button class="btn"
Sign Up Now
Tried a lot of different variations and Plus Support sent me to a freecodecamp page which didnt help
For some reason the index.liquid code does not want to accept this outside url although it links fine to our Facebook page on the button next to it
Any ideas? Thanks!
Lizzy_James:
Hi,
Trying to figure out how to get this href link to function within a SIGNUP button. Link works fine but just not clickable from our store page:
Get a 15% Discount and Enter to Win $250
Tried a lot of different variations and Plus Support sent me to a freecodecamp page which didnt help
For some reason the index.liquid code does not want to accept this outside url although it links fine to our Facebook page on the button next to it
Any ideas? Thanks!
+++++++++ apparently it is supposed to look like this:
<button class="btn"
Sign Up Now
Hope this is helpful to someone else out there!
(thanks to Jesse from the Plus Support team)
Hi @Lizzy_James ,
Hope you are doing well.
Actually, you put “a” tag in “button” tag but in “a” tag does not contain the content so when you click, you just click on “button” tag not “a” tag, so your site can not redirect as you know.
To solve your problem, you can use this snippet:
Sign Up Now
Hope this helps!