vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Join date and Last post made not showing up in profile (https://vborg.vbsupport.ru/showthread.php?t=188451)

gag girl 08-18-2008 12:07 PM

Join date and Last post made not showing up in profile
 
I upgraded to the newest VB version over this weekend and I see that now the "Last post made" and the "join date" no longer show up in the members profile. I tried to search for this problem and couldn't really find any posts of anyone else having this problem.

Can someone tell me how to fix this?

Marco van Herwaarden 08-18-2008 12:13 PM

To troubleshoot this, please create a new Style with no Parent set. Now browse the forum using this new style, do you still have the same problems? If you are troubleshooting login or guest issues, you will need to set this style as board default in the vBulletin Options.

gag girl 08-19-2008 12:24 PM

Yes, the problem still remains. No join date when looking at a user profile nor is the last thread they posted to listed anymore.

blind-eddie 08-19-2008 01:58 PM

Look in your memberinfo_block_statistics template, that is where that info is located.

Click the view history text. Templates may have changed in you upgrade.
The info you are searching for may be there & need re added to the new template.

Below is 3.7.2 default memberinfo_block_statistics template & yours should look the same, if you have upgraded.

Code:

<div class="alt1 block_row">
        $template_hook[profile_stats_first]

        <fieldset class="statistics_group">
                <legend>$vbphrase[total_posts]</legend>
                <ul class="list_no_decoration">
                        <li><span class="shade">$vbphrase[total_posts]:</span> $prepared[posts]</li>
                        <li><span class="shade">$vbphrase[posts_per_day]:</span> $prepared[postsperday]</li>
                        <if condition="$prepared['lastposturl']">
                                <li>
                                        <span class="shade">$vbphrase[last_post]:</span> <a href="$prepared[lastposturl]">$prepared[lastposttitle]</a> $prepared[lastpostdate] <span class="time">$prepared[lastposttime]</span>
                                </li>
                        </if>
                        <li><a href="search.php?$session[sessionurl]do=finduser&amp;u=$userinfo[userid]" rel="nofollow"><phrase 1="$prepared[username]">$vbphrase[find_all_posts_by_x]</phrase></a></li>
                        <li><a href="search.php?$session[sessionurl]do=finduser&amp;u=$userinfo[userid]&amp;starteronly=1" rel="nofollow"><phrase 1="$prepared[username]">$vbphrase[find_all_threads_started_by_x]</phrase></a></li>
                </ul>
        </fieldset>

        <if condition="$show['album_block']">
        <fieldset class="statistics_group">
                <legend>$vbphrase[albums]</legend>
                <ul class="list_no_decoration">
                        <li><span class="shade">$vbphrase[total_albums]:</span> $block_data[albumcount]</li>
                        <li><span class="shade">$vbphrase[total_pictures]:</span> $block_data[picturecount]</li>
                        <li><a href="album.php?$session[sessionurl]u=$prepared[userid]"><phrase 1="$prepared[username]">$vbphrase[albums_created_by_x]</phrase></a></li>
                </ul>
        </fieldset>
        </if>
        <if condition="$show['vm_block']">
        <fieldset class="statistics_group">
                <legend>$vbphrase[visitor_messages]</legend>
                <ul class="list_no_decoration">
                        <li><span class="shade">$vbphrase[total_messages]:</span> $prepared[vm_total]</li>
                        <li><span class="shade">$vbphrase[most_recent_message]:</span> $prepared[lastvm_date] <if condition="!$show['detailedtime']">$prepared[lastvm_time] </if></li>
                        <li><a href="#visitor_messaging" onclick="return vB_TabCtrls['profile_tabs'].switch_tab('visitor_messaging');"><phrase 1="$prepared[username]">$vbphrase[visitor_messages_for_x]</phrase></a></li>
                        <if condition="$show['post_visitor_message']"><li><a href="#visitor_messaging" onclick="return goto_post_pm();"><phrase 1="$prepared[username]">$vbphrase[post_a_visitor_message_for_x]</phrase></a></li></if>
                </ul>
        </fieldset>
        </if>

        <if condition="$show['usernote_block']">
        <fieldset class="statistics_group">
                <legend>$vbphrase[user_notes]</legend>
                <ul class="list_no_decoration">
                        <if condition="$show['usernote_data']">
                        <li><span class="shade">$vbphrase[total_user_notes]:</span> $prepared[usernotecount]</li>
                        <li><span class="shade">$vbphrase[most_recent_user_note]:</span> $block_data[note_lastdate]<if condition="!$show['detailedtime']"> <span class="time">$block_data[note_lasttime]</span></if></li>
                        <li><a href="usernote.php?$session[sessionurl]u=$userinfo[userid]"><phrase 1="$prepared[username]">$vbphrase[user_notes_for_x]</phrase></a></li>
                        </if>
                        <if condition="$show['usernote_post']"><li><a href="usernote.php?$session[sessionurl]do=newnote&amp;u=$userinfo[userid]">$vbphrase[post_a_user_note]</a></li></if>
                </ul>
        </fieldset>
        </if>

        $template_hook[profile_stats_pregeneral]

        <fieldset class="statistics_group">
                <legend>$vbphrase[general_information]</legend>
                <ul class="list_no_decoration">
                        <if condition="$prepared['lastactivitydate']">
                                <li><span class="shade">$vbphrase[last_activity]:</span> $prepared[lastactivitydate] <if condition="!$show['detailedtime']"><span class="time">$prepared[lastactivitytime]</span></if></li>
                        </if>
                        <if condition="$prepared['action']">
                                <li><span class="shade">$vbphrase[current_activity]:</span> $prepared[action] $prepared[where]</li>
                        </if>
                        <li><span class="shade">$vbphrase[join_date]:</span> $prepared[joindate]</li>
                        <if condition="$vboptions['usereferrer']"><li><span class="shade">$vbphrase[referrals]:</span> $prepared[referrals]</li></if>
                        <if condition="$prepared['homepage']">
                                <li><span class="shade">$vbphrase[home_page]:</span> <a href="$prepared[homepage]" target="_blank">$prepared[homepage]</a></li>
                        </if>
                </ul>
        </fieldset>

        $template_hook[profile_stats_last]
</div>


Marco van Herwaarden 08-19-2008 02:36 PM

Please provide a link to such a member profile and a test login if needed.

gag girl 08-19-2008 06:43 PM

Quote:

Originally Posted by blind-eddie (Post 1602315)
Look in your memberinfo_block_statistics template, that is where that info is located.

Click the view history text. Templates may have changed in you upgrade.
The info you are searching for may be there & need re added to the new template.

Below is 3.7.2 default memberinfo_block_statistics template & yours should look the same, if you have upgraded.


I've never done any changes to this template. It says:

Quote:

memberinfo_block_statistics:

This template has not been customized in this style or any of its parent styles.

Double-click the template name or click the 'Customize' button to add a customized version of this template to the current style and its child sets.

Last edited February 19 2008 at 13:17 by Jelsoft
If no changes were made what would that mean for things disappearing on the board? I tried to find the "view history text" but couldn't.

blind-eddie 08-19-2008 07:33 PM

Then you may have added a mod that may be interfering with it.

gag girl 08-19-2008 08:15 PM

I did turn off all plugins/products and went to the basic board. But, it still didn't show up. How else would I figure out if it's a mod interferring with it?

blind-eddie 08-19-2008 08:52 PM

Your site says its updated, but you are missing a bunch of items with upgrade or you have edited it tremendously.

gag girl 08-19-2008 10:51 PM

If I missed anything, it's because it wasn't included with the download from vbulletin.com. What woudl I have edited? I have added hacks, but that's it. Would that have done it?


All times are GMT. The time now is 11:21 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01025 seconds
  • Memory Usage 1,761KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete