-
Author
-
May 20, 2014 at 18:50 #18399alexlarsParticipant
Hi!
I have some questions regarding the Quick Profile Navigation:
1. Is it possible to show the newest registered members at the beginning of the navigation. That would make it much easier for users because they wouldn’t have to go to the end of all profiles just to see a new member.
2. How do you display all the information of a member in the quick profile navigation? Right now my website only shows a “match” button and then the option to send a message and become friends with and not the information that the members has filled in.
3. Also, the match number of my site always is at 50. No more no less. I have different members but the number wont change.
Thanks!
May 23, 2014 at 21:20 #18672AbeKeymasterhi, I think I already responded to your exact same questions somewhere. Let me know if that is not the case
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.June 3, 2014 at 18:26 #19300alexlarsParticipantHello!
I found some similar questions and answers but i cant get it to work.
https://www.flickr.com/photos/125095542@N07/14151616877/
As you can see from the photo above the profile fields are totally empty. I have tried to add some codes to the sweetdate child theme but no result. Please help!
June 9, 2014 at 14:32 #19531AbeKeymasterFor the profile groups to show to the right of the profile image as tabs please see this topic: https://archived.seventhqueen.com/forums/topic/how-to-add-more-tabs-next-to-the-profile-image
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.June 10, 2014 at 00:58 #19577alexlarsParticipantI have tried to add the code but it doesn’t change anything. Please help me instead of just keep showing old posts that doesn’t help me at all. My site is: http://www.listchoosr.com/
Once again. I’VE READ ALL THE OTHER POSTS regarding this problem but non of them helped me.
June 17, 2014 at 00:12 #19918AbeKeymasterHi @alexlars
That is the solution on resolving that, not just a link to a old topic. What code have you added and what profile group names you want to show?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.July 1, 2014 at 23:20 #21472alexlarsParticipant
Here is my code. The two profile fields I want to add is “looking for” and one called “fysiskt”. I have added the two profile fields under the menu Users > Profile fields > Add new field but still nothing.
This is what i want my site to look like with the profile fields and everything!July 1, 2014 at 23:21 #21473alexlarsParticipantThe first picture: https://www.flickr.com/photos/125095542@N07/14552240572/
The second picture: https://www.flickr.com/photos/125095542@N07/14551565554/
July 3, 2014 at 17:04 #21663AbeKeymasterHi, Your fields are case sensitive and must be exactly how you added them in Users – Profile fields and your code must match that name exactly in the group attribute
COPY CODEadd_action('after_setup_theme','kleo_my_custom_tabs'); function kleo_my_custom_tabs() { global $bp_tabs; $bp_tabs = array(); $bp_tabs[] = array( 'type' => 'cite', 'name' => __('Looking for', 'kleo_framework'), 'group' => 'Looking for', 'class' => 'citetab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => "fysiskt", 'group' => 'fysiskt', 'class' => 'regulartab' );
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.July 25, 2014 at 15:35 #23601alexlarsParticipantHi!
I still cant get it to work.
My groups i want to show are: Allmänt (Primary), Om, Socialt.July 25, 2014 at 15:37 #23602alexlarsParticipantPlease give me the exact code that i should copy and put in my sweetdate childtheme functions
July 28, 2014 at 19:14 #23842AbeKeymasterI think the instructions are pretty straight-forward, so if the group names are exactly as you provided here is the code:
COPY CODE//my changes to profile tabs add_action('after_setup_theme','kleo_my_custom_tabs'); function kleo_my_custom_tabs() { global $bp_tabs; $bp_tabs = array(); $bp_tabs[] = array( 'type' => 'regular', 'name' => 'Allmänt (Primary)', 'group' => 'Allmänt (Primary)', 'class' => 'regulartab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => 'Om', 'group' => 'Om', 'class' => 'regulartab' ); $bp_tabs[] = array( 'type' => 'regular', 'name' => 'Socialt', 'group' => 'Socialt', 'class' => 'regulartab' ); /* rtMedia tab - only if plugin installed */ if (class_exists('RTMedia')) { $bp_tabs['rtmedia'] = array( 'type' => 'rt_media', 'name' => __('My work', 'kleo_framework'), 'class' => 'mySlider' ); } /* Bp-Album tab - only if plugin installed */ elseif (function_exists('bpa_init')) { $bp_tabs['bp-album'] = array( 'type' => 'bp_album', 'name' => __('My photos', 'kleo_framework'), 'class' => 'mySlider' ); } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.July 29, 2014 at 22:36 #24004AbeKeymasterGreat. Closing topic
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer. -
AuthorPosts
The topic ‘Problems with the quick profile navigation’ is closed to new replies.