• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

First Post on All Pages

It means on all forum software that I have used this is one of my favourite addons that I always install - it's been done on IPB and vB and so i have used it on them before.
 
I know that !
In the first post ...
scr1-png.4742


If I select [x] select for Thread Moderation.

What would that do ?
 
What addons installed on your forum?
XenPorta, XenCarta, LnBlog, TaigaChat, and Custom BBCode Manager.

Thank you very much for responding ;)

EDIT: I've been turning off all addons one by one. Turning off XenPorta (only XenPorta) makes your addon works. Any ideas? :unsure:
 
Not working with XenPorta because XenPorta deleting information about first post in code.
For fix:
Open /library/EWRporta/ControllerPublic/Thread.php
Search:
PHP:
if (!empty($response->params['page']) && $response->params['page'] > 1)
{
unset($response->params['posts'][$response->params['thread']['first_post_id']]);
}
and replace with:
PHP:
if (!empty($response->params['page']) && $response->params['page'] > 1)
{
//unset($response->params['posts'][$response->params['thread']['first_post_id']]);
}
 
Not working with XenPorta because XenPorta deleting information about first post in code.
For fix:
Open /library/EWRporta/ControllerPublic/Thread.php
Search:
PHP:
if (!empty($response->params['page']) && $response->params['page'] > 1)
{
unset($response->params['posts'][$response->params['thread']['first_post_id']]);
}
and replace with:
PHP:
if (!empty($response->params['page']) && $response->params['page'] > 1)
{
//unset($response->params['posts'][$response->params['thread']['first_post_id']]);
}
thanks...
is now working (y)
 
Top Bottom