Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 5,576 through 5,600 (of 26,874 total)
  • Author
    Search Results
  • #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” />

    Robin W
    Moderator

    suggest you try re-installing

    or

    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.

    kennieboezi
    Participant

    Hello guys,

    I have question. i have static website. I haven’t installed wordpress on my site. can i install bbPress for my website without wordpress. Please let us in it is possible.

    Thanks

    #174970
    uschesch
    Participant

    I am using the private groups plugin for this. The plugin lets you restrict certain topics to the members of a group. If you want your topic available for all forum users to see, but you only want certain users to be notified, then the private groups plugin will likely not work. You can find the plugin here: https://wordpress.org/plugins/bbp-private-groups/

    #174951
    Kineta
    Participant

    I came up with a solution, based on the start @davidstriga made. I’ve been meaning to post it for anyone else having the same issue. I don’t have the same goal he did to notify everyone in a forum, just the person being replied to, so I removed the foreach loop. I also wanted the notification to go to the actual replied-to post in the thread and not just the initial topic at the top of the page. The forum I’m working on has titles on all the replies – but if you aren’t using titles on replies the notification just shows the topic title, but the link still goes to the relevant post/reply.

    If anyone is interested, here’s my solution. It’s working great on our site and takes care of the duplicate issues, as well as the GMT timestamp problem.

    Put this in your theme’s functions.php

    /* notifications */
    
    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 ) {
    
    	$current_topic_id = bbp_get_topic_id();
    	$ids_of_subs = bbp_get_topic_subscribers($current_topic_id);
    		
    		// 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 );
    		}		
    
    		// pass the $reply_id to the function that formats the notification
    		$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 ); 
    #174940
    Robin W
    Moderator

    It should work, buy if not try my style pack

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

    #174939
    Larry
    Participant

    How can I get the post author’s name to appear in the reply RSS feed?

    When someone posts, they (must and do) fill out their name, in the “Your Name” field. (That field has id=”bbp_anonymous_author” name=”bp_anonymous_name”.)

    But the post author doesn’t appear in the RSS feed. The author is blank:
    <dc:creator></dc:creator>
    https://zimfest.org/topic/rides-offered/feed/

    How can I get bbPress to recognize that field as the reply author? (It’s not actually anonymous!)

    The forum is here:
    https://zimfest.org/rideboard/
    (The URL will change when this goes public)

    What you see so far is just my own testing. This is a new bbPress forum that’s not public yet. I plan to make it public soon, as a way to create a (very basic) ride board.

    WordPress 4.4.3; Responsive theme with customized child theme; bbPress 2.5.9; bbP Toolkit plugin (1.0.6); bbPress Moderation plugin (1.8.3).

    I’ve created (I believe) a fully moderated forum by using the Moderation plugin. No one is expected (or able) to register on the site, but all posts must be approved (by me) before they appear. (This is how WordPress comments work when moderation is required.) I was surprised to discover that bbPress won’t do this on its own, and getting this behavior with the Moderation plugin is a little convoluted (difficult).

    I’m not using bbPress’s subscription system. Instead, we have we manage our a mailing list in MailChimp that sends new posts via RSS to email. This works well for our blog posts and comments, but I need to fix some details in the forum RSS feeds. The blank <creator> RSS field causes my emails to say “by Anonymous”.

    (In the RSS feeds, you will see my name as the author of a few posts, because I logged into WordPress before making those posts. But I don’t expect reply authors to log in; they won’t be able to do so.)

    Also, how can I remove “Reply To:” from the title in the RSS feed? What line in which file (template?) do I need to modify?
    <title><![CDATA[Reply To: Rides Offered]]></title>

    First time posting here. Thanks for your help (and I hope I’ve followed protocol).

    I posted this yesterday, but it has not appeared on the forum. I’m guessing that’s because it contained 3 links, so needed to be approved. Apparently it was not approved. I have removed one of the links this time (link to a 2nd RSS feed).

    #174926
    Fuskeduske
    Participant

    Hi Stephen,

    Thanks for your answer, each time importing the users i have done this from a completely fresh wordpress installation with wordpress 4.5.2 and BBPress 2.6″Alpha” on different databases using both MySQL and MariaDB, so i fail to see how this has to do with redundant imports.

    However, when i disabled the founder option for the missing users everything went smooth through, this was on a database where i’ve “reset” the forum using the reset option next to import.

    #174920
    Pascal Casier
    Moderator

    Hi,

    The /forums page is probably the standard generated one.
    Just create a standard WordPress page in your /wp-admin and give it the /forums slug.
    This page will overwrite the generated one.

    Pascal.

    #174913

    In reply to: Forum Summary

    hrvbaby25
    Participant

    Thank you! This has fixed the problem but now on my menu bar I have “Forum” and “Forums”. Am I supposed to delete Forum? Sorry if this seems like an obvious answer but I am new to this world of working with plugins and using WordPress.

    All of my topics show up under the original “Forum” but on the new “Forums” page only 1 topic shows up. How can I fix this? http://hudsonrivervalleybaby.com/forum/

    Regards

    #174911
    designbysue
    Participant

    I just installed bbPress so am new to this. The main forums page at http://brigade.org.c11.previewyoursite.com/forums displays the incorrect sidebar – if you click on one of the forums you can see the correct sidebar, which I applied in the set up of the individual forum page. How can I edit the page http://brigade.org.c11.previewyoursite.com/forums?
    Wordpress 4.5.2
    bbPress 2.5.9

    Thank you in advance for your assistance.

    Sue

    #174908
    Stephen Edgar
    Keymaster

    @haddly Thanks though it looks correct to me:

    A single topic and single reply so without plurals:

    Multiple topics and replies so with plurals:

    Also the German translations for this string for bbPress 2.5.x are here and for 2.6-alpha are here

    #174904
    thedhc
    Participant

    Hi folks,

    I am running WordPress 4.5.2 with the following plugins:

    ** PLUGIN INFORMATION **
    Active Plugins: (21)
    – Activity Log 2.2.12
    – Basic User Avatars 1.0.3
    – bbP private groups 3.2.0
    – bbPress 2.5.9
    – bbPress Advanced Statistics 1.3.13
    – bbPress Pencil Unread 1.0.9
    – bbP Toolkit 1.0.6
    – Blizzard Quotes 1.3
    – BlizzBlueWidget 4.0
    – Coming Soon Page & Maintenance Mode by SeedProd 5.0.2
    – Login With Ajax 3.1.6
    – Pollka polls 2.0
    – WordPress System Report 1.0.1
    – World of Warcraft Recruitment Widget 1.1.5
    – WoW Guild Armory Roster 0.4.3
    – WoWHead Tips 3.0.1
    – WoW Progress 1.5.1
    – WP-Mail-SMTP 0.9.5
    – WPFront User Role Editor 2.12.4
    – WP reCaptcha Integration 1.1.10
    – WYSIWYG Widgets / Widget Blocks 2.3.5

    The theme used is Legion Zero.

    In my bbpress forum when i want to reply to a message you get the editor just like on this forum. I hit the link button:

    And i am faced with a white popup background and white-ish text which is too hard to read as shown below:

    I am unable to find which CSS this is causing so i can change it. I can only find the background of the bit where it says “Insert/edit link” and this is in wp-includes/css/editor.min.css and exact value is #link-modal-title which is set to #fcfcfc.

    The part below it, i cannot find.

    Can anyone assist me?

    Cheers :)!

    Robin W
    Moderator

    If you use my private groups plugin

    https://wordpress.org/plugins/bbp-private-groups/then there is a widget called (PG) Forums list which will do this.

    You may think it overkill to have the whole plugin just to don that one thing, but if you donlt set anything the overhead should be unnoticible!

    #174878
    mikeyb
    Participant

    Hi guys

    I know this is more an issue with another plugin, but I thought I would post here as well in case anyone had an ideas

    See original post here

    I’m using the NextScripts: Social Networks Auto-Poster and since setting it up 3 days ago, I’ve come in after the weekend and found it’s killed any pages I have using BBpress shortcodes (eg [bbp-forum-index]) The direct links to the forums are working fine, it’s just pages containing shortocdes.

    Does anyone have any ideas please?

    justinh83
    Participant

    I have several bbPress forums in my WordPress site and I want to use a bbPress Forum List to show only certain forums. By default it shows all forums, but I just want to show a specific one or two in the Forum List. Any ideas on how to do this? Thanks in advance!

    Wordpress version: 4.5.2
    bbPress version: 2.5.9

    #174868
    rnmartinez
    Participant

    Hi everyone loving bbpress and just had some questions. How do I export just my forums? I know the normal wordpress port allows me to export all my pages etc, and I can choose individual items, but I can’t choose say replies and forums.

    Is there a plugin or some other function that will let me export all forum related data and users only? The reason I ask is because I have a running site, and I have a test version of the site with working forums. I want to put the working forums into the actual site, without overwriting existing content

    Thanks
    Rodolfo

    #174861
    rainbowgolfcart
    Participant

    So, it appears that bbPress on my site does not like the word “fuck” or any of its derivatives. When users try to post a topic or reply containing this word, after submitting, they see “ERROR: your reply cannot be created at this time.” My account, the keymaster, is able to make posts with this word. If I give other users a keymaster forum role, then they may also make posts with this word. No other roles (not even moderator) can make posts with the word. This is all independent of the users’ site roles. All other forms of profanity, no matter how strange and distasteful, seem to pose no problem. How can I fix this and allow my users to use the word “fuck” to their hearts’ content? I have already tried everything on the bbPress troubleshooting site. I have no words listed in the ‘Comment Moderation’ and ‘Comment Blacklist’ boxes in the WordPress discussion settings, and the maximum rating is set to X. All forum topics on my site are private.

    Info:
    WordPress v4.52
    Theme: SiteOrigin North
    bbPress v2.59

    #174841

    In reply to: Forum List

    Robin W
    Moderator

    ok, suggest you use the latest activity widget available with my style pack

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

    #174838
    HBDev
    Participant

    Hello I have a website which relies on user roles such as administrator to show certain content. I have installed BBPress which seems to break my user roles for example all Administrators become Keymasters also which is fine but if I run a query such as the code below it evaluates to false.

    Any help would be greatly appreciated.

    
    <?php
             if (is_user_logged_in() ) { 
    
             $user_ID = get_current_user_id();
             $user_info = get_userdata($user_ID);
             if(isset($user_info->roles) && implode(', ', $user_info->roles) == 'administrator') { ?>;
             <?php } >;
    #174828
    Robkk
    Moderator
    #174817
    Robkk
    Moderator

    To see their edits you have to go to the edit post screen for the reply in the WordPress backend and then cycle through the revisions as you would any other regular WordPress post.

    There is a trac ticket to make this easier, like being able to cycle through the post content history with ajax.

    https://bbpress.trac.wordpress.org/ticket/1989

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