Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 9,851 through 9,875 (of 73,984 total)
  • Author
    Search Results
  • #269333
    Arize Nnonyelu
    Participant

    [RESOLVED] I went to BuddyPress options in WP Dash and the disabled User Groups Component and reenabled it then I was able to pass the first step and created a group. It works fine and normal now.

    But I don’t know if you understand why it did that and why what I did fix the issue. If you do, could you explain to me? Thanks

    #269330
    madebyhuddy
    Participant

    Hi there and first sorry for my poor english.
    I’m working on a new Learndash videos website. I want to use buddypress for user registrations / management.

    Sadly no emails are sent from buddypress.

    I installed a email log plugin and see no email sent from buddypress ( other emails are sent ).

    I tried to go with WP MAIL SMTP with a costum office365 email, this option doesnt work either. WP Mail SMTP test email work, buddypress registration & notifications don’t.

    I also tryed Postman also with smtp & my office 365. Test work & get logged. Registration don’t.

    I then tryed to deactivate every single plugin & replace my theme for a default wordpress theme (twentyseventen) this option doesnt work either ( with only buddypress at first, then only buddypress & Postman )

    Any idea what i could try? Thx in advance!

    WP version: 4.9.1
    BP version: 2.9.2
    – Installed on a subdomain
    – Plugins installed :
    – Advanced Custom Fields PRO
    – AffiliateWP
    – Boss for LearnDash
    – BuddyPress for LearnDash
    – BuddyPress Recherche Globale
    – Compress JPEG & PNG images
    – LearnDash & Paid Memberships Pro
    – LearnDash LMS
    – LearnDash WooCommerce Integration
    – Loco Translate
    – Paid Memberships Pro
    – Paid Memberships Pro – WooCommerce Add On
    – Polylang
    – Post SMTP
    – Wistia WordPress Plugin
    – WooCommerce
    – WooCommerce Moneris Gateway
    – WordPress Social Login
    – WP Sync DB
    – WP-Optimize
    – WPBakery Visual Composer

    I use BuddyBoss wordpress theme and i’m hosted on Likuid Hosting ( likuid.com ). No core files have been updated. Server on linux & apache

    Boone Gorges
    Keymaster

    That string is not present in BuddyPress itself. It must be coming from the plugin described here: https://buddydev.com/buddypress/force-buddypress-users-to-upload-profile-photo/

    Be sure to check for wp-content/plugins/bp-force-profile-photo in your filesystem, and the Plugins screen on both the Dashboard and the Network Admin (assuming you’re running Multisite).

    #269321
    Boone Gorges
    Keymaster

    These tabs are hardcoded into the theme template. So you have two options:

    1. Override the theme template in your own theme (copy /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/index.php to /wp-content/themes/[your-theme]/buddypress/activity/index.php, open the copied template, and remove the tabs you don’t want.

    2. Hide with CSS. Eg

    
    body.activity.directory #activity-friends {
        display: none;
    }
    
    #269311

    In reply to: Organic Square theme

    peter-hamilton
    Participant

    Thanks again, I do work better when sometimes tapped on the back, and there is such a need to improve on the available themes for BBPress/Buddypress, I feel they should not even be a separate thing… think they come from the same group of people!?.

    I aim to produce a usable skeleton theme in the next few months, to be honest now trying to learn how to create a customization page in the dashoard.

    #269310

    In reply to: Organic Square theme

    johnagreene
    Participant

    Seriously amazing work @peter-hamilton! It looks better than any premium Buddypress/bbPress theme I’ve seen. Great job and can’t wait to see the finished product!

    #269308
    thelovebridges
    Participant

    Hello.
    How do I change the appearance of a profile page in BuddyPress?

    #269289
    codywulfy
    Participant

    HI!

    I have a Buddypress website and I’ve been looking for a way to block certain acitivities from the activity stream but have not been able to. I’d like to hide:

    New Registered memebers
    Has commented/new comments
    Groups memberships/Has joined group
    New Friend ships/are now friends
    Has liked/New likes (rtMedia)

    I know there are snippets around the forum that handles some of these but not all of these.
    So I think having the code for all these will help everyone interested in doing this.

    Thank you!

    Boone Gorges
    Keymaster

    Hm. I have never seen a problem like this before. It sounds like the problem is not really with BuddyPress per se, but instead some sort of database corruption.

    Are you able to run mysqlcheck? http://www.thegeekstuff.com/2011/12/mysqlcheck/ A total guess, but it could be that this will clear up some of the problems.

    #269280
    playdiune
    Participant
    #269279
    Boone Gorges
    Keymaster

    If the users of the site don’t care too much about what it looks like, then I would suggest switching to a theme like Twenty Sixteen. This will move you over to a “template pack” that is more modern and well-supported by the BuddyPress team.

    Otherwise, there’s no danger in sticking with the existing theme, as long as it’s working for you. It’s outdated in the sense that it won’t receive any more feature updates from the BP team, but if you’re not using most BP features, this probably won’t bother you or your users 🙂

    > Now the problems I see is that when creating a new thread, the thread is created and shown but only the title, the content posted when creating the thread is hidden. All subsequent replies show just fine.

    If this is a CSS issue, it’s easily fixed. Look at the page source to see if the content is there. If so, it is probably being hidden by a rogue style, which you could override. If not, it’s a deeper problem that may require some PHP skills to debug.

    #269276
    Boone Gorges
    Keymaster

    Oy, this is not a good piece of advice from the Avada support folks. You cannot put PHP into a text widget. I gave you a snippet of PHP with the understanding that it’d have to be added through code somehow.

    If you haven’t got the resources to build a proper custom widget (no worries if not, it is a bit cumbersome to do), you may try a plugin like https://wordpress.org/plugins/php-code-widget/. You should be able to paste the text in question into one of those widgets and have it work.

    Widget-friendly shortcodes for BP content is a good idea for a future enhancement. I’ve added a comment to an existing ticket we have to track a related idea. https://buddypress.trac.wordpress.org/ticket/7159#comment:2

    #269274
    Boone Gorges
    Keymaster

    Very interesting question.

    It’s not currently possible to do this through the regular activity API. We’ve hardcoded ASC into the comment query: https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-activity/classes/class-bp-activity-activity.php?marks=1510#L1509

    I think that it would be a good enhancement request to add something to the query API that allows for these items to be reversed. If you’re interested, I encourage you to open a ticket at https://buddypress.trac.wordpress.org.

    In the meantime, here’s a clunky workaround:

    
    add_filter( 'bp_has_activities', function( $has ) {
    	global $activities_template;
    
    	foreach ( $activities_template->activities as &$a ) {
    		$a->children = array_reverse( $a->children );
    	}
    
    	return $has;
    } );
    

    This will only affect top-level comments; you’d need something recursive to do deeper levels. And you may want to limit this to front-end queries, or in the main activity directory, or something like that. But it’s a basic technique that should give you a sense of how to solve this in the short term.

    #269272
    naomibuch
    Participant

    BTW: I am using Newspaper – Theme version: 8.1
    WP version 4.8.3
    Buddypress Version 2.9.2

    Kookidooki
    Participant

    I have the latest WP 4.9.1. and latest Buddypress but somehow during the update something went wrong.

    1. Users cannot post updates and images in activity stream => error:
    “There was a problem posting your update, please try again.”

    2. Media Library appears to be empty, no pictures. Also not able to upload an image.
    But when I check the upload-files you could see all the uploaded images.

    Have tried to deactivate all plugins and re-activate it step by step but no luck.

    The above mentioned problems never happened before.

    Have been working all night and need help asap.

    Thx

    #269267
    ovizii
    Participant

    Hi @boonebgoges and thanks for replying.
    I get what you are saying, its just that I am maintaining this site for a bunch of friends for their forum. basically no other feature of buddypress is used. I try and keep my efforts at a minimmum as its an unpaid favor I am doing them. So for the last few years all I did was keep WP and themes + plugins up to date.

    What I am looking for is the solution with the least effort 🙁

    Still, do you have some pointers where to start? Some links I could read up or tips what to do and check?

    What to do about this budypress message about the outdated template pack? I googled those terms and found some old posts from a few years back, mentioning some BP template pack plugin but that seems outdated information.

    Say I can solve this outdated template pack, can I then keep using the buddypress default theme? I did improve it by adding some css but that is the only change I made to it.

    #269263
    neilsaunders
    Participant

    Hi there,
    I’m running Buddypress 2.9.2 and can’t figure out why i’m not receiving email from it. I’ve checked spam and trash and there’s definitely no email coming at all. In the admin UI when i send activation email manually, it says it’s sent but nothing comes through.

    I’m running the site on my own virtual machine. There was a time when it did work way back at the beginning of development. I’m using the Sendgrid plugin to handle all email – which is working great with the other plugins. Ideally i’d like Buddypress emails to go through Sendgrid. I’ve tried the following already:-

    1) deactivating Sendgrid
    2) running a default theme (Storefront)
    3) installing WP Mail SMTP – test emails send fine. Nothing from Buddypress.
    4) looking for logs everywhere to try and see what’s happening
    5) deactivating all plugins except buddypress – still no email.

    At this point, i’m stumped. Any suggestions on what to do next?

    Thanks,
    Neil

    Wordpress 4.9.1
    Buddypress 2.9.2
    https://www.postcardtree.com

    #269260
    Boone Gorges
    Keymaster

    Thanks. I’ve just installed the combination of rename-wp-login and lh-private-buddypress, and I’m unable to reproduce the problem – after logging in, I’m being redirected to the originally-requested page. It may still be worth a test on your end; if temporarily disabling rename-wp-login fixes the problem, it would at least narrow down what’s going on.

    If it were my site, the next thing I’d do is to debug the redirection chain, but I’m unsure how familiar/comfortable you are with debugging PHP functions. Try adding the following settings to your wp-config.php:

    
    define( 'WP_DEBUG', true );
    define( 'WP_DEBUG_DISPLAY', false );
    define( 'WP_DEBUG_LOG', true );
    

    After a few pageloads, WP should have created a file at wp-content/debug.log. Once you’ve confirmed this, drop the following into a bp-custom.php file, and then run through the login redirect process. It’ll dump some info into your debug.log file, which we can use for further debugging.

    
    add_filter( 'wp_redirect', function( $redirect ) {
        error_log( print_r( debug_backtrace(), true ) );
        return $redirect;
    } );
    
    #269253
    Boone Gorges
    Keymaster

    Hi @plumbingsuperstore – Oof, sorry to hear about the problems, but glad your hosting provider had a way to roll back.

    BuddyPress doesn’t touch user credentials, so it’s highly unlikely that BuddyPress itself would be the cause of your admin creds not working after BP was installed. I’m guessing that either there’s some user error here, or there’s another plugin interfering with the process. To reiterate, logging into WP should be exactly the same before or after the activation of BP.

    Regarding the 404 error when activating your account: When you install BuddyPress, it should create pages called Register and Activate. It sounds like this worked for Register (since you were able to register a new account), but didn’t for Activate. If you try this again, take careful note of the URLs you see in your browser when registering, the URL that appears in the activation email, and the URL you see in the browser after clicking the activation link. There could be a clue here.

    One final tip: You can stay logged in as an admin in your browser and still test as another user. Open a private browsing window: Firefox https://support.mozilla.org/en-US/kb/private-browsing-use-firefox-without-history, Chrome https://support.google.com/chrome/answer/95464?co=GENIE.Platform%3DDesktop&hl=en, Safari https://www.macworld.com/article/1133941/software-web/safariprivate.html

    #269252
    plumbingsuperstore
    Participant

    Boone howzit bud! 🙂 Thanks for the reply! Much appreciated!!!

    I went into my cpanel, fortunately these guys I’m hosting with have auto saves on and I could restore my site to a previous time. WHOOOOHOOOO!!!!! So happy I chose them as my host provider!!!!

    There is the fear though that this might occur again!… so running the neglected back up on my side will occur before every plugin installed or major settings change…. discipline is the way forward!

    Ok prevention is better than cure right!?

    So here goes the story as good as I can explain in my no programmer/developer language…

    I was in wordpress… Installing Buddypress… I opened a second browser tab so I can view all the changes etc. that I made tweaking and installing Buddyp. (..aaand gloating cause I actually followed instructions to the letter and it all worked out just peachy!) Buddypress installed even downloaded the fake content plugin to see the end result in all it’s glory.. 🙂

    I had to take it just one step further to satisfy this little voice in my head!

    To test Buddyp. as a potential new register.

    I logged out as admin….

    Unknowingly
    all Sh*t broke loose just then….

    I created a new account as a new user… completed in the registration form with a fresh email account… Buddyp. sent me the verify link to my email account.

    Clicking on the verify email account link… gave me a – page not found – and re-directed be back to the login up page, once there telling me in red highlight – there is no account with those details…

    Frantically entering the new registration details just kept me in the same loop…

    Then deciding ok… to use my admin credentials to get back into either Buddyp. or my site backend…

    To no avail… admin credentials did not do the trick… I was locked out completely…!

    My std WordPress email credentials meant squat!

    My main concern is, I need to to fix this…
    I a new user register with my site the same think will occur to them…

    Being redirected back to the login and password block after clicking and confirming their email address….

    I am not sure how to fix this!

    I hope this makes sense… ?

    Once again… thank you for the response to help out… would you know how to fix said issue?

    Regards

    W

    #269246
    Boone Gorges
    Keymaster

    Hi @ovizii – Changing to a separate theme just because of a single styling issue is a pretty big step. If you’re generally happy with the way your site looks and works, it may be worth putting a bit of time into solving the specific issue, rather than looking for a larger switch.

    If you do want to change, BuddyPress now supports a feature called “theme compatibility”, which means that it works well in most WordPress themes – whether or not they have specific support for BuddyPress. A nice place to start is the WP default themes (Twenty Sixteen, etc), some of which are particularly well suited to running a BuddyPress site.

    #269244
    Fred22000
    Participant

    Hello,

    I have a problem while trying adding friends on my buddypress interface. It works all good in google chrome but not in firefox. Does somebody already experienced this bug?

    Thanx in advance

    http://rezoo.legtux.org

    #269242
    Boone Gorges
    Keymaster

    Group descriptions are filtered at the time of saving, via wp_filter_kses(), and at the time of display using bp_groups_filter_kses(). https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-groups/bp-groups-filters.php#L35

    It seems like a bug that we do different things at the time of save vs the time of display, but there you have it.

    I’d suggest removing the groups_group_description_before_save filter, replacing with bp_groups_filter_kses, and then filtering bp_groups_filter_kses to add allowed tags (as @r-a-y describes above). https://buddypress.trac.wordpress.org/browser/tags/2.9.2/src/bp-groups/bp-groups-filters.php?marks=117#L87

    #269237
    naomibuch
    Participant

    BTW: I am running:

    WP version 4.8.3
    Newspaper theme 8.1
    BuddyPress Version 2.9.2

    #269236
    naomibuch
    Participant

    Hello..

    I am in search for either a code snippet or plugin to edit comments and replies. The current plugin I was using stopped working (BuddyPress Edit Activity, plugin) when I installed the Bp Stickers plugin, and I really like this plugin to insert smiley icons in comments and replies.

    Your help is deeply appreciated.

    Thanks,
    Naomi

Viewing 25 results - 9,851 through 9,875 (of 73,984 total)
Skip to toolbar