Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-26-2009, 04:21 PM
Cledus James Cledus James is offline
 
Join Date: Oct 2008
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Editing Profile "Modules"

Quick question from a half about vB newb.

Does anyone know how I can "call" or "post" a custom profile field in one of the profile module like Mini Stats. I tried just adding
Code:
$post[field24]
to the memberinfo_block_ministats template but that doesn't work. Wondering how I can get a custom field to show up in there. Help?

Problem is, I can create that custom field's own profile module by setting it too public, etc., but then it also shows up in the About Me tab and I don't want to display the info twice. Would like to have this custom field in a module somewhere without having it printed in the About Me. Putting it in the Mini Stats module was the best thing I could come up with since I'm a newb and have limitations as far as editing goes.

Thank you for any input.
Reply With Quote
  #2  
Old 01-27-2009, 04:45 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You cannot use $post in the profile template. Use $prepared instead.
Reply With Quote
  #3  
Old 01-27-2009, 04:10 PM
Cledus James Cledus James is offline
 
Join Date: Oct 2008
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dismounted View Post
You cannot use $post in the profile template. Use $prepared instead.
First let me say, thank you for the response.

How would I call a custom user field though. I tried adding:

Code:
$prepared[field24]
with no luck.
Reply With Quote
  #4  
Old 01-28-2009, 05:57 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Could you post the template that you have now?
Reply With Quote
  #5  
Old 01-30-2009, 09:40 PM
Cledus James Cledus James is offline
 
Join Date: Oct 2008
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, here's my memberinfo_block_ministats template where I'm trying to calling the custom field data too:

Code:
<div class="alt1 block_row">
	<table cellpadding="0" cellspacing="0" border="0">
	<tr valign="top">
		<td width="100%">
			<dl class="smallfont list_no_decoration profilefield_list">
				<if condition="$prepared['birthday']">
					<dt class="shade">$vbphrase[birth_date]</dt>
					<dd>$prepared[birthday] <if condition="$prepared['age']">($prepared[age])</if></dd>
					<else /><if condition="$prepared['age']">
						<dt class="shade">$vbphrase[age]</dt>
						<dd>$prepared[age]</dd>
					</if></if>
				<dt class="shade">$vbphrase[join_date]</dt>
				<dd>$prepared[joindate]</dd>
				<dt class="shade">$vbphrase[total_posts]</dt>
				<dd>$prepared[posts]</dd>
				$template_hook[profile_ministats_list]
			</dl>
		</td>



		<if condition="$prepared['avatarurl']">
		<td><img src="$prepared[avatarurl]" alt="<phrase 1="$prepared[username]">$vbphrase[xs_avatar]</phrase>" $prepared[avatarsize] class="alt2" id="user_avatar" /></td>
		</if>
	</tr>
	</table>
</div>



<div class="alt2 smallfont block_row block_footer"><a href="#stats" onclick="return vB_TabCtrls['profile_tabs'].switch_tab('stats')">$vbphrase[show_all_statistics]</a></div>
Tried adding:
Code:
$prepared[field24]
to different places within the template with no luck.


Thanks for your help.
Reply With Quote
  #6  
Old 01-31-2009, 02:46 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Where did you add it?
Reply With Quote
  #7  
Old 02-02-2009, 01:51 PM
Cledus James Cledus James is offline
 
Join Date: Oct 2008
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry. Thanks again for all your help.

Code:
<div class="alt1 block_row">
	<table cellpadding="0" cellspacing="0" border="0">
	<tr valign="top">
		<td width="100%">
			<dl class="smallfont list_no_decoration profilefield_list">
				<if condition="$prepared['birthday']">
					<dt class="shade">$vbphrase[birth_date]</dt>
					<dd>$prepared[birthday] <if condition="$prepared['age']">($prepared[age])</if></dd>
					<else /><if condition="$prepared['age']">
						<dt class="shade">$vbphrase[age]</dt>
						<dd>$prepared[age]</dd>
					</if></if>
				<dt class="shade">$vbphrase[join_date]</dt>
				<dd>$prepared[joindate]</dd>
				<dt class="shade">$vbphrase[total_posts]</dt>
				<dd>$prepared[posts]</dd>
                                <dd>$prepared[field24]</dd>




				$template_hook[profile_ministats_list]
			</dl>
		</td>



		<if condition="$prepared['avatarurl']">
		<td><img src="$prepared[avatarurl]" alt="<phrase 1="$prepared[username]">$vbphrase[xs_avatar]</phrase>" $prepared[avatarsize] class="alt2" id="user_avatar" /></td>
		</if>
	</tr>
	</table>
</div>





<div class="alt2 smallfont block_row block_footer"><a href="#stats" onclick="return vB_TabCtrls['profile_tabs'].switch_tab('stats')">$vbphrase[show_all_statistics]</a></div>
Reply With Quote
  #8  
Old 02-03-2009, 05:26 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are you sure you added it to the correct style?
Reply With Quote
  #9  
Old 02-03-2009, 02:05 PM
Cledus James Cledus James is offline
 
Join Date: Oct 2008
Posts: 79
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ya, I mean I'm adding it to my default style. I even tried adding it to my "Test" style which is the vB default one and still no luck...
Reply With Quote
  #10  
Old 02-04-2009, 07:13 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try:
Code:
$userinfo[field24]
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 10:33 PM.


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.03963 seconds
  • Memory Usage 2,253KB
  • Queries Executed 11 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (6)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete