[REQ] Quick News

Amapola

New Member
Hi.

I want to download the "Quick News" hack ..

I've downloaded the pack "3.6x Mods" And the hack is there.. But, The hack haven't any instructions. Just the product. I import the product and I can't see the Quick News on Forum Home.



Sorry for my English.. But, I'm from Argentine.
 

Daz

New Member
Here's the instructions & a reupload of the xml file

Installation
Import the product-quicknews.xml
Go to vBulletion Options > Quick News (Read option descriptions before configuring)

Template Edit:
Open Forum Home Templates > FORUMHOME

Find:

PHP:
<!-- main -->

After Add:

PHP:
<if condition="$vboptions['qnews_enabled'] == 1">
		<if condition="$vboptions['qnews_forumhome'] == 1">
			<if condition="$vboptions['qnews_guests'] == 1">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" 

align="center">
<tr>
<td align="center" class="tcat">Quick News</td>
</tr>
<tr>
<td class="alt1">$vboptions[qnews_news]</td>
</tr>
</table>
<br>
	<else />
		<if condition="$show['guest']">
	<!-- No message for guests -->
		</if>
		</if>
		
				<if condition="$vboptions['qnews_admin'] == 1">
					<if condition="$bbuserinfo[usergroupid] == 6">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" 

align="center">
<tr>
<td align="center" class="tcat">Quick News</td>
</tr>
<tr>
<td class="alt1">$vboptions[qnews_news]</td>
</tr>
</table>
<br>
	</if>
	<else />
							<if condition="$vboptions['qnews_guests'] == 1">
								<if condition="$bbuserinfo[usergroupid] == 1">
<!-- No message for guests, if admin view only is set to no, and guest view is also set to no -->
	</if>
	
	<else />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" 

align="center">
<tr>
<td align="center" class="tcat">Quick News</td>
</tr>
<tr>
<td class="alt1">$vboptions[qnews_news]</td>
</tr>
</table>
<br>
	</if>
	</if>
		</if>
	</if>
	
		</if>
	</if>

Now open Navigation / Breadcrumb Templates > navbar

Add at the very bottom:

PHP:
<if condition="$vboptions['qnews_enabled'] == 1">
		<if condition="$vboptions['qnews_everypage'] == 1">
			<if condition="$vboptions['qnews_guests'] == 1">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" 

align="center">
<tr>
<td align="center" class="tcat">Quick News</td>
</tr>
<tr>
<td class="alt1">$vboptions[qnews_news]</td>
</tr>
</table>
<br>
	<else />
		<if condition="$show['guest']">
	<!-- No message for guests -->
		</if>
		</if>
		
				<if condition="$vboptions['qnews_admin'] == 1">
					<if condition="$bbuserinfo[usergroupid] == 6">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" 

align="center">
<tr>
<td align="center" class="tcat">Quick News</td>
</tr>
<tr>
<td class="alt1">$vboptions[qnews_news]</td>
</tr>
</table>
<br>
	</if>
	<else />
							<if condition="$vboptions['qnews_guests'] == 1">
								<if condition="$bbuserinfo[usergroupid] == 1">
<!-- No message for guests, if admin view only is set to no, and guest view is also set to no -->
	</if>
	
	<else />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" 

align="center">
<tr>
<td align="center" class="tcat">Quick News</td>
</tr>
<tr>
<td class="alt1">$vboptions[qnews_news]</td>
</tr>
</table>
<br>
	</if>
	</if>
		</if>
	</if>
	
		</if>
	</if>
 
Top