Hi,
I add some new fields but they will not show in profile?
In edit profile they are still available...
I checked the box "view Profild field "and "edit profile field"!
any Idea?
Hi,
I add some new fields but they will not show in profile?
In edit profile they are still available...
I checked the box "view Profild field "and "edit profile field"!
any Idea?
1) Newly added field will NOT SHOW IN PROFILE VIEW for the existing profiles, until those profiles gets updated. This is due to profile caching feature of dolphin.
2) Profiles fields that are empty or no values in it will not show in profile view.
Last edited by mark; 09-21-2007 at 10:34 AM.
I created a new field before I even sign up as a member.....put in the information in the new field went to view profile and nothing as usual. May those who know how to actually make this work do a step by step instruction so that we can get pass this, since it seems to be a problem so many is having.
Thanks.
1. add a new field
the setting are:
- memo
- add new field after description
- field name: Who I want to meet or just meet
- visible to visitor, member, admin
- editable member, admin
- show on page: ALL
- memo rolls: 36 just like description an 10 colums
[/LIST]
- Then add
Then form builder I make it visible on join page 1 may be in between dating and tags
goto member input the info safe goto my profile view and nothing need even a box or heading for that new field ....this should be as simple as that make input view easy but no cigar. WHAT AM I MISSING OR OVERLOOKING...THANKS
AND IF YOU GET A SEC IS THERE AWAY TO MAKE A MORE ADVANCED SEARCH WITH MORE OPTIONS....THANKS AGAIN...
Last edited by chrislace; 09-21-2007 at 05:29 PM. Reason: CLEAN UP MISTAKE
see fixed here :
Profile View -- fields with values NOT showing -- work around
If the field is "memo" see here : Any chance of getting any answers here?
I have followed this link, but there is not solution given, just more questions on how to fix it.
I used to have the same problem back along time ago with the older dolphins, but now I need to add some fields in the new dolphin, especially a memo field.
In fact all the other fields I have added show up just fine, just not memo fields.
------------------------------------
Have a MMORPG character you are proud
of - Toon in your Character at
http://www.charnation.com
IN file : /base/scripts/BxBaseProfileView.php
IN function : showBlockDescriptions( $sCaption )
where "CustomField" is the field name of your memo field.PHP Code:function showBlockDescriptions( $sCaption )
{
if( strlen( $this -> _aProfile['DescriptionMe'] ) )
{
$text = '<div class="discr">' .
'<div class="rss_item_header">' . process_text_output( $this -> _aProfile['Headline'] ) . '</div>' .
process_smiles( process_text_output( $this -> _aProfile['DescriptionMe'] ) ) .
'</div>';
echo DesignBoxContent( _t( $sCaption ), $text, 1 );
}
if( strlen( $this -> _aProfile['DescriptionYou'] ) )
{
$text = '<div class="discr">' . process_smiles( process_text_output( $this -> _aProfile['DescriptionYou'] ) ) . '</div>';
echo DesignBoxContent( _t( '_Ideal match description' ), $text, 1 );
}
// START ADDED CUSTOM FIELD MEMO TO SHOW IN PROFILE VIEW
if( strlen( $this -> _aProfile['CustomField'] ) )
{
$text = '<div class="discr">' . process_smiles( process_text_output( $this -> _aProfile['CustomField'] ) ) . '</div>';
echo DesignBoxContent( _t( "_CustomField" ), $text, 1 );
}
// END ADDED CUSTOM FIELD MEMO TO SHOW IN PROFILE VIEW
}
...
Hey, this worked great for my site, but i have a small issue. All the memo fields i've added with this method are set as mandatory, and even once i've changed this in profile fields manager, they remain set to mandatory. I'm a novice at best, so is there an easy fix to this i'm missing?
EDIT: Forgot to mention that i can leave both fields blank in edit profile and save changes without a problem.
Last edited by Product; 02-23-2008 at 12:07 PM. Reason: forgot something
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks