PDA

View Full Version : Exclude RSS Feeds from Postbit Legacy


Thamelas
12-20-2009, 02:47 PM
I want to exclude an RSS Feed's stats from postbit legacy. For example "join Date" and "Posts" and all other details that appear in Postbit Legacy. Can anyone tell me how to go about that? Here is a sample of my current code:

<div><if condition="$post['field11']"><img src="http://www.wowguideonline.com/forum/images/misc/$post[field11].gif" alt="$post[field11]" /></if>&nbsp;<if condition="$post['field17']"><img src="http://www.wowguideonline.com/forum/images/misc/$post[field17]$post[field9].gif" alt="$post[field17] $post[field9]" /></if>&nbsp;<if condition="$post['field8']"><img src="http://www.wowguideonline.com/forum/images/misc/$post[field8].gif" alt="$post[field8]" /></if>&nbsp;<if condition="$post['field10']"><img src="http://www.wowguideonline.com/forum/images/misc/numbers/$post[field10].gif" alt="Level $post[field10]" /></if></div>
</if>
<br>
<table border="1" cellpadding="0" style="border-collapse: collapse;" cellspacing="0" bordercolor="#000000" width="168" bgcolor="#36383b">
<tr>
<td style="font-size:12px; padding: 3px; font-family: Tahoma, Arial, Helvetica, sans-serif;" >

<div class="smallfont">




<div class="smallfont">
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
<div>$vbphrase[posts]: $post[posts]</div>

Lynne
12-20-2009, 04:26 PM
If the RSS Feed is always posted by the same user, you can just write a plugin to see those fields to '' (nothing) for that particular user and then they won't be posted. (I think... I've never done it but that's how I would try to do it.)

Thamelas
12-20-2009, 07:02 PM
That's a bit beyond my capability I think.

Is it possible to have it exclude the RSS usergroup in the postbit template?

Lynne
12-20-2009, 07:13 PM
I don't know what you mean by "exclude the RSS usergroup".

hook location - postbit_display_complete:
if ($post['userid'] == xx) {
$post['field2'] = '';
$post['joindate'] = '';

}
Set xx to the userid and add in all fields you don't want displayed.

Thamelas
12-21-2009, 06:35 PM
What I am looking for is this: If an user belongs to the RSS Feed Usergroup (in my case Usergroup #28), none of the information in their user profile fields will display in the postbit legacy template.

Thanks! But I don't see "postbit_display_complete" in my list of Postbit Templates. Can it just be posted at the beginning of the Postbit Legacy Template?

Lynne
12-21-2009, 09:35 PM
The stuff I wrote was for a plugin - Plugin System (http://www.vbulletin.com/docs/html/plugin_system)

If it's for a usergroup, then just change the condition to
if (is_member_of($post , 28)) {