Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,476 through 6,500 (of 32,678 total)
  • Author
    Search Results
  • #253699

    In reply to: Create Group function

    danbp
    Participant

    Do you mean a sub-group ? There is a plugin for that: https://wordpress.org/support/topic/warnings-with-bp25 (not updated, but is still working) – see the support if you have an issue.

    Or read on codex about Group API and how to add them a new page…

    Group Extension API

    #253694
    danbp
    Participant
    shanebp
    Moderator

    just fyi: you can replace this:
    ! bp_current_user_can( 'bp_moderate' )

    with this:
    ! is_super_admin()

    is_super_admin()

    matzeso
    Participant

    Hey Guys,

    I have a customized WordPress Website which also makes use of BuddyPress as the core for user profiles. Until now this only required BP Core, Community and XProfile Extension to run.
    Now with the new requirement for a forum I was going to install AnsPress which requires Activity Stream and Notifications to be enabled (otherwise it throws fatal errors around).

    And here comes the fun -> when I enable activity stream, my BP Profile Page is kind of “overwritten” by the stream.

    I hope somebody can clarify for me:
    Normally, when I visit my or any profile via /members/xyz the buddypress.php somehow loads the contents from theme/members/single/profile.php in which bp_current_action() gives case “public” and bp_is_active(‘xprofile’) is true. Then my members/single/profile/profile-loop.php is loaded.

    But when I activate Activity Stream in BP and I visit my profile then somehow theme/buddypress/members/single/home.php is loaded and that shows the activity stream on my page and not the profile parts anymore.

    What I think what I need is that the members/xyz URL links to the profile and not the “home” page – but how? Unfortunately my knowledge of WP as a programming framework is limited and I am not able to debug this any further as to where the decision is made to load home instead of profile.

    Hope you can understand the problem and help me with it. I do not need to show the BP activity stream, it is just necessary for the plugin to not throw errors.

    ppsonline1
    Participant

    I have installed buddypress (current version) with wordpress but am having trouble getting the simplest of things to work. When I try to access My Dashboard as the admin, it returns me to the members page. I’m not sure what is going on because other members of the site are returned to their dashboard. This has to be something simple. The site is http://ls.physicianpracticespecialists.com

    #253675
    sharmavishal
    Participant
    #253653
    danbp
    Participant

    Afaik you have to code something yourself. BP use only display_name for activities and @ mentions and bbPress, if active, also.

    See all existing _display_name related fn here.

    How WP get display_name is related in this topic.

    brett1234
    Participant

    BP Support,

    We have a multi-site setup using learndash+buddypress+iMember360 and are experience a site crash any time we save a course with a buddypress group selected. It crashes the site for a few minutes at a time and doesn’t immediately give any errors, however, there are some errors as it comes back up that seem related (see below).

    WordPress 4.5.2 running Boss. Child Theme theme.
    Buddypress 2.5.2
    The site is fairly new, this is our first course and group.

    I’ve debugged by disabling all of the plugins I can and there is no effect. I can save a course just fine without a group selected or without the buddypress plugin enabled.

    Here is the error we get when it restarts:
    https://www.dropbox.com/s/kvy40uolkskonwy/Buddypress_Error_Saving_Course.txt?dl=0

    Please let me know if I can provide any further information to help us debug this
    Thank you,
    Brett

    pixieblitz
    Participant

    Hi everyone…

    I set up a website a few weeks ago and I’m running into something a bit weird with the member stats. When I look at a user’s “Extended Profile” some (but not all) consistently show the last active time as being the current server time (which on a related note I cannot, for the life of me, get to sync with my local time.) I have no idea why this would only be happening for some users. There’s no way they’re consistently on 24/7.

    I’ve also ended up with a few anomalies in the registration process… one user who seems legitimate showed up as having registered the following day (as in the day of their registration I checked and saw their signup as the currentDate +1 ) and was active on the site despite not having verified their e-mail activation. Others are signing up without a “Name”, despite that being a required field. And lastly not all new members seem to be automatically getting assigned the default forum role for bbPress.

    Any help would be appreciated! Thank you so much!

    PS – It’s at nycplantswap.org running WordPress version 4.5.2 and BuddyPress 2.5.2 on DreamPress with Varnish cache

    #253616
    pandafoxxxx
    Participant

    The issue is somewhere inside the ajax.php from the theme. I’m using a custom theme (Not online) on a local version of wordpress. Tried using the functions.php from the legacy template but there is no live update so I skipped that. (Messages doesnt send at all)

    Edit: I fixed the problem with combining ajax.php from the old buddypress template with the new functions.

    #253605
    danbp
    Participant

    BuddyPress is member oriented and they’re some rating plugins out for profiles or groups. For pure content like posts or CPT’s, you have to search for some WP plugin on the plugin repository.

    Another alternative could myCred, which is made for BP. Inconvenient (if ever), it does much more as only allowing rating.

    #253598
    pandafoxxxx
    Participant

    Hello,

    I have a weird bug/problem. When I send a direct message through the form, it’s send 3 times. 3 times after eachother the exact same message. Does anybody know whats going on, because I have no idea?

    Using wordpress 4.5.2 and buddypress 2.5.2

    #253591

    In reply to: Error on installation

    dredre3000
    Participant

    It also says buddypress is not compatible with my version of wordpress so not sure if that’s why…

    #253590
    dredre3000
    Participant

    Hi I’m trying to run buddy press on WP version 4.5 2 but when I install I get this error message below. The theme creators of the theme I’m using say to contact you as its not on their end. Please let me know if this is a common issue or direct me to a post where this has been resolved. Thank you…message below:

    Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.)

    danbp
    Participant

    If you are on a multisite install, each profile has a tab containing a list of sites the member belongs too, so those link already exist.
    If you want such link elsewhere, you basically can use this.

    As you say nothing about where you want the link to be on a profile, i assume you want it explicitly showing on the profile header. Following snippet will accomplish that. I tested it on a MS install with 2 blogs (main site + 1 user blog).

    function my_link_to_blog() {
    
    if ( bp_is_user() ) {
    	$user_id = bp_displayed_user_id();	
    } else {
    	$user_id = bp_get_member_user_id();
    }
    
    	$blogs = get_blogs_of_user( $user_id );
    
    	if ( $blogs ) {
    		echo '<ul>';
    			foreach ( $blogs as $blog ) {
    			// exclude the main blog if a user signed to another one
    				if ( $blog->userblog_id != get_current_blog_id() ) { 
    					echo '<li>View my blog<a href="http://' . $blog->domain . $blog->path .'">' .  $blog->blogname . '</a></li>';
    				}
    			}
    		echo '</ul>';
    	}
    
    }
    add_action( 'bp_before_member_header_meta' , 'my_link_to_blog' ); 

    Add to bp-custom.php

    #253582
    megin
    Participant

    I would like to keep the friendliness of display in activity stream. I want to post @display_name instead of @user_login/@user_nicename in post activity stream and show @display_name as result post. Anybody please help me.

    Wordpress version : Version 4.5.2
    Buddypress Version 2.5.2

    #253578
    kathrynbritnell
    Participant

    When I received these errors & deactivated Buddypress they went away. I can’t figure out how to fix.

    Using Buddypress 2.5.2
    Wordpress 4.5.2
    Divi Theme 2.6

    Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in /home/teagal5/public_html/wp-includes/functions.php on line 3897

    Warning: Cannot modify header information – headers already sent by (output started at /home/teagal5/public_html/wp-includes/functions.php:3897) in /home/teagal5/public_html/wp-includes/pluggable.php on line 1171

    #253566
    risbrix
    Participant

    Hi

    I have the hueman theme and because of some issues…I had to delete the theme and install+activate it again.
    But since I did that not all widgets on the sidebar will show. Only groups, but friends etc. won’t. I had no issues before.

    When I click on a user’s profile then the friends and groups will be there. So it’s only the front page there’s the problem. I haven’t touched the theme in anyway, except customizing it.
    All widgets is made by buddypress.

    I guess it isn’t that much of a issue, but still…I would like to make it possible for my members to see their friends, without going to their profile.

    Do someone know what might can be the problem?

    Site: strizzel.com

    Wordpress: 4.5.2

    Buddypress: 2.5.2

    Thanks!

    #253555

    In reply to: WordPress 4.5

    Don
    Participant

    OK then, perhaps someone should update the last column of that page.

    In addition, https://wordpress.org/plugins/buddypress/ indicates the latest version of BuddyPress is WordPress compatible up to version 4.4.3.

    Thank you,
    Don

    #253528

    Topic: WordPress 4.5

    in group forum Installing BuddyPress
    Don
    Participant

    Has BuddyPress been tested on WordPress 4.5.x yet?

    Thanks,
    Don

    #253524
    danbp
    Participant

    Hi @subairtc,

    see bp_activity_get_where_conditions filter in bp-activity-classes.php ~L. 418

    Here a similar question with more details.

    Also, maybe you can do something based on this snippet, with a different approach.

    /**
     * Change order of activities query string.
     * @param string $query Query string.
     * @return string $query Modified query string.
     */
    function bpfr_filter_activity_default( $query ) {
    	if ( empty( $query ) && !empty( $_POST ) ) {
    		$query = 'order=ASC';
    	}
    	return $query;
    }
    add_filter( 'bp_ajax_querystring', 'bpfr_filter_activity_default', 999 );

    Apologize if i’m wrong. 😉

    #253519
    notch-1
    Participant

    Hi,
    i have a problem with the activation emails:
    the sender is wordpress@mydomain.com and i have tried to change it with: WP Change Default Email, WP Change Default From Email and WP Simple Mail Sender (as you suggested in other topics), but nothing changed…
    Other automatic emails are working fine, the issue seems to be affecting only the activation email…
    Thanks

    #253489
    risbrix
    Participant

    Hi!

    I almost satisfied with my website, however not completely.

    I have the plugin BuddyBlog and many other. But buddyblog there allows users to blog on their profile. Like make blog posts.
    That’s just great, however when making a post it won’t show on the activity stream. It doesn’t even mention that I’ve created a blog post.
    It does on my user profile, but it just mentions it. Doesn’t show the full post or anything.
    Just says, “-user name- created post – post name -”

    Here is my questions:

    Is it possible to make the blog posts show on the activity stream?

    And is it possible to make the whole post shown?

    Think like tumblr. Posts are shown on there, that’s how I want it.

    Now, I’m not good with codes etc. so it would be so fantastic if I could avoid using it. Since I’m afraid that I will mess everything up.
    But if I really need to use codes, then I must try.

    Thanks!

    Wordpress: 4.5.2

    Buddypress: 2.5.2

    #253481
    Joost abrahams
    Participant

    I,m am very sorry but… You did make those changes somehow, wordpress and buddypress only outputs lowercase slugs.

    You are not typing internet adresses directly into your browser? Those links in your chase are generated by your theme? Did you try a different theme? Did you try to change the page slug?

    #253473
    mlwilkerson
    Participant

    Well, what do you know: I just found a fix for my problem here:
    https://buddypress.trac.wordpress.org/ticket/4824#comment:4

    (I had seen that recent fix from @pareshradadiya previously, but hadn’t noticed that it was a recent update to a 3 year old thread. So, figuring it might actually be current and relevant, I gave it a try and it worked.)

Viewing 25 results - 6,476 through 6,500 (of 32,678 total)
Skip to toolbar