Search Results for 'buddypress'
-
AuthorSearch Results
-
May 4, 2015 at 8:16 pm #238680
In reply to: All members link on Member Profile
danbp
ParticipantYou can’t use that function for this contextual menu.
Use the action hook coming after bp_user_displayed_nav function:
bp_member_option_navto simply add html and your link.Try this (add to bp-custom.php or child theme functions.php)
function lh_custom_setup_nav() { if ( bp_is_active( 'xprofile' ) ) ?> <li><a href="<?php bp_members_directory_permalink(); ?>"><?php printf( __( 'All Members', 'buddypress' ) ); ?></a></li> <?php } add_action( 'bp_member_options_nav', 'lh_custom_setup_nav' );Apply CSS to li and a tags accordingly to your theme if necessary.
Reference file: bp-templates/bp-legacy/buddypress/members/single/home.php
May 4, 2015 at 6:58 pm #238677notpoppy
Participant@danbp OK the best indication I have from reports from my users is this has fixed the problem, so thanks very much for your help! I really am very grateful.
I have got another problem with groups which I am trying to solve which I have described here if you’re able to take a look:
https://buddypress.org/support/topic/cannot-upload-group-photo-avatar-gives-404-error/
May 4, 2015 at 8:44 am #238660In reply to: No pages, posts or comments in Activity
Parmeshwar
ParticipantHello, everyone.
How can I add Post button in Buddypress Activity sections?
Please help.
May 4, 2015 at 7:50 am #238658In reply to: Create projects where people can collaborate
Henry Wright
ModeratorTry looking at BuddyPress Docs
May 3, 2015 at 9:39 pm #238655@mcuk
ParticipantAll the code I’ve used is in the post above. Not required any custom functions.
The function:
bp_notifications_get_unread_notification_count( bp_loggedin_user_id() )was mentioned here:https://buddypress.org/support/topic/how-to-get-notification-count-code/
Just echoing that function in my child header.php gives me exactly what i needed (along with the CSS i posted). Everything works fine.
The only issue is to locate it within the menu itself in the correct location after the Notification tab, which i cannot do in the header file. At the moment I am only able to locate it within the container that holds the menu.
The menu I am using I have created via WP > Appearance > Menus. Just a bog standard menu in the header of the page.
May 3, 2015 at 8:40 pm #238652danbp
ParticipantThe path should be your-site/register/
index.php has nothing to do there. Recheck your settings and permalinks.
BP pages should only have a title and no associated parent page or template.
May 3, 2015 at 8:36 pm #238651danbp
Participanthave you seen this topic ?
https://buddypress.org/support/topic/my-account-menu/May 3, 2015 at 11:26 am #238641In reply to: Activity AJAX not loading new content
Marcella
ParticipantI figured it out WITHOUT looking at buddypress.js (go me).
You need a container with an ID of BuddyPress for the data to be appended to. (heads to check buddypress.js)… Yes, yes it’s true.
May 3, 2015 at 12:01 am #238636In reply to: Bookbag/Cart Function
danbp
ParticipantNever heard about individual WP media library, specific to my buddypress account. By default, all authors can see others pictures when stored in the media library.
BuddyForms is a premium plugin, you probably will have more chance for answers by asking on ThemeKraft support.
May 2, 2015 at 9:16 pm #238633In reply to: Bookbag/Cart Function
dhscratch
ParticipantThanks,
I don’t believe either of these actually support the action/event I’m looking to implement, however, though I may be failing to see this configuration.
I see they allow buddypress users to add their own media/galleries to library/post/page by uploading from personal computer through UI, but I’m actually looking to allow them to have the option to “add to my library” from media items we publish to front end of our central site. e.g., I am a user who encounters a media file on front-end of a page/post and I want to move that media file into my individual WP media library, specific to my buddypress account, without having to download and reupload.
Again, I understand I may not be being clear on what I’m looking for due to my lack of web dev knowledge/language.
Thanks,
Ben
May 2, 2015 at 5:51 pm #238629In reply to: Activity loop
shanebp
Moderatorif ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&per_page=5' ) ) :May 2, 2015 at 10:46 am #238626In reply to: Private Group Forum Visibility
matrixd
ParticipantFinaly I find this very usefull plugin!
https://github.com/imath/altctrl-public-group
Thanks @imathMay 2, 2015 at 8:54 am #238624danbp
ParticipantHi @fabwintle,
have you tried this plugin ?
https://wordpress.org/plugins/gd-bbpress-tools/there was also an older topic on bbpress forum with a solution
May 2, 2015 at 1:34 am #238620In reply to: Language file acting up?
mthnguyen
ParticipantIs there a possibility that my buddypress.pot file isn’t working properly? I’m using the Kleo theme. Thank you!
May 1, 2015 at 9:45 pm #238618In reply to: order member list by register date
shanebp
ModeratorMay 1, 2015 at 2:45 pm #238610In reply to: Different questions
nomiki
ParticipantThanks for the reply!
If I go to wp-content/languages/plugins/ I can only find Akismet and not BuddyPress. All other folders mentioning BuddyPress do not include a language folder, so I’m confused?
I have bought a WordPress theme called Implicit by IndustrialThemes, and making a product review is a part of the theme that’s linked up to posts. So if you make a new post you can make it a review filling out different fields such as ratings and criteria. So if a member wants to make their own review they would have to gain access to the admin panel in order to write a post/review. But if I open up this feature then the members would be able to see other posts as well and they can edit etc. As I understand, the plugins you mention will not get the member inside the admin panel with limited access. Am I right?
Which of the plugins can be used in order to block different blog posts from not-registered users?
May 1, 2015 at 2:19 pm #238608In reply to: Language file acting up?
mthnguyen
ParticipantThat is a good point, it probably had something to do with the update.
I tried doing it again from the buddypress.pot file in wp-content/plugins/buddypress but it doesn’t work.
Am I missing something?
May 1, 2015 at 2:10 pm #238606In reply to: BuddyPress on Magento
May 1, 2015 at 9:14 am #238603In reply to: On Profile-Base, answers to fields works as links
danbp
ParticipantIt’s built in automatic search feature.
To deactivate the whole profile links, add this snippet to bp-custom.php or your child-theme functions.php
function bpfr_remove_xprofile_links() { remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 ); } add_action('bp_setup_globals', 'bpfr_remove_xprofile_links');To remove selectively such profile links, see here.
May 1, 2015 at 9:02 am #238601In reply to: Add BuddyPress as a wordpress page
danbp
ParticipantI would recommend that you read at first how BuddyPress should be installed, before trying an experimental adventure.
May 1, 2015 at 8:58 am #238600In reply to: Create user manually
danbp
ParticipantSee if this topic can inspire you:
https://buddypress.org/support/topic/importing-members-from-joomla-csv/Search for csv import, you will find other answers.
May 1, 2015 at 8:55 am #238599In reply to: Different questions
danbp
Participant1) & 2) some plugins you could use: Mycred, Megathread (for comments only), Buddypress Profile Rating, BP Group Review
3) wp-content/languages/plugins/buddypress.mo/po
4) yes and also in wp settings.
5) see Mycred plugin
Keep in mind that BuddyPress is members oriented. Classic content like blog posts and forum topics are managed as content first than binded to a member’s activity.
May 1, 2015 at 8:41 am #238598In reply to: Private Group Forum Visibility
danbp
ParticipantSee documentation about group roles.
If you allow not logged-in users to see what hapens in a private group, the group privacy is very compromised. In this case make it public.
May 1, 2015 at 8:35 am #238597In reply to: Change text colour inside button
danbp
ParticipantRead your theme documentation.
Also here about premium theme and what you can expect as help from here in such a case.
https://buddypress.org/support/topic/when-asking-for-support-2/May 1, 2015 at 4:35 am #238591In reply to: Language file acting up?
mthnguyen
ParticipantHey @henrywright,
I, too, am having a similar issue. I followed the instruction from https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/ and updated my language to change ‘Groups’ to ‘Cluster’. It worked fine for a week or so and something happened.
I tried to do it over from scratch (starting from step 1 again) but it still wouldn’t work.
Please help.
Thank you,
Minh -
AuthorSearch Results