Anyone has this? Link is down.
1 2013-04-29 12:46
Re: [Release] Facebook per Post Like Buttons (9 replies, posted in PunBB 1.3 extensions)
2 2011-01-17 15:56
Re: [Release] jQuery Chat (41 replies, posted in PunBB 1.3 extensions)
Tnx, it works now.
In any case, extension is not very carefully written and can create problems for both the server and for the forum and other extensions. I do not recommend to use the current version.
I know but there is really no alternative out there so i'm stuck.
3 2011-01-17 01:26
Re: [Release] jQuery Chat (41 replies, posted in PunBB 1.3 extensions)
Any news on getting this to work on new fancy jquery?
4 2010-08-21 15:39
Re: [Request] Collapse Category Extension? (16 replies, posted in PunBB 1.3 extensions)
Killerius wrote:Hope it's not to late, I did it like this and it works
With things like pun_user set in code etc you have it working on PunBB 1.3.x?
Do you have a link to your site?
Yea have a look:
http://www.pokerpro.si/forum/index.php
5 2010-08-16 00:41
Re: [Request] Collapse Category Extension? (16 replies, posted in PunBB 1.3 extensions)
Hope it's not to late, I did it like this and it works
#
#---------[ 1. UPLOAD TO / ]---------------------------------------------------
#
img/
include/
#
#---------[ 2. OPEN ]----------------------------------------------------------
#
header.php
#
#---------[ 3. FIND line:121]-------------------------------------------------
#
// Include stylesheets
require FORUM_ROOT.'style/'.$forum_user['style'].'/'.$forum_user['style'].'.php';
#
#---------[ 4. AFTER ADD ]-----------------------------------------------------
#
$forum_head['razsiri'] = '<script type="text/javascript" src="'.$base_url.'/include/global.js"></script>';
#
#---------[ 5. OPEN ]----------------------------------------------------------
#
index.php
#
#---------[ 6. FIND (line:88)]-------------------------------------------------
#
$forum_page['cur_category'] = $forum_page['cat_count'] = $forum_page['item_count'] = 0;
#
#---------[ 7. AFTER ADD ]-----------------------------------------------------
#
// stuff for toggling categories
$cat_ids = (isset($_COOKIE['collapseprefs']))? ','.$_COOKIE['collapseprefs'].',': FALSE;
#
#---------[ 8. FIND (line:117)]-------------------------------------------------
#
?>
<div class="main-head">
<h2 class="hn"><span><?php echo forum_htmlencode($cur_forum['cat_name']) ?></span></h2>
</div>
<div class="main-subhead">
<p class="item-summary"><span><?php printf($lang_index['Category subtitle'], implode(' ', $forum_page['item_header']['subject']), implode(', ', $forum_page['item_header']['info'])) ?></span></p>
</div>
<div id="category<?php echo $forum_page['cat_count'] ?>" class="main-content main-category">
#
#---------[ 9. REPLACE WITH ]--------------------------------------------------
#
// Setting varibles for toggling categories
$div_box = strstr($cat_ids, ','.$cat_count.',')? ' style="display:none"' : '';
$exp_img = (is_file('img/'.$pun_user['style'].'/exp_down.png')? 'img/'.$pun_user['style'].'/': 'img/') . (strpos($div_box,'none') ? 'exp_down.png' : 'exp_up.png');
?>
<div id="idx<?php echo $forum_page['cat_count'] ?>" class="blocktable">
<h2 class="hn">
<span class="conr"><a href="javascript:togglecategory(<?php echo $forum_page['cat_count']?>);"><img src="<?php echo $exp_img?>" alt="Collapse" id="img_<?php echo $forum_page['cat_count']?>" /></a></span>
<span><?php echo forum_htmlencode($cur_forum['cat_name']) ?></span>
</h2>
<div class="main-subhead">
<p class="item-summary"><span><?php printf($lang_index['Category subtitle'], implode(' ', $forum_page['item_header']['subject']), implode(', ', $forum_page['item_header']['info'])) ?></span></p>
</div>
<div class="main-content main-category" id="category<?php echo $forum_page['cat_count'] ?>" <?php echo $div_box?>>
#
#---------[ 10. SAVE/UPLOAD ]--------------------------------------------------
#
6 2010-08-16 00:03
Re: [Release] jQuery Chat (41 replies, posted in PunBB 1.3 extensions)
This doesn't work for me
I had to removed the code that checked that I had JQuery installed. Once I'd done that the installation worked fine and I could see the chatbox on my index page. I could type something into the text box but when I clicked send nothing would happen but the page refreshed.Any tips?
I have the same problem. Whe I tried to install it on a fresh copy of punbb, just jQuery and jQuery chat the same thing happens.
7 2010-08-06 17:40
Re: [Release] pm_email (35 replies, posted in PunBB 1.3 extensions)
Does this work for anyone in 1.3?
8 2010-05-06 11:44
Topic: Hyperlink in topic subject (0 replies, posted in PunBB 1.3 troubleshooting)
Hey I was just wondering if it's possible to use hyperlink in topic subject? I've searched the forum but couldn't find anything useful.
Tnx