vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Mod for first post can't Quote? (https://vborg.vbsupport.ru/showthread.php?t=133212)

hnjco 12-04-2006 03:44 PM

Mod for first post can't Quote?
 
Is there any mod which can stop users to Quote first post of thread?

Its looks annoy when some one start new topic with little big post and then another user Quote his big post and answer in in just 2-3 words.

tnguy3n 12-04-2006 03:57 PM

I've worked on a similar hack. I added an option to disable quotes in specific forum.

hnjco 12-04-2006 04:07 PM

Quote:

Originally Posted by tnguy3n (Post 1131677)
I've worked on a similar hack. I added an option to disable quotes in specific forum.

How you did that?
All i want user can't qoute in just 3 forums out of 50 :p

peterska2 12-04-2006 05:03 PM

/me gets out the post it notes and leaves note stuck to monitor to do this tonight.

Nice ACP interface for it or just the hacky make it up as you go along in the templates way?

hnjco 12-04-2006 06:13 PM

Quote:

Originally Posted by peterska2 (Post 1131727)
[high]* peterska2 gets out the post it notes and leaves note stuck to monitor to do this tonight.[/high]

Nice ACP interface for it or just the hacky make it up as you go along in the templates way?

didn't get any thinghttp://www.geopakistani.net/gpforums...eadscratch.gif

peterska2 12-04-2006 08:57 PM

That would be because I haven't done it yet ;)

Just got home so reading a few things, having some food, and then I'm on it.

hnjco 12-04-2006 09:23 PM

thanks peterska2
now i got it :p
hope u can do it soon.
thanks again

Nathan2006 12-05-2006 11:38 AM

Quote:

Originally Posted by hnjco (Post 1131665)
Is there any mod which can stop users to Quote first post of thread?

Its looks annoy when some one start new topic with little big post and then another user Quote his big post and answer in in just 2-3 words.

I'm the same, I hate it when someone post say, 1 big picture and then everyone else quotes it :angry: That always drives me up the wall lol

Fingers crossed Kerry-Anne can do it with her 6001th post :p :D

peterska2 12-05-2006 06:22 PM

ooooh, didn't realise I'd done the 6k last night. I knew I was close, but didn't think I'd done it otherwise I'd have been celebrating somewhere.

I have a working prototype, but the code is messy at the moment and there is an option which isn't yet coded in. I should have the final version in the next few days. It won't be till Thursday evening at the earliest though as I've got an exam tomorrow and another on Thursday morning.

hnjco 12-06-2006 02:10 PM

thanks peterska2 for your effort on my request.

Hope to see mod soon.

hnjco 12-08-2006 05:11 PM

peterska2 any update ?

peterska2 12-08-2006 08:33 PM

Hit a problem with it but I am still working on it. I'm having to squeeze in a few mins for it here and there though. The basic version does work, but it is buggy, and the better version (what I will release) has hit a problem area but it is getting there slowly.

hnjco 12-09-2006 11:42 PM

waiting for your release :D

Nathan2006 12-11-2006 02:22 PM

Any luck Kerry-Anne?

hnjco 12-13-2006 02:05 PM

Look like it won't be out soon!

peterska2 12-13-2006 05:28 PM

It's still in the getting there stage. Development has had to be put on hold for a few days due to the simple fact that I have exams at college this week and so any spare mins are being dedicated to revision and practice papers.

Once it is ready then I'll be getting it released, but I can say for definate that it will not be this week.

hnjco 12-27-2006 02:42 AM

any more chance Kerry-Anne?

peterska2 12-27-2006 07:11 AM

How many forums do you want this to be able to be used in?

hnjco 12-27-2006 08:40 PM

around 9 forums

thanks

cunder 12-31-2006 12:20 PM

these want I also
Hope to see mod soon.:up:

cunder 01-02-2007 03:38 PM

are you home !!:ermm:

hnjco 01-09-2007 10:25 PM

any luck Kerry?

cunder 01-20-2007 10:36 AM

Quote:

Originally Posted by hnjco (Post 1154992)
any luck Kerry?

yES Any luck all!

hnjco 01-27-2007 05:23 PM

Look like nothing will be released :rolleyes:

cunder 01-31-2007 04:28 PM

No not yet, hope, however, that it will still succeed

cunder 03-19-2007 02:16 PM

Come On Please:(

CarpHunter 03-19-2007 11:38 PM

I have a quick fix for this. Trying to make it into a plugin but no succes on that yet. Want to make it so that you can select in what forum you can enable this.

But till that is ready you can do the next edits in postbit and/or postbit_legacy templates.
NOTE: this will remove the quote button on your entire forum from the #1 post.

Find:
HTML Code:

<if condition="$post['replylink']">
    <a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>

There are 2 options for this (both work but maybe one suits it better)

Replace with Option 1:
HTML Code:

<if condition="$post['replylink']">
    <if condition="$post[postcount] == 1">       
    <else />
        <a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
    </if>
</if>

This looks at the number of the post and when it's equal to 1 then the quote button is removed.

Or option 2:
HTML Code:

<if condition="$post['replylink']">
    <if condition="$post[postcount] != 1">
        <a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
    <else />
    </if>
</if>

This looks at the number of the post and when it's not equal to 1 then the quote button shown.

Hope this will help for now.

cunder 03-20-2007 03:06 PM

Thanks man :up: :up:

End hope soon that it succeeds with make it into a plugin, with that you can select in what forum you can enable this. :)

cunder 04-04-2007 05:34 PM

Quote:

Originally Posted by cunder (Post 1208096)
Thanks man :up: :up:

End hope soon that it succeeds with make it into a plugin, with that you can select in what forum you can enable this. :)

and are you all what hurried up!

Nathan2006 04-11-2007 08:08 PM

Any news?

cunder 04-15-2007 12:15 PM

And :erm:

SCRIPT3R 04-15-2007 06:01 PM

Quote:

Originally Posted by cunder (Post 1228263)
And :erm:

have you tried PMing Kerry rather then bumping this thread every few days?

hnjco 09-15-2007 04:48 PM

Will there be anyone else who can make such mod?

CarpHunter 10-03-2007 03:16 AM

Made a mod for it.

You can chek it HERE

Hope it is what you're looking for.


All times are GMT. The time now is 07:44 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01417 seconds
  • Memory Usage 1,783KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_html_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (34)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete