How to make the Home button not open in a new tab?
5 posters
Page 1 of 1
How to make the Home button not open in a new tab?
Forum Version: phpBB3
Hello! The owner of our site bought us copyrights and we added a Home image to the toolbar. I was wondering how instead of it sends the user to a new tab, it just reloads the current tab to the website's home.
Just to clarify, I'm talking about the link option for the toolbar, we made it to where there's a home button on it. :-)
Hello! The owner of our site bought us copyrights and we added a Home image to the toolbar. I was wondering how instead of it sends the user to a new tab, it just reloads the current tab to the website's home.
Just to clarify, I'm talking about the link option for the toolbar, we made it to where there's a home button on it. :-)
Re: How to make the Home button not open in a new tab?
What's your forum link?
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
Re: How to make the Home button not open in a new tab?
How did he add this image?
Also why do you have 2 images that do the same thing?
Also why do you have 2 images that do the same thing?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to make the Home button not open in a new tab?
Oh, it went to the forumotion website before, but it goes to our home now. I'll fix that. I used the Home button, using CSS and a background image to make it into a house.
Re: How to make the Home button not open in a new tab?
Wait a minute! Have you used credits to modify that link? If you have not, you can not use codes to change it. When you used credits to remove copyrights, the options to modify the toolbar copyrights become available.
AP > Modules > Toolbar
AP > Modules > Toolbar
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to make the Home button not open in a new tab?
THey have used credits, fairly sure. Considering the toolbar link is missing and Forumotion copyrights at bottom are gone.
Take Notes- Helper
- Posts : 2337
Reputation : 324
Language : English
Location : Forumountain
Re: How to make the Home button not open in a new tab?
Then all the founder has to do is add the image's URL in the correct box here: AP > Modules > Toolbar.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to make the Home button not open in a new tab?
Hey @Kelso!
Administration Panel >> Modules >> HTML & Javascript >> Javascript codes management >> Create new javascript
Title: Your choice
Placement: In all the pages
Code:
This should preventing opening a new tab. And about that other FA Icon...
Just add that code within the function and it should do the trick.
Have a nice day
Administration Panel >> Modules >> HTML & Javascript >> Javascript codes management >> Create new javascript
Title: Your choice
Placement: In all the pages
Code:
- Code:
$(function() {
$('#fa_service').attr("target", "");
});
This should preventing opening a new tab. And about that other FA Icon...
- Code:
$('#fa_icon').attr("href", "http://help.forumotion.com");
Just add that code within the function and it should do the trick.
Have a nice day
Re: How to make the Home button not open in a new tab?
Ace 1 wrote:Hey @Kelso!
Administration Panel >> Modules >> HTML & Javascript >> Javascript codes management >> Create new javascript
Title: Your choice
Placement: In all the pages
Code:
- Code:
$(function() {
$('#fa_service').attr("target", "");
});
This should preventing opening a new tab. And about that other FA Icon...
- Code:
$('#fa_icon').attr("href", "http://help.forumotion.com");
Just add that code within the function and it should do the trick.
Have a nice day
Hey! Thank you for responding. :-D Unfortunately, the code did not work. I implemented it, causing our chatbox to disappear and the Homepage still coming up in another tab.
Sad day :-(
Re: How to make the Home button not open in a new tab?
Hm. Try replacing the following codes
,
with these
,
respectively.
|
|
|
|
Re: How to make the Home button not open in a new tab?
All the founder has to do is enter the image's URL in the correct box under Modules > Toolbar.
Modify the copyrights:
Text of the link:
Site URL: Link to page to load.
Logo of the Toolbar: The image's URl will go here.
This options are only available when you used credits to remove copyrights which you said that the founder did.
What exactly is the founder trying to do?
Modify the copyrights:
Text of the link:
Site URL: Link to page to load.
Logo of the Toolbar: The image's URl will go here.
This options are only available when you used credits to remove copyrights which you said that the founder did.
What exactly is the founder trying to do?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to make the Home button not open in a new tab?
@Ace_1 It didn't work. ;_;
@SLGray We're wanting to make it to where when we push the icon on the toolbar, instead of it opening a brand new tab, it will just reload the tab it's already on.
If I could find the HTML for the toolbar and remove the target="_blank" from it, that'll do the job.
@SLGray We're wanting to make it to where when we push the icon on the toolbar, instead of it opening a brand new tab, it will just reload the tab it's already on.
If I could find the HTML for the toolbar and remove the target="_blank" from it, that'll do the job.
Re: How to make the Home button not open in a new tab?
Since you said you bought the option with credits it should be in Templates > General > overall_header
If not then you can just keep looking through the templates until you find one that has "fa_service" in it. Though, I believe only forumotion is meant to be able to do that. Not quite sure.
As SLGray said, you should be able to avoid the hassle and do it from here: http://prntscr.com/bpdnzg
If not then you can just keep looking through the templates until you find one that has "fa_service" in it. Though, I believe only forumotion is meant to be able to do that. Not quite sure.
As SLGray said, you should be able to avoid the hassle and do it from here: http://prntscr.com/bpdnzg
Re: How to make the Home button not open in a new tab?
Everyone the topic starter is wanting to stop it from opening a new window only.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: How to make the Home button not open in a new tab?
SLGray wrote:Everyone the topic starter is wanting to stop it from opening a new window only.
This and bump.
Re: How to make the Home button not open in a new tab?
I'm not worried for this anymore, thank you to those who tried to help!
I'll find another way. :-D
Please lock!
I'll find another way. :-D
Please lock!
Re: How to make the Home button not open in a new tab?
Locked as Requested
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Similar topics
» how to make open link in new tap ???
» How to make an inserted link open in a new windows / tab
» How do I add a button in the Reply Editor to open a popup window
» My home/forum button is gone?
» Home button near footer?
» How to make an inserted link open in a new windows / tab
» How do I add a button in the Reply Editor to open a popup window
» My home/forum button is gone?
» Home button near footer?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum