Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 4,676 through 4,700 (of 22,651 total)
  • Author
    Search Results
  • #252485
    shanebp
    Moderator

    You need to do more than add a button – you need a plugin:
    https://wordpress.org/plugins/buddypress-followers/

    If you don’t want Friends functionality, turn off the Friends component:
    wp-admin > Settings > BuddyPress

    #252457
    skulldragon
    Participant

    1. Which version of WordPress are you running? The latest

    2. Did you install WordPress as a directory or subdomain install? Normal install in root

    3. If a directory install, is it in root or in a subdirectory? Root

    4. Did you upgrade from a previous version of WordPress? If so, from which version? No

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes

    6. Which version of BP are you running? The latest

    7. Did you upgraded from a previous version of BP? If so, from which version? If there was another version around 2 months ago, yes. Issue persists through both updates.

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    404 to 301
    All in one Favicon
    bbPress
    BP Profile Search
    BuddyPress
    BuddyPress Cover Photo
    Custom Facebook Feed
    Divi Builder
    Elegant Themes Updater
    Events Manager
    Go – Responsive Pricing & Compare Tables
    K Elements
    List category posts
    Page Links To
    rtMedia for WordPress, BuddyPress and bbPress
    s2Member Framework
    Slider Revolution
    Taxonomy Metadata
    WP FullCalendar
    WPBakery Visual Composer

    9. Are you using the standard WordPress theme or customized theme? KLEO

    10. Have you modified the core files in any way? No

    11. Do you have any custom functions in bp-custom.php? No

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Latest

    13. Please provide a list of any errors in your server’s log files.

    14. Which company provides your hosting? Siteground

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache I think.

    #252456
    danbp
    Participant

    We’re unable to help you for Yoo Helios premium theme.

    Have you assigned a particular template to the mandatory BP pages: activity, members, groups,… ? If yes, remove them, as BP pages must stay “empty”. Just give them a title and nothing else.

    Instead of using an exotic function, better try this solution.

    is_buddypress fn definition: You can tell if a page is displaying BP content by whether the current_component has been defined. More here.

    #252446

    In reply to: Chaning DB prefix

    gdams82
    Participant

    Well, I’m no securities expert by any means, but I need this site to be as hard as possible. I’m just trying to take every precaution. From what I’ve read it’s a fairly common practice: http://www.firedaemon.com/blog/wordpress-hardening-guide

    Also, you can block access to wp-config.php with the following in .htaccess, although I’m not sure how someone would be able to view the php anyways.

    #block wp-config.php
    <files wp-config.php>
    order allow,deny
    deny from all
    </files>

    Yes, it’s not a catch all. If some one is determined I’m sure there are ways to find your unique prefix. However, I think it would still stop a lot of script kiddies. If someone can inject sql I’d imagine your still in trouble. I would still like to know how to do it though.

    Can some one please help me out. The site supports a good cause and they are nice clients. I really don’t want them getting sued if some ones info gets leaked.

    #252439
    vinzen
    Participant

    Would disabling the BuddyPress registration process and falling back on WordPress one’s by creating a custom registration form help avoid the need to sync BuddyPress to WordPress profile? – as I interpreted from here – http://stackoverflow.com/questions/15379839/registration-form-in-buddypress. Thanks.

    #252433
    Rimon Habib
    Participant

    BuddyPress doesn’t have role based access management system for its components like WordPress roles, However, It has Member Type API now which is a potential lead to creating access management system using member type.
    I am actually working on creating this plugin, which will be extension of my another plugin,
    http://rimonhabib.com/buddypress-member-type-manager/

    This plugin allows you to synchronize member types with WordPress user role, which is a potential way to control content based on Member type

    By the way, you can turn off friend, messaging features from BuddyPress settings. But I guess you are talking about interacting one specific type of users to that type of users only, in this case, you must need to use Member Type API anyway.

    #252422
    Dono12
    Participant

    I figured out the solution. I had to call

    add_filter( ‘wp_mail_content_type’, ‘notification_content_type’ );

    in each individual email function:

    add_filter( 'wp_mail', 'dirty_wp_mail_filter' );
    function dirty_wp_mail_filter( $args ) {
    
    	// you can include your custom html mail template here
    	// just use file_get_contents() functions to get template file and any php replace function like
    	// str_ireplace or preg_replace to replace your given placeholder in template by the content which is sent by wp
    
    	$stripped_mail_content = preg_replace("/<http(.*)>/m", "http$1", $args['message']);
    	add_filter( 'wp_mail_content_type', 'dirty_notification_content_type' );
    	$dirty_wp_mail = array(
    		'to'          => $args['to'],
    		'subject'     => $args['subject'],
    		'message'     => $stripped_mail_content,
    		'headers'     => $args['headers'],
    		'attachments' => $args['attachments']
    	);
    	return $dirty_wp_mail;
    }
    
    function dirty_notification_content_type() {
    	return 'text/html';
    }

    found here:
    core.trac.wordpress.org/ticket/21095

    Rimon Habib
    Participant

    BuddyPress doesn’t have role based access management system for its components like WordPress roles, However, It has Member Type API now which is a potential lead to creating access management system using member type.
    I am actually working on creating this plugin, which will be extension of my another plugin, BuddyPress Member Type Manager

    By the way, you can turn off friend, messaging features from BuddyPress settings. But I guess you are talking about interacting one specific type of users to that type of users only, in this case, you must need to use Member Type API anyway.

    #252390
    Dono12
    Participant

    No, the plugin is not online. I built it with bits of code and tuts across the web about customizing WordPress notification emails. if you can send me an email address (please black this out **** (removed at users request ~hnla)) I can send you the plugin and you look it over. I saw on the web that you should remove filter after applying it but it didn’t seem to have any affect.

    remove_filter( 'wp_mail_content_type','mycustom_mail_content_type' );

    Paul Wong-Gibbs
    Keymaster

    If one type of email is getting sent and the others aren’t, it might be some part of the content triggering some kind of spam filter on the remote server. It could be some kind of throttling issue, and it’s only by coincidence one type of email is being sent. I don’t know. There’s all sorts of weird possibilities.

    We have 2 further email delivery fixes that have been identified, which I imagine we will implement and release within the next 2 weeks. I don’t see how either would directly affect your site since you have SOME BP HTML emails being delivered, but not all — but maybe they will. This is certainly pretty weird.

    https://buddypress.trac.wordpress.org/query?status=reopened&status=assigned&status=reviewing&status=new&status=accepted&group=status&milestone=2.5.3

    #252373
    danbp
    Participant

    Hi @vinzen,

    may not help directly, but read here, at least to get some dev’s thought. 😉

    #252367
    MC-land
    Participant

    Hi Henry, thanks ive tried that plugin, its not quite what im after.
    Ive also tried https://wordpress.org/plugins/buddypress-global-search/installation/ which was just as inconsistent.

    We did import all the users through a database import through a custom script, which we suspect might have caused problems. dont know if that helps at all.

    #252342
    nader.jalayeri
    Participant

    everything works fine when i upload media using wordpress media library but in user xprofile avatar upload form, can’t upload image to another ftp

    danbp
    Participant

    @kafic,

    Since WP 4.0, you no more need to add the language constant to wp-config.
    Read from here: https://codex.wordpress.org/Installing_WordPress_in_Your_Language

    Concerning brazilian portuguese, the WP translation file is named pt_BR.mo
    Once this file is stored in wp-content/languages/, you select pt_br as site language from dashboard > General > site language. This is slightly different from other languages like german or french, who appear as a name in the list and not as de_DE or fr_FR.

    To get BuddyPress in brazilian, you simply add the buddypress-pt_BR.mo to wp-content/languages/plugins/ directory

    Tested as ok on a beta install of WP 4.5RC2 and BP 2.6alpha

    Portuguese Brazilian translations files
    WP Stable 4.4.x pt_BR
    BuddyPress 2.5.x stable pt_BR

    At the botom of these pages, select Machine Object Message Catalog before exporting.

    And to get a plain translation of WordPress dashboard, don’t forget to export admin-pt_BR.mo (stored as sub-project on the left sidebar of translate.wordpress.org).

    #252335
    celziobiaz
    Participant

    Well, there are several Group chat rooms integrated well with BuddyPress.

    When you choose, you need to consider the following:
    1 – You can install one on your server, but if you have more than 10 chatters, that will probably load your server. Most shared hosting services, do not allow to install a chat on the server as it is high cpu/mem consumer. In addition, sharing files is dead slow.

    2 – I recommend a group chat hosted service, it will offload all activity to a remote server, bandwidth is not a consideration. They work with CDN, so everything is pretty fast.

    As for your question:
    I am very much in favor of RumbleTalk chat plugin, works very well and integrate with your users base.

    – Ability to send any files (anything from videos, photos, music, etc.)
    Yes -You can upload files, pdf,excel..etc, I think any file, but they have size limit
    – Ability to text chat
    Yes
    – Ability to video or voice call to a friend
    Yes – they have private chat (you need to allow it in the settings), you must be in ssl to use it (WebRTC)
    – (Optional) ability to add other friends or users to the chat
    Yes – you can allow facebook/twitter friends
    – (Optional) ability to screen share (desktop sharing)
    No – no screen sharing

    Chat room example for buddypress (from blog)

    #252320
    Paul Wong-Gibbs
    Keymaster

    @backpackersunion Some have asked about the “Hi” part. I suppose that could be changed. I have seen a few people ask, but if I see one post about something here, I normally multiple that number by 100, because very few people find it easy or convenient to get in contact with us (with support question), so probably quite a lot of people would like the option, even if it wasn’t the majority.

    The unsubscribe I am a bit less sure of. I don’t want to make it easy for evil people running BP to remove the unsubscribe link for emails they send. In BuddyPress 2.6, an upcoming change means that this unsubscribe link will work, even if you’re not logged in to the site.

    From a technical perspective, if we remove the token from the template and put it into the option, if a user has already customised the footer text option, they won’t see the new updated (default value for the) option.

    This is not unsolvable, we’d run something on the upgrade routing, but we’d have to stick the token at the very bottom or top of the template. It’d be easy for the site admin to change, but it would annoy them. But it might be worthwhile.

    So — maybe? You could create a ticket on buddypress.trac.wordpress.org to see if any other regular contributor likes the idea, or see if you can start a discussion or get feedback from other users via the forum.

    Paul Wong-Gibbs
    Keymaster
    Paul Wong-Gibbs
    Keymaster

    @justarandomuser Yes. BuddyPress does not and will not support WordPress’ wp_mail_content_type filter, so setting this or not does not affect BuddyPress.

    Postman SMTP plugin re-declares a function called wp_mail(). BuddyPress will send its emails in plaintext if wp_mail() has been redeclared.

    This decision was made because a lot of legacy WordPress plugins that change email content/appearance, or how they are delivered, re-declare wp_mail() and it is impossible for BuddyPress to know if/how it could support all these custom implementations.

    If you are using Postman SMTP to only send emails via SMTP, you could find an alternate SMTP plugin. People have mentioned some recently in email support discussions on this forum, though I can’t remember the names. If I find one again, I’ll try to remember to let you know here.

    If you are using Postman SMTP for any other purpose, and you don’t want to switch to another plugin that only configures WordPress to send via SMTP, then I’m afraid you’re out of the options at the moment.

    You are right that the Customizer does not indicate that the email will only be sent in plaintext in these situations. We’ll get some messaging added to that screen in the next BuddyPress release to clarify that.

    #252307
    michaellanfield
    Participant

    Sorry if this question has been posted before. I did search and did not find any answer to my question.

    My site. http:/thevegansandwich.com (under construction)

    At the time posting this (April 11, 2016)
    WordPress version: 4.4.2
    BuddyPress version: 2.5.2
    (I always updated all plugins and WordPress)

    My question is, I am looking for a complete free or inexpensive chat system/plugin or a way to implement a chat system similar to Facebook, with:
    – Ability to send any files (anything from videos, photos, music, etc.)
    – Ability to text chat
    – Ability to video or voice call to a friend
    – (Optional) ability to add other friends or users to the chat
    – (Optional) ability to screen share (desktop sharing)

    Thank you.

    #252294
    wiziwiz
    Participant

    Ok so I have tested with another plugin and it is the same issue,

    Nextend Twitter Connect also has the same bug,
    https://wordpress.org/plugins/nextend-twitter-connect/

    everything works fine – it’s just this block that the buddypress will not allow any activity until an avatar is uploaded,

    I finally have found a fix and that is turn off this setting

    Account Settings
    Allow your users to modify their account and notification settings directly from within their profiles.

    so what is that setting because the user can still change their account – will look into that setting a bit more in another thread…

    #252245
    Mathieu Viet
    Moderator

    Hi there, let’s try to reply to one problem at a time!

    Now the posts do appear in activity stream, but not the comments. If i comment on a post, the stream doesn’t show the comments, but if i comment on a post via activity stream, the comment is then seen on a post and on the activity stream.

    I guess, this means the BuddyPress “Site Tracking” is active.

    1/ WordPress Administration > BuddyPress Settings > Options Tab – Activity Settings section:
    Setting ‘Allow activity stream commenting on blog and forum posts’ is not checked. It means when a post or a comment is posted, then an activity will be generated, but it’s not possible to add an “Activity comment” to the generated activities. Just tested with latest WordPress and BuddyPress 2.5.2 and it works as expected:
    No sync

    2/ WordPress Administration > BuddyPress Settings > Options Tab – Activity Settings section:
    Setting ‘Allow activity stream commenting on blog and forum posts’ is checked. This means you chose to synchronize comments between the Post object and the corresponding activity object. So a comment on the activity about the post will generate a regular post comment and a regular post comment will generate an activity comment on the activity about the Post. Just tested with latest WordPress and BuddyPress 2.5.2 and it works as expected:
    Sync on

    Now @cmavrikas is talking about something else i think. He wants the activity comments to also be displayed like regular activities: in stream mode.
    I then advise to use another filter to avoid parsing args / checking the current object of the Ajax querystring:

    function activity_comments_stream_mode( $args = array() ) {
    	return array_merge( $args, array(
    		'display_comments' => 'stream',
    	) );
    }
    add_filter( 'bp_before_has_activities_parse_args', 'activity_comments_stream_mode', 20, 1 );

    I just tested it, and again it’s working fine in latest WordPress / BuddyPress 2.5.2…

    I advise you to deactivate plugins/come back to a default WordPress theme and do the opposite work to find the plugins or theme that prevents this regular behaviors.

    #252233
    danbp
    Participant

    That list is/was pretty old and not well maintained. BP’s codex is under permanent reconstruction (made by volonteers), so it’s no tomorrow morning that that list will be back.

    Actually, the best place to get available BP plugins is the WordPress Repository. Recommanded search keyword is buddypress. 😉

    #252229
    Henry Wright
    Moderator

    This might not fix the problem but have you tried BP Profile Search?

    #252205
    concoa
    Participant

    UPDATE:
    I deleted all BP files and the plugin and did a reinstall.

    PROBLEM #1)
    I am still having trouble with the Register page. I do not know what this error refers to:

    displays an error message:
    “Profile Details
    Warning: Creating default object from empty value in /home/content/p3pnexwpnas09_data01/28/2853428/html/wp-content/plugins/buddypress/bp-xprofile/classes/class-bp-xprofile-group.php on line 649”

    Line 649 is:
    $fields[ $key ]->visibility_level = $field_visibility;

    PROBLEM #2)
    Registration submission is now working, but an auto response email is being sent. Is there something in BuddyPress (or WordPress) to disable this? I’m getting an email saying:
    Hi test4,
    Thanks for registering!

    To complete the activation of your account, go to the following link: http://blahblahblah.com/activate/ef23a0f24958c3a125917f7e3bac95f8/

    I’m using s2Member to allow admin approval of registrations. This email needs to be removed. Thx.

    #252204
    BobSD99
    Participant

    Hi Henry – thanks for response. As confirmed by both the Codex (Code Reference) and my successful use of this method in the same installation outside of BuddyPress, $title is indeed an array.

    In fact, I tested my function without the if ( bp_is_group() ){ conditional, and the filter works on the pages NOT created/affected by BuddyPress, which confirms BuddyPress is bypassing this filter.

    For testing purposes, I modified the function as follows:

    // test parameters passed to document_title_parts filter
    function test_groups_title( $title ){
    
    	print_r( $title );
    	exit;
    
    }
    add_filter('document_title_parts', 'test_groups_title', 10);

    And BuddyPress pages output the following array:

    Array
    (
        [title] => 
        [site] => My-Website.com
    )

    Which suggests that BuddyPress is neither supplying data to this array nor utilizing it for the title output.

    I did a grep of BuddyPress and bbPress and I am finding calls to the deprecated wp_title() function:

    $ grep -r 'wp_title' ../plugins/b*press/*
    ../plugins/bbpress/includes/core/filters.php:add_filter( 'wp_title',                'bbp_title',              10, 3 );
    ../plugins/bbpress/readme.txt:* Fix custom wp_title compatibility
    ../plugins/buddypress/bp-core/bp-core-filters.php: * @see wp_title()
    ../plugins/buddypress/bp-core/bp-core-filters.php:       * @see wp_title()
    ../plugins/buddypress/bp-core/bp-core-filters.php:       * Filters the older 'wp_title' page title for BuddyPress pages.
    ../plugins/buddypress/bp-core/bp-core-filters.php:add_filter( 'wp_title',             'bp_modify_page_title', 20, 3 );
    ../plugins/buddypress/bp-core/deprecated/1.5.php: * @deprecated Use wp_title()
    ../plugins/buddypress/bp-core/deprecated/1.5.php:        * Now, just simply use wp_title().
    ../plugins/buddypress/bp-core/deprecated/1.5.php:        * @deprecated Use wp_title()
    ../plugins/buddypress/bp-core/deprecated/1.5.php:               _deprecated_function( __FUNCTION__, '1.5', 'wp_title()' );
    ../plugins/buddypress/bp-core/deprecated/1.5.php:               $title = wp_title( '|', false, 'right' ) . get_bloginfo( 'name', 'display' );
    ../plugins/buddypress/bp-themes/bp-default/header.php:          <title><?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?></title>
    ../plugins/buddypress/bp-themes/bp-default/archive.php:                 <h3 class="pagetitle"><?php printf( __( 'You are browsing the archive for %1$s.', 'buddypress' ), wp_title( false, false ) ); ?></h3>

    I guess this means I can and should hook in to the older (deprecated) wp_title() function? I’m a bit new to BuddyPress and WordPress, so maybe I’m missing something obvious, or barking up the wrong tree here….

Viewing 25 results - 4,676 through 4,700 (of 22,651 total)
Skip to toolbar