PDA

View Full Version : Show Thread Enhancements - Chief First Post - Every Page - 3.6.x


Atakan KOC
08-23-2007, 10:00 PM
Chief First Post - Every Page
With this mod, you can convert the view of the thread in to 4 different type. Additionally you can change the view as you edit click the edit button. The 1st message of the thread will stay at top all the time even while you are checking other messages related to this subject.



Thread Type
Postbit Article
Postbit Flipped
Postbit Normal
Postbit Legacy


install

Go to your admin cp, then:
Plugin System -> Manage Products -> [Add/Import Product] -> Select 'product-chiefpost.xml' from your computer then press 'Import'

Modifications Info

Plugin : 12
Phrases : 3
Template : 3
Setting : 0

Versions:
v1.0 - 24 August 2007
-First release

v1.0.1 - 26 August 2007
-Rating Phrase fixed

With this mod, you can convert the view of the thread in to 4 different type. Additionally you can change the view as you edit click the edit button. The 1st message of the thread will stay at top all the time even while you are checking other messages related to this subject.

Qunsys
08-24-2007, 02:19 PM
Thanx!

kaptanblack
08-24-2007, 02:28 PM
Thanks Atakan KOÇ

Installed...

Legendery.
08-24-2007, 02:40 PM
Thank you very much.
Sağol..

cynthetiq
08-24-2007, 02:56 PM
can be set by usergroup so that only mods/admin can set as article etc?

UK Jimbo
08-24-2007, 02:59 PM
The description for this mod totally fails to explain what the mod is/does although you can second guess by looking at the screenshots.

AzzidReign
08-24-2007, 03:38 PM
Agreed^ lol

But after looking at the screen shots, this is awesome! This will be great for all my tutorial sections!!

ericgtr
08-24-2007, 04:54 PM
The description for this mod totally fails to explain what the mod is/does although you can second guess by looking at the screenshots.
Agreed, I would like to see a more practicle example or explanation of this modification.

semauae
08-24-2007, 05:05 PM
mmm

Is this hack same vb.org ?

thnx :)

gforce75
08-24-2007, 05:07 PM
What does it do really?

memorex
08-24-2007, 05:13 PM
kinda like vb.org as in the first post will show on all pages after the first page. So the original post that started the thread will be seen first on page 6, 7, 8, .. etc ...

I notice the first post also changes to article by default?

kambiz
08-24-2007, 05:36 PM
wow. I'm using the 3.5.X version right now. I'll switch to this asap!

beduino
08-24-2007, 06:18 PM
Installed of course :D
But ... i understand show first post in every page ... ok.
However if you have examples to flipped postbit ... I appreciate.
Tks Atakan !
Joao Barroca
aka beduino

Kirk Y
08-24-2007, 07:22 PM
Very nice Atakan. I was wondering when someone would copy the vB.org release postbit.

Some suggestions:
Implement Usergroup Permissions so Administrators can restrict the ability to choose the Thread Type.

Set the Normal Postbit as default - it's a little annoying to have to select it each time you create a thread.

When you edit a thread, the Thread Type isn't set to the Thread's current Thread Type - you might want to fix this.

BuRaCh
08-24-2007, 07:40 PM
very lol atakan :D
superb working;)
installed..

egyptsons
08-24-2007, 10:40 PM
would you please give us some description for this MOD
I didn't get the idea even from the Screen Shoot :rolleyes:

maroceve
08-24-2007, 11:45 PM
Is there a way to have it use the basic postbit by default cause it uses the articles one and it's not very pretty on my forums :( and having to change the postbit thread by thread is kind of a boring task :(

Kihon Kata
08-25-2007, 03:13 AM
what is this?

kambiz
08-25-2007, 04:31 AM
would you please give us some description for this MOD
I didn't get the idea even from the Screen Shoot :rolleyes:

what is this?

It shows the first post on every page (like ypu can see in vb.org) plus some features (e. 4 types for postbit).

Spermy
08-25-2007, 04:53 AM
Hope this helps for the postbit problems. I use legacy so this is what I did.

1. In the postbit_select template

Default
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">
<tr>
<td>
$vbphrase[cp_ttype]:<br />
<select name="ttype" tabindex="1">
<option value="1">Postbit Article</option>
<option value="2">Postbit Flipped</option>
<option value="3">Postbit Normal</option>
<option value="4">Postbit Legacy</option>
</select>
</td>
</tr>
</table>Change to
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">
<tr>
<td>
$vbphrase[cp_ttype]:<br />
<select name="ttype" tabindex="1">
<option value="1">Postbit Legacy</option>
<option value="2">Postbit Flipped</option>
<option value="3">Postbit Normal</option>
<option value="4">Postbit Article</option>
</select>
</td>
</tr>
</table>2. In Chief Post - Postbit Display Complete Plugin

Default
if ($this->forum['chiefpost']==1 AND $post['postid']==$this->thread['firstpostid'])
{
switch ($this->thread['ttype'])
{
case 1:
$this->templatename = 'postbit_articles';
break;
case 2:
$this->templatename = 'postbit_flipped';
break;
case 3:
$this->templatename = 'postbit';
break;
case 4:
$this->templatename = 'postbit_legacy';
break;
default:
$this->templatename = 'postbit_articles';
break;
}
}Change to
if ($this->forum['chiefpost']==1 AND $post['postid']==$this->thread['firstpostid'])
{
switch ($this->thread['ttype'])
{
case 1:
$this->templatename = 'postbit_legacy';
break;
case 2:
$this->templatename = 'postbit_flipped';
break;
case 3:
$this->templatename = 'postbit';
break;
case 4:
$this->templatename = 'postbit_articles';
break;
default:
$this->templatename = 'postbit_legacy';
break;
}
}

And i added <if condition="is_member_of($bbuserinfo, 6)"> at the begining In the postbit_select template and </if> at the end so only Admins can use this.

Skavenger
08-25-2007, 05:39 AM
thanks for this!

i think it would be better to have the settings in vb options instead of in each forum, it's annoying editing EVERY forum...
btw, agree with Kirk Y suggestions :)

radarhunter
08-25-2007, 05:53 AM
nice hack man

but is there any way we can remove this Thread type from the new thread link ?????

Cause i`m using this hack for the movie reviews and this won`t fit in ......

some ideas how to remove it from the xml file itself..........

Hornstar
08-25-2007, 06:02 AM
I will keep track of this mod for sure, now that I understand what this does, I may use this instead of another hack that im using currently. Would be great for admins to be able to turn it on and off per forum, and have certain usergroups be able to change it, and have it set to a specific setting per forum as well.

Rat1972
08-25-2007, 08:53 AM
I don't like the sign in the first post, so i removed it. So the first thread looks a lot better without an anoying sign.


All you have to do is this:

Go to postbit_articles

Find: <if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
And delete it.

Atakan KOC
08-25-2007, 09:58 AM
Very nice Atakan. I was wondering when someone would copy the vB.org release postbit.

Some suggestions:
Implement Usergroup Permissions so Administrators can restrict the ability to choose the Thread Type.

Set the Normal Postbit as default - it's a little annoying to have to select it each time you create a thread.

When you edit a thread, the Thread Type isn't set to the Thread's current Thread Type - you might want to fix this.

I try not be a copy of the Kirk Y; vborg, in the existing article part, lot of members would like to use it. From the PMs I receive I see that there is need. If it is a problem I can change the postbit_articles template or change completly.

I did not think of arrange it for user groups. The reason is that the user groups can be changed in different forums from AdminCP. If needed I can write an additionally.

Symmetrical?
08-25-2007, 03:17 PM
wow thnx Atakan KO? but look picture?

https://vborg.vbsupport.ru/

ssslippy
08-25-2007, 09:34 PM
A small bug, rating should not show if there is no rating.

Skavenger
08-26-2007, 04:36 AM
another bug related to rating:
'(x votes - x average)' is not showing
http://img182.imageshack.us/img182/3224/asdwv5.jpg

and here
http://img245.imageshack.us/img245/7423/asdfo0.jpg
the font should use 'smallfont' class i think

Atakan KOC
08-26-2007, 10:47 AM
v1.0.1 - 26 August 2007
-Rating Phrase fixed

Symmetrical?
08-26-2007, 11:11 AM
when i use php or code tag look picture

http://img514.imageshack.us/img514/162/soruncv2.jpg

memorex
08-27-2007, 01:49 AM
A nice feature would be the ability to minimize the first post.

Thanks for this awesome mod, something I've been looking for.

rainyleaves
08-27-2007, 03:51 PM
Awesome!!!
Just Installed + MOTM.
Thanks.

PimvanJ
08-27-2007, 04:23 PM
Great work Atakan, nice job.
Installed and MOTM

Thank you!

Capt. GannA
08-27-2007, 05:51 PM
Nice mod. Got just one question for you..

Does this add any templates? If so, which ones?

I need to edit the size/space of the avatar area. It's a bit small for my forum :o..

Thanks.

ReQueM
08-27-2007, 11:03 PM
süper olmuş eline sağlık
installed +MOTM

welovehiphop
08-28-2007, 02:29 AM
good job!

stan111
08-30-2007, 09:56 PM
thank you so much
this is wat i am loooking for

Invalid ID
09-01-2007, 03:25 PM
Cool, very handy.

How can I make "Postbit normal" to my default choice?

Spermy
09-02-2007, 12:24 AM
Take a look at my post and instead of Legacy, just change it to postbit.

Expat
09-02-2007, 09:24 AM
Is there a way to have it use the basic postbit by default cause it uses the articles one and it's not very pretty on my forums :( and having to change the postbit thread by thread is kind of a boring task :(


I tend to agree with you. While the hack has potential, I'm not crazy about the repagination of pages. If it used the postbit by default, I wouldn't have uninstalled it.

Nathan2006
09-02-2007, 12:33 PM
Thank you Atakan KOC

Looks great :)

Install

kellogs
09-02-2007, 04:32 PM
Great add on Spermy :) ... that works really well for us who are using postbit legacy and i like the feature that only admin is allowed to use it :)

Also kudo for Atakan KOC on creating this mod!

Spermy
09-03-2007, 03:19 AM
For those that want just postbit for default.


1. In the postbit_select template

Default
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">
<tr>
<td>
$vbphrase[cp_ttype]:<br />
<select name="ttype" tabindex="1">
<option value="1">Postbit Article</option>
<option value="2">Postbit Flipped</option>
<option value="3">Postbit Normal</option>
<option value="4">Postbit Legacy</option>
</select>
</td>
</tr>
</table>Change to
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">
<tr>
<td>
$vbphrase[cp_ttype]:<br />
<select name="ttype" tabindex="1">
<option value="1">Postbit Normal</option>
<option value="2">Postbit Flipped</option>
<option value="3">Postbit Article</option>
<option value="4">Postbit Legacy</option>
</select>
</td>
</tr>
</table>2. In Chief Post - Postbit Display Complete Plugin

Default
if ($this->forum['chiefpost']==1 AND $post['postid']==$this->thread['firstpostid'])
{
switch ($this->thread['ttype'])
{
case 1:
$this->templatename = 'postbit_articles';
break;
case 2:
$this->templatename = 'postbit_flipped';
break;
case 3:
$this->templatename = 'postbit';
break;
case 4:
$this->templatename = 'postbit_legacy';
break;
default:
$this->templatename = 'postbit_articles';
break;
}
}Change to
if ($this->forum['chiefpost']==1 AND $post['postid']==$this->thread['firstpostid'])
{
switch ($this->thread['ttype'])
{
case 1:
$this->templatename = 'postbit_legacy';
break;
case 2:
$this->templatename = 'postbit_flipped';
break;
case 3:
$this->templatename = 'postbit';
break;
case 4:
$this->templatename = 'postbit_articles';
break;
default:
$this->templatename = 'postbit';
break;
}
}And i added <if condition="is_member_of($bbuserinfo, 6)"> at the begining In the postbit_select template and </if> at the end so only Admins can use this.

Hope this helps you guys using normal postbit.

JulianD
09-04-2007, 02:30 AM
Great hack! I hope you improve it soon!

nul7
09-05-2007, 04:54 AM
Ok, what am I missing? I installed as instructed with the plugin manager, and nothing changed with how the threads were handled? I can start a new thread as usual, with nothing added like stated in the first post...am I suppose to modify all the templates manually?

JulianD
09-05-2007, 05:20 AM
I have some comments:

Only Postbit article and Postbit flipped works. By default I'm using postbit legacy and when I choose Postbit Normal it doesn't change to Normal postbit.

Any suggestion

AzaDiyaR
09-05-2007, 12:41 PM
thank you very much

this mod very nice installed ;)

brskhrmn
09-06-2007, 01:20 AM
teşekkürler üstad..

Jelmertjee
09-06-2007, 09:14 PM
interesting mod, it just needs to have forum selection to make it perfect for me, also thanks to spermy's (lol weird name) hack/edit, thanks.

WarLion
09-07-2007, 06:32 AM
this is great really good option insted gars now you need add option to admin cp installed and voted

momo2
09-07-2007, 05:54 PM
i run a big forum, which we use rapidshare = RS or Megashare =MS ets can this be used same way so before posting members can click and choice, what links are used ???

for example if the links is hosted by rapidshare it will post [RS] Super Man 2007 on the title ???

Smiry Kin's
09-08-2007, 02:17 AM
few questions. with the artile post, vbseo social bookmarking buttons do not show.

another thing. is there a way to make it so the first post, stats at the top. like here at vb.org?

remlle
09-09-2007, 10:26 PM
any way to rebuild all threds to use this style? I want this to affect even threads that have already been started.

TheWhite
09-10-2007, 08:37 AM
great mod as soon as the forum & group selections are introduced I will definitely install it :)

Macindy
09-10-2007, 11:02 AM
How can I integrate a collapse function?

elmati
09-11-2007, 09:37 AM
is there a way to select one type per forum
i mean:
forum_1 -> Article_tpl
forum_2 -> Legacy_tpl

apply style to forum and not select...

Btw excelente hack!

*installed

neoxi
09-11-2007, 11:16 AM
teşekk?rler ?stad.. :)

jeremyalyea
09-12-2007, 02:43 AM
Thanks spermy for the hack to allow for normal to be the default. If I could REP you, I would. And thanks to the creator of this hack!!!!!!!! Marked as INstalled and for MOTM.

Spank
09-12-2007, 02:53 PM
is there a way to select one type per forum
i mean:
forum_1 -> Article_tpl
forum_2 -> Legacy_tpl



If this mod had this then I would certainy use it.

mvigod
09-13-2007, 12:28 PM
**Clicked install**

Neat mod. I can use this to create a specific forum for reviews and articles which is nice. However, to be more effective and a future request possibly is to make it so that it can be turned on within a specific forum, however only applied to specific threads instead of every thread within that category.

Ie: The first three posts are normal and the fourth posts within that category is setup so the first post is locked and formatted as an article. That way I could drop reviews, articles wiki's etc within the forum without changing all the users posts.

Simasher
09-13-2007, 07:30 PM
thanks for this..

süper olmuş eline sağlık ama abi bunu bide vb ayarlarından toplu kontrol yaptırsan süper olur ..

apokphp
09-17-2007, 08:50 PM
Spermy, I used your changes, seems to work except when it comes to displaying the Postbit Normal.

I use Postbit Legacy by default on my board. The selection for "Normal" results in Legacy. How can I get it to display the new (more horizontal) postbit (like what vb.org and vb.com uses)?

It's the same issue that Julian in post #46 is having.

I use vb 3.6.8 btw.

Spermy
09-17-2007, 10:44 PM
This is the post I made for the normal postbit as default.

https://vborg.vbsupport.ru/showpost.php?p=1331163&postcount=43

Ejecutor Hanzo
09-18-2007, 12:53 AM
this mod is exactly what I want!

Thanks!

(Exe marks installed and rated 5)

xandizitxu
09-18-2007, 01:20 AM
Just installed Thanks! \o/

d8tabyte
09-18-2007, 04:23 AM
odd, I dont have Chief Post - Postbit Display Complete

In any of my styles, yet I have others that belong to this hack...

periphrastic
09-20-2007, 05:49 PM
Installed & thank you

xandizitxu
09-20-2007, 08:58 PM
I use VBTT so in the attachments it display the torrent details, but using Chief first post, it doesn't :\ anyone help?

Mevo
09-22-2007, 03:45 AM
@Atakan KOC

Will be very good to make "Click Install" !!!

How to enable Post Thanks for this mod ?

xandizitxu
09-22-2007, 05:07 AM
For me the post thanks work, but VBTT doesn't.

xandizitxu
09-22-2007, 07:59 PM
ANYONE CAN HELP SETTING GLOBAL VARS ON Chief? I think it disables all my mods made to article.

Edward S
09-22-2007, 09:01 PM
I installed it..
didn't see a difference... uninstalled it.. nuff said.

Doctor Death
09-23-2007, 12:05 AM
I installed it..
didn't see a difference... uninstalled it.. nuff said.

You didnt enable it in forum manager. Works good.

I also changed to postbit default and also put in the Admin-only IF statement.

Illustrious
09-24-2007, 04:58 AM
Hm, you should set it so that it retains it's choice when you move the thread to another forum where chief posts are enabled.

elmati
09-24-2007, 01:23 PM
is there a way to select one type per forum
i mean:
forum_1 -> Article_tpl
forum_2 -> Legacy_tpl

apply style to forum and not select...

Btw excelente hack!

*installed

i done this using conditionals...
Love this hack!

mvigod
09-24-2007, 02:55 PM
Anyone aware of an if condition that would allow only a usergroup to lock the first post instead of it globably applying to the entire forum?

rapidphim
09-24-2007, 11:43 PM
For those that want just postbit for default.


1. In the postbit_select template

Default
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">
<tr>
<td>
$vbphrase[cp_ttype]:<br />
<select name="ttype" tabindex="1">
<option value="1">Postbit Article</option>
<option value="2">Postbit Flipped</option>
<option value="3">Postbit Normal</option>
<option value="4">Postbit Legacy</option>
</select>
</td>
</tr>
</table>Change to
<table cellpadding="0" cellspacing="0" border="0" class="fieldset">
<tr>
<td>
$vbphrase[cp_ttype]:<br />
<select name="ttype" tabindex="1">
<option value="1">Postbit Normal</option>
<option value="2">Postbit Flipped</option>
<option value="3">Postbit Article</option>
<option value="4">Postbit Legacy</option>
</select>
</td>
</tr>
</table>2. In Chief Post - Postbit Display Complete Plugin

Default
if ($this->forum['chiefpost']==1 AND $post['postid']==$this->thread['firstpostid'])
{
switch ($this->thread['ttype'])
{
case 1:
$this->templatename = 'postbit_articles';
break;
case 2:
$this->templatename = 'postbit_flipped';
break;
case 3:
$this->templatename = 'postbit';
break;
case 4:
$this->templatename = 'postbit_legacy';
break;
default:
$this->templatename = 'postbit_articles';
break;
}
}Change to
if ($this->forum['chiefpost']==1 AND $post['postid']==$this->thread['firstpostid'])
{
switch ($this->thread['ttype'])
{
case 1:
$this->templatename = 'postbit_legacy';
break;
case 2:
$this->templatename = 'postbit_flipped';
break;
case 3:
$this->templatename = 'postbit';
break;
case 4:
$this->templatename = 'postbit_articles';
break;
default:
$this->templatename = 'postbit';
break;
}
}And i added <if condition="is_member_of($bbuserinfo, 6)"> at the begining In the postbit_select template and </if> at the end so only Admins can use this.

Hope this helps you guys using normal postbit.

How are you going to assign other groups, beside admin, to use the feature?

m2006
09-25-2007, 02:39 PM
Thank you very much.

rapidphim
09-25-2007, 02:51 PM
On top of my question on how to allow any other group (s.mod, mod, etc...) to use this feature beside admin, I have another questions to ask experts here how to fix after I installed this mod.

Please see the screenshot. Thanks!

mvigod
09-25-2007, 02:58 PM
How are you going to assign other groups, beside admin, to use the feature?
For other usergroups, just add their usergroup id to the if condition:
=
<if condition="is_member_of($bbuserinfo, 6,5,7)">

MaXxed
09-25-2007, 04:59 PM
works very well!

any way to add some more options to the Article template? Such as more profile fields or the add-rep button?

inciarco
09-25-2007, 09:17 PM
Hello Atakan KOC!! :up:

I'm trying to Activate this Great Hack in My Forums, but when I try to see a Thread in the Forum I've designated to have this Functionality (Chief Post Show first post on every thread page? as Yes) I'm receiving an Error. :(

Also when I try to create a New Thread in the Forum where I've Chosen to Activate this Hack, the Create New Thead Form appears with the Four New Options (postbit Article, Flipped, Normal, and Legacy), but when I create the Thread, I receive the same Error when the Forum try to show it to me!! :(

What should I do to use this Hack?? What Should I Change?? Do I Have To Edit a Template?? :confused:

Thank You For Your Help!! :)

I'm copying the Error Message:

Forum: http://inciarco.com/foros/forumdisplay.php?f=85
Thread: http://inciarco.com/foros/showthread.php?t=1909

Database error
The INCIARCO - FOROS - Comunidades Virtuales de Integraci?n database has encountered a problem.

--------------------------------------------------------------------------------

Please try the following:
Load the page again by clicking the Refresh button in your web browser.
Open the inciarco.com home page, then try to open another page.
Click the Back button to try another link.

The inciarco.com forum technical staff have been notified of the error, though you may contact them if the problem persists.

We apologise for any inconvenience.


Database error in vBulletin 3.6.7:

Invalid SQL:

SELECT
post.*, post.username AS postusername, post.ipaddress AS ip, IF(post.visible = 2, 1, 0) AS isdeleted,
user.*, userfield.*, usertextfield.*,
icon.title as icontitle, icon.iconpath,
avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline,customavatar.width AS avwidth,customavatar.height AS avheight,
deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason,
editlog.userid AS edit_userid, editlog.username AS edit_username, editlog.dateline AS edit_dateline,
editlog.reason AS edit_reason,
postparsed.pagetext_html, postparsed.hasimages,
sigparsed.signatureparsed, sigparsed.hasimages AS sighasimages,
sigpic.userid AS sigpic, sigpic.dateline AS sigpicdateline, sigpic.width AS sigpicwidth, sigpic.height AS sigpicheight,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid

, IF(SUM(photoplog_fileuploads.moderate) > 0 AND 1 = 0,COUNT(photoplog_fileuploads.moderate) - SUM(photoplog_fileuploads.moderate),COUNT(photoplo g_fileuploads.moderate)) AS photoplog_filecount
FROM vb_post AS post
LEFT JOIN vb_user AS user ON(user.userid = post.userid)
LEFT JOIN vb_userfield AS userfield ON(userfield.userid = user.userid)
LEFT JOIN vb_usertextfield AS usertextfield ON(usertextfield.userid = user.userid)
LEFT JOIN vb_icon AS icon ON(icon.iconid = post.iconid)
LEFT JOIN vb_avatar AS avatar ON(avatar.avatarid = user.avatarid) LEFT JOIN vb_customavatar AS customavatar ON(customavatar.userid = user.userid)
LEFT JOIN vb_deletionlog AS deletionlog ON(post.postid = deletionlog.primaryid AND deletionlog.type = 'post')
LEFT JOIN vb_editlog AS editlog ON(editlog.postid = post.postid)
LEFT JOIN vb_postparsed AS postparsed ON(postparsed.postid = post.postid AND postparsed.styleid = 3 AND postparsed.languageid = 2)
LEFT JOIN vb_sigparsed AS sigparsed ON(sigparsed.userid = user.userid AND sigparsed.styleid = 3 AND sigparsed.languageid = 2)
LEFT JOIN vb_sigpic AS sigpic ON(sigpic.userid = post.userid)
LEFT JOIN photoplog_fileuploads AS photoplog_fileuploads ON(photoplog_fileuploads.userid = user.userid)
WHERE post.postid IN (0,8415,8415)
ORDER BY post.dateline;

MySQL Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error Number : 1140
Date : Tuesday, September 25th 2007 @ 05:12:30 PM
Script : http://zzz/showthread.php?t=1909
Referrer : http://zzz/forumdisplay.php?f=85
IP Address : zzz.zzz.zzz.zzz
Username : zzz
Classname : vb_database

:)

vitrag24
09-26-2007, 07:24 AM
I have installed it but how to enable/configure it.
By screenshots i'm confused
i think it'll show 1st post of thread on each page.
isnt it?
will it do anything else?screenshots are confusing me.
I have lots of sections.
do i have to edit and set yes in all ?there shd be option which globally set yes for all sections.

yoyoyoyo
09-26-2007, 10:29 AM
Using 3.6.8, when I enable this in a forum, and then go to view that forum, or try to make a post, I get this error:

Parse error: syntax error, unexpected $end in /home/mysite/public_html/forum/includes/class_postbit.php(296) : eval()'d code on line 352

uninstalled until it can be fixed... oh well - nice idea, just needs to be fixed

elmati
09-26-2007, 03:32 PM
i dont know if this is a bug o just misconfiguration from me but when i use quickedit for 1st post the 1st post return to default vb postbit...

anyone have this problem too?

thx in advance

Spermy
09-26-2007, 10:19 PM
Anyone aware of an if condition that would allow only a usergroup to lock the first post instead of it globably applying to the entire forum?

The answered by mvigod below.

For other usergroups, just add their usergroup id to the if condition:
=
<if condition="is_member_of($bbuserinfo, 6,5,7)">


works very well!

any way to add some more options to the Article template? Such as more profile fields or the add-rep button?

For the add-rep button; In your postbit_articles template
Find:

<a href="report.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/report.gif" alt="$vbphrase[report_bad_post]" border="0" /></a></if>
Add before:
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
<if condition="$show['popups']"><script type="text/javascript"> vbrep_register("$post[postid]")</script></if>i dont know if this is a bug o just misconfiguration from me but when i use quickedit for 1st post the 1st post return to default vb postbit...

anyone have this problem too?

thx in advance
If you didn't change anything then it will stay as postbit_article, if you made the changes I posted then this is just part of it, if anything is edited, you must make sure you choose article.

MaXxed
09-27-2007, 04:54 AM
For the add-rep button; In your postbit_articles template
Find:

<a href="report.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/report.gif" alt="$vbphrase[report_bad_post]" border="0" /></a></if>
Add before:
<if condition="$show['reputationlink']">
<span id="reputationmenu_$post[postid]"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow" id="reputation_$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" border="0" /></a></span>
<if condition="$show['popups']"><script type="text/javascript"> vbrep_register("$post[postid]")</script></if>
If you didn't change anything then it will stay as postbit_article, if you made the changes I posted then this is just part of it, if anything is edited, you must make sure you choose article.

Im showing an error when trying to do this.

"The conditional on line 43 appears to be missing its end tag (</if>). The template will not function properly unless this is fixed."

I think the replacement code isnt formed right?

elmati
09-27-2007, 04:56 AM
no.

when i create a new topic the system said i am using postbit_article but when i use quick edit for this 1st post and press F5 to reload the page the postbit change to normal postbit...

tomorrow ill make some tests

thx Spermy for your answer!

Wheezy
09-27-2007, 05:01 AM
This is an awesome hack! One of the best ones Ive downloaded...

I noticed though when I select the "Postbit Article" thread type, it reverts my custom signature edit (**) back to vB default. Is there a template for this Mod I can edit to fix it?

** I have a template edit in place which forces all signatures to the bottom of the post and extends the signature line across the entire length of the post.

Spermy
09-27-2007, 09:52 AM
Im showing an error when trying to do this.

"The conditional on line 43 appears to be missing its end tag (</if>). The template will not function properly unless this is fixed."

I think the replacement code isnt formed right?

I had that problem at first when I inserted it in the wrong place.Make sure it is right before<a

no.

when i create a new topic the system said i am using postbit_article but when i use quick edit for this 1st post and press F5 to reload the page the postbit change to normal postbit...

tomorrow ill make some tests

thx Spermy for your answer!

You are correct it does not work with quick edit.

This is an awesome hack! One of the best ones Ive downloaded...

I noticed though when I select the "Postbit Article" thread type, it reverts my custom signature edit (**) back to vB default. Is there a template for this Mod I can edit to fix it?

** I have a template edit in place which forces all signatures to the bottom of the post and extends the signature line across the entire length of the post.

I had that same problem, so I just took out the code for the sig in the Articles.

gbml4u
09-27-2007, 10:35 AM
Can u change to Set the Normal Postbit as default

Because I got some problems when posting a new thread with default Postbit article.

inciarco
09-27-2007, 01:35 PM
Hello Atakan KOC!! :up:

I'm trying to Activate this Great Hack in My Forums, but when I try to see a Thread in the Forum I've designated to have this Functionality (Chief Post Show first post on every thread page? as Yes) I'm receiving an Error. :(

Also when I try to create a New Thread in the Forum where I've Chosen to Activate this Hack, the Create New Thead Form appears with the Four New Options (postbit Article, Flipped, Normal, and Legacy), but when I create the Thread, I receive the same Error when the Forum try to show it to me!! :(

What should I do to use this Hack?? What Should I Change?? Do I Have To Edit a Template?? :confused:

Thank You For Your Help!! :)

I'm copying the Error Message:

Forum: http://inciarco.com/foros/forumdisplay.php?f=85
Thread: http://inciarco.com/foros/showthread.php?t=1909

Database error
The INCIARCO - FOROS - Comunidades Virtuales de Integraci?n database has encountered a problem.

--------------------------------------------------------------------------------

Please try the following:
Load the page again by clicking the Refresh button in your web browser.
Open the inciarco.com home page, then try to open another page.
Click the Back button to try another link.

The inciarco.com forum technical staff have been notified of the error, though you may contact them if the problem persists.

We apologise for any inconvenience.


Database error in vBulletin 3.6.7:

Invalid SQL:

SELECT
post.*, post.username AS postusername, post.ipaddress AS ip, IF(post.visible = 2, 1, 0) AS isdeleted,
user.*, userfield.*, usertextfield.*,
icon.title as icontitle, icon.iconpath,
avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline,customavatar.width AS avwidth,customavatar.height AS avheight,
deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason,
editlog.userid AS edit_userid, editlog.username AS edit_username, editlog.dateline AS edit_dateline,
editlog.reason AS edit_reason,
postparsed.pagetext_html, postparsed.hasimages,
sigparsed.signatureparsed, sigparsed.hasimages AS sighasimages,
sigpic.userid AS sigpic, sigpic.dateline AS sigpicdateline, sigpic.width AS sigpicwidth, sigpic.height AS sigpicheight,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid

, IF(SUM(photoplog_fileuploads.moderate) > 0 AND 1 = 0,COUNT(photoplog_fileuploads.moderate) - SUM(photoplog_fileuploads.moderate),COUNT(photoplo g_fileuploads.moderate)) AS photoplog_filecount
FROM vb_post AS post
LEFT JOIN vb_user AS user ON(user.userid = post.userid)
LEFT JOIN vb_userfield AS userfield ON(userfield.userid = user.userid)
LEFT JOIN vb_usertextfield AS usertextfield ON(usertextfield.userid = user.userid)
LEFT JOIN vb_icon AS icon ON(icon.iconid = post.iconid)
LEFT JOIN vb_avatar AS avatar ON(avatar.avatarid = user.avatarid) LEFT JOIN vb_customavatar AS customavatar ON(customavatar.userid = user.userid)
LEFT JOIN vb_deletionlog AS deletionlog ON(post.postid = deletionlog.primaryid AND deletionlog.type = 'post')
LEFT JOIN vb_editlog AS editlog ON(editlog.postid = post.postid)
LEFT JOIN vb_postparsed AS postparsed ON(postparsed.postid = post.postid AND postparsed.styleid = 3 AND postparsed.languageid = 2)
LEFT JOIN vb_sigparsed AS sigparsed ON(sigparsed.userid = user.userid AND sigparsed.styleid = 3 AND sigparsed.languageid = 2)
LEFT JOIN vb_sigpic AS sigpic ON(sigpic.userid = post.userid)
LEFT JOIN photoplog_fileuploads AS photoplog_fileuploads ON(photoplog_fileuploads.userid = user.userid)
WHERE post.postid IN (0,8415,8415)
ORDER BY post.dateline;

MySQL Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error Number : 1140
Date : Tuesday, September 25th 2007 @ 05:12:30 PM
Script : http://zzz/showthread.php?t=1909
Referrer : http://zzz/forumdisplay.php?f=85
IP Address : zzz.zzz.zzz.zzz
Username : zzz
Classname : vb_database

:)

Atakan KOC, have you Tested the Forum I've referred in my message?? :confused:

Forum: http://inciarco.com/foros/forumdisplay.php?f=85
Thread: http://inciarco.com/foros/showthread.php?t=1909

I've been keeping Active this Hack in that Forum only for you to Test It!!

You can Create an Account in my Forum to Test the Error!!

Please Test it and Tell me What's Wrong, so that I can Correct the necessary options for it to Work Fine in my Forums!!

I appreciate Your Help!!

I'll Wait for your Answer!!

My Best Regards!!

:)

inciarco
09-27-2007, 02:20 PM
It seems like an Error Caused for Not Compatibility with the Hack PhotoPlog Lite Gallery!! :(

Thread: PhotoPlog: The Lite Gallery
https://vborg.vbsupport.ru/showthread.php?t=101368

http://www.photoplog.com/forum/forumdisplay.php?f=5

When I Disable the PhotoPlog Lite Hack in the Forum, Your Hack Works but I Receive The Error Message, repeated Several Times:

Parse error: parse error, unexpected '\'' in /hsphere/local/home/inciarco/inciarco.com/foros/includes/class_postbit.php(296) : eval()'d code on line 36


I Hope You Can Correct that Not Compatibility with the PhotoPlog Lite Gallery, I think is Related with the Code I've referred in my Previous Messages!! :(

For Now, I'll Not Use This Hack Because Causes Conflict with the Hack PhotoPlog Lite Gallery!! (I'm Very Sad, Because I'd have Liked to be able to Use this Hack in my Forums, to have the Similar Behavior like the VBulletin.Org Site where the First Post is shown in all the Pages of a Thread) :(

My Best regards!! :(

:)

rapidphim
09-27-2007, 03:25 PM
How are you going to make postbit_article as default?

Wheezy
09-27-2007, 04:03 PM
I had that same problem, so I just took out the code for the sig in the Articles.
Could you advise me how to do that? Or do you just mean you didnt attach a signature in the thread?

vitrag24
09-27-2007, 04:28 PM
I have installed it but how to enable/configure it.
By screenshots i'm confused
i think it'll show 1st post of thread on each page.
isnt it?
will it do anything else?screenshots are confusing me.
I have lots of sections.
do i have to edit and set yes in all ?there shd be option which globally set yes for all sections.

no one rpelied so quoting my own post.
plz reply.

MaXxed
09-27-2007, 04:35 PM
I had that problem at first when I inserted it in the wrong place.Make sure it is right before<a

checked, and rechecked, its just not happening. I get an error every time.

Any other ways to get this working?

Defkalion
09-27-2007, 09:46 PM
This is a great hack. Congrats to the author.

Is it possible to keep the "thread type" selection, but NOT the "sticky" 1st post in thread function? anyone knows how to do this?

Spermy
09-27-2007, 10:58 PM
Could you advise me how to do that? Or do you just mean you didnt attach a signature in the thread?

To remove the sig form articles read Rat1972's post below.

I don't like the sign in the first post, so i removed it. So the first thread looks a lot better without an anoying sign.


All you have to do is this:

Go to postbit_articles

Find: <if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>And delete it.

Can u change to Set the Normal Postbit as default

Because I got some problems when posting a new thread with default Postbit article.

Search this thread, it has been posted both for normal and legacy.

How are you going to make postbit_article as default?

That is automatic after installation.

checked, and rechecked, its just not happening. I get an error every time.

Any other ways to get this working?

What version of VB? I run 3.6.8
It might be different for another version.

elmati
09-28-2007, 01:27 AM
It seems like an Error Caused for Not Compatibility with the Hack PhotoPlog Lite Gallery!! :(

Im using Photoplog and vb 3.6.8 with chief 1st post active and works fine :)

i think u have done something wrong or misconfiguration...


@Spermy

I think we need to add the postbit selector with quick edit... i dont have time rite now, maybe weekend.

Thank for your reply

Wheezy
09-28-2007, 03:14 AM
To remove the sig form articles read Rat1972's post below.
Thanks much :D

Aeolian
09-28-2007, 10:57 AM
I think the developer must incorporate the changes suggested/submitted in the posts above to the actual MOD itself..
Thanks

inciarco
09-28-2007, 01:29 PM
Im using Photoplog and vb 3.6.8 with chief 1st post active and works fine :)

i think u have done something wrong or misconfiguration...


Please Tell me what's wrong and where can I locate the Error, because I've tryed reinstalling this Hack and the same Error keeps appearing when I set to yes the Displaying of the First Post in a Forum. :(

Could you Please analyze the Error and Tell me what's wrong?? :confused:

What should I check?? What should I change?? :confused:

The only way for the Hack to Work is by Disabling the Photoplog Hack in my Forum, that's why I deduced that some Incompatibility is Happening, also by the Error Message and the piece of code that says "COUNT(photoplog_fileuploads.moderate) - SUM(photoplog_fileuploads.moderate),COUNT(photoplo g_fileuploads.moderate)) AS photoplog_filecount" that includes "COUNT" and is related with Photoplog; but this Error only happens when the Chief First Post Hack is Activated and set to Yes in a Forum, so something isn't working, at least in Version 3.6.7 PL1; I hope you could analyze the Error and Orient me in what should I check/change/set for this Hack to work Ok in my Forums!! :confused:

I appreciate your Help and your Patience!! ;)

My Best Regards!! :)

I copy/paste again the Error Message for you to Analyze it:

Database error
The INCIARCO - FOROS - Comunidades Virtuales de Integraci?n database has encountered a problem.

--------------------------------------------------------------------------------

Please try the following:
Load the page again by clicking the Refresh button in your web browser.
Open the inciarco.com home page, then try to open another page.
Click the Back button to try another link.

The inciarco.com forum technical staff have been notified of the error, though you may contact them if the problem persists.

We apologise for any inconvenience.


Database error in vBulletin 3.6.7:

Invalid SQL:

SELECT
post.*, post.username AS postusername, post.ipaddress AS ip, IF(post.visible = 2, 1, 0) AS isdeleted,
user.*, userfield.*, usertextfield.*,
icon.title as icontitle, icon.iconpath,
avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline,customavatar.width AS avwidth,customavatar.height AS avheight,
deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason,
editlog.userid AS edit_userid, editlog.username AS edit_username, editlog.dateline AS edit_dateline,
editlog.reason AS edit_reason,
postparsed.pagetext_html, postparsed.hasimages,
sigparsed.signatureparsed, sigparsed.hasimages AS sighasimages,
sigpic.userid AS sigpic, sigpic.dateline AS sigpicdateline, sigpic.width AS sigpicwidth, sigpic.height AS sigpicheight,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid

, IF(SUM(photoplog_fileuploads.moderate) > 0 AND 1 = 0,COUNT(photoplog_fileuploads.moderate) - SUM(photoplog_fileuploads.moderate),COUNT(photoplo g_fileuploads.moderate)) AS photoplog_filecount
FROM vb_post AS post
LEFT JOIN vb_user AS user ON(user.userid = post.userid)
LEFT JOIN vb_userfield AS userfield ON(userfield.userid = user.userid)
LEFT JOIN vb_usertextfield AS usertextfield ON(usertextfield.userid = user.userid)
LEFT JOIN vb_icon AS icon ON(icon.iconid = post.iconid)
LEFT JOIN vb_avatar AS avatar ON(avatar.avatarid = user.avatarid) LEFT JOIN vb_customavatar AS customavatar ON(customavatar.userid = user.userid)
LEFT JOIN vb_deletionlog AS deletionlog ON(post.postid = deletionlog.primaryid AND deletionlog.type = 'post')
LEFT JOIN vb_editlog AS editlog ON(editlog.postid = post.postid)
LEFT JOIN vb_postparsed AS postparsed ON(postparsed.postid = post.postid AND postparsed.styleid = 3 AND postparsed.languageid = 2)
LEFT JOIN vb_sigparsed AS sigparsed ON(sigparsed.userid = user.userid AND sigparsed.styleid = 3 AND sigparsed.languageid = 2)
LEFT JOIN vb_sigpic AS sigpic ON(sigpic.userid = post.userid)
LEFT JOIN photoplog_fileuploads AS photoplog_fileuploads ON(photoplog_fileuploads.userid = user.userid)
WHERE post.postid IN (0,8415,8415)
ORDER BY post.dateline;

MySQL Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error Number : 1140
Date : Tuesday, September 25th 2007 @ 05:12:30 PM
Script : http://zzz/showthread.php?t=1909
Referrer : http://zzz/forumdisplay.php?f=85
IP Address : zzz.zzz.zzz.zzz
Username : zzz
Classname : vb_database

:)

mvigod
09-28-2007, 04:15 PM
Originally Posted by mvigod
Anyone aware of an if condition that would allow only a usergroup to lock the first post instead of it globably applying to the entire forum?


The answered by mvigod below.




Originally Posted by mvigod
For other usergroups, just add their usergroup id to the if condition:
= Code:
<if condition="is_member_of($bbuserinfo, 6,5,7)">





Spermy,
That works for the postbit selection, however it is still globally locking the first post. What would be even better is if this had a selection in the usergroup permissions that allowed an admin to set "can lock first post" yes/no. And then have it as a radio button within the postbit.

Failing that I guess a new user field could be generated and then added to the template:

if ($forum['chiefpost'] AND $vbulletin->userinfo[fieldx]=='Yes')


However change that to a specific bbgroup.

Spermy
09-28-2007, 07:12 PM
Sorry, but that I don't know about.

MaXxed
09-29-2007, 01:21 AM
What version of VB? I run 3.6.8
It might be different for another version.

Same, 3.6.8.

Perhaps im pasting it incorrectly? How should it be formatted in there?

xandizitxu
09-29-2007, 02:01 AM
I don't get this plugin working with VBTT properly... Disappointed.

Spermy
09-29-2007, 10:51 AM
Same, 3.6.8.

Perhaps im pasting it incorrectly? How should it be formatted in there?

Can you copy and paste your whole postbit_articles template to me in a PM?

I don't get this plugin working with VBTT properly... Disappointed.

I haven't used vbtt in awhile, but all you should need to do is add the vbtt edits you would do in any of the postbits into the postbit_articles. Can you send me a link to the new vbtt and when I get some time I will look at it.

xandizitxu
09-29-2007, 11:36 AM
I already tried it. Didn't work, the link is
www.torrenttrader.org

Freesteyelz
09-30-2007, 10:04 PM
For those who just want to keep the "Article" layout and not have the other postbit options in (new thread/edit post) can simply disable plugins:

editpost_edit_complete
editpost_update_complete
newpost_complete
newthread_form_complete

FireFish
09-30-2007, 11:12 PM
This is a great mod & I like the ease of installation as well as the way it works.

However, I disabled it & see I cannot use it until you add Usergroup Permission controls to it.

I as a Forum Admin would like to be able to use this as an option when starting threads, but don't necessarily want others to be able to.

Is anyone else with me on this?

Freesteyelz
09-30-2007, 11:59 PM
At FireFish:

I haven't tested it but I know with a conditional you can hide the ability to change template based on Usergroup. The conditional is:


<if condition="is_member_of($bbuserinfo, 6)">
postbit_select code here
</if>


In postbit_select, you would add the first <'if" at the top and at the very bottom add the ending "</if>".

If you want to add Usergroups just add a "," (e.g., 6,5,7) then the Usergroup ID #. See if that works.

CarpHunter
10-02-2007, 04:56 AM
I really love this hack so I use it alot.

There is one little thing that bugged me and that was the wierd positioning of the "editted msg"
In the article postbit it is placed really wierd so I fixed it a little to make it better looking.
See the attached images what I mean.
The first was how it looked at first. The second is how it looks after.

I also Fixed what I think is a bug that caused the word Rating and a "(" and a ")" (don't know the english words for them sorry :o ) to show without rating being given to the thread.
The third screen shows you the rating "bug"
The fourt is w/o rating and the fifth with rating after the fix.

Because I don't know if it is as designed I included 2 XML files.
One with only the edit msg fix and one with both the edit msg fix and the rating fix.

Hope this is ok by Atakan OCK :)

mvigod
10-02-2007, 01:33 PM
I like that better as well. Is the only difference in the postbit article template? Wouldnt it be easier to just copy the template code from the xml and manually paste it in the postbit article template? I have made some changes to the order and added <if conditions>. Installing from this XML will overwrite those.

CarpHunter
10-02-2007, 07:51 PM
Thats also possible. If needed I can give the template in txt file.

I also noticed something when I made this.
Some styles use empty rating starts or other images for rating display. The standard vB skin has an empty gif for the 0 rating picture.
I will make a new version later that suites those rating pictures better (then the text Rating is neede or else the pictures look out of place)

elmati
10-02-2007, 09:03 PM
anyone fix out the quick edit bug?

if you quick edit the first post for an article thread the postbit automatically change to default postbit... i dont really know how to fix out that...

Atakan KOC are you there? :)

mvigod
10-03-2007, 03:08 PM
If you have the order to set default as postbit legacy or postbit, the quick edit will assign default. I just make sure that if I am editing an article, I always go into the advanced and ensure I reselect article.

elmati
10-05-2007, 02:24 AM
yeah, i go to advanced edit too, but users forgot and keep using quick edit that it's more easy...

i need a way to keep the postbit using post quick edit... maybe an update would be nice :)

Michael2
10-05-2007, 04:36 PM
Sorry this is slightly unrelated to the hack but can you tell me how to make my postbit look like this...

https://vborg.vbsupport.ru/attachment.php?attachmentid=69006&d=1187968602

I don't really need the mod but I love the way that postbit looks. :)

rapidphim
10-05-2007, 07:44 PM
You need to hack the mod to have that postbit look

lasto
10-05-2007, 07:45 PM
what mod is that to do the postbit m8 ?

rapidphim
10-05-2007, 09:26 PM
I installed this mod but had it a bit tweak around. So, take a look to see if that is what you are looking for
http://www.vshares.net/showthread.php?t=7

wolfe
10-05-2007, 10:42 PM
how do you set it to use only postbit flipped for set forums ?

rapidphim
10-06-2007, 10:08 AM
Read few pages back, there are guide that shown how to make default.

fox3nova
10-07-2007, 04:54 AM
Can I put this thread type to this position ?

inciarco
10-08-2007, 10:13 PM
:(:(:(

:confused: Any Idea in How To Correct the Incompatibility of this Hack with the Hack "PhotoPlog: The Lite Gallery" (https://vborg.vbsupport.ru/showthread.php?t=101368)?? :confused:

:( I Hope You Can Help Me To Be Able To Use Both Hacks Together!! :(

Copy/Paste of one of the Messages I've written in this Thread where I try to tell you about the presence of the Error so that You can Analize it and Solve This Problem:

The only way for the Hack to Work is by Disabling the Photoplog Hack in my Forum, that's why I deduced that some Incompatibility is Happening, also by the Error Message and the piece of code that says "COUNT(photoplog_fileuploads.moderate) - SUM(photoplog_fileuploads.moderate),COUNT(photoplo g_fileuploads.moderate)) AS photoplog_filecount" that includes "COUNT" and is related with Photoplog; but this Error only happens when the Chief First Post Hack is Activated and set to Yes in a Forum, so something isn't working, at least in Version 3.6.7 PL1; I hope you could analyze the Error and Orient me in what should I check/change/set for this Hack to work Ok in my Forums!! :confused:

I appreciate your Help and your Patience!! ;)

My Best Regards!! :)

I copy/paste again the Error Message for you to Analyze it:

Database error
The INCIARCO - FOROS - Comunidades Virtuales de Integraci?n database has encountered a problem.

--------------------------------------------------------------------------------

Please try the following:
Load the page again by clicking the Refresh button in your web browser.
Open the inciarco.com home page, then try to open another page.
Click the Back button to try another link.

The inciarco.com forum technical staff have been notified of the error, though you may contact them if the problem persists.

We apologise for any inconvenience.


Database error in vBulletin 3.6.7:

Invalid SQL:

SELECT
post.*, post.username AS postusername, post.ipaddress AS ip, IF(post.visible = 2, 1, 0) AS isdeleted,
user.*, userfield.*, usertextfield.*,
icon.title as icontitle, icon.iconpath,
avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline,customavatar.width AS avwidth,customavatar.height AS avheight,
deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason,
editlog.userid AS edit_userid, editlog.username AS edit_username, editlog.dateline AS edit_dateline,
editlog.reason AS edit_reason,
postparsed.pagetext_html, postparsed.hasimages,
sigparsed.signatureparsed, sigparsed.hasimages AS sighasimages,
sigpic.userid AS sigpic, sigpic.dateline AS sigpicdateline, sigpic.width AS sigpicwidth, sigpic.height AS sigpicheight,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid

, IF(SUM(photoplog_fileuploads.moderate) > 0 AND 1 = 0,COUNT(photoplog_fileuploads.moderate) - SUM(photoplog_fileuploads.moderate),COUNT(photoplo g_fileuploads.moderate)) AS photoplog_filecount
FROM vb_post AS post
LEFT JOIN vb_user AS user ON(user.userid = post.userid)
LEFT JOIN vb_userfield AS userfield ON(userfield.userid = user.userid)
LEFT JOIN vb_usertextfield AS usertextfield ON(usertextfield.userid = user.userid)
LEFT JOIN vb_icon AS icon ON(icon.iconid = post.iconid)
LEFT JOIN vb_avatar AS avatar ON(avatar.avatarid = user.avatarid) LEFT JOIN vb_customavatar AS customavatar ON(customavatar.userid = user.userid)
LEFT JOIN vb_deletionlog AS deletionlog ON(post.postid = deletionlog.primaryid AND deletionlog.type = 'post')
LEFT JOIN vb_editlog AS editlog ON(editlog.postid = post.postid)
LEFT JOIN vb_postparsed AS postparsed ON(postparsed.postid = post.postid AND postparsed.styleid = 3 AND postparsed.languageid = 2)
LEFT JOIN vb_sigparsed AS sigparsed ON(sigparsed.userid = user.userid AND sigparsed.styleid = 3 AND sigparsed.languageid = 2)
LEFT JOIN vb_sigpic AS sigpic ON(sigpic.userid = post.userid)
LEFT JOIN photoplog_fileuploads AS photoplog_fileuploads ON(photoplog_fileuploads.userid = user.userid)
WHERE post.postid IN (0,8415,8415)
ORDER BY post.dateline;

MySQL Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error Number : 1140
Date : Tuesday, September 25th 2007 @ 05:12:30 PM
Script : http://zzz/showthread.php?t=1909
Referrer : http://zzz/forumdisplay.php?f=85
IP Address : zzz.zzz.zzz.zzz
Username : zzz
Classname : vb_database

:)

vitrag24
10-08-2007, 11:03 PM
can i set it for all forums[sections] radher then setting manually for all?

scudd
10-08-2007, 11:32 PM
One word sums this up on our forum!!

FABULOUS!

Thanks!! Its what FSi has been crying out for!!

Sparky_s
10-12-2007, 12:21 AM
Thanks, works great:up:

yoyoyoyo
10-12-2007, 02:02 AM
any idea what is causing this error or how to fix it?

https://vborg.vbsupport.ru/showpost.php?p=1347404&postcount=84

inciarco
10-13-2007, 01:15 PM
any idea what is causing this error or how to fix it?

https://vborg.vbsupport.ru/showpost.php?p=1347404&postcount=84

I've Got the Same Error and Haven't Gotten Any Anwer From The Creator of This Hack!! :mad:

I've Provided Many information Regarding That Error, also the Code Line that Causes It, and The Creator of This Hack Haven't Even Analyze it and Provided a Way To Correct it!! :mad:

Check My Posts in this Thread and You'll Verify what I'm talking about!! :(

In my Forum this Hack only Works when I Disable the PhotoPlog Lite Hack, because there's a Code Line in the Query I refer in the following Quotings that Work Wrong when The Chief First Post is Activated for a Forum, and the Error You Refer in Your Message Only Gets Triggered in Those Forums with the Chief First Post set to "Yes", and Happens when Trying to See a Thread inside those Forums!! :(

I've Even Activated the Hack for a Specific Forum so that the Developer of this Hack could see that Error Happening, but Haven't Provided a way to Correct that Query that This Hack Alters in NON Compatibility with the PhotoPlog Lite Hack; perhaps in your case there's a Similar Incompatibility in a SQL QUERY with a Hack you've Installed in your Forums; the Only Way to Analyze that is by Providing the Error Query Message that the VBulletin Forum Displays for Administrators of the Forums, in your case in your Forums!! :(

I Hope He Corrects that Error, because Now We're Two (2) Users Unable to Use this Hack Because of that Error in a QUERY!! :(

Atakan Please Tell Us What To Do!! How Do We Correct That QUERY Error?? :confused: ;)

It seems like an Error Caused for Not Compatibility with the Hack PhotoPlog Lite Gallery!! :(

Thread: PhotoPlog: The Lite Gallery
https://vborg.vbsupport.ru/showthread.php?t=101368

http://www.photoplog.com/forum/forumdisplay.php?f=5

When I Disable the PhotoPlog Lite Hack in the Forum, Your Hack Works but I Receive The Error Message, repeated Several Times:



I Hope You Can Correct that Not Compatibility with the PhotoPlog Lite Gallery, I think is Related with the Code I've referred in my Previous Messages!! :(

For Now, I'll Not Use This Hack Because Causes Conflict with the Hack PhotoPlog Lite Gallery!! (I'm Very Sad, Because I'd have Liked to be able to Use this Hack in my Forums, to have the Similar Behavior like the VBulletin.Org Site where the First Post is shown in all the Pages of a Thread) :(

My Best regards!! :(

:)



:(:(:(

:confused: Any Idea in How To Correct the Incompatibility of this Hack with the Hack "PhotoPlog: The Lite Gallery" (https://vborg.vbsupport.ru/showthread.php?t=101368)?? :confused:

:( I Hope You Can Help Me To Be Able To Use Both Hacks Together!! :(

Copy/Paste of one of the Messages I've written in this Thread where I try to tell you about the presence of the Error so that You can Analize it and Solve This Problem:

The only way for the Hack to Work is by Disabling the Photoplog Hack in my Forum, that's why I deduced that some Incompatibility is Happening, also by the Error Message and the piece of code that says "COUNT(photoplog_fileuploads.moderate) - SUM(photoplog_fileuploads.moderate),COUNT(photoplo g_fileuploads.moderate)) AS photoplog_filecount" that includes "COUNT" and is related with Photoplog; but this Error only happens when the Chief First Post Hack is Activated and set to Yes in a Forum, so something isn't working, at least in Version 3.6.7 PL1; I hope you could analyze the Error and Orient me in what should I check/change/set for this Hack to work Ok in my Forums!! :confused:

I appreciate your Help and your Patience!! ;)

My Best Regards!! :)

I copy/paste again the Error Message for you to Analyze it:

Database error
The INCIARCO - FOROS - Comunidades Virtuales de Integraci?n database has encountered a problem.

--------------------------------------------------------------------------------

Please try the following:
Load the page again by clicking the Refresh button in your web browser.
Open the inciarco.com home page, then try to open another page.
Click the Back button to try another link.

The inciarco.com forum technical staff have been notified of the error, though you may contact them if the problem persists.

We apologise for any inconvenience.


Database error in vBulletin 3.6.7:

Invalid SQL:

SELECT
post.*, post.username AS postusername, post.ipaddress AS ip, IF(post.visible = 2, 1, 0) AS isdeleted,
user.*, userfield.*, usertextfield.*,
icon.title as icontitle, icon.iconpath,
avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline,customavatar.width AS avwidth,customavatar.height AS avheight,
deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason,
editlog.userid AS edit_userid, editlog.username AS edit_username, editlog.dateline AS edit_dateline,
editlog.reason AS edit_reason,
postparsed.pagetext_html, postparsed.hasimages,
sigparsed.signatureparsed, sigparsed.hasimages AS sighasimages,
sigpic.userid AS sigpic, sigpic.dateline AS sigpicdateline, sigpic.width AS sigpicwidth, sigpic.height AS sigpicheight,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid

, IF(SUM(photoplog_fileuploads.moderate) > 0 AND 1 = 0,COUNT(photoplog_fileuploads.moderate) - SUM(photoplog_fileuploads.moderate),COUNT(photoplo g_fileuploads.moderate)) AS photoplog_filecount
FROM vb_post AS post
LEFT JOIN vb_user AS user ON(user.userid = post.userid)
LEFT JOIN vb_userfield AS userfield ON(userfield.userid = user.userid)
LEFT JOIN vb_usertextfield AS usertextfield ON(usertextfield.userid = user.userid)
LEFT JOIN vb_icon AS icon ON(icon.iconid = post.iconid)
LEFT JOIN vb_avatar AS avatar ON(avatar.avatarid = user.avatarid) LEFT JOIN vb_customavatar AS customavatar ON(customavatar.userid = user.userid)
LEFT JOIN vb_deletionlog AS deletionlog ON(post.postid = deletionlog.primaryid AND deletionlog.type = 'post')
LEFT JOIN vb_editlog AS editlog ON(editlog.postid = post.postid)
LEFT JOIN vb_postparsed AS postparsed ON(postparsed.postid = post.postid AND postparsed.styleid = 3 AND postparsed.languageid = 2)
LEFT JOIN vb_sigparsed AS sigparsed ON(sigparsed.userid = user.userid AND sigparsed.styleid = 3 AND sigparsed.languageid = 2)
LEFT JOIN vb_sigpic AS sigpic ON(sigpic.userid = post.userid)
LEFT JOIN photoplog_fileuploads AS photoplog_fileuploads ON(photoplog_fileuploads.userid = user.userid)
WHERE post.postid IN (0,8415,8415)
ORDER BY post.dateline;

MySQL Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error Number : 1140
Date : Tuesday, September 25th 2007 @ 05:12:30 PM
Script : http://zzz/showthread.php?t=1909
Referrer : http://zzz/forumdisplay.php?f=85
IP Address : zzz.zzz.zzz.zzz
Username : zzz
Classname : vb_database

:)



:)

Munzo
10-13-2007, 11:26 PM
An idea would be to set which post bits they can use!

Cubevisions
10-14-2007, 03:52 AM
Is this mod working well? I saw a lot of problem through the topic and i'm not really sure if i can use this without worries.

inciarco
10-14-2007, 02:43 PM
Is this mod working well? I saw a lot of problem through the topic and i'm not really sure if i can use this without worries.

I've reported an Incompatibility of this Hack with PhotoPlog in a SQL Query that I've Posted in a previous message for the Developer of this Hack to Solve, (https://vborg.vbsupport.ru/showpost.php?p=1358936&postcount=131), because when Activating this Hack in a Forum and trying to see a Message I get an Error and I'm unable to use this Hack; once disabled PhotoPlog the Hack Works. :(

Other User reported a Similar Error that the One I'm Getting.

In other Forums the Hack is Working Ok as I've Seen in this Thread.

I'm waiting for the Developer to provide me a Solution so that I can Use this Hack and Correct the SQL Query that is causing the Error and Incompatibility with Photoplog. :(

I've Uninstalled this Hack and Not Using it until I get an Answer from the Developer and Creator of this Hack telling me How to Correct the SQL Query that is causing the Error. :(

:)

vitrag24
10-14-2007, 05:52 PM
<a href="https://vborg.vbsupport.ru/showpost.php?p=1355824&postcount=127" target="_blank">https://vborg.vbsupport.ru/showp...&postcount=127</a>
no reply yet?

inciarco
10-19-2007, 04:32 AM
https://vborg.vbsupport.ru/showpost.php?p=1355824&postcount=127
no reply yet?

No Reply At All!! :mad::mad::mad:

:)

madotds
10-19-2007, 02:26 PM
Thank you :) installed

goorgoor
10-22-2007, 05:56 AM
is it possible to change the position of postbit for different type? like adding dir="rtl" and tags like this!

Animparadise
11-01-2007, 10:15 AM
I have some problem:
http://aycu05.webshots.com/image/32284/2002698723857746989_th.jpg (http://allyoucanupload.webshots.com/v/2002698723857746989)
any idea how to solve them?

mhackl
11-05-2007, 04:45 AM
This would probably be easy to do if I knew anything about programming, but I have a suggestion / request.

It would be nice to have a (bookmark?) link to the posts below the first so that when reading the second page of a thread you could easily bypass the initial post. This may sound like it's defeating the purpose, but it would be helpful when reading an entire multi-page thread from the beginning.

Also, a flipped version of the Article template would be nice.

inciarco
11-06-2007, 01:22 PM
Any Solution For The Problem With PhotoPlog SQL Sentence That Causes Error In Data Base When Activating This Hack In Forums?? :confused:

(Read My Previous Messages In This Thread For Details).

I've Found In The Forum Some Users With This Problem, I Hope The Author Can Give Us a Solution To be Able To Use This Hack!! :rolleyes:

My Best Regards!! ;)

:)

Illustrious
11-14-2007, 05:08 AM
Anyway you could add this to the quick edit template so we don't have to go to the full editor to prevent an edit from reverting the first post into standard format?

helpmehost
11-16-2007, 05:09 PM
I have problem with this mod in my right to left language

the first post contents alignment seems to be left and not according to forum's language direction. where can I edit this?

Defkalion
11-17-2007, 06:16 AM
Is there any way to disable the function of first post appearing on every page? I just want to keep the Articles layout. :)

SuperJETT
11-17-2007, 07:03 PM
Very nice, thanks.

I would really like to be able to select which template is the default in admincp, maybe even per forum?

inciarco
12-02-2007, 04:46 PM
Any Solution For The Problem With PhotoPlog SQL Sentence That Causes Error In Data Base When Activating This Hack In Forums?? :confused:

(Read My Previous Messages In This Thread For Details).

I've Found In The Forum Some Users With This Problem, I Hope The Author Can Give Us a Solution To be Able To Use This Hack!! :rolleyes:

My Best Regards!! ;)

:)

I've Analyzed Today the PhotoPlog Plugin that Contains the COUNT Code, and I've Found that the Plugin "PhotoPlog File Count" (Hook Location "showthread_query") contains the Code that Causes the Error!! ;)

I've Added the Code

if (!$forum['chiefpost'])
{




Before

if (
$vbulletin->options['photoplog_is_active']

and Closed the If Sentence with a



}




After

$postids = $postids." ".$hook_query_where;

}

At the End of the Plugin Code, Not Allowing to Execute Itself When the Forum has Activated the Chief First Post as "Yes".

This Way the Error I've Mentioned Don't Occurs and Finally the First Post is Shown in Every Page!! :up: ;)

My Best Regards!! :up:

:)

inciarco
12-02-2007, 05:15 PM
Now I Can Say is a Great Hack!! :up::up::up:

Thank You Very Much For Sharing It Atakan KOC!! :up:

My Best Regards!! ;)

:)

letsjoy
12-02-2007, 06:00 PM
you rox :)

Doctor Death
12-02-2007, 06:36 PM
I would like to see a minor tweak to this great mod.... can you add in the options a yes/no button to place a divider between the FIRST POST and all remaining posts?

The reason I ask is that on subsequent pages, you forget that the FIRST POST reshown is special... a repeat from pages before.

Some fancy divider would be great that isnt used between other posts.

nickypoooo
12-03-2007, 12:55 AM
Great Mod... Installed And NOM! Is there a way to get it to align the text to right by default? currently all new articles are aligned to the left...

thank you

demgel
12-04-2007, 05:29 PM
Well, TO ME is annoying that everything is in posbit_article mode by default, so... to choose the default posbit, in the XML search:

default:
$this->templatename = 'postbit_articles';

So, change postbit_articles for the default mode you like.

These are the four options you can use:

postbit_legacy
postbit_articles
postbit_flipped
postbit (this is the normal mode)

So, then you import the product (reeplacing the old one by this one).

Saludos desde chile! (My english really sucks, I now)

PD: Don't know if this was posted already on this thread.
PD2: Atakan KOC, YOU ARE THE MAN!!! I've been waiting for this since march!! :D

Aydeniz
12-04-2007, 07:01 PM
Is that posibble to restrict this to some usergroups ? Anyway , great job Atakan ...

mykkal
12-06-2007, 07:58 AM
1. There were an option to selectively have the first post repeat itself. May not want the 1st post to display on every thread.

2. An option in the admin panel to give the moderators or users an oppurtunity to post those articles indivdually regardless of the forum. Say make it usergroup based.

3. or maybe add a usergroup called articled which you can add indivuals too to give them the choice of posting regular threads or articles.

goorgoor
12-10-2007, 03:29 PM
hoe can i have the content in the right side instead of left side?

Theoldwiz
12-14-2007, 01:25 PM
I wish you could set what you wanted as default. I cant use this if my users have to pick what they want every thread, because I want to force them to use one thing.

Zaiaku
12-23-2007, 10:28 PM
Damn I love this mod!

Theoaldwiz - Read this https://vborg.vbsupport.ru/showpost.php?p=1394907&postcount=151

Doctor Death
12-23-2007, 10:32 PM
This is a great mod... what would make it even better is to somehow FRAME the first post in a different color and/or a dividing border to make it stand out on subsequent pages.

Daisy EE8
12-30-2007, 09:47 PM
installed and MOTM!

Many thanks!!!:up:

bigcurt
12-30-2007, 10:13 PM
I just want the first post showed on every page..that simple. How can I do that? I know I can do it with this mod but this mod also allows people to choose how they post in the forum and all and I do not need/want that.

Tim_GPN
12-31-2007, 03:33 AM
Great mod, however it wont work for me for some reason.

I just get a huge database error? Any ideas?

Database error in vBulletin 3.6.8:

Invalid SQL:

SELECT
post.*, post.username AS postusername, post.ipaddress AS ip, IF(post.visible = 2, 1, 0) AS isdeleted,
user.*, userfield.*, usertextfield.*,
icon.title as icontitle, icon.iconpath,
avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline,customavatar.width AS avwidth,customavatar.height AS avheight,
deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason,
editlog.userid AS edit_userid, editlog.username AS edit_username, editlog.dateline AS edit_dateline,
editlog.reason AS edit_reason,
postparsed.pagetext_html, postparsed.hasimages,
sigparsed.signatureparsed, sigparsed.hasimages AS sighasimages,
sigpic.userid AS sigpic, sigpic.dateline AS sigpicdateline, sigpic.width AS sigpicwidth, sigpic.height AS sigpicheight,
IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid

, IF(SUM(photoplog_fileuploads.moderate) > 0 AND 1 = 0,COUNT(photoplog_fileuploads.moderate) - SUM(photoplog_fileuploads.moderate),COUNT(photoplo g_fileuploads.moderate)) AS photoplog_filecount
FROM post AS post
LEFT JOIN user AS user ON(user.userid = post.userid)
LEFT JOIN userfield AS userfield ON(userfield.userid = user.userid)
LEFT JOIN usertextfield AS usertextfield ON(usertextfield.userid = user.userid)
LEFT JOIN icon AS icon ON(icon.iconid = post.iconid)
LEFT JOIN avatar AS avatar ON(avatar.avatarid = user.avatarid) LEFT JOIN customavatar AS customavatar ON(customavatar.userid = user.userid)
LEFT JOIN deletionlog AS deletionlog ON(post.postid = deletionlog.primaryid AND deletionlog.type = 'post')
LEFT JOIN editlog AS editlog ON(editlog.postid = post.postid)
LEFT JOIN postparsed AS postparsed ON(postparsed.postid = post.postid AND postparsed.styleid = 9 AND postparsed.languageid = 1)
LEFT JOIN sigparsed AS sigparsed ON(sigparsed.userid = user.userid AND sigparsed.styleid = 9 AND sigparsed.languageid = 1)
LEFT JOIN sigpic AS sigpic ON(sigpic.userid = post.userid)
LEFT JOIN photoplog_fileuploads AS photoplog_fileuploads ON(photoplog_fileuploads.userid = user.userid)
WHERE post.postid IN (0,31144,31144)
ORDER BY post.dateline;

MySQL Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error Number : 1140
Date : Monday, December 31st 2007 @ 04:31:29 PM
Script : .......
Referrer : .......
IP Address : .......
Username : .......
Classname : vB_Database

LilSniper
01-01-2008, 06:19 PM
Will this work for 3.6.7?

Forum Lover
01-01-2008, 06:39 PM
Will this work for 3.6.7?

i second that.

almansoori
01-04-2008, 06:48 PM
Good work
I wish you success

unitedpunjab
01-04-2008, 07:01 PM
Will this work for 3.6.7?

i second that.

Yes,its working for me on 3.7 b3

inciarco
01-04-2008, 10:40 PM
Great mod, however it wont work for me for some reason.

I just get a huge database error? Any ideas?

See One of My Last Posts a few Weeks Ago, (actually is in the Previous Page (10), Post 146, of this Thread); there I Explain How I Solved a Similar Incompatibility of this Hack With PhotoPlog By Including Two Simple Code Line Modifications in One (1) PhotoPlog Plugins. I Also Posted that Same Solution in one of My Last Posts on the PhotoPlog Thread here in vBulletin!! ;)

My Best Regards!! ;)

:)

Tim_GPN
01-05-2008, 06:11 AM
See One of My Last Posts a few Weeks Ago, (actually is in the Previous Page (10), Post 146, of this Thread); there I Explain How I Solved a Similar Incompatibility of this Hack With PhotoPlog By Including Two Simple Code Line Modifications in One (1) PhotoPlog Plugins. I Also Posted that Same Solution in one of My Last Posts on the PhotoPlog Thread here in vBulletin!! ;)

My Best Regards!! ;)

:)

You are officially my new best friend.

Thanks heaps mate!

wolfyman
01-05-2008, 11:42 AM
I'm missing my rep button for the first post using (postbit legacy with the avatar on the right).

How can I fix this?

Aeolian
01-05-2008, 11:22 PM
in postbit article option, "Rating: ()" option comes in every topic irrespective of the fact that the section does not allow rating a thread..
how to resolve :s
thanks in advance

rapidphim
01-07-2008, 03:29 AM
can this awesome mod be upgraded for upcoming vb 3.7? my board will be meaningless without this mod.

wolfyman
01-09-2008, 01:49 PM
I'm missing my rep button for the first post using (postbit legacy with the avatar on the right).

How can I fix this?


Bueller?

Aeolian
01-09-2008, 06:48 PM
can this awesome mod be upgraded for upcoming vb 3.7? my board will be meaningless without this mod.
i have tested the mod in vb 3.7 b3, and it works fine.

Aeolian
01-09-2008, 06:49 PM
in postbit article option, "Rating: ()" option comes in every topic irrespective of the fact that the section does not allow rating a thread..
how to resolve :s
thanks in advance
BUMP :D

hdrmut
01-14-2008, 09:21 PM
Not work with 3.6.8


MySQL Error : Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause
Error Number : 1140
Date : Tuesday, January 15th 2008 @ 05:21:01 AM
Script : http://www.hdrmut.net/vb/showthread.php?p=1052942784
Referrer :
IP Address : 212.71.37.72
Username : support
Classname : vb_database

safakuygur
01-16-2008, 11:19 AM
installed..
Thanks Atakan KOÇ

voter
01-17-2008, 05:18 PM
For "Rating: ()" option comes in every topic irrespective of the fact that the section does not allow rating a thread..

Find in postbit_articles

<div><if condition="$thread['rating']">
<strong>$vbphrase[rating]:</strong>
<img class="inlineimg" src="$stylevar[imgdir_rating]/rating_$thread[rating].gif" alt="" />
<span class="smallfont">
<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[cp_x_votes_y_average]</phrase>
</span>
<else />
<img class="inlineimg" src="$stylevar[imgdir_rating]/rating_0.gif" alt="" />
<span class="smallfont">
(<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[mxe_x_votes_y_average]</phrase>)
</span>
</if></div>


Replace it with
<if condition="$show['threadratings'] AND $show['threadrating']">
<div>
<if condition="$thread['rating']">
<strong>$vbphrase[rating]:</strong>
<img class="inlineimg" src="$stylevar[imgdir_rating]/rating_$thread[rating].gif" alt="" />
<span class="smallfont">
<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[cp_x_votes_y_average]</phrase>
</span>
<else />
<img class="inlineimg" src="$stylevar[imgdir_rating]/rating_0.gif" alt="" />
<span class="smallfont">
(<phrase 1="$thread[votenum]" 2="$thread[voteavg]">$vbphrase[mxe_x_votes_y_average]</phrase>)
</span>
</if>
</div>
</if>

For advanced users and may be for further release from Atakan I add an if condition - in red, don'T forgot the to close the if.

voter
01-17-2008, 05:33 PM
It would be greate enhancement, if one will have a option in userCP, such that every user could deside, do he want a view with chief post or not.

Something similar to display modes, that every user could decide in which mode he would like to display threads.

voter
01-17-2008, 05:57 PM
Well, TO ME is annoying that everything is in posbit_article mode by default, so... to choose the default posbit, in the XML search:

default:
$this->templatename = 'postbit_articles';

So, change postbit_articles for the default mode you like.

These are the four options you can use:

postbit_legacy
postbit_articles
postbit_flipped
postbit (this is the normal mode)

So, then you import the product (reeplacing the old one by this one).

Saludos desde chile! (My english really sucks, I now)

PD: Don't know if this was posted already on this thread.
PD2: Atakan KOC, YOU ARE THE MAN!!! I've been waiting for this since march!! :D

Check the first page of thread https://vborg.vbsupport.ru/showpost.php?p=1325215&postcount=20 it is more safe, than hardcoding the XML file.:rolleyes:

voter
01-18-2008, 11:28 AM
Any idea how to switch this off in one style and let it be in another?
I have many styles and think to allow users, who don't like this way of showing the threads, choose just another style.

amirlol
01-20-2008, 01:54 PM
Thank you very much

WreckRman2
02-05-2008, 04:44 PM
I like this... the only thing that would make this better would be the ability to merge posts into the first one. Example... I have a forum where a guy builds a kit airplane. Something that takes many days to get done. So if one could click add to post of something and create a new post it would create a timeline within the first post and also show attachments based on the day they were uploaded instead of all at the bottom. Kinda like a blog in a way.

mry
02-05-2008, 08:53 PM
how automatic enable for all forums categorys ? can u add subforums... include option

Austone
02-17-2008, 12:31 AM
It installed perfectly, but didn't change anything??? I turned it on for all my forums...

Any ideas?

Loanmanken
02-17-2008, 12:19 PM
Sweet thanks man! I have replicated vb.org's article section with this mod...although I still have a few phrases to change on the search templates and two other places.

http://www.allthingsintended.com/forums/forumdisplay.php?f=31

todosbaneados
02-22-2008, 12:02 PM
I installed the producto only, how can i see the first post in all pages? It doesnt appears

rapidphim
02-22-2008, 01:33 PM
I installed the producto only, how can i see the first post in all pages? It doesnt appears

You have to set the permisson for each forum.

todosbaneados
02-22-2008, 06:50 PM
How can ia add a chager pages, between first post and the others, like in IPB? or simply add a space or anything like that.

And how can i remove the thread type for posts?

Scamorz
02-27-2008, 08:49 PM
Hi, thank you for this mod.

A little question: in the first post of a thread i can't see "thank you" button...is it normal?
Can you integrate this mod with Thank you mod?

;)

inciarco
02-27-2008, 09:24 PM
I'd Appreciate a lot if Calorie could Tell me if the Plugin "PhotoPlog File Count" Can Be Ommited without any Problem, because the Way the Code is Written Affects the Hack "Chief First Post" that I've Mentioned Before, causing the Error I've mentioned in some of my Posts in this Thread!! :confused:

My Best Regards!! :up:

:)

I Just Noticed that the Plugin "PhotoPlog File Count" is Not Active on the Installation of the Mod, and only is Activated by the Admin if wishes to Try an Option in the Manual "Want a gallery link in postbit with count?", so is Safe to keep it Not Active, and of Course as mentioned in one of my Previous Posts, this will Help not to Get a Conflict with the Mod "Chief First Post on Every Page"!! :p :rolleyes:

My Best Regards!! ;)

:)

Animparadise
02-28-2008, 11:34 AM
i have a new problem with this hack,
i installed it nicely and it was ok, but after installing some modification, it's chace all of post in thread page not only first post, how to solve this problem?

Animparadise
03-01-2008, 03:25 AM
i have a new problem with this hack,
i installed it nicely and it was ok, but after installing some modification, it's chace all of post in thread page not only first post, how to solve this problem?

any suggestion?:confused:

Powerofdreams
03-02-2008, 08:53 AM
Is it same with vbulletin.org hack system ? Atakan

Atakan abi her sayfda ilk mesaj g?sterilmesi gibi bir şey mi bu ? Teşekk?rler :)

MissKalunji
03-05-2008, 10:59 AM
i done this using conditionals...
Love this hack!

what did u use?

Zaiaku
03-10-2008, 05:44 PM
OK This was working for me on my test board but now since I've done the full upgrade to 3.7 beta 6 its not working fully for me. It displays the first post on all pages just fine but its not displaying it with the right template. It's using the same template as the other posts are. Anyne one have any ideas?

Tom_S
03-10-2008, 06:01 PM
Hope this helps for the postbit problems. I use legacy so this is what I did.


Oh yeah...The stuff! Thanks! I like a lot!

Zaiaku
03-11-2008, 03:31 PM
OK not sure why but its working just fine now :)

trigon
03-19-2008, 10:43 AM
Hope this helps for the postbit problems. I use legacy so this is what I did.



Yep, that was my problem, now fixed. THX buddy.:D

katie hunter
03-19-2008, 11:41 AM
Hey Nice mod :) I like it, but i am so picky with my forum styles, one of my skin looks different then the other when i post an article, may be screenshots will help more.

I have this orange skin and my signatures show under my avatar box. I like it how it is like that but in that other skin, my signatures doesn't show under my avatar box, it appears far away from it, do you know what might cause that ? So i could fix it

Orange skin, ( I like where my signature appears right now )

http://i271.photobucket.com/albums/jj126/straberrykitten/p1a.jpg

On my other skin it shows different, ( How can i make my signature show like my orange skin ? )

http://i271.photobucket.com/albums/jj126/straberrykitten/p2a.jpg

codershark
03-19-2008, 12:18 PM
Works perfect in vb 3.7 Beta 6..

MissKalunji
03-21-2008, 06:29 AM
Works on 3.7 Rc 1 as well

codershark
03-24-2008, 05:25 AM
Dont compatible with Thank you Hack :( (dont show the thank you button in first post)

myown
04-10-2008, 10:16 AM
great hack but not compatible with thank you hack

Koroku
04-10-2008, 09:38 PM
Hmmm, I tried to install this on vB3.7 RC3... didn't seem to have any problem, but when I tried to change a forum to "Yes", I get this error...

It's really long so I'm attaching a txt file with it :s

Any idea why?

rapidphim
04-21-2008, 04:46 AM
Can any one please confirm this one is working on 3.7.0 RC3 and for the upcoming Gold release? Thanks.

Goomzee
04-21-2008, 04:49 AM
nice mod thanx

MissKalunji
04-21-2008, 03:10 PM
Can any one please confirm this one is working on 3.7.0 RC3 and for the upcoming Gold release? Thanks.

Works on 3.7 Rc 1 as well


and i'm on rc2 now :-/

mask31
04-29-2008, 06:40 AM
for posbit_article, i don't see the infractions icon and the IP icon, can someone help me on this?

thanks

Vtec44
05-01-2008, 05:57 AM
It works with 3.7.x.

Scalemotorcars
07-04-2008, 06:59 PM
Just tried and install on 3.6.5 got a huge database error. I dont have the photo or thank you hack installed so thats not it. ????

MySQL Error : Unknown column 'phrasegroup_cv_ffl' in 'field list'
Error Number : 1054
Date : Friday, July 4th 2008 @ 03:41:39 PM
Script : http://www.**********.com/forum/admincp/plugin.php?do=productkill
Referrer : http://www.*************.com/forum/admincp/plugin.php?do=productdelete&productid=chiefpost&s=
IP Address : **************
Username : **************
Classname : vB_Database

raggyt
10-29-2008, 06:07 PM
ty poster

TheLastSuperman
11-15-2008, 03:18 AM
Installed and Thanks ;)

Baldilocks
02-18-2009, 08:02 PM
Works great on 3.7.x forums.

sergio00
10-28-2009, 06:33 PM
I dont wants Chief the first post of the all threads in the forums,,, :erm:

I want just edit the threads to chief the first post that the threads that I wants.


How to do this????

( I have in my forums a lot of threads and just a few will be articles )

Please help me.:o


BEst Regards
Sergio

sergio00
11-03-2009, 11:40 PM
and??

MissKalunji
11-04-2009, 12:28 AM
When installing CHIEF

you can select WHICH look you want... Just select the default postbit_legacy OR postbit

Then you can edit each thread yourself and select

sergio00
11-09-2009, 11:09 PM
When installing CHIEF

you can select WHICH look you want... Just select the default postbit_legacy OR postbit

Then you can edit each thread yourself and select

I dont want change the look. Thas is very easy. I know do that.

I want DISABLE this mod to some threads. Is possible do that? ( I dont want disable all the sub forum )

Thanks

In other words, I dont want enable this mod to all the threads of one sub forum

MissKalunji
11-10-2009, 12:16 AM
each forum there's an option to enable and disable?

sergio00
11-10-2009, 01:20 AM
Yes,, Admincp--forum edit

But dont exist an option to enable o disable each threads.

Inside a forum,,, I want some threads with the mod enable and anothers with the mod disable.

Just that and I dont find any option to do that

MissKalunji
11-10-2009, 02:20 AM
ok let me get this straight

do you want to MANUALLY choose which thread to have it and all the other one will be default?

sergio00
11-10-2009, 10:35 AM
ok let me get this straight

do you want to MANUALLY choose which thread to have it and all the other one will be default?

YEs!
How can I do that?

MissKalunji
11-10-2009, 07:31 PM
Not Possible.

This will enable EVERY thread of the forum you enable, and stick the first thread on each pages.

The ONLY thing you COULD do if it's just the "LOOK" you want to change.

You enable it and choose "Postbit_legacy" as default and you manually edit EACH thread you would want to change the look to. That's about it. Sorry i couldn't be more of help.