J JulioTXX New member Mar 25, 2022 #1 Ok on my website when i click the discord button it opens another tab of my website how do i make it so when they click that discord icon it send thems to my discord invite.
Ok on my website when i click the discord button it opens another tab of my website how do i make it so when they click that discord icon it send thems to my discord invite.
DarkGizmo Well-known member Mar 25, 2022 #2 depending on what theme you have, you should have a section for social icons, there you should see something like: Code: <li id='discord'><a href="#"></a></li> where the "#" is, you'd put the URL to your invite code. Upvote 0 Downvote
depending on what theme you have, you should have a section for social icons, there you should see something like: Code: <li id='discord'><a href="#"></a></li> where the "#" is, you'd put the URL to your invite code.
J JulioTXX New member Mar 25, 2022 #3 DarkGizmo said: depending on what theme you have, you should have a section for social icons, there you should see something like: Code: <li id='discord'><a href="#"></a></li> where the "#" is, you'd put the URL to your invite code. Click to expand... i have this line on my theme <li><a href='#discordapp.com' target='_blank'></a></li> how can i put it on this line Upvote 0 Downvote
DarkGizmo said: depending on what theme you have, you should have a section for social icons, there you should see something like: Code: <li id='discord'><a href="#"></a></li> where the "#" is, you'd put the URL to your invite code. Click to expand... i have this line on my theme <li><a href='#discordapp.com' target='_blank'></a></li> how can i put it on this line
DarkGizmo Well-known member Mar 25, 2022 #4 JulioTXX said: i have this line on my theme <li><a href='#discordapp.com' target='_blank'></a></li> how can i put it on this line Click to expand... What is your invite code URL? You would put the invite URL code where the text is. Code: <li><a href='PUTYOURDISCORDINVITELINKHERE' target='_blank'></a></li> So example of a working code would look like: Code: <li><a href='https://discord.gg/X4gNThu' target='_blank'></a></li> I used my Discord server as an example. Upvote 0 Downvote
JulioTXX said: i have this line on my theme <li><a href='#discordapp.com' target='_blank'></a></li> how can i put it on this line Click to expand... What is your invite code URL? You would put the invite URL code where the text is. Code: <li><a href='PUTYOURDISCORDINVITELINKHERE' target='_blank'></a></li> So example of a working code would look like: Code: <li><a href='https://discord.gg/X4gNThu' target='_blank'></a></li> I used my Discord server as an example.
J JulioTXX New member Mar 25, 2022 #5 DarkGizmo said: What is your invite code URL? You would put the invite URL code where the text is. Code: <li><a href='PUTYOURDISCORDINVITELINKHERE' target='_blank'></a></li> Click to expand... ok got it thanks Upvote 0 Downvote
DarkGizmo said: What is your invite code URL? You would put the invite URL code where the text is. Code: <li><a href='PUTYOURDISCORDINVITELINKHERE' target='_blank'></a></li> Click to expand... ok got it thanks