|
|
Re:more control over profile layout
|
|
Date: 2007/02/08 13:50
|
By: beat
|
Status: Admin
|
|
|
Karma: 256  
|
|
Admin  | Posts: 4215 |   | |
|
moneybetz wrote: Thank you - that was a good link. If a bunch (hopefully hundreds down the road) of profile choices like that were given to the user upon registration that would be great.
Hey, this here is a community effort, not a "one-man show" of a handfull of CB core team members 
You and all Joomlapolitans (members) here are welcome to contribute CB templates to the party. So far there is less than a handfull of templates which have been shared by the community of 40'000 members here, compared to the handfull which the CB core team shared with the community... 
And if their was a way to allow the user to select a personal picture (band picture) or personal background that they could put into those profile choices that would be huge. TIA
We're planing to offer more choices in that direction in one of the future CB releases, but how fast will depend on time and budgets available. Beat - Developer on Community Builder core Team - If you like CB and this forum, you will love Nick's CB 1.2 RC4 reference manual ! : Click here to Get it now  - Would like to help us move faster ? Get it, and/or help us spend more time coding by helping others in this forum, many thanks
|
|
The topic has been locked. |
|
|
|
Re:more control over profile layout
|
|
Date: 2007/07/03 01:56
|
By: ffaabbss
|
Status: User
|
|
|
Karma: 4  
|
|
Gold Joomlapolitan  | Posts: 290 |   | |
|
Hi Beat!
I hope you can give some more insight on how CB is controlling Tab positions.. I try to figure out how to have tabs on different positiont in the "edit-profile" view. could you provide me with some solution some code snippet or insight what to change and where to succeed?
edit: i think nested tabs should also be shown on edit-profile view otherwise the normal view and edit tab view is different and leads to confusion apart from edit_profile view looking messy for too many tabs present... somebody please help...
Thx Fabs
Post edited by: ffaabbss, at: 2007/07/06 15:38
|
|
The topic has been locked. |
|
|
|
Re:more control over profile layout
|
|
Date: 2007/07/18 23:10
|
By: ffaabbss
|
Status: User
|
|
|
Karma: 4  
|
|
Gold Joomlapolitan  | Posts: 290 |   | |
|
1 I really need my "edit-Profile" view rearranged.. I have a few tabs nested in normal Profile view but in "edit-profile" view it is a mess of countless tabs in two rows... please I really need some help here.
2 moreover I need to get rid of Profile book from being nested when selecting nested tabs in CB configuration. I want Profile Book to be on the top row just as CB_Gallery... heelp really appreciated..
Thanks Fabs
|
|
The topic has been locked. |
|
|
|
|
Re:more control over profile layout
|
|
Date: 2007/09/21 04:31
|
By: royce
|
Status:
|
|
|
Karma: 0  
|
|
Senior Joomlapolitan  | Posts: 53 |   | |
|
Yes, this is and old thread, but...
I still don't see a resolution to this. Is there no way to easily specify a unique CSS class/id for each tab?
Currently, some of the tabs have a unique class/id but not all. This makes individual styling almost impossible.
Could you post the change that would be necessary to uncomment the line in comprofiler.class.php to use the title of the tab as the class/id name? This could be a "risky" hack, but worth it for folks like me desperate to get individual styling. Of course the title would have to be unique and not duplicated, but I can make sure of that manually.
I guess I can try uncommenting it myself, but the escaped double quotes are quite intimidating
|
|
The topic has been locked. |
|
|
|
Re:more control over profile layout
|
|
Date: 2007/09/21 08:25
|
By: mikko
|
Status: User
|
|
|
Karma: 106  
|
|
Platinum Joomlapolitan  | Posts: 2230 |   | |
|
ffaabbss wrote: 1 I really need my "edit-Profile" view rearranged.. I have a few tabs nested in normal Profile view but in "edit-profile" view it is a mess of countless tabs in two rows... please I really need some help here.
2 moreover I need to get rid of Profile book from being nested when selecting nested tabs in CB configuration. I want Profile Book to be on the top row just as CB_Gallery... heelp really appreciated..
This line of source code (comprofiler.class.php) controls if a tab is nested or not
| Code: |
if ( $ueConfig['nesttabs'] && $oTab->fields && ( ( $oTab->pluginclass == null ) || ( $oTab->sys == 2 ) ) )
|
If you add the following code to the end of getEditTab function in the profile book, it should not appear nested.
| Code: |
$tab->fields=false;
|
Hope this helps.
-Mikko
|
|
The topic has been locked. |
|
|