Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 5,576 through 5,600 (of 26,895 total)
  • Author
    Search Results
  • #175168
    Robin W
    Moderator

    yes use my provate groups plugin and set visibility

    https://wordpress.org/plugins/bbp-private-groups/

    #175162
    nztestnz2016
    Participant

    I am very new to wordpress and installed bbpress, but I’ve noticed that I don’t have the option to delete a post I created. How can I generate a link for this on created posts?

    Update: I realise that you need to be a moderator. I was testing with a standard/ordinary account.

    #175155
    alzaran
    Participant

    I’ve found a function that enables autocomplete on any element of my choice. I’m reproducing it below:

    function buddydev_enable_mention_autosuggestions_on_compose( $load, $mentions_enabled ) {
    	if ( ! $mentions_enabled ) {
    		return $load; //activity mention is  not enabled, so no need to bother
    	}
    	//modify this condition to suit yours
    	if( is_user_logged_in() ) {
    		$load = true;
    	}
     
    	return $load;
    }
    add_filter( 'bp_activity_maybe_load_mentions_scripts', 'buddydev_enable_mention_autosuggestions_on_compose', 10, 2 );

    However, this only works with a textarea or input, I believe. TinyMCE, on the other hand, is an iframe with HTML elements generated on the fly. As such, when I try to initialize the function using the below:

    if ( jQuery( '#bbp_reply_content_ifr').get( 0 ) ) {
    		console.log('success');
    		jQuery('#bbp_reply_content_ifr').bp_mentions( bp.mentions.users );
    	}

    Nothing happens. What am I doing wrong? Buddypress supports the @mentions on TinyMCE instances (see here: https://buddypress.trac.wordpress.org/ticket/6972) and bbpress supports it in the plaintext editor. How can I enable it for the TinyMCE editor?

    metlhed
    Participant

    Hello,

    I would like to allocate one of my BBPress forums to allowing posting and replies to “guests” only.

    Is there a plugin or way to allow a user to simply register a username, password, and email only (but no other user fields required by WordPress) so that they may do this in a “guest” forum?

    Kineta
    Participant

    Here you go. I have this in my theme’s functions.php file. I posted this code a while ago, but there was a small mistake which is fixed here.

    function jpr_buddypress_add_notification( $reply_id = 0, $topic_id = 0, $forum_id = 0, $anonymous_data = false, $author_id = 0, $is_edit = false, $reply_to = 0 ) {
    	
    		
    		// this is who the notification goes to. whose post is replied to
    		$topic_author_id = bbp_get_topic_author_id( $reply_to );
    
    		// Bail if somehow this is hooked to an edit action
    		if ( !empty( $is_edit ) ) {
    			return;
    		}
    
    		// Get author information
    		// $topic_author_id   = bp_loggedin_user_id();
    		$secondary_item_id = $author_id;
    
    		// Hierarchical replies
    		if ( !empty( $reply_to ) ) {			
    			$reply_to_item_id = bbp_get_topic_author_id( $reply_to );
    			// if not replying to OP:
    			$topic_id = $reply_to;
    		}		
    
    		
    		// Get some reply information
    		$args = array(
    			'user_id'          => $topic_author_id,
    			'item_id'          => $topic_id,
    			'component_name'   => bbp_get_component_name(),
    			'component_action' => 'bbp_new_reply',
    			'date_notified'    => get_post( $reply_id )->post_date_gmt,
    		);
    	 	
    		// Notify the topic author if not the current reply author
    	 	if ( $author_id !== $topic_author_id ) {
    			$args['secondary_item_id'] = $secondary_item_id ;
    
    			bp_notifications_add_notification( $args );
    	 	}
    	 	// Notify the immediate reply author if not the current reply author
    	 	if ( !empty( $reply_to ) && ( $author_id !== $reply_to_item_id ) ) {
    			$args['secondary_item_id'] = $secondary_item_id;
    			
    			bp_notifications_add_notification( $args );
    	 }
    }
    // remove the bbpress notification function so we don't get dupicate notifications
    remove_action( 'bbp_new_reply', 'bbp_buddypress_add_notification', 10, 7 );
    add_action( 'bbp_new_reply', 'jpr_buddypress_add_notification', 10, 7 );
    
    // remove the bbpress format notification function before using our custom function
    remove_filter( 'bp_notifications_get_notifications_for_user', 'bbp_format_buddypress_notifications', 10, 5 );
    
    function jpr_format_buddypress_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) {
    
    	// New reply notifications
    	if ( 'bbp_new_reply' === $action ) {
    		$topic_id    = bbp_get_reply_id( $item_id );
    		$topic_title = bbp_get_reply_title( $item_id );
    		$topic_link  = wp_nonce_url( add_query_arg( array( 'action' => 'bbp_mark_read', 'topic_id' => $topic_id ), bbp_get_reply_url( $item_id ) ), 'bbp_mark_topic_' . $topic_id );
    		$title_attr  = __( 'Topic Replies', 'bbpress' );
    
    		if ( (int) $total_items > 1 ) {
    			$text   = sprintf( __( 'You have %d new replies', 'bbpress' ), (int) $total_items );
    			$filter = 'bbp_multiple_new_subscription_notification';
    		} else {
    			if ( !empty( $secondary_item_id ) ) {
    				$text = sprintf( __( 'You have %d new reply to %2$s from %3$s', 'bbpress' ), (int) $total_items, $topic_title, bp_core_get_user_displayname( $secondary_item_id ) );
    			} else {
    				$text = sprintf( __( 'You have %d new reply to %s',             'bbpress' ), (int) $total_items, $topic_title );
    			}
    			$filter = 'bbp_single_new_subscription_notification';
    		}
    
    		// WordPress Toolbar
    		if ( 'string' === $format ) {
    			$return = apply_filters( $filter, '<a href="' . esc_url( $topic_link ) . '" title="' . esc_attr( $title_attr ) . '">' . esc_html( $text ) . '</a>', (int) $total_items, $text, $topic_link );
    			
    		// Deprecated BuddyBar
    		} else {
    			$return = apply_filters( $filter, array(
    				'text' => $text,
    				'link' => $topic_link
    			), $topic_link, (int) $total_items, $text, $topic_title );
    		}
    
    		do_action( 'jpr_format_buddypress_notifications', $action, $item_id, $secondary_item_id, $total_items );
    
    		return $return;
    	}
    }
    add_filter( 'bp_notifications_get_notifications_for_user', 'jpr_format_buddypress_notifications', 10, 5 );
    
    
    #175138

    In reply to: code doesn’t work

    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.

    #175137
    Robin W
    Moderator
    #175123
    bintali
    Participant

    Hi,

    I have just created a forum with bbpress everything seems to be ok but when i create a new topic, i can’t see it.
    I can reply but i can’t see my topics.
    But i can see them in my dashboard on wordpress.
    I use Optimizepress.

    Can you help Me?

    ps : i am french sorry if I make mistakes on my writtings…

    Robin W
    Moderator

    try the shortcodes in my style pack

    [bsp-display-topic-index show=’5′]

    https://wordpress.org/plugins/bbp-style-pack/

    #175105

    Topic: Global Access

    in forum Installation
    sharmavishal
    Participant

    Hi @johnjamesjacoby

    the codex mentions this for Allow Global Access
    In a WordPress Multisite install bbPress is activated on individual sites. Allowing global access will permit all users from across the network to post topics and replies on the forums for this particular site.

    i activated bbpress per site on my 3 network sites. still i dont see any setings for global access? does global access happen by default?

    Also is there some similar setting for bbpress like buddypress’s define(‘BP_ENABLE_MULTIBLOG’, true);?

    i got define(‘BP_ENABLE_MULTIBLOG’, true); enabled for my wp+bp multinetwork. But forums on the root site dont show up on the sub sites like groups/members do with that setting enabled.

    Thanks in advance.

    ropyro
    Participant

    Hello,

    I have a forum currently set up for our organization. I am using some fellow employees to test it but it looks like people are able to go in and make posts for our blog (saved but not published in the Contributor, Participant roles). I don’t want that. Users should only be able to post to our website forum, and nothing else. Is there a line of code that I’m missing for this?

    I would also like to know if there is a way to mask being able to see one another user’s posting stats. TIA!

    website is creatingourcommonwealth.org. Our WordPress template is Ribosome, if that helps any.

    kkpb8084
    Participant

    Hello
    I’ve been searching for ages but cannot find the solution to my problem.

    Does anyone know how I can make it so that people can post new topics and replies without the need to enter a name, email and website (i.e. those three boxes are removed)?

    Thanks very much

    I’m using WordPress 4.5.2, using twentysixteen theme.
    I’m using bbpress 2.5.9-6017

    Robin W
    Moderator

    use my private groups plugin, which allows users to see forums, but not access content

    https://wordpress.org/plugins/bbp-private-groups/

    #175085
    Robin W
    Moderator

    try my style pack, which has a breadcrumbs tab to let you decide what to show

    https://wordpress.org/plugins/bbp-style-pack/

    Schoelje
    Participant

    I’ve successfully imported phpBB data into bbPress. Now, I’d like to redirect URLs like
    http://my_phpbb_domain.com/viewtopic.php?f=1&t=2
    to:
    http://my_wordpress_domain.com/forums/topic/corresponding_topic/

    I’ve search the web and have been experimenting with several solutions but without any luck. Anything I do throws a 404.

    These are some of the links I tried out:

    Rewriting URLs

    Redirection to new bbPress board?

    As you can see, these topics are at least 7 years old. On the other hand, I don’t expect that something has changed on how to write redirects in an htaccess file.

    Does somebody here has some experience with this?

    #175073
    samjoe199
    Participant

    Hello,

    I need your help. I have done research before posting, however, seems nobody had that issue before.

    Could you please advise why my avatar picture and author name in complete mess. They are not staying at the same line. Example can be seen at http://www.mynettips.com/blog2/forums/forum/новый-форум/

    I use wordpress version 4.5.2 and free theme JustWrite.

    Your help would be highly appreciated.

    Regards,
    Sam

    #175068
    nemoclown
    Participant

    Hello,

    I am trying to setup my forums so that moderators can create forums on the front end of the website without having to login to wordpress with admid aka Least Privilege Rule.

    However Ive exhausted many different potential solutions with no fix including:
    -Modifying the Roles and verifying the ability to Publish Forums
    -Granting Users the Moderator Privilege as well as making test Users for trialing

    I cant imagine im the only one with this issue however I cannot find similar topics previously posted on here or google with the answers im looking for.

    My URL is gamingcommunity.us

    #175048
    Robin W
    Moderator

    suggest you use my style pack

    https://wordpress.org/plugins/bbp-style-pack/

    and see if that gets you to where you want to be

    #175031
    littlemisslanna
    Participant

    Better reference: this is what I want! But apparently this poor guy didn’t get what he was looking for, either…

    #175028
    Maximillian Heth
    Participant

    Hi! This is for a client’s site, which is budpubs.com. We’re using WordPress 4.4.3 (his theme isn’t quite compatible with the latest version of WordPress, and the theme dev is no longer supporting the theme..=P) and the latest version of bbPress.

    For some reason, the gravatar images aren’t showing within the forum. I tried looking for a thread that addressed this before creating my own, but I couldn’t really find anything specific to my problem. Has anyone here come across something like this before? Thanks!

    #175015
    dinowong
    Participant

    Two weeks ago I installed bbPress, there was the “forum” tag in the admin dashboard. I uninstalled it soon after I installed as I did not have any use back then.

    But today when I reinstalled a few times, the “forum” tag did not appear at admin dashboard. Neither did the introduction page of bbPress that has the “go to settings” link appeared.

    I tried on my other website and it has no problem. Please advice how to get the normal installation running.

    Both are running on the latest wordpress.org version.

    #175013
    GreenbankAdmin
    Participant

    I recently went through our forum and removed all the old and non required topics but after I did that the counters on the forums were all wrong. I went tot he recount feature until the tools section and rant he options to recounts and recalculate each forum and topic which all worked fine.

    Now when anyone who is a participant (which is everyone except the admin on my site) tried to view the forums, they get no topics returned. When I login as admin I can see them all. I have changed everyone to be KeyMaster and now they can see them again.

    Any idea what might have happened ? I’ve checked permissions and can see Participant is in there as can view, as is subscriber. Using BBPress 2.5.9 and WordPress 4.5.2 BBPress was installed well over a year ago and has been upgraded with each update when the plugins page tells me to.

    website is http://www.greenbankarchers.com but forum is a private members only area behind wordpress.

    brooklynbrookie
    Participant

    Hi,
    I have a issue regarding the Visual Editor within the forum page. I would like the visual editor within the forum edit page to be enabled so that I can give a image/text introduction to the forum. I have tried to install suggested plugins like “TinyMCE Advanced” and others but none of them directly solve the problem I am having. Example of what I am looking for:

    What I would like to be on the page:
    http://postimg.org/image/y52i13nup/

    Wordpress: Version 4.5.2 running Untold Stories theme.
    bbPress: Version 2.5.9
    website forum page: http://www.curlswithattitude.com/forums/introductions

    #175000

    In reply to: Undefined Variables

    WPnolanbretigne
    Participant

    Followup: Found this message using page source:

    <b>Notice</b>: bbp_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 2.3.) in <b>/var/www/html/wordpress/wp-includes/functions.php</b> on line <b>3897</b><br />
    <!DOCTYPE html>

    #174999
    WPnolanbretigne
    Participant

    I’m getting undefined variables when logged in as the administrator, especially when trying to create menus.

    WP: 4.5.2 BBP: 2.5.9.6017 Theme: TwentySixteen OS: Centos 7
    URL: http://mynebraskakitchen.com

    Some of the messages flash across the screen too fast for me to read them, but here’s one:

    Notice: Undefined variable: nav_menu_selected_id in /var/www/html/wordpress/wp-content/plugins/gd-bbpress-toolbox/forms/meta/navmenu_extras.php on line 75
    class=”button-secondary submit-add-to-menu” value=”Add to Menu” name=”add-bbx-extra-menu-item” id=”submit-bbx-extra” />

Viewing 25 results - 5,576 through 5,600 (of 26,895 total)
Skip to toolbar