Search Results for 'buddypress'
-
AuthorSearch Results
-
March 13, 2019 at 9:38 pm #303524
In reply to: Register page keep refreshing
Venutius
ModeratorThe next step is to take a look at the error log, the easy way is to install an error log viewer such as BWS Error Log Viewer. Once you have that installed try registering then look in the log for entries at the same time as the registration attempt. That should reveal any PHP errors. Which BP Theme are you using? Look in Settings>>BuddyPress>>Options, the theme setting is in there.
March 13, 2019 at 2:34 pm #303518In reply to: Missing Password Validation
Venutius
ModeratorUnfortunately there’s not a before save hook for this, only after save. I guess what you could do is wait until it’s saved then validate the password but that sounds like it’s not going to give the desired UI experience. Maybe you could ask for a hook to be added?
March 13, 2019 at 2:31 pm #303517In reply to: searching for topics in private group-forums
Venutius
Moderatoryou might be better off asking this question in https://bbpress.org/forums/ BuddyPress does not provide the forums it uses, it just integrates with bbPress. As far as I’m aware any forum labelled as hidden will not show up in a search and you’d probably need to create a custom search to achieve this.
March 13, 2019 at 2:22 pm #303516In reply to: Update avatar image
Venutius
ModeratorHi there,
I don’t know much about REST but I did notice that dealing with the Avatar has only just been added to the BP REST API, is that what you are working with?
March 13, 2019 at 2:07 pm #303514In reply to: Registered/Unregistered
Venutius
ModeratorHi there,
It’s not clear from the text exactly what you are looking for but it sounds like you’d need to do some customisation. For a lot of BP functions you only need to be a site members to perform a task and you’d therefore need to work out exactly what you’d like to restrict and then write the code for it. There are some plugins that do aspects of what you are looking for, for example https://wordpress.org/plugins/buddypress-restrict-group-creation/ will prevent standard users from creating groups and I’m currently working on a plugin to restrict messaging for users. For bbPress forums you could set the new user role to Spectator to prevent the creation of topics and replies but I think what you are looking for is probably ore granular than this and so will probably need custom code to deliver your vision.
March 12, 2019 at 3:22 pm #303494In reply to: Transfering a BuddyPress site to a Multi-site
pandraka
ParticipantGood Morning,
Thank you for your reply, but hiring someone else isn’t a possibility. I’ve been digging in the BuddyPress codex and around the internet. There was a suggestion to turn off the fancy permalinks and using the plain links before exporting the databases when using BuddyPress. That worked for the most part. I think I’m 93% of the way to a solution. The only thing that didn’t work was the user’s profiles. All the users are present and displayed, but the user’s @user_nicename, title, and image are incorrect, the rest of the profile and user’s fields are correct. I also noticed instead of 30 users I now have 31. It looks like the super admin user’s information wasn’t incorporated into the new profile, but a second profile was established. I also imported the data into the topmost site instead of a subdirectory. I’m currently working to address these issues any insight would be appreciated.
Sincerely
Patricia
March 12, 2019 at 8:13 am #303488In reply to: Customizing Register Page
Venutius
ModeratorHi Angela,
One way would be to customise the message already shown at the top of the register page. You can do this by creating your own translation of the text shown, and the translation can say what you like.
See this page for details on how you can create the translation:
Once you have created your translation file (.mo) my suggestion for the best way to add it to your site and manage it is to use WPT Custom Mo File.
March 11, 2019 at 9:11 pm #303461In reply to: Update buddypress from 2.9.1 to 4.2
shanebp
ModeratorA lot of things have changed since BP 2.9.
You may need to update in stages instead of all at once.
You can find all the BP versions here.March 10, 2019 at 7:18 pm #303448In reply to: Setting up main page and navigation problems
shanebp
ModeratorI created be the Activity page, it doesn’t show whatever content I’ve typed into the top.
Correct. BP will remove any content that you add that way and inject BP content instead.
You can find BP specific info here.
Re nav: You can control the top nav by using the WP menus.
Go to wp-admin > Appearance > Menus and explore all the options.March 10, 2019 at 1:37 pm #303442Venutius
ModeratorI took a look at BuddyPress Like and it looks like it’s far from ready for use, so I think I’d look at https://wordpress.org/plugins/favorites/ instead, you could create a Profile page for the users list of likes and add your weighting based on your criteria.
March 10, 2019 at 1:37 pm #303441In reply to: Bug in private message
aoiu
ParticipantI desactivate all the plugin (except buddypress) and i have the same bug. :/
March 10, 2019 at 1:13 pm #303439In reply to: Bug in private message
aoiu
ParticipantMarch 10, 2019 at 7:19 am #303435Venutius
ModeratorI think based on your requirement that for your ultimate requirement you will need some custom coding. This is due to you wanting to add weighting to the likes.
One option would be to enable new blog posts to appear in the BuddyPress activity stream. That would automatically allow BuddyPress users to favorite the activity and for it to appear in their list of favorites in their profile. However you won’t easily be able to add your weighting since the BP favorites system dones not have this functionality. But that’s the same for any existing plugin. The potential downside is that the BP Activity stream is not just posts (which would have to be enabled with a bit of code).
There are also a number of WordPress post specific likes plugins, however these don’t give you a profile page with a list of your likes and the same issue remains that they would not support you weighting.
If it was me, I’d probably look to use a plugin such as BuddyPress Like as a basis for my solution. I’ve not looked in detail at this plugin but I’m assuming it adds the ability to like posts and display a list of likes in the users profile. That would serve as a good basis for what I was looking to do. It would then need some modification in order to support your specific weighting mechanism. The complexity of that task would depend on exactly how you want your weighting mechanism to work and the technique you use to account for it when displaying the likes list.
March 9, 2019 at 2:00 pm #303421In reply to: Members Loop with ACF Parameter
shanebp
ModeratorPlease use the
codebutton when posting code.Did you read the codex page re the members loop?
You cannot add custom parameters to the loop.
You can write a custom query to gather all the member ids that fit your criteria and then pass those ids into theincludeparameter of the members loop.March 9, 2019 at 1:55 pm #303420In reply to: Notifications not working
shanebp
ModeratorGo to your wp-admin screen. Then go to Settings > BuddyPress > Components
If you cannot go to your wp-admin screen, then you have a major WP problem and probably need to install everything from scratch.
March 9, 2019 at 11:27 am #303416In reply to: Friends List (on Member List) showing ALL members
Venutius
ModeratorHi there, I can confirm I’m also seeing this behaviour, could you raise this as a bug on Trac?
March 8, 2019 at 6:27 pm #303394Venutius
ModeratorDoes it do this with only BuddyPress active?
March 8, 2019 at 5:34 am #303383In reply to: Multi-Line Text Area loses formatting
neilgee
ParticipantOk thanks, I have opened a ticket.
To get around it for now I am using the
Buddypress xProfile Rich Text Fieldplugin which allows anRTFfield which does maintain all formatting if re-edited.March 7, 2019 at 11:31 pm #303379ecogpast
ParticipantThank you for further discussion. BuddyPress has a built-in custom link that it offers to populate into menus so that people who are logged out can log in. That custom link goes to the default wp-login.php. That is part of BuddyPress for sure. It has the nice capability of only being present if someone is logged out, so I don’t want to forgo that nice BuddyPress feature. If I uninstall BuddyPress it goes away. However, for security reasons I have changed my login URL, so I just want to set the BuddyPress custom link to match. This is why I am seeking help, as it is a BuddyPress feature and problem I need help with. Thanks!
March 7, 2019 at 10:39 pm #303375ecogpast
ParticipantThank you for responding. BuddyPress has two sets of menu items it can add: “Logged-in” links and “Logged-out” links. The menu option to log in falls into the latter set, because people have to be logged out to then log in 😉 Anyway, I cannot see a way to edit that custom link from within the Appearance -> Menus part of the admin panel.I can change the label, but not the URL. Do you know a way to change that URL?
I guess I could create my own custom link in the menu admin panel, but then it will be on for all users whether they are logged in or not. That’s not desirable. The goal is to have BuddyPress’ capability.
What do you think? Thanks!
March 7, 2019 at 9:28 pm #303371In reply to: Edit links in Register Widget
shanebp
Moderatorafaik, BuddyPress does not add that text or links to the registration page or widget.
Find out how that text and links were added to the screen and you’ll know how to edit them.
Maybe thelogy-register-widget? Whatever the f@ck that is.March 7, 2019 at 4:30 pm #303367In reply to: Bypass Email Requirement
Venutius
ModeratorHi there,
This is happening because the Nouveau register page will not submit without an email being entered into the field. There’s a number of possible solutions to this, all of them pretty hacky. So for example you could use JavaScript to remove the required status of the email field. However you mentioned overloading the register page and I’ll give you my more hacky solution. Be warned you will probably need to do more work to get your register page looking right. My solution is to replace that section of the Nouveau registration form with the Legacy content.
So you’d replace this:
<?php bp_nouveau_signup_form(); ?>with this:
<label for="signup_username"><?php _e( 'Username', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value(); ?>" <?php bp_form_field_attributes( 'username' ); ?>/> <label for="signup_email"><?php _e( 'Email Address', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <input type="email" name="signup_email" id="signup_email" value="<?php bp_signup_email_value(); ?>" <?php bp_form_field_attributes( 'email' ); ?>/> <label for="signup_password"><?php _e( 'Choose a Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <input type="password" name="signup_password" id="signup_password" value="" class="password-entry" <?php bp_form_field_attributes( 'password' ); ?>/> <div id="pass-strength-result"></div> <label for="signup_password_confirm"><?php _e( 'Confirm Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <input type="password" name="signup_password_confirm" id="signup_password_confirm" value="" class="password-entry-confirm" <?php bp_form_field_attributes( 'password' ); ?>/>Like I say it’s not the prettiest solution but it should get you moving forward.
March 7, 2019 at 2:36 pm #303362In reply to: Notification received date issue
Venutius
ModeratorHi there,
BuddyPress uses the server date to work out the dates for notifications so I think the first thing to ask if is your server date is showing correctly. You can check this in Settings>>General.
March 7, 2019 at 1:02 pm #303361In reply to: On profile Update get posted fields
shanebp
ModeratorI think a good enhancement would be for this hook to pass some data:
bp_core_general_settings_after_save
Currently, there is no way to tell if there were errors.
The same issue is found in the other files inbp-settings/actions/You can open an enhancement ticket here.
Use the same login info you use for these forums.
Include a reference to this thread in the ticket description.March 7, 2019 at 11:51 am #303357In reply to: Severe BuddyPress / Yoast conflict
msteimann
ParticipantThank you for your quick reply Venutius. I reported this issue to the Yoast support forum and hope to get feedback some day in the future. I will keep you informed.
One more thing: May I direct you to this support ticket, which describes an issue which is said to be fixed for years, but still present on my and KLEO theme developer’s system:
https://buddypress.trac.wordpress.org/ticket/8044
Thanks for looking into this ticket, and I would be happy if you could chime in.
Regards,
Martin -
AuthorSearch Results