When installing phpBB I want all the links of the bulletin board to open in a frame of a page....instead of the whole page.....How do i do that.....can somebody help me out regarding this....... 
Need help in installing phpBB
To have a link stay in it's frame, it needs the target attribute to be "_self".
I'm pretty sure this method will work, since the links in the templates do not have target attributes applied. What you'll need to do is in your files go to:
PHPBBforum/templates/subSilver/overall_header.tpl
In this file, within the head tag, your going to need to add this code:
This will set all links to have the "_self" target applied to them, and they will stay in their frames.
Now, this is all fine and dandy, but I just want to show you a little mod I came across lately called PHPBB Fetch All. It's a little tool that gives you snippets of code you can use in ANY page of your site, that displays forum information. You might wanna check it out http://www.phpbbfetchall.com .
Happy Coding.
I'm pretty sure this method will work, since the links in the templates do not have target attributes applied. What you'll need to do is in your files go to:
PHPBBforum/templates/subSilver/overall_header.tpl
In this file, within the head tag, your going to need to add this code:
| Code: |
|
<base target="_self" /> |
This will set all links to have the "_self" target applied to them, and they will stay in their frames.
Now, this is all fine and dandy, but I just want to show you a little mod I came across lately called PHPBB Fetch All. It's a little tool that gives you snippets of code you can use in ANY page of your site, that displays forum information. You might wanna check it out http://www.phpbbfetchall.com .
Happy Coding.
