Search Results for 'buddypress'
-
AuthorSearch Results
-
August 22, 2017 at 10:17 pm #267665
PinkishHue
ParticipantThanks for sharing this link, very helpful 🙂
It’s perhaps been discussed before but it seems like this should be a default feature for Buddypress/bbpress, including notifications for subscribed forums AND topics within the alert.
I need this function for new replies on topics and unfortunately this plugin doesn’t do that.
I will keep looking.
August 22, 2017 at 8:26 pm #267661In reply to: How can I edit this page?
dhsllc
ParticipantI think you are referring to the message that appears after the registration page is submitted. If so, it’s not a different page or something you can turn-off anywhere (as far as I know). The message appears on register.php.
To modify it, you’ll want to make a copy of it, edit it then add it to your child theme: mytheme/buddypress/members/register.php
August 22, 2017 at 8:22 pm #267660In reply to: registration page styling
dhsllc
ParticipantI didn’t have a big problem with the look of the registration but the little cosmetic changes I made with handled with CSS. However, the message that appeared after the form was submitted, that needed work.
To customize it, I made a copy of register.php, modified the section where the message appeared and added this new directory in my child theme > mytheme/buddypress/members/register.php
Looks much better now. Hope this helps.
August 22, 2017 at 9:36 am #267655Peter Hardy-vanDoorn
ParticipantTry this plugin. It hasn’t been updated for 2 years, but it works perfectly for me.
Adds these options to the visibility options: ‘Admin’, ‘Everyone (Admin Editable)’ and ‘Only Me (Admin Editable)’
Hope that helps
August 22, 2017 at 9:21 am #267654In reply to: CSS causing cover image to disappear.
awpt
Participantanyone solved this problem? When I get the css file from buddypress plugin to the css folder in my theme it doesnt show it too.It saves the cover image because when I remove the file I can see it but the problem is when i make changes on the css file I can also see the changes.
Is there any required php file to integrate it in the correct mode?
A screensho from my theme the black background is from just a css command not an image.
https://s2.postimg.org/f8lwj34o9/Schermata_2017-08-22_alle_10.37.16.png
August 21, 2017 at 7:24 pm #267646In reply to: url > permalink
shanebp
ModeratorThis is the BuddyPress support site.
Try asking on the bbPress support site.August 20, 2017 at 11:23 am #267623In reply to: Custom Code
Abdullah Al Mamun
Participant@peter-hamilton Im using BuddyPress Xprofile Custom Fields Type plugin too.
August 20, 2017 at 11:07 am #267622In reply to: Custom Code
Abdullah Al Mamun
Participantbuddypress – bp-templates – bp-legacy – buddypress – members – single – settings.php?
Here inside i added:
<div class=”item-list-tabs no-ajax” id=”subnav” aria-label=”<?php esc_attr_e( ‘Member secondary navigation’, ‘buddypress’ ); ?>” role=”navigation”>
-
<?php if ( bp_core_can_edit_settings() ) : ?>
<?php bp_get_options_nav(); ?>
link text
<?php endif; ?></div>
But its not working.
August 20, 2017 at 9:59 am #267621In reply to: Custom Code
peter-hamilton
Participant1. You could use the template for buddypress – members – single – settings
Here you could add a link inside the navigation div, right after the call to get-options-navThis should be in your buddypress folder in your child theme.
2. I do not know
August 19, 2017 at 1:35 pm #267617In reply to: NefisYemekTarifleri.com, Largest Turkish Recipe Site
peter-hamilton
ParticipantVery impressive work @m_uysl and good to know that Buddypress can scale to such a userbase, albeit with lots of serverpower available.
August 17, 2017 at 9:31 pm #267601Henry Wright
ModeratorYou can add items to the activity stream using
bp_activity_add().See here https://codex.buddypress.org/developer/function-examples/bp_activity_add/
August 17, 2017 at 3:07 pm #267599Peter Hardy-vanDoorn
ParticipantHave a look at this plugin: https://themekraft.com/products/woocommerce-buddypress-integration/
August 17, 2017 at 2:45 pm #267596In reply to: Can an xProfile field be used to auto add to group
Peter Hardy-vanDoorn
ParticipantAs far as I know, there’s no way to do that with BuddyPress’ built-in tools.
However, it is possible with plugins such as the one you identified.
I had a similar requirement and ended up doing it by utilising BP’s Member Types functionality (which require a plugin or custom code to set up), a plugin called BuddyPress Xprofile Member Type Field to map that to an xprofile field (so that the user can change it herself… it was the easiest way I found to add that to the user’s profile, although there might be a better way), all tied together with custom code to patch in to the
xprofile_updated_profileaction to check what the change is and then use thegroups_accept_invite()andgroups_remove_member()functions to change the membership accordingly.I know that’s not very detailed, but due to lots of other functionality, such as adding to email lists, my code ended up being quite complex, so it’s not possible to paste it here.
Hope that helps
August 17, 2017 at 8:29 am #267591In reply to: Problem: Cropping image doesnt work in profile!
khappamj
ParticipantHi man , the Buddypress version i use is 2.9.0 and this problem is about every images. Its working but the cropping image tool is very very small, just 1×1 or 2×2 pixels, so its unusable for users.
I dont think the issue is about images,
so what can i do?August 16, 2017 at 8:28 pm #267587In reply to: Problem: Cropping image doesnt work in profile!
r-a-y
KeymasterWhat version of BuddyPress are you using?
Can you upload the avatar that you wanted to use somewhere so we can test?
August 15, 2017 at 10:36 am #267545Henry Wright
ModeratorAugust 14, 2017 at 7:30 am #267534In reply to: Multiple Registration Forms?
webizone
ParticipantHi, I realize this is an old thread. However, I thought of posting my solution, just in case someone finds it helpful. (tried posting it three times.., it just disappears from here)
Solution:
1. Copy the the contents of the bp-templates/bp-legacy/buddypress/members/register.php into the new registration page template
2. At this point, the registration form will show up, but nothing will happen when we submit the form.
3. To solve that, we need to add a custom function to the “bp_screen” hook. In the custom function, we will paste the contents of the “bp_core_screen_signup” function. (located in bp-members/bp-members-screens.php)
4. Then, in our custom function, we will remove this
if ( ! bp_is_current_component( 'register' ) || bp_current_action() ) return;and put this
if ( !is_page( 'your-page-slug' ) || bp_current_action() ) return;5. Next, we’ll remove these lines
bp_core_load_template( apply_filters( 'bp_core_template_register', array( 'register', 'registration/register' ) ) );
It will work now.
Here is the pastebin of the custom function created in bp-custom.phpAugust 13, 2017 at 9:20 am #267527In reply to: How to leave a review for the buyer
Henry Wright
ModeratorHi @franckw
This is a question you should ask WC Vendor Pro. BuddyPress doesn’t handle reviewing.
August 11, 2017 at 7:21 pm #267517r-a-y
KeymasterbbPress handles its integration into BuddyPress, not the other way around.
You should look into what it would take in bbPress to alter the slugs for BuddyPress groups. I don’t believe this is possible at the moment from what I remember though.
You might want to check out the bbPress forums as well:
https://bbpress.org/forums/August 11, 2017 at 4:41 pm #267515In reply to: You do not have access to this activity
Henry Wright
ModeratorHey @udarmo
Thanks for the report. Can you open a Trac ticket for this so it can be investigated?
August 11, 2017 at 12:34 pm #267504ygagnon2016
ParticipantI like your idea about calling a function from the php for the modal window.
Just FYI .. this is what I have set up for colorbox (which isn’t a real ajax call, you’ll see):
echo '<a class="ajax cboxElement launch-dashboard" href="' . get_stylesheet_directory_uri() . '/buddypress/members/single/dashboard.php?username=' . $row->username . '" title="Dashboard">Launch Dashboard</a>';If you aren’t familiar with how colorbox works … note that the modal window is being enabled by simply adding the “ajax” class to the link … similar to how a lightbox popup works.
Ideally .. it’d be great if I didn’t have to call these 2 lines in my dashboard.php file either:
require("../../../../../../wp-blog-header.php"); require('../../../../../../wp-load.php');It’s my understanding that this is a terrible approach anyways .. since the WordPress engine is supposed to be already loaded in the background (making it redundant).
So how would I implement something like what you’ve suggested? Could you show me an example, maybe? I’m assuming that if I don’t load the WordPress engine in my dashboard.php file, that I wouldn’t be able to call a function that’s been added to my functions.php file, right?
Here’s a dumb question. Should I maybe just place my dashboard.php file in a different location within my child theme directory structure, perhaps? I ask because I’m starting to think that I might need to treat this as a normal WordPress template file .. instead of a standalone PHP script. Any thoughts?
August 11, 2017 at 11:36 am #267503vgvidscom
ParticipantDear R-A-Y,
Thank you for the support, appreciate it, and sorry I did not check google myself to find out you need to create bp-custom.php in case it does not exist yet.
It seems there is a conflict with my theme after extra review of my theme builders’ team.
Once they update the theme it hopefully works with the updated wordpress and buddypress. If I need your help afterwards, I will send a new request.
Only issue left is that I don’t know why the lines of coding don’t match in my buddypress version, I never changed code in the core buddypress files.
Thanks for the support,
Bart
August 11, 2017 at 1:37 am #267500In reply to: Child Theme template changes
r-a-y
KeymasterYou’ll want to see a very similar thread to yours:
August 10, 2017 at 11:19 pm #267497r-a-y
KeymasterYou can check the “Users > Pending Accounts” page in the WordPress admin dashboard. Then, you should be able to just delete them from there.
It might be worthwhile for BuddyPress to have a built-in script that removes pending accounts that are older than a month or so.
Also, just to get some clarity, would inactive users be causing BuddyPress to slow down all functions on my website, such as loading a member profile, or the activity page?
Not really.
If you indeed do have a popular website with many users that are concurrently logged in and performing operations, then this will slow down your site. You will need to utilize object caching plugins and the like (I believe WPEngine already has something built in for this). You might also need to consider upgrading your WPEngine plan.
We’re also thinking of doing some performance enhancements in the next version of BuddyPress that will decrease the amount of code that needs to run on non-BuddyPress pages.
August 10, 2017 at 9:53 pm #267496jaykdoe
ParticipantAlso, just to get some clarity, would inactive users be causing BuddyPress to slow down all functions on my website, such as loading a member profile, or the activity page? Because the entire site loads incredibly slow on every page, until I disable buddypress. Then it seems to function well.
-
AuthorSearch Results