PDA

View Full Version : vbulletin display if my profile only


stoute
08-31-2013, 05:43 PM
I am adding a new section to my users profile.

I want the user to be able to see/edit information but only if the user is logged in and viewing their own profile.

I created a new tab in memberinfo_block and the tab shows up...

http://immortalarg.com/Capture1.PNG

The problem is hiding the highlighted information below.

http://immortalarg.com/Capture2.PNG

Here is what I've tried to use to hide the info.

<vb:if condition="$userinfo['userid'] == $bbuserinfo['userid']">
and
<vb:if condition="$prepared['myprofile']">

neither of which will work. Maybe I'm doing it wrong (I couldn't find any documentation here, vb.com or gogle for the $prepared portion.) any help would be amazing.

mokujin
08-31-2013, 07:04 PM
<vb:if condition="$prepared['userid'] == $userinfo['userid']">

or

<vb:if condition="$prepared['userid'] == $bbuserinfo['userid']">

:D

stoute
08-31-2013, 07:35 PM
Thanks for the extra options... here are my results.

With:
<vb:if condition="$prepared['userid'] == $userinfo['userid']">
It displays on every member's page even if it's not the member's profile you're looking at.
Member A looks at Member B's profile and can see the info I'm trying to hide.

With:
<vb:if condition="$prepared['userid'] == $bbuserinfo['userid']">
It doesn't show on any member profile.

With:
<vb:if condition="$prepared['userid'] != $bbuserinfo['userid']">
It shows on every profile page.

With:
<vb:if condition="$prepared['userid'] != $userinfo['userid']">
It doesn't show up on any profile page.

I do know that the "==" is telling me that it must match for it to show and that "!=" is telling me that if the two variables do not match then it will show up.

--------------- Added 1377983647 at 1377983647 ---------------

To help this is my template code.

<vb:if condition="$prepared['userid'] != $userinfo['userid']">
<br/><div class="blocksubhead subsectionhead userprof_headers userprof_headers_border">
<h4 class="subsectionhead-understate">Power Points Bank</h4></div>
<h3><dl class="userinfo_extra"><dt>Points you have to spend:</dt> <dd>{vb:raw bbuserinfo.field5}</dd></dl></h3>
</vb:if>

This is my plugin code:
if (isset($vbulletin->GPC['tab']))
{
$selected_tab = $vbulletin->GPC['tab'];
}
$blockinfo['title'] = "Character Page";
$blockid = "characterpage";
$taburl = $memberurl = fetch_seo_url('member', $prepared) . "&amp;tab=characterpage#characterpage";

$templater = vB_Template::create('memberinfo_tab');
$templater->register('selected_tab', $selected_tab);
$templater->register('relpath', $relpath);
$templater->register('blockinfo', $blockinfo);
$templater->register('blockid', $blockid);
$templater->register('taburl', $taburl);
$template_hook['profile_tabs_last'] .= $templater->render();

$templater = vB_Template::create('memberinfo_block_characterpag e');
$templater->register('selected_tab', $selected_tab);
$template_hook['profile_tabs'] .= $templater->render();