How to change "link to us"?
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
How to change "link to us"?
Your Portal Version: 1.0.0RC3
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Beginner
Boardlink: http://www.karapatis.com/forum
PHP Version: 3.02
What have you done before the problem was there?
The root of my forum is mysite/forum and not mysite/phpbb. how can i change this??????
What have you already tryed to solve the problem?
Description and Message
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Beginner
Boardlink: http://www.karapatis.com/forum
PHP Version: 3.02
What have you done before the problem was there?
The root of my forum is mysite/forum and not mysite/phpbb. how can i change this??????
What have you already tryed to solve the problem?
Description and Message
-
- Site Admin
- Posts: 2989
- Joined: 7. January 2006 20:11
- phpBB.de User: Saint
- phpBB.com User: Saint_hh
- Location: Hamburg
- Contact:
Re: How to change "link to us"?
This depends on a misconfiguration of your board. Set the correct script path in your ACP:
Server-configuration --> Server and Domain --> Script-path
Server-configuration --> Server and Domain --> Script-path
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~
Kein Support per PN / No support via PM!
Kein Support per PN / No support via PM!
Re: How to change "link to us"?
thnxxxx
Re: How to change "link to us"?
Id like this link to point at my home page (the portal page). I tried deleting the phpbb3 from the script path and it just puts phpbb3 back anyway. How can i get the link to point at my home page?Kevin wrote:This depends on a misconfiguration of your board. Set the correct script path in your ACP:
Server-configuration --> Server and Domain --> Script-path
Re: How to change "link to us"?
I want to make my own text
How can I do it?
How can I do it?
Re: How to change "link to us"?
open: root/language/en/mods/lang_portal.php
search for: (line 167)
... and replace with
search for: (line 167)
Code: Select all
'LINK_US_TXT' => 'Please feel free to link to <strong>%s</strong>. Use the following HTML:',
Code: Select all
'LINK_US_TXT' => 'what ever you want',
kein Support per PN / Messenger
no Support via PM / Messenger
no Support via PM / Messenger
Re: How to change "link to us"?
thanks for answer
but I want to change the link (html)
sorry for my english
but I want to change the link (html)
sorry for my english
Re: How to change "link to us"?
Currently the link is created from phpbb variables, but on some installations it goes a bit weird. To manually change the link look through /portal/block/link_us.php
Board3 Portal Dev & English Tech Support
Re: How to change "link to us"?
I've looked through this file. I understand PhP to a very limited degree. I looked through, what it says makes sense to me. I can pick it apart, but I have no idea how to add in my own code. All I want to do instead is make it basically do this:Ice wrote:Currently the link is created from phpbb variables, but on some installations it goes a bit weird. To manually change the link look through /portal/block/link_us.php
Code: Select all
<a href="website"><img src="mybutton"></a>
Edit: nvm, I think I'm just going to try and make myself a much less complicated block...
Edit2: Now I see why it's so complicated -_-
Re: How to change "link to us"?
I'm so close I can taste it. I'm just having one problem, which is getting the actual link into the quotations, but damn, I think I'm doing alright for not really knowing anything about this. This is my code:
That's line 29 of portal/block/link_us.php
If anyone could help me, I'd very much appreciate it
Code: Select all
'U_LINK_US' => '<a href="' . $u_link . '" ' . (($config['site_desc']) ? '<img src="' . $config['http://www.buttonlink.com/images/img.gif'] . '"' : '' ) . '>' . (($config['sitename']) ? $config['sitename'] : $u_link ) . '</a>',
If anyone could help me, I'd very much appreciate it
Re: How to change "link to us"?
This worked, I had to change the $u_link path but it worked. Thank you very much, really appreciate the help