Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Zoints Anonymous Posting - Improved privacy for members Details »»
Zoints Anonymous Posting - Improved privacy for members
Version: 1.1, by Zoints Zoints is offline
Developer Last Online: Apr 2009 Show Printable Version Email this Page

Category: New Posting Features - Version: 3.7.0 Rating:
Released: 04-30-2008 Last Update: Never Installs: 195
 
No support by the author.

Have you ever wanted to discuss something on a forum but never posted because you didn't want people to know it was you? To solve this problem, we created an anonymous posting hack.

Via the admin control panel, you can easily choose which forum(s) allows for anonymous posting.




For anonymous enabled forums, your members then get this handly little checkbox (unchecked by default) when making a new thread or post.




If they check the box, then their post is created under the account you setup and assign as the anonymous poster. I personally created an "anonymous" username, but you can create whatever you want.




As forum owners, we all know that a few members will choose to screw around with this feature. Therefore we created an easy means to identify who created an anonymous thread/post should the need arise. Please be ethical and tell your members you can see who posted anonymously should the need arise. You can check the log by going here:




And the log looks something like this:



Official support for this modification will take place at http://network.zoints.com in this forum.


Enjoy, click install, check out Zoints' other hacks, have a great day, and all that happy jive.

Download Now

File Type: zip zointsanony-1.1-3.7.x.zip (10.5 KB, 1228 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #172  
Old 12-17-2012, 11:10 PM
CoffeeLovesYou CoffeeLovesYou is offline
 
Join Date: Feb 2010
Posts: 176
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Bill from Cleve View Post
I have an issue. I know it's not from your awesome hack, but was wondering if you could give me an Idea to what is causing it?
When I post and quote using Anonymous, it puts tags around everything [ SIZE="a"]Another test[ /SIZE]

I'm using 3.8.3 Any Ideas?
I am having this issue .
It is because we have Default User Text Formatting installed.
When it's converting the old user into anonymous.. something is happening to the text.
It's adding [FONT="a"] and [SIZE="a"] and [COLOR="a"] to the posts, but only the SIZE is visible.
How can this be fixed?
Reply With Quote
  #173  
Old 02-05-2013, 04:09 PM
Tyran1 Tyran1 is offline
 
Join Date: Jan 2007
Location: Deutsches Reich
Posts: 297
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Update to vB 5???
Reply With Quote
  #174  
Old 04-07-2013, 02:24 AM
crn crn is offline
 
Join Date: Nov 2009
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've made the change listed on page 11 (changing the text on line 24 to "ENGINE=MYISAM", but I can't seem to get this to work on vb 4.2.

It says it installed correctly, and I can set the options to enable it for different forums, but the anonymous posting never works and there's no option to choose to post anonymously. Any ideas?

EDIT: Nevermind. I needed to add the code to the template. And the updated code, not the code included in the install.txt.

the new code is from here

Code:
<vb:if condition="$show['anonymous']"><div><input type="checkbox" id="cb_anonymous" class="bginput" name="anonymous" value="1" checked/> {vb:rawphrase 

zointsanony_anonymous_post}</div></vb:if>
Reply With Quote
  #175  
Old 06-20-2013, 08:28 PM
kylek kylek is offline
 
Join Date: Oct 2003
Location: British Columbia, Canada
Posts: 798
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by BirdOPrey5 View Post
To remove the IP address so mods can't see who it is do the following:

Edit the postbit or postbit legacy template.
Replace the number '51' with the forumid of your anonymous forum.

Find:
Code:
$post[onlinestatus]
Above it add:
Code:
<if condition="$thread['forumid'] != 51"> <!-- START ANON IF -->
Find:
Code:
$post[iplogged]
Below it add
Code:
</if> <!-- END ANON IF -->
So far got everything working with 4.2.1 but this. Anyone know what to look for in the 4.2.1 postbit to get this to work?
Reply With Quote
  #176  
Old 06-21-2013, 09:58 AM
BirdOPrey5's Avatar
BirdOPrey5 BirdOPrey5 is offline
Senior Member
 
Join Date: Jun 2008
Location: New York
Posts: 10,610
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In VB4 you should look for:

Code:
 {vb:raw post.iplogged}
And put a VB4 conditional around it.

VB4 conditionals at just like VB3 conditionals except they look like <vb:if...> </vb:if> rather than <if...> </if>.
Reply With Quote
  #177  
Old 08-04-2013, 09:14 AM
Luke Girgis Luke Girgis is offline
 
Join Date: Aug 2013
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Tyran1 View Post
Update to vB 5???
I would like this too, anyone?
Reply With Quote
  #178  
Old 01-22-2014, 12:36 AM
Phaedrus Phaedrus is offline
 
Join Date: Jul 2006
Location: Colorado
Posts: 617
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I still have this working on 4.2.2... I had to update the place where I put my checkbox as the old code I was using wasn't in the new templates.
Reply With Quote
Благодарность от:
tbworld
  #179  
Old 01-22-2014, 12:43 AM
tbworld tbworld is offline
 
Join Date: Oct 2008
Posts: 2,126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Phaedrus View Post
I still have this working on 4.2.2... I had to update the place where I put my checkbox as the old code I was using wasn't in the new templates.
Good to know, thanks for sharing.
Reply With Quote
  #180  
Old 02-13-2014, 01:07 AM
Elixar's Avatar
Elixar Elixar is offline
 
Join Date: Jan 2014
Posts: 579
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any chance for an update on this?
Reply With Quote
  #181  
Old 03-10-2014, 08:48 PM
grafixonline grafixonline is offline
 
Join Date: Oct 2012
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Phaedrus View Post
I still have this working on 4.2.2... I had to update the place where I put my checkbox as the old code I was using wasn't in the new templates.
Hey, is there anyway u could give us screenshots on what u needed to mod to make it work with version 4.2. Thanks.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:11 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07300 seconds
  • Memory Usage 2,341KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete