-
Author
-
January 1, 2014 at 21:52 #8980frenzzyParticipant
Hi,
1. how do I enable users to upload word documents and text files
2. How do i remove breadcrumb menu items and leave just quick profile
3. how do i remove the rss icon on activity menu stream
4. mobile login with facebook doesnt work. there is an internal server error issue
5. how can members be redirected to friends activity after login
6. How do i edit these menuThanks
January 3, 2014 at 17:21 #9040AbeKeymasterHello,
1. You should find a plugin for that. We saw in the past Bp Docs
2. Add this code to replace default breadcrumb. code goes to sweetdate-child/functions.phpCOPY CODEfunction kleo_show_breadcrumb() { if (sq_option('breadcrumb_status') == 1) { if(!is_page_template('page-templates/front-page.php')) { echo '<section><div id="breadcrumbs-wrapp"><div class="row"><div class="nine columns"></div>'; do_action('kleo_after_breadcrumb'); echo '</div></div></section>'; } } }
3. Try this code. You should search Buddypress forums for buddypress related customizations
COPY CODE//remove feeds function bp_remove_feeds() { remove_action( 'wp', 'bp_activity_action_sitewide_feed', 3 ); remove_action( 'wp', 'bp_activity_action_personal_feed', 3 ); remove_action( 'wp', 'bp_activity_action_friends_feed', 3 ); remove_action( 'wp', 'bp_activity_action_my_groups_feed', 3 ); remove_action( 'wp', 'bp_activity_action_mentions_feed', 3 ); remove_action( 'wp', 'bp_activity_action_favorites_feed', 3 ); remove_action( 'wp', 'groups_action_group_feed', 3 ); } add_action('bp_include', 'bp_remove_feeds');
4. We just tested on our demo and works. Maybe a plugin you installed is interfering
5. See this topic: https://archived.seventhqueen.com/forums/topic/redirect-user-to-their-profile-after-login
you just need to change the redirection link from return bp_core_get_user_domain($user->ID ); to return bp_core_get_user_domain($user->ID ).’/activity/friends/’;6. those are generated by buddypress. There are lots of topics out there
http://codex.buddypress.org/buddypress-components-and-features/members-navigation-menus/
seventhqueen.com/support/forums/topic/buddypress-profile-landing-page-changeHi 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 ‘!Urgent Editing the theme’ is closed to new replies.