I'm sorry but I've abandoned this extension. It's way too problematic and quite embroiled on license side. But you should check this out http://punbb.informer.com/forums/topic/ … hoang83vu/
77 2012-07-19 06:38
Re: lastest topics in the main page (3 replies, posted in Discussions)
Could you please precise things a little bit?
You mean something like 'table' with eg 5 latest topics?
78 2012-07-10 11:03
Re: Forum delete (3 replies, posted in PunBB 1.4 bug reports)
It's not a bug - it's a feature!
( Sorry I couldn't resist )
79 2012-07-09 09:17
Re: Forums Icons (6 replies, posted in PunBB 1.4 troubleshooting)
Mea culpa,
you can fix it by adding
#brd-index
at the beginning so it would be
#brd-index .main-content .main-item .icon {
width: 24px;
height: 24px;
float: left;
margin-top: 12px;
margin-left: -33px;
border: 0px solid;
}
#brd-index #forum1 .icon {
background: url(redicon.png) 0px 0px no-repeat;
}
#brd-index #forum2 .icon {
background: url(greenicon.png) 0px 0px no-repeat;
}
80 2012-07-07 05:56
Re: what is get_hook function? (1 replies, posted in PunBB 1.4 troubleshooting)
http://punbb.informer.com/wiki/punbb13/ … elopment?s[]=hook#using_hooks
81 2012-07-05 19:27
Re: Cannot open the topic (14 replies, posted in PunBB 1.4 bug reports)
Try to reinstall pun_approval :-)
82 2012-07-05 15:14
Re: Forums Icons (6 replies, posted in PunBB 1.4 troubleshooting)
You should add this code at the end of your Oxygen.min.css file in style/Oxygen folder.
.main-content .main-item .icon {
width: 24px;
height: 24px;
float: left;
margin-top: 12px;
margin-left: -33px;
border: 0px solid;
}
Where width and height are your icon size.
Then add this
#forum1 .icon {
background: url(icon1.png) 0px 0px no-repeat;
}
Where icon1.png is your icon and forum1 is your first forum ( forum2 is second etc. )
So here you would have this code at the end of your Oxygen.min.css.
.main-content .main-item .icon {
width: 24px;
height: 24px;
float: left;
margin-top: 12px;
margin-left: -33px;
border: 0px solid;
}
#forum1 .icon {
background: url(redicon.png) 0px 0px no-repeat;
}
#forum2 .icon {
background: url(greenicon.png) 0px 0px no-repeat;
}
However if you haven't got exactly 24x24px icons you would have to change margins in code above. And you will have to experiment.
83 2012-06-27 16:31
Re: [Extension] "Thanks" feature aka Pun_Karma (14 replies, posted in PunBB 1.4 additions)
It seems to doesn't work with friendly url.
Well it doesn't work after all :<. On localhost everything goes all right, but on my forum while I'm trying to click + or - it redirect me to post without changing anything.
84 2012-06-26 21:12
Re: ASK: change spoiler css (solved ) by kushi (7 replies, posted in Discussions)
I'm sorry @reigyx_x but I can hardly understand your English .
Step by step.
First, make sure what is your theme exact name. You can check it in your profile.
Next go to fancy_spoiler/css in your extension folder, copy Oxygen folder and name copied folder exactly the same as your theme name.
Go in to that folder and edit fancy_spoiler.min.css
Before:
After:
85 2012-06-25 13:05
Re: KT Newpost Highlighted (10 replies, posted in PunBB 1.4 additions)
I thnik you can handle it yourself .
In kt_newpost_hl.js line
$('#visit-new').addClass('kt_newpost_hl');
means adding to #visit-new .kt_newpost_hl class. So you can just change that to
$('#brd-title a').addClass('kt_newpost_hl');
and it should add this class to header. Later just edit kt_newpost_hl.css to whatever You want. If you cant see effect try putting !important at the end of parameter in css. EG
.kt_newpost_hl{
color: red !important;
}
86 2012-06-19 13:09
Re: Req Suggest ext (5 replies, posted in PunBB 1.4 additions)
Well it is. Just change maxtested version in manifest.xml
87 2012-06-18 07:27
Re: [Extension release] KT Mobile v1.6 (80 replies, posted in PunBB 1.4 additions)
Looks like you either forgot to change the version number in the manifest.xml, or you forgot to upload the new version.
I'm terribly sorry. Everything should be fine now.
88 2012-06-18 07:21
Re: Req Suggest ext (5 replies, posted in PunBB 1.4 additions)
reCAPTCHA
http://punbb.informer.com/forums/topic/ … recaptcha/
works great on 1.4
89 2012-06-11 13:04
Re: [Extension release] Pun_pm notifier (12 replies, posted in PunBB 1.4 additions)
Try now.
90 2012-06-11 08:50
Re: ASK: change spoiler css (solved ) by kushi (7 replies, posted in Discussions)
You're looking for spoiler.css in screenshoot above while ir has to be exactly fancy_spoiler.min.css. Any other won't load and instead it would add this specific default code to your header.
91 2012-06-07 16:47
Re: [Extension release] KT Mobile v1.6 (80 replies, posted in PunBB 1.4 additions)
Version 0.9 is here.
Fixed multimoderation
Crumbs are back
Announcement is back
Wider input field
Plus few more fixes
92 2012-06-07 16:13
Re: [Extension release]KT Stylish announcement (32 replies, posted in Supported extensions)
Update
93 2012-06-07 13:29
Re: Polish language pack for PunBB 1.4 (8 replies, posted in Language packs)
I've found some minor error.
admin_settings.php
'Quick jump' => 'Menu \'Skodz do\'',
94 2012-06-07 09:35
Re: ASK: change spoiler css (solved ) by kushi (7 replies, posted in Discussions)
From what i see on your forum fancy_spoiler.min.css doesn't load at all. Please check if the path is correct.
fancy_spoiler/css/your_style_name/fancy_spoiler.min.css
96 2012-06-05 07:59
Re: [Extension release] KT Mobile v1.6 (80 replies, posted in PunBB 1.4 additions)
Right! Announcements are todo. Thanks for reminding me. But i have to confront it with my other extension somehow, that's why i have turned it now.
Anyway update should come very soon with multi-moderation and some other smaller things fixed.
97 2012-06-04 09:05
Re: ASK: change spoiler css (solved ) by kushi (7 replies, posted in Discussions)
Try to clear cache.
98 2012-06-03 16:31
Re: [Extension release] KT Mobile v1.6 (80 replies, posted in PunBB 1.4 additions)
I see now. Strange, as far as i remember I've been testing it on some previous version ( perhaps ) and it was fine. Well I guess I cannot do anything about it.
I'm trying to do everything according to standards and it works just fine on Chrome beta, Firefox, Dolphin, Android 2.3 and 4 build browsers and iPhones.
99 2012-06-02 16:24
Re: [Extension release] KT Mobile v1.6 (80 replies, posted in PunBB 1.4 additions)
Yeap, I didn't adapt pun_pm yet.
100 2012-06-01 20:02
Re: [REQ] Black theme (1 replies, posted in PunBB 1.4 additions)
Midnight is quite dark
http://punbb.informer.com/forums/topic/ … emidnight/