Yeah I'd like to see this completed too
2 2009-07-14 12:24
Re: [REQUEST] Colored Usergroups (2 replies, posted in PunBB 1.3 extensions)
That extension was coded for flux-1.3b, and doesn't work.
Anyone working on an extension like this or willing to update this?
3 2009-07-14 08:27
Re: [beta release]PunBB Twitter (85 replies, posted in PunBB 1.3 extensions)
I'd love to see the addition of newly registered members as tweets, and have a link to the profile.
4 2009-07-11 04:32
Re: [beta release]PunBB Twitter (85 replies, posted in PunBB 1.3 extensions)
There's extra strings displayed in the setting page, is it right?
And it doesn't work (no tweet updated).Version: 0.9
http://forum.projanmo.com/extensions/pun_twitter.zip
Try that link ^
5 2009-07-09 05:22
Re: [beta release]PunBB Twitter (85 replies, posted in PunBB 1.3 extensions)
I'm using this one:
http://forum.projanmo.com/extensions/pun_twitter.zip
Here's two screen shots that may assist you?
6 2009-07-06 10:37
Re: [beta release]PunBB Twitter (85 replies, posted in PunBB 1.3 extensions)
Hi there!
I just want to begin by saying, I love this extension!
It's brought so much traffic and exposure to my boards, it's amazing.
However, I have one minor problem, I have deselected the 'to.ly' short URL option. This has successfully disabled the short URL for NEW THREADS, but has no effect on new posts IN THREADS.
Love your work.
Thanks mate.
7 2009-06-30 02:08
Re: [release] prototype and scriptacoulus (12 replies, posted in PunBB 1.3 extensions)
I love it.
Any chance you're still further releasing extensions for this?
8 2009-06-10 09:31
Re: [Request] Disable post count for a particular forum (7 replies, posted in PunBB 1.3 extensions)
There was skip post counting extension for fluxbb (I think it sould work with punbb also), but download links don't work. I had this extension installed on my fluxbb forum, so I packed it into zip and uploaded to my server:
http://pun.fluxbb.pl/download_extension … unting.zip
Dead link, anyone still got it?
Or an equivilient
9 2009-05-15 05:38
Re: [Release] Capture referral source on registration (18 replies, posted in PunBB 1.3 extensions)
@Brett
Works a charm now, thanks.
10 2009-05-14 05:14
Re: [Release] Capture referral source on registration (18 replies, posted in PunBB 1.3 extensions)
When submitting information in the administrator section (i.e. updating settings in "Settings < Setup")
I get an error:
Notice: Undefined index: cws_sources in /home/*/public_html/admin/settings.php(250) : eval()'d code on line 10
11 2009-04-22 11:35
Re: [release] Impoved online list (61 replies, posted in PunBB 1.3 extensions)
There is an error when both "today" and "this week" options are set to off:
Database reported: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY username' at line 1 (Errno: 1064).
I get that with just: "this week" disabled. This appears when a user is logged out, or simply - guests.
Edit: Forgot to mention I'm using 1.3.
I've reverted back to 1.2 and have absolutely no issues :]
12 2009-03-08 09:17
Re: [Request] Disable post count for a particular forum (7 replies, posted in PunBB 1.3 extensions)
I've been looking for the same addon.
13 2009-03-07 01:11
Re: [Extension] Adding Images To Navlinks 1.2 (29 replies, posted in PunBB 1.3 extensions)
regarding the center issue;
***********************
try changing these (original) lines to your needs which you find in 'yourstyle'.css#brd-navlinks ul {
margin: 0;
padding: 0.5em 0;
float: left;
}#brd-navlinks li {
display: inline;
margin-right: 1em;
}#brd-navlinks li a {
font-size: 1.167em;
text-decoration: none;
}
Thanks mate,
for anyone interested in how to centre links-
find the original lines and change to:
#brd-navlinks ul {
margin: 0;
padding: 0.5em 0;
position: relative;
float: left;
left: 50%;
}
#brd-navlinks li {
display: inline;
margin-right: 1em;
position: relative;
float: left;
right: 50%;
}
@SuperMAG.
I suggest you use 1.2, as 1.5 has the hover-over, and seeing as though you will have the text beside the icons, there will be no need for it.
Just as an example:
edit:
$links['index'] = '<li id="navindex"'.((FORUM_PAGE == 'index') ? ' class="isactive"' : '').'><a href="'.forum_link($forum_url['index']).'"><img src="'.$ext_info['path'].'/img/navindex.png" alt="Index" /></a></li>';
to:
$links['index'] = '<li id="navindex"'.((FORUM_PAGE == 'index') ? ' class="isactive"' : '').'><a href="'.forum_link($forum_url['index']).'"><img src="'.$ext_info['path'].'/img/navindex.png" alt="Index" /><span>'.$lang_common['Index'].'</span></a></li>';
14 2009-03-06 05:30
Re: What is something that it NOT very fun to do naked? (12 replies, posted in Fun)
Going to court on charges of indecent exposure - somehow I dont think it'd improve your chances :]
15 2009-03-06 05:14
Re: [Extension] Adding Images To Navlinks 1.2 (29 replies, posted in PunBB 1.3 extensions)
Don't understand your question....
my guess is, he means is it possible to do something like this:
edit:
does anyone know how to center the navbar icons?