Previous Thread
Next Thread
Print Thread
Rate Thread
#181910 08/17/2003 11:34 AM
Joined: Aug 2003
Posts: 71
Member
Member
Offline
Joined: Aug 2003
Posts: 71
Hello Guyz laugh

I have some Q's to ask shocked

* Q1 :

- How did you add the member directory up here?

[Linked Image]



* Q2 :

- How did you add the moderators names in the descreption of the forums ? like this :

[Linked Image]



* Q3 :

- how did you do this list next to the forums laugh ?

[Linked Image]


Thanks in Advance Guyz tipsy

Sponsored Links
#181911 08/17/2003 3:06 PM
Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
The directory in the first graphic and the content island in the 3rd graphic is in the base code for 6.5+ ubb.classic's. Check in your control panel to turn them on.

The middle one is just a template modification. Which version ubb are you running?


- Allen wavey
- What Drives You?
#181912 08/17/2003 6:02 PM
Joined: Aug 2003
Posts: 71
Member
Member
Offline
Joined: Aug 2003
Posts: 71
Im using 6.5 smile

I tryed the content island but i faced a poroblem with the translation frown

i wish if it will be modified to accept other translations like Arabic.

and about the 1st graphic, where is exactly in the control panel i can add the directory link in the main board page?

Thank you Allen in Advance wink

#181913 08/17/2003 7:32 PM
Joined: Jan 2000
Posts: 5,073
Admin Emeritus
Admin Emeritus
Joined: Jan 2000
Posts: 5,073
The Javascript problem I mentioned in the "Hello, Username" topic you started applies to the Javascript content islands as well. frown


UBB.classic: Love it or hate it, it was mine.
#181914 08/17/2003 7:46 PM
Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
the directory is at the bottom of 'general display settings' smile


- Allen wavey
- What Drives You?
Sponsored Links
#181915 08/17/2003 8:14 PM
Joined: Aug 2003
Posts: 71
Member
Member
Offline
Joined: Aug 2003
Posts: 71
I know Allen it's place and i found it, but i want to show it above next to my profile and so on shocked

I have it already in the post reply page, the PM page, but not the noncgi/ultimatebb.php page [Linked Image]

should i add something in the ultimate.cgi file or what confused

#181916 08/17/2003 8:19 PM
Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
hmmm... if you have it turned on in the control panel, try clearing your cache, that may be why it isn't showing up yet smile


- Allen wavey
- What Drives You?
#181917 08/17/2003 8:32 PM
Joined: Aug 2003
Posts: 71
Member
Member
Offline
Joined: Aug 2003
Posts: 71
I did, nothing happend yet! [Linked Image]

#181918 08/17/2003 8:52 PM
Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
got a link?


- Allen wavey
- What Drives You?
#181919 08/24/2003 10:10 AM
Joined: Apr 2003
Posts: 57
Member
Member
Offline
Joined: Apr 2003
Posts: 57
The problem that Mrs. B talking about is that we are using a button hack for header buttons, and when we've upgraded to 6.5 the directory link appears in every pages except the page that has button hack.

Now the question is: Where can we modify these buttons

link: http://66.129.95.102/ubb63/ubbcgi/ultimatebb.cgi

Sponsored Links
#181920 08/24/2003 10:32 AM
Joined: Jan 2003
Posts: 3,456
Likes: 2
Master Hacker
Master Hacker
Offline
Joined: Jan 2003
Posts: 3,456
Likes: 2
ok, in public_common.pl

Code
find:
---------
if($vars_display{EnableDirectory} ne "no") {
# Member Directory - ONLY IF LOGGED IN
$dirlink = qq(<a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=directory"><acronym title="$vars_wordlets{directory_link}"><img src="$vars_config{NonCGIURL}/$vars_style{directorylink}" border="0" alt="$vars_wordlets{directory_link}" /></acronym></a>);
If you have that in there, then go into your cp, and make sure the directory is enabled. If you don't have that in there...
Code
find:
-----------
sub MainButtonOptions {
# Sorry folks, it just got complicated again.
my($prolink, $reglink, $dirlink, $lilink, @items);
if ($vars_registration{DisplayRegistration} ne 'NO') {
# My Profile - ONLY IF LOGGED IN
$prolink = qq(<a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=my_profile"><acronym title="$vars_wordlets{profile_acronym}"><img src="$vars_config{NonCGIURL}/$vars_style{profilelink}" border="0" alt="$vars_wordlets{profile_link}" /></acronym></a>);
# Log in - ONLY IF NOT LOGGED IN
$lilink = qq(<a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=login"><acronym title="$vars_wordlets{login_acronym}"><img src="$vars_config{NonCGIURL}/$vars_style{loginlink}" border="0" alt="$vars_wordlets{login_link}" /></acronym></a>);

if($vars_registration{SuspendRegister} ne "true") {
# Register - ONLY IF NOT LOGGED IN
$reglink = qq(<a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=agree"><acronym title="$vars_wordlets{register_acronym}"><img src="$vars_config{NonCGIURL}/$vars_style{registerlink}" border="0" alt="$vars_wordlets{register_link}" /></acronym></a>);
} # end if
and add after it

Code
		if($vars_display{EnableDirectory} ne "no") {
# Member Directory - ONLY IF LOGGED IN
$dirlink = qq(<a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=directory"><acronym title="$vars_wordlets{directory_link}"><img src="$vars_config{NonCGIURL}/$vars_style{directorylink}" border="0" alt="$vars_wordlets{directory_link}" /></acronym></a>);
Now I couldn't test this cause I would need to be logged in, and have a clue how to read your board shocked . Try that, it should be able to fix it

#181921 08/24/2003 11:27 AM
Joined: Apr 2003
Posts: 57
Member
Member
Offline
Joined: Apr 2003
Posts: 57
This statement is already there in public-commom.

I think you did not understand me.
directory is accessable for.
I just want to add directory link in the main page
just after the rest of the buttons I have.

I also do not know how to put these buttons
in each page top header.

Thanks for your help AL.

#181922 08/24/2003 2:24 PM
Joined: Apr 2003
Posts: 57
Member
Member
Offline
Joined: Apr 2003
Posts: 57
ok, I found it smile

I forgot that I have JCtamplates :kick:


Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
isaac
isaac
California
Posts: 1,157
Joined: July 2001
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)