Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum'

Viewing 25 results - 801 through 825 (of 20,260 total)
  • Author
    Search Results
  • #302019

    In reply to: How to branch pages

    Venutius
    Moderator

    bp_is_blog_page()
    bp_is_my_profile()
    bp_is_home()
    bp_is_front_page()
    bp_is_activity_front_page()
    bp_is_directory()
    bp_is_page($page)
    bp_is_active( $component )
    bp_is_profile_component()
    bp_is_activity_component()
    bp_is_blogs_component()
    bp_is_messages_component()
    bp_is_friends_component()
    bp_is_groups_component()
    bp_is_settings_component()
    bp_is_member()
    bp_is_user_activity()
    bp_is_user_friends_activity()
    bp_is_activity_permalink()
    bp_is_user_profile()
    bp_is_profile_edit()
    bp_is_change_avatar()
    bp_is_user_groups()
    bp_is_group()
    bp_is_group_home()
    bp_is_group_create()
    bp_is_group_admin_page()
    bp_is_group_forum()
    bp_is_group_activity()
    bp_is_group_forum_topic()
    bp_is_group_forum_topic_edit()
    bp_is_group_members()
    bp_is_group_invites()
    bp_is_group_membership_request()
    bp_is_group_leave()
    bp_is_group_single()
    bp_is_user_blogs()
    bp_is_user_recent_posts()
    bp_is_user_recent_commments()
    bp_is_create_blog()
    bp_is_user_friends()
    bp_is_friend_requests()
    bp_is_user_messages()
    bp_is_messages_inbox()
    bp_is_messages_sentbox()
    bp_is_notices()
    bp_is_messages_compose_screen()
    bp_is_single_item()
    bp_is_activation_page()
    bp_is_register_page()

    #301969
    swiggle
    Participant

    I’m looking for a way to when people purchase a subscription it auto adds them to a group and forum.

    Is this possible?
    Using WordPress
    Woocommerce 3.5.3
    Buddypress 4.1

    #301966
    rsmithgs
    Participant

    Quite a few of my users also wish to be able to crop their cover photos. Is there custom code I can add to allow users to do this? I haven’t found it on any of the forum posts so far and most are over a year old. This seems to be the most recent.

    For those searching, here’s the codex of cover images (group and profile) and tells you how to customize the image size that you will accept for this area, but still not telling you how to allow cropping.

    BuddyPress Cover Images

    I’m on Version 4.1.0

    #283052
    brewsi
    Participant

    Hi. I have enabled this the group forum appears on the forum page using the forum index short code but when I go to the group main page there is no group admin options or group forum.

    I have a screenshot but can’t see a way to upload the image here?
    Thanks

    #283051
    Venutius
    Moderator

    Hi there, have you enabled group forums in Settings/Forums?

    #283047
    mutoha
    Participant

    Is there a function to branch pages?

    Currently I am supplementing that function with the following code.

    $arr = explode( '/', $_SERVER['REQUEST_URI'] );
    if ( isset($arr[1]) && $arr[1] === 'members' ) :
    
    	if( is_user_logged_in() ) :
    		
    		if( bp_loggedin_user_id() == bp_displayed_user_id() ) :
    		
    			if( ( $arr[3] === '' || $arr[3] === 'activity' || $arr[3] === 'profile' || $arr[3] === 'following' || $arr[3] === 'followers' ) && $arr[4] != 'following' && isset($arr[3]) ) :
    				echo 'hello';
    
    			elseif( $arr[3] === 'forums' ) :
    				echo 'hello';
    
    			elseif( $arr[3] === 'bp-messages' || $arr[3] === 'settings' || $arr[3] === 'notifications' || $arr[3] === 'following' ) :
    				echo 'hello';
    		
    			endif;
    			
    		else:
    			
    			if( ( $arr[3] === '' || $arr[3] === 'activity' || $arr[3] === 'profile' || $arr[3] === 'following' || $arr[3] === 'followers' ) && isset($arr[3]) ) :
    				echo 'hello';
    										
    			elseif( $arr[3] === 'forums' && isset($arr[3]) ) :
    				echo 'hello';
    			
    			endif;	
    			
    		endif;
    
    	else:
    
    		echo 'guest';
    
    	endif;
    	
    endif;	

    But It’s not cool..
    Please inform me if you have a better method to solve the problem than the one previously mentioned.

    #283042
    shanebp
    Moderator

    Yikes, afaik, that is not done by BuddyPress.
    It looks like you have a plugin or other code that allows emails as user names.
    My guess re the ‘2-2-‘ bits is that more than one user was created with that email.
    ( Try a test registration using a unique email )
    WP dictates that login names have to be unique.

    BuddyPress uses the login names for @ mentions.
    So does bbPress – for example, this forum where your @ mention name is: badusername

    So, again, afaik, it will not be reasonably possible to simplify the @ mention names.
    With considerable and complicated customization, it might be possible.

    #283035
    Venutius
    Moderator

    That’s probably one for the bbPress forums then – https://bbpress.org/forums/ within each group with a forum there should be a forum menu item that links to the group forum. I’d first check there are no plugin conflicts by deactivating all other plugins except for BuddyPress and bbPress, if you still don’t get the menu item within the group then try a default theme such as 2016. BuddyPress forums are provided by bbPress, so that’s the best place to go for support.

    https://bbpress.org/forums/

    #283034
    brewsi
    Participant

    That’s correct. Only on the forum page

    #283033
    Venutius
    Moderator

    Ah you mean there’s not a forum menu item within the group itself?

    #283032
    brewsi
    Participant

    Thanks for this.

    This is my issue though. The user creates a group with a forum and when completing the the group is taken to the group page where there is no forum which is confusing members. Is there a way of clicking the group and it taking you to the forum and vice versa?

    At the moment it would seem people are.looking on there groups page them going to the forum page to read about their groups. Seems a bit counter intuitive to separate the two unless I am doing this wrong?

    Thanks

    #283031
    Venutius
    Moderator

    The Groups page does not include any forums, just the group avatar, name and description. You can choose whether to include the groups forums in the forums page, and other options by following these instructions:

    Installing Group and Sitewide Forums

    #283030
    brewsi
    Participant

    I am trying to create forums for groups in buddypress using bbpress.

    I am really struggling to understand how they integrate. I have read lots of documentation and been through numerous support.

    My users can create a group and a a forum for that group.
    That forum then goes onto the forum page under a parent forum of group forums.

    Bit on the group’s page I can’t get the forums to show which is frustrating as when the user completes the group the forum isn’t viaible.

    Can someone talk me through the set up or point me in the way of comprehensive instructions?

    Thanks

    #283015

    In reply to: Do not get activities

    shanebp
    Moderator

    If I post “bbp_create_topic”

    Do you mean, create a topic or create a reply in bbPress?
    And it does not create an item in the BuddyPress activity stream?

    btw- these are the BuddyPress forums.
    The bbPress forums are here and are probably a better place to ask your question.

    #282871
    eLeXeM
    Participant

    sorry, I only stumbled over your most recent response now. Apparently, this forum does not really send notifications on replies. Either way –

    No, I’m not getting any errors. It just stays blank. I’ve tried 2 plugins to circumvent in the meantime (or rather drill into what they’re doing different, in case they work/ed), alas

    which has me scratching my head.

    I would very much prefer to get this going without having to use a plugin for a simple display job such as this. Bit I can’t seem to figure out why the solution I had in place stopped working.

    #282845
    dmninjas
    Participant

    @meriping check out the below links.. it help you fix. Regards -DM Ninjas

    https://premium.wpmudev.org/forums/topic/how-can-i-change-bbpress-fot-size

    #282843
    shanebp
    Moderator

    Did you try asking on the support forum for bbPress ?

    Most browsers have an inspection tool that gives you info about css and files. Right click on the page area and select ‘inspect’.

    #282842
    meriping
    Participant

    Hi guys, I’m trying to change the font size i forums as it is remarkably smaller than the font in the rest of the site. I’m using child and bbpress .I think my biggest problem is that I’m not able to pinpoint the correct .css file. Could someone give me a hint?
    Thank you buddys.

    eigodeasobo
    Participant

    I see.
    I have asked a question below.
    https://bbpress.org/forums/topic/how-to-filter-buddypress-activity/
    I’m looking forward to hearing from you.
    Thanks.

    #282838
    jeffreyls
    Participant

    Hi ShaneBP,

    Sorry about posting in wrong forum. But a big thanks for the feedback. I’ll implement changes as per your suggestions. Big thanks again.

    JeffreyL

    #282836
    Sbrack
    Participant

    Hi! it’s about a week I’m trying to add a notification counter to my Buddypress site’s menu, unfortunately without getting any results.

    I have read many topics on this forum but I have not been able to use them because I do not have the php code skills and I have a site on WordPress.com (not wordpress.org), so it’s harder to edit the files.

    So what I would like to know is: how can I add this counter to my menu using third-party plugins (eg “insert header and footers” or “code snippets”)? Is there a way to do it? I only need the counter because I’ve already created an icon in my menu that opens the notifications panel when clicked.

    Thank you in advance for your help!

    #282835
    shanebp
    Moderator

    This is not the support forum for rtmedia. You should ask their support team about your issue.

    But my $0.02:

    The errors refer to the PHP memory size, which is set in your php ini file. Ask your hosting provider about this number and how to change it. The recommended minimum for that number, for a WP install, is 128 MB. And for rtmedia, it may be 256 MB.

    Increasing the WP_MEMORY_LIMIT is just an internal limit in WP – it does not increase the memory size used by PHP. And in general, you should not use or rely on WP_MEMORY_LIMIT.

    So remove the WP_MEMORY_LIMIT setting. And increase the memory available for PHP.

    shanebp
    Moderator

    You could look in the database for the names of those activity types.
    You could ask on the support forum for bbPress.

    #282776
    bensmith916
    Participant

    Oh ok that makes sense. Fortunately I posted to both forums, but so far no responses to the one on bbPress. Do you have any suggestions for creating a split page debate platform like this?

    #282772
    shanebp
    Moderator

    Please do not double post. Your thread has been deleted.

    There can be a lot of factors that affect the use of resources.
    Without taking a close look at the specifics of your install, it is nigh impossible to know what the issue is. And that level of support is well beyond the scope of these forums.
    Given that you have 250k users, you should check to see when and how many are concurrent when you hit 100%.
    And do the usual debugging – examine logs etc.
    Most likely, you need to add resources to your server(s).

Viewing 25 results - 801 through 825 (of 20,260 total)
Skip to toolbar