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

Reply
 
Thread Tools
News & Announcements Details »»
News & Announcements
Version: 1.00, by ry215 ry215 is offline
Developer Last Online: May 2022 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 4.0.2 Rating:
Released: 03-27-2010 Last Update: 03-31-2010 Installs: 221
Uses Plugins Auto-Templates
 
No support by the author.

Description:
Show News & Announcements on FORUMHOME or All Pages

Features:
- On/Off Hack?
- Allowed Usergroups
- Where is News? only index or all pages
.... and more

How to install?

ACP
>> Plugins & Products >> Add/Import Product and upload the XML you downloaded.

And you are done


Polish Version by Marek58: Download here

Download Now

File Type: xml News & Announcements.xml (5.4 KB, 1382 views)

Screenshots

File Type: png new_acp.PNG (45.5 KB, 0 views)
File Type: jpg ver4.jpg (42.3 KB, 0 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
gundamz

Comments
  #52  
Old 02-07-2011, 01:50 AM
MalluParadise MalluParadise is offline
 
Join Date: Oct 2008
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is it any way i can make ma mod to edit news for me with out giving them admincp power ?
Reply With Quote
  #53  
Old 03-31-2011, 02:20 PM
xmutan xmutan is offline
 
Join Date: Apr 2008
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hi, i'm using vb 4.1.2, but can't see options for Where is News? only index or all pages

only showing on the front page only.

how to enable so that all pages can see the news and annoncement?

thanks
Reply With Quote
  #54  
Old 04-01-2011, 09:37 AM
NTT NTT is offline
 
Join Date: May 2007
Location: Viet Nam
Posts: 122
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by xmutan View Post
hi, i'm using vb 4.1.2, but can't see options for Where is News? only index or all pages

only showing on the front page only.

how to enable so that all pages can see the news and annoncement?

thanks
MOD I can help this problem, and it is equipped with a lot of features well.
P.S: Use fine with 4.1.2. It here https://vborg.vbsupport.ru/showthread.php?t=258280
Reply With Quote
  #55  
Old 07-31-2011, 02:27 PM
Mikevet1984's Avatar
Mikevet1984 Mikevet1984 is offline
 
Join Date: Nov 2010
Posts: 203
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can the mod please be updated so as the bold letters to be visible inside the mod's window cause the <strong>...</srong> html script does not work at all.

Could the coder please fix this problem?
Reply With Quote
  #56  
Old 09-23-2011, 11:34 PM
victorvu victorvu is offline
 
Join Date: Mar 2011
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It is a great Mod and like it. However, I had issue with when turning it on, as shown below:

Attachment 133196

I got it twice! Please help!

Thanks and greatly appreciated.

Victor:up:
Reply With Quote
  #57  
Old 11-03-2011, 06:25 PM
mountainlife mountainlife is offline
 
Join Date: Feb 2006
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

its not displaying the where is news option in settings
Reply With Quote
  #58  
Old 11-04-2011, 01:13 AM
mountainlife mountainlife is offline
 
Join Date: Feb 2006
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

its not displaying the where is news option in settings
Reply With Quote
  #59  
Old 06-11-2012, 08:21 AM
Slipperyduck Slipperyduck is offline
 
Join Date: Apr 2012
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

Is there any way to have this mod use BBCode rather than HTML?
Reply With Quote
  #60  
Old 06-12-2012, 11:34 AM
Slipperyduck Slipperyduck is offline
 
Join Date: Apr 2012
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

THE ORIGINAL CODE FOR TEXT IN NEWS/ANNOUCE
Code:
if($vbulletin->options['enable_lns'] AND in_array($vbulletin->userinfo['usergroupid'], explode(',', $vbulletin->options['lns_ug'])))
			{
				$lns=array();

				$lns['title']=$vbulletin->options['lns_title'];
				$lns['text']=$vbulletin->options['lns_text'];

$templater=vB_Template::create('forumhome_lastest_news');
				$templater->register('lns',$lns);

									
			if($vbulletin->options['enable_lns_place'])
				{
				
$template_hook[forumhome_above_forums].=$templater->render();


				}
			else
				{
				$template_hook[news].=$templater->render();

				}


			}
What I'm trying to do, is then take the
lns_text --> then parse it through the class_bbcode.php

this is so that my old Admin/Moderators can simply use BBCode as they do not quite know how to do HTML.... I'm the only one that knows how and it's a burden.

I'm by no means a web specialist, but I'm not completely stupid.
I've tried several things and just can't seem to get it to parse.

here's some dummy code, that I've tryed and failed with (bottom snippet)
*Note that I've ADDED "-->" here to illustrate my additions - the arrows are not actually in my code.
Code:
$templater=vB_Template::create('forumhome_lastest_news');
				$templater->register('lns',$lns);

-->require_once('includes/class_bbcode.php');
-->$parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
-->$lns_text = $parser->do_parse($lns_text); 
					
			if($vbulletin->options['enable_lns_place'])
				{
				
$template_hook[forumhome_above_forums].=$templater->render();


				}
			else
				{
				$template_hook[news].=$templater->render();
It's probably obvious to coders out there, but since I don't quite have a clear understanding, I'm clearly doing it wrong. Can anyone help?

Many thanks
Reply With Quote
  #61  
Old 06-18-2012, 11:07 AM
Slipperyduck Slipperyduck is offline
 
Join Date: Apr 2012
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, no reponse yet, but how about a WYSIWYG Editor for the News & Annoucements? That would really take the cake! possibly pull in the editor.php ?

I really like this MOD and would like to see it go a little further....
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 01:07 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.08472 seconds
  • Memory Usage 2,340KB
  • Queries Executed 27 (?)
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
  • (2)bbcode_code
  • (1)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
  • (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
  • (3)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
  • 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
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete