Switch user page out with a html page
3 posters
Page 1 of 1
Switch user page out with a html page
Hellow!
I'm currently making a html page for my roleplay character on my website, but i was wondering, if it was possible for people who clicked on my userlink were transferred to the html page link instead?
I haven't heard anyone doing this before. So i was just wondering if might be possible.
I'm currently making a html page for my roleplay character on my website, but i was wondering, if it was possible for people who clicked on my userlink were transferred to the html page link instead?
I haven't heard anyone doing this before. So i was just wondering if might be possible.
Re: Switch user page out with a html page
You mean when you click on your username url what usually lead to your profile?
Re: Switch user page out with a html page
Hello @IdaTR,
Should be possible with some JavaScript. Go to Administration Panel > Modules > JavaScript codes management > Create a new script
Placement : In all the pages
Paste the code below :
I have 3 examples by default in the script, you can remove or modify them. Here's an explanation :
It basically changes the old url with the new one you supply. You write it as : changeURL('OLD URL', 'NEW URL')
OLD URL : The URL of the link you want to replace. e.g. /u1, /u2, /u3
NEW URL : The new URL that replaces the old one.
You can paste the same thing in the script above as much as you want.
Should be possible with some JavaScript. Go to Administration Panel > Modules > JavaScript codes management > Create a new script
Placement : In all the pages
Paste the code below :
- Code:
$(function() {
changeURL('/u1', '/h1-');
changeURL('/u2', '/h2-');
changeURL('/u3', '/h3-');
function changeURL(url,newurl){$('a[href="'+url+'"]').attr('href',newurl)}
});
I have 3 examples by default in the script, you can remove or modify them. Here's an explanation :
It basically changes the old url with the new one you supply. You write it as : changeURL('OLD URL', 'NEW URL')
OLD URL : The URL of the link you want to replace. e.g. /u1, /u2, /u3
NEW URL : The new URL that replaces the old one.
You can paste the same thing in the script above as much as you want.
Similar topics
» Help me tweak my switch-user script
» How to Embed a Google Docs Form into an HTML page using HTML Pages Management
» Html page
» HTML page as Home page problem
» [Help] HTML Page: Space between Header and top of page.
» How to Embed a Google Docs Form into an HTML page using HTML Pages Management
» Html page
» HTML page as Home page problem
» [Help] HTML Page: Space between Header and top of page.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum