This topic has 7 replies, 2 voices, and was last updated 10 years by fullworksmedia.
-
Author
-
November 15, 2014 at 15:56 #35592fullworksmediaParticipant
hi there,
i’ve just purchased your template yesterday and i love it!1. how can i reorder the menu?
i have it like on the image attached:
NEWS | PROFILE | NOTIFICATIONS | MESSAGES | FRIENDS | GROUP | SEND INVITATION | MEDIA | SETTINGSand i’d like it to be like that:
NEWS | PROFILE | MEDIA | etc.
basically i’d like media to be on the 3rd place.
i’ve created bp-custom.php file in plugins and added code i’ve found somewhere, but it didn’t work.
2. on registration page, it displays: Name <span class = “required”> * </ span> (please check on image attached)
i’d appreciate your help!
thanks,
AdamAttachments:
You must be logged in to view attached files.November 15, 2014 at 17:08 #35607sharmstrModeratorIn the future, it will be helpful if you provide more information on what you tried (the code). I’ll take a guess here and assume that you used something like add_action( ‘bp_setup_nav’, ‘custom_profile_setup_nav’, 100000 );
For rtMedia (the media tab) you need to load it on bp_init, not bp_setup_nav
COPY CODEadd_action('bp_init','change_media_tab_position', 12); function change_media_tab_position(){ global $bp; if( isset ($bp->bp_nav['media'])){ $bp->bp_nav['media']['position'] = 10; } }
Let me know if I guessed right 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
November 15, 2014 at 17:11 #35608sharmstrModeratorSorry. For the registration issue, it doesnt do that by default. See here: http://seventhqueen.com/themes/kleo/register/
Looks like you might be using some sort of custom registration?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
November 15, 2014 at 17:23 #35610fullworksmediaParticipantthanks, that’s exactly what i’ve asked for. sorry for not being too clear, but your guess was right anyway!:)
regarding the registration page, i understand it may be something at my end. it’s just quite weird, because with only buddypress and kleo activated, it still does that.
thanks,
AdamNovember 15, 2014 at 18:03 #35613sharmstrModeratorBuddypress has its own registration page. Have you set that in the Buddypress settings?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
November 15, 2014 at 18:28 #35619fullworksmediaParticipantwell, i have registration page selected in buddypress settings so it should be technically ok.
i’ve just uploaded your theme and buddypress on another hosting i have and it seems to be ok. weirdly, it seem to be hosting related.November 15, 2014 at 18:41 #35623sharmstrModeratorcaching issue, maybe?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
November 17, 2014 at 21:43 #35810fullworksmediaParticipantwith caching disabled the problem still occurs. it works fine on another server, but buggy on the one i have kleo with buddypress on. perhaps it’s somehow server related?
thanks,
Adam -
AuthorPosts
The forum ‘KLEO’ is closed to new topics and replies.