|
|
| Author |
Message |
creativityunlimited
New User
Joined: 01 Aug 2009
Posts: 4
Location: Manchester, MD
|
Posted: August 1st 2009, 5:41 pm Post subject: Help needed with header, footer, and a few settings |
|
|
Hi, I need someone to assist me in figuring out how to add links to the navigation bar of my forum, specifically when using Avalon Blue, Hestia Blue, and Serenity Cyan styles, which came from this site.
Using the same themes, I also need someone to show me how I can edit the copyright information on the footer. I don't plan to remove the existing copyright. I want to add my copyright information to the bundle.
Last but not least, I need someone to show me where in the admin settings I can change the regulations registrants agree to upon registration. There are a few things I want to add to it.
Thanks a lot for any help in this! _________________ Michael Bowler, owner and operator of Creativity Unlimited
http://www.creativityunlimited.net |
|
| Back to top |
|
 |
~HG~
Dedicated User
Joined: 08 Nov 2003
Posts: 3913
Location: Australia
|
|
| Back to top |
|
 |
creativityunlimited
New User
Joined: 01 Aug 2009
Posts: 4
Location: Manchester, MD
|
Posted: August 4th 2009, 1:56 am Post subject: |
|
|
Thanks for the input. What do you mean what they're based on? Do you mean the coding language? They are primarily HTML, with what seems to be a weird phpBB version of PHP if that's what you're asking.
I found the files I need to edit from my knowledge of basic coding languages, but my problem here is that there are a lot of intricate codes that I am not familiar with, such as identifying "U_[insert specifics here]" type stuff that I'm not familiar with. I was hoping for more along the lines of a short description of how to do the coding to add the links and edit things, as I am extremely unfamiliar with these types of coding. Any help with that would be appreciated. _________________ Michael Bowler, owner and operator of Creativity Unlimited
http://www.creativityunlimited.net |
|
| Back to top |
|
 |
~HG~
Dedicated User
Joined: 08 Nov 2003
Posts: 3913
Location: Australia
|
Posted: August 4th 2009, 12:55 pm Post subject: |
|
|
Style based on means the default phpBB2 style either proSilver or subsilver2.
For your intricate codes that you are not familiar with, U = URL and L = language
The easiest way to add links is to use HTML so that you dont need to edit language files etc so where you see something like:
Example based on prosilver overall_header.html
| Code:
|
<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
<ul class="linklist leftside">
<li class="icon-ucp">
<a href="{U_PROFILE}" title="{L_PROFILE}" accesskey="u">{L_PROFILE}</a>
<!-- IF S_DISPLAY_PM --> (<a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a>)<!-- ENDIF --> •
<a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a>
<!-- IF U_RESTORE_PERMISSIONS --> •
<a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a>
<!-- ENDIF -->
</li>
</ul>
<!-- ENDIF -->
<ul class="linklist rightside">
<li class="icon-faq"><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li>
<!-- IF not S_IS_BOT -->
<!-- IF S_DISPLAY_MEMBERLIST --><li class="icon-members"><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF -->
<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED --><li class="icon-register"><a href="{U_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF -->
<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l">{L_LOGIN_LOGOUT}</a></li>
<!-- ENDIF -->
|
Simply add a link to where you want it displayed (linklist left is for logged in only and linklist right is public) like this:
| Code:
|
|
<li class="icon-faq"><a href="http://www.newlink.com" title="New Link">New Link</a></li>
|
You can leave the icon in place or add a new one to suit if you like, that is up to you. _________________ ~HG~
|| rodneyangell.com || || phpbb-tutorials.com ||My Hacks |
|
| Back to top |
|
 |
siremethmimetes
New User
Joined: 12 Jul 2009
Posts: 15
|
Posted: August 6th 2009, 5:10 am Post subject: |
|
|
Greetings creativityunlimited,
Here are some links that might help to explain about the {_VARIABLE} syntax (called template variables):
http://www.phpbb.com/community/viewtopic.php?f=74&t=1054355
http://www.phpbb.com/community/viewtopic.php?f=71&t=1641705&start=0
http://www.phpbb.com/community/viewtopic.php?f=71&t=550333
http://wiki.phpbb.com/Template_Syntax
http://wiki.phpbb.com/Using_the_phpBB3.0_Template_System
I hope that helps! I still need to learn more about this, but these give you a good start (such as how to set a new language var so that a new image link will work with the javascript correctly).
With joy and peace in Christ,
Sir Emeth Mimetes _________________ I am Sir Emeth Mimetes (knighted to the warfare of truth by the calling of Christ, the Master of my order), and thus, though poorly is it ever met by my feeble abilities, is my mission: to combat those ideas that are rooted in mindsets that are contrary to my Master.
May I never forsake abiding in Him, and may His ways never cease to thrive within my heart, for He only is my strength and hope.
note: emeth is Hebrew for truth, right, faithful;
mimetes is Greek for an imitator or follower. |
|
| Back to top |
|
 |
creativityunlimited
New User
Joined: 01 Aug 2009
Posts: 4
Location: Manchester, MD
|
Posted: August 6th 2009, 1:57 pm Post subject: |
|
|
Thanks to all of you for the great input. I will be looking at the articles you linked for me, Sir Emeth Mimetes. Thanks a lot.
You raised another point, HG. How do I find out for sure which style(s) the styles I am using are based on?
Needless to say, I am very amateurish at best when it comes to forum building. Once I get the actual building done, the ACP is second nature to me, and I will be fine. My HTML and PHP knowledge has been no match for the intricacies of phpBB forum language and structure. I thank everybody for their patience with me and their willingness to help. _________________ Michael Bowler, owner and operator of Creativity Unlimited
http://www.creativityunlimited.net |
|
| Back to top |
|
 |
Patrick
Admin/Webmaster

Joined: 11 May 2001
Posts: 17279
Location: Harbinger, NC, U.S.A.
|
|
| Back to top |
|
 |
siremethmimetes
New User
Joined: 12 Jul 2009
Posts: 15
|
Posted: August 14th 2009, 6:22 am Post subject: |
|
|
| creativityunlimited wrote:
|
Needless to say, I am very amateurish at best when it comes to forum building. Once I get the actual building done, the ACP is second nature to me, and I will be fine. My HTML and PHP knowledge has been no match for the intricacies of phpBB forum language and structure. I thank everybody for their patience with me and their willingness to help.
|
That is actually a pretty good description of me as well. But I am learning fast (I hope). Good luck! _________________ I am Sir Emeth Mimetes (knighted to the warfare of truth by the calling of Christ, the Master of my order), and thus, though poorly is it ever met by my feeble abilities, is my mission: to combat those ideas that are rooted in mindsets that are contrary to my Master.
May I never forsake abiding in Him, and may His ways never cease to thrive within my heart, for He only is my strength and hope.
note: emeth is Hebrew for truth, right, faithful;
mimetes is Greek for an imitator or follower. |
|
| Back to top |
|
 |
Patrick
Admin/Webmaster

Joined: 11 May 2001
Posts: 17279
Location: Harbinger, NC, U.S.A.
|
|
| Back to top |
|
 |
siremethmimetes
New User
Joined: 12 Jul 2009
Posts: 15
|
Posted: August 15th 2009, 9:24 am Post subject: |
|
|
| Patrick wrote:
|
We all start somewhere. Glad to see you jumping in to help, Mr. Lauser!
|
You are welcome. I hope that I will one day become more helpful! Anyways, end of digression. _________________ I am Sir Emeth Mimetes (knighted to the warfare of truth by the calling of Christ, the Master of my order), and thus, though poorly is it ever met by my feeble abilities, is my mission: to combat those ideas that are rooted in mindsets that are contrary to my Master.
May I never forsake abiding in Him, and may His ways never cease to thrive within my heart, for He only is my strength and hope.
note: emeth is Hebrew for truth, right, faithful;
mimetes is Greek for an imitator or follower. |
|
| Back to top |
|
 |
|