Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 16,576 through 16,600 (of 69,016 total)
  • Author
    Search Results
  • #183627

    In reply to: messed up post dates

    @mercime
    Participant

    @peipooh Strange. Have not seen this issue. You might want to do some basic troubleshooting https://codex.buddypress.org/getting-started/troubleshooting/
    If that doesn’t work and if you are having issues only in your forums and not in blog posts or Activity Streams, etc. please post at the bbPress foruns.

    chuckingit
    Participant

    Hi – i just wanted to loop back on this thread as i’m still having this problem even though i’m now at WP 3.9.1 and BuddyPress 2.0.1 … it seems as though somebody keeps trying to login to blog id #16 with usernames that are not in the user table (e.g., webmaster, root) hence the ongoing php fatal error logs … the odd thing is that this blog 16 is a site on a network within a network … thus not sure if maybe i setup this second network and site #16 running BuddyPress wrong, or if maybe there is other issue with BuddyPress thus share in case it is not me and my setup, but something that still can use some code love ..??..

    Paul
    Participant

    I have another question.

    If I want to remove wordpress logo from the top wordpress bar where the buddypress activity dropdown shows, I want to place my website logo there. what I need to do. Is that possible.

    #183559
    asianowl
    Participant

    Found the solution! It was written up in the documentation! HERE

    For my needs, I filtered based on roles like so:

    function my_remove_activity_menu(){
    	if (current_user_can('special_role'))
    	{
    		global $wp_admin_bar;
    
    		$wp_admin_bar->remove_menu('my-account-activity');
    	}
    }
    add_action('bp_setup_admin_bar', 'my_remove_activity_menu',301);
    

    Good luck everyone.

    #183548
    jrcode
    Participant

    Hi @henrywright,

    Thanks very much for your help. I am using Radius and I noticed that the problem wasn’t there until I installed BuddyPress.

    I searched my code and found the unsecure content refers to “_wp_http_referer”. I think that instead of correcting manually this big number of insecure items, I am going to use a plugin. I have found one “SSL Insecure Content Fixer”, I am going to test and will give a feedback to the community.

    Best,

    JR

    bp-help
    Participant

    @rhododendron
    Yes that is correct. If you have subfolders within the buddypress folder also make sure the structure is the same as it was when you copied it over. Otherwise if you change the templates it will not work correctly.

    Paul
    Participant

    Just make sure the directory structure stays the same.

    I have copied the buddypress folder from the plugin to Theme-child folder.
    I read the codex too. But doesnt tell anything about the directory structure. do you mean that I need to create a pluin folder inside my child theme.

    now my directory structure is
    themes–>hueman-child–>buddypress

    This is what you meant right?
    Correct me if I am wrong.

    bp-help
    Participant

    @rhododendron
    In your child theme you would copy over the buddypress folder. Please review:

    Theme Compatibility & Template Files


    Once that folder as well as subfolders are in place then you can modify it without it getting overwritten in future updates. Just make sure the directory structure stays the same.

    Paul
    Participant

    Awesome!

    Thanks for that quick reply.

    I have another question. Sorry it is silly I know. As I am new to buddypress I am taking some time reading all the docs. The question is if I make any modification in the front end views for the buddypress installation I guess I need to do in a child theme so that the modifications doesnt go off with the new releases of buddypress. But where do I do it. I mean I read that the new releases of buddypress supports any wordpress theme compatibility I can rather do this modifications inside my website childtheme itself I suppose.

    But waht about the directory structures? How that should be. do I need to make a directory inside my child theme. Can you please tell how it works?

    Abidemi
    Participant

    Thank you guys, from the solutions above, I sum up this code :

    Put in activity/index.php –

    At the top of the activity/index.php, paste this code –

    <?php
    //best practice is to create a function in another file, but this will work…
    $friends = bp_follow_get_following( ‘&user_id=’ . bp_loggedin_user_id() );
    $friends[] = bp_loggedin_user_id();
    $friends_and_me = implode( ‘,’, (array) $friends );
    $friends_and_me = ‘&user_id=’ . $friends_and_me;
    ?>

    After that paste this code

    <?php if ( bp_has_activities( bp_ajax_querystring( ‘activity’ ) . $friends_and_me .’&object=groups,friends,status,blogs’) ) : ?>

    Note : I am using buddypress follower plugins. If you are not using the plugin, you need to change this line of code
    – ‘$friends = bp_follow_get_following( ‘&user_id=’ . bp_loggedin_user_id() );’

    to this

    – ‘$friends = friends_get_friend_user_ids( $user_id );’

    #183524
    jrcode
    Participant

    Hello @r-a-y,

    Thanks for your reply. In fact when I activate BuddyPress I get a notification that the SSL communication is validated on my site but that it has started including other non-secure resources that could be leveraged by third-parties to make my site misfunction.

    I do not neither know nor understand the origin of this third-party code. Is it from the BuddyPress plugin itself? What is it about then?

    Thanks to @all the community and to you @r-a-y and @imathi for your help

    Best

    #183508
    bummedbride
    Participant

    Hello everyone! I still can not find a resolution to this “invalid activation key” – has anyone had any success? My Buddypress website works fine for most but there are still several of my members that are experiencing this issue?

    Has anyone found any fixes?

    Thanks!

    #183507
    lava-team
    Participant

    I can’t even find buddypress functions.
    bp_is_user_forums, bp_is_user_settings … etc..

    sorry for my poor wp knowledge.

    I just want to add my custom pages below bp user header. just like others.

    #183483
    CommonEasy
    Participant

    Wow thanks a lot man!! This works perfect 😀 for the intrested people, i put the code from SimpleOne in this exact file: wwwroot/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress-functions.php

    CommonEasy
    Participant

    you should try to hide the fields from the edit profile page but not from the profile page. try editing the wwwroot/wp-content/plugins/buddypress/bp-themes/bp-default/members/single/profile/edit.php. more information here https://buddypress.org/support/topic/ow-to-hide-more-than-one-profile-field/

    #183480
    Derek Foulk
    Participant

    I tried what @modemlooper suggested, and there is nothing in that list that allows for underscores to be used. WordPress allows underscores to be used, but BuddyPress does not. I deactivated BuddyPress and was able to register with an ‘_’ underscore in my username. I am working on a hack for this as we speak.

    WordPress 3.9.1 / BuddyPress 2.0.1 Installed

    #183479
    Hope
    Participant

    Hi @mehdi-w,

    I noticed that you posted a topic about this issue but it’s closed now! Did you find any solution?

    Thanks in advance
    Hope

    #183446
    Henry Wright
    Moderator

    Hi @compixonline

    get_user_meta() will allow you to retrieve the custom field data. You’d use the function like this:

    $data = get_user_meta( $user_id, $key, true ); where $key is the name of the custom field and $user_id is the user ID of your BuddyPress member.

    $data will then hold the custom field value you want for that particular member.

    Ref: https://codex.wordpress.org/Function_Reference/get_user_meta

    #183432
    Zane
    Participant

    So my final analysis is that something about buddypress activation emails being sent by spam registration that is causing third party email companies like gmail, hotmail, yahoo to blacklist my domain which in term causes bluehost to block my account from sending email.

    What is different between buddypress activation emails and standard wordpress activation emails? Can I disable this change so that the default wordpress activation emails are used?

    #183431
    Zane
    Participant

    Small update with regards to bluehost. I have been exchanging emails with them regarding this email. For your reading enjoyment.

    First Bluehost tries to accuse me of spamming

    Hi, it appears your emails have been reported by multiple providers
    (such as yahoo or comcast) as containing spam, this in turn has flagged
    our outbound email filter. We have removed your domain from the filter
    for now. To prevent this, I would advise the following:

    If you are sending email via email lists or a third party ad vendor:

    BE sure you are not using any purchased lists

    Be sure 100% sure the emails you are sending to are emails that those
    people want to receive

    Be sure you are using a double opt in when adding to your email lists

    Be sure you are not sending to ANY spam traps- a spam trap is created by
    multiple providers, it is an email that is never given out and found
    only in source code. If a spam trap receives an email from a domain,
    this is a clear indication that domain is using an email list that was
    not created by people opting in, which is against the terms of service
    and is considered spam.

    Further more, be sure you are following our complete terms of service
    concerning Sending email:

    We do not allow the sending of unsolicited mass emails to others. We
    have zero tolerance for accounts which contain material that has been
    promoted through unsolicited email (spam) or mail fraud schemes, or
    which contain pages that promote or condone the sending of unsolicited
    email.

    All emails sent from our servers or sent from another server that
    advertise a site that is hosted on our servers are required to stay
    within these rules:

    (1.) You are required to follow all rules in the Can Spam Act
    (additional information at:
    http://business.ftc.gov/documents/bus61-can-spam-act-compliance-guide-business
    )

    (2.) No purchased lists. Everyone that you send emails to MUST HAVE
    CONTACTED YOU DIRECTLY and asked for the information you are sending.
    Affiliate opt-ins are not a valid method of opt in.

    (3.) The list must be double opt in. This means that the recipient must
    request to be added, and then you must send an email asking them to
    confirm the request.

    (4.) You must have an automated opt out link; Email based opt out
    (mailto: links) are not acceptable.

    Quoting from the above link:

    Please see our Terms of Service at
    https://www.bluehost.com/antispam_policy and
    https://www.bluehost.com/acceptable_use_policy#spam for additional
    information.

    If you are sending email individually:

    Change all email passwords and check all devices/computers for any virus
    or malware

    Confirm with everyone that uses email from your domain that they are
    following the spam rules as stated above

    If you are sending email through a script or a contact
    form/tell-a-friend script:

    Be sure you have or add a captcha feature on all contact forms or
    tell-a-friend scripts

    Check your websites content for any malicious or suspecious files that
    should not be there

    Update all your Websites scripts including themes and plugins

    Once you are have confirmed you are following or now applying all of the
    above information, you will need to wait for your domains reputation to
    become clear. We have no time frame on how long this takes as our
    outbound filter relies on information from other providers to determine
    this.

    In cases of a compromised script/email:

    Change all your passwords to your emails

    Update all your email scripts

    Check for malicious files hidden within your sites

    Secure all devices that access your account.

    We hope this information helps you.”

    ****ENDQUOTE****

    If you have any other questions please reply to this ticket, chat us, or call our technical support line which is open 24/7.

    My response to the bluehost response above

    I send no emails from this account. I don’t have any email accounts
    associated with this domain. I only use one email forwarder to send any
    email sent to admin@site.com so I am not really sure any of
    your analysis below holds any ground. Please provide any information to
    back up your summary? What email account was sending messages?

    There is a bigger issue at hand here. Look at the buddypress FAQ. Why
    do you think that out of every web host they only call out bluehost?

    Your resolution was the same resolution that was put in place a month
    ago. How do I prevent my account from getting flagged again? Please
    find out what it is about buddypress that is causing bluehost to
    incorrectly flag accounts as spam accounts.

    Bluehost continues to stick to the assumption that my account is spamming

    Thank you for contacting Technical Support. We understand that sending out emails is vital to any business. Since you are on a shared server, all email you send out uses shared mail servers. Our filter system is in place to prevent our mail servers IP from becoming blacklisted by third party companies. When this occurs, it will block the ability of all of our customer accounts to send out emails. The process then becomes long and complicated once it has been flagged. In order to prevent this we have put in place several services to prevent this from happening.

    We don’t solely check blacklisting services to see if a domain and or IP address is being blacklisted. One of the spam prevention tools that we have in place relies on reports from other email and internet service providers; such as yahoo, comcast, broadband and others. The reports were generated by those who receive the emails and are marking them as spam or junk. We do not have the ability to view who specifically flags the email. Due to this, we can only rely on the reports from these major providers that report them to us. As we do not have control as to if they flag it or not, we cant control if your domain gets listed or not.

    I would recommend checking through the lists that you send out and remove any email addresses that you get bounces from. You can then remove that email address from your list. Over time people may forget that they had signed up for your list and are simply marking your messages as spam/junk. It might be a good idea to email your list and have them opt-in again to your list. You can then remove those that do not opt-in to ensure that that those on the list are legitimate.

    If you have any other questions please reply to this ticket, chat us, or call our technical support line which is open 24/7.

    My response

    I don’t think you are reading my email responses. I do not send emails
    from any account on this domain. The only emails that are sent are
    registration activation emails. How is my domain getting black listed
    if I am not sending emails?

    Their response. Apparently my email forwarder to my own account is also somehow sending spam email to other people and buddypress is responsible for spam.

    Hello,

    You send e-mail via buddypress, you also send mail via the forwarder. These both contribute to the blacklist you’ve now been added to.

    My response. I request information on what about the activation emails is causing my site to get blacklisted

    I have only received one email via the forwarder and that wouldn’t put me
    on a black list. Therefore the activation emails must be what is putting
    me on the blacklist WordPress installations get registration spam all the
    time but they do not get the sites blacklisted. What is it about
    buddypress that is triggering the blacklist?

    Their response. It is top secret.

    Hello,

    We release no specifics on the exact criteria incorporated to flag the contents of e-mail messages to prevent our filters from being defeated. Generally, quantity of messages sent, specific reports of spam e-mail from third parties, internal links or keywords associated with known mass mailing agencies, or a combination of all of the above can lead to the domain’s reputation being reduced to the extent that it requires intervention.

    My final response tonight

    Very well,

    The net sum is I do not send email from this account. The only email sent is activation emails sent by wordpress/buddypress. I have had the typical spam troubles dealing with fake registrations from spammers and I assume those spam registrations are flagging the spam filter. I have never had this issue with wordpress spam activation emails flagging one of my accounts as spam so it is clear that SOMETHING about the buddypress activation emails is to blame (it is the only variable that has changed). This fact is reinforced by the fact that buddypress calls out bluehost.com’s failure to address this email in their FAQ https://codex.buddypress.org/legacy/faq/

    [quote]BuddyPress isn’t sending out emails (eg. activation emails, email notifications). This appears to be a problem with certain web hosts (Bluehost primarily). Members of the BP community have had success using]/quote]

    I have provided a copy of the activation emails my account is sending on my previous ticket for analysis. I have changed nothing to the default buddypress activation emails.

    Please invest some time in identifying why this very popular wordpress plugin is triggering spam filtering by bluehost email. I am happy to make any modifications to my code to resolve this issue and I am sure the buddypress community would love to remove this section from their FAQ. I appreciate your support addressing this issue. Thank you for your continued support with this issue. I have invested a lot of time and effort into this project and I would hate to see it die because bluehost continues to flag my account incorrectly due to an error in the spam filtering software on bluehost’s end. Thank you.

    r-a-y
    Keymaster

    The total group count doesn’t do any checks to see if it has any last activity or member count, which is why you see a higher count.

    However, the group loop does do checks for last activity and member count. It’s possible that your created groups do not have any activity in them. Try posting an update in each group and see if it shows up in the group loop.

    Also, try creating group using BP’s native function – groups_create_group():
    https://buddypress.trac.wordpress.org/browser/tags/2.0.1/bp-groups/bp-groups-functions.php#L60

    DonorChildren
    Participant

    To put my question simpler…how do I change the content and sidebar widths on the desktop site but keep it default on the mobile version? Also, why doesn’t the Buddypress default sidebar show up on a mobile device?

    #183416
    DonorChildren
    Participant

    Thanks for the support. This can be closed. I was able to reinstall the older version of Buddypress.

    Thanks again.

    #183400
    devonc01
    Participant

    I resolved this issue, but another remains:

    Yesterday, I was getting frustrated with the bbPress (a forum plugin for WordPress), because when I’d have a private forum, instead of it just being an attribute, it prepended ‘Private: ‘ before every forum.

    In my attempt to resolve this issue, I found a similar thing to what JSHelp referenced in this Stack Overflow Post: a code that would be located in the theme’s (my theme was Twenty-Fourteen) functions.php file.

    My attempt to resolve THAT issue, led to THIS issue (where we have HTML code being converted to non-code text on the buddyPress profile page).

    On removing the code from function.php, the issue fixed itself.

    However, I am unsure why these two interact in the way that they do, below is the code I added and later commented out:

    function the_title_trim($title) {
    	// Might aswell make use of this function to escape attributes
    	$title = attribute_escape($title);
    	// What to find in the title
    	$findthese = array(
    		'#Protected:#', // # is just the delimeter
    		'#Private:#'
    	);
    	// What to replace it with
    	$replacewith = array(
    		'', // What to replace protected with
    		'' // What to replace private with
    	);
    	// Items replace by array key
    	$title = preg_replace($findthese, $replacewith, $title);
    	return $title;
    }
    add_filter('the_title', 'the_title_trim');
    #183393
    @mercime
    Participant
Viewing 25 results - 16,576 through 16,600 (of 69,016 total)
Skip to toolbar