Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 5,101 through 5,125 (of 26,874 total)
  • Author
    Search Results
  • #178513
    Robin W
    Moderator

    suggest you install my style pack

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

    which will let you set font sizes along with lots more

    haddlyapis
    Participant

    Hi,
    We have made it so that all spambots who sign up to the bbp forum automatically get the role “no user role for this forum” (translated from German).
    The thing is, when i go to my wordpress “user” settings, they are all under the “subscriber” role. As are all the real forum users.
    I would like to have an option at the top to select just the “no role” users, so that i can bulk delete them all.
    How do i do this?
    thx.
    btw, i dont want to install a wp-admin hide plugin as these have conflicted with our theme, and therefore i have to deactivate them.

    #178498
    kentwest
    Participant

    Caveat: I’m new to WordPress, themes, CSS, and bbPress.

    I’ve got a website that seems to be working properly (using the hueman theme (well, actually, hueman-child)), and have installed bbPress, and created a forum page, but the form is cluttered. It looks like:
    What my bbPress forum looks like instead of like how the documentation shows it to look:
    How the documentation shows a bbPress forum to look

    I’ve deactivated all my plugins except bbPress, and have tried all 6 or 7 of my installed WordPress themes, but nothing seems to help? Suggestions? Thanks!


    Kent

    #178496

    In reply to: Cannot change Role

    Jason
    Participant

    Update! I just tried clicking the Bottom “Change” button and it worked. The Top “Change” button does NOT work. Perhaps this is a WordPress bug?

    #178495
    Jason
    Participant

    I added a new user, but cannot change their role in the list of users. I check the box on the left of their username, then go to the top dropdown “Change forum role to…” and change it, but there is no effect. The only way I can change the role is to edit their profile individually, rather than using the Bulk method. I am going to be importing 160 users and cannot find a way to pre-populate the Forum Role field, so I’d like to save time by being able to change Forum Roles in bulk by putting a checkmark next to each user and performing the change all at once.

    I am using the default Twenty Sixteen WordPress theme in use while testing this plugin.

    Does anyone know about this limitation or bug?

    Torkel
    Participant

    I will be moving my website to a new host, it will keep the same URL, but not the same password/username/hostname for mysql/the database.

    I’m using akeeba to move my wordpress site where I’m using bbpress as a plugin, complete with wordpress’ databases.

    Does anyone know if bbpress will be fully moved and operational using this method? Akeeba should (I think?) move bbPress’ databases, but is there a place where I’ll have to change username/password/hostname for mysql in bbpress?

    (Alternatively, is there a simple way to backup all the content on the forum and import them on the new webhost after doing a clean install of bbpress in case akeeba doesn’t take care of things?)

    contemplate
    Participant

    Hi All. Needed this exact behavior as well. It really should be the default behavior. But if you don’t want to hack the core here is the code to place in your functions.php or custom plugin:

    
    /**
     * Format the BuddyBar/Toolbar notifications
     * Fixed: https://bbpress.org/forums/topic/new-reply-notification-link-to-the-reply/
     */
    function bbp_format_buddypress_notifications_custom( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) {
    
    	// New reply notifications
    	if ( 'bbp_new_reply' === $action ) {
    		$topic_id    = bbp_get_reply_topic_id( $item_id );
    		$topic_title = bbp_get_topic_title( $topic_id );
    		$topic_link  = wp_nonce_url( add_query_arg( array( 'action' => 'bbp_mark_read', 'topic_id' => $item_id ), bbp_get_reply_url( $item_id ) ), 'bbp_mark_topic_' . $item_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( 'bbp_format_buddypress_notifications', $action, $item_id, $secondary_item_id, $total_items );
    
    		return $return;
    	}
    }
    remove_filter( 'bp_notifications_get_notifications_for_user', 'bbp_format_buddypress_notifications', 10 );
    add_filter( 'bp_notifications_get_notifications_for_user', 'bbp_format_buddypress_notifications_custom', 10, 5 );
    
    /**
     * Hooked into the new reply function, this notification action is responsible
     * for notifying topic and hierarchical reply authors of topic replies.
     * Fixed: https://bbpress.org/forums/topic/new-reply-notification-link-to-the-reply/
     */
    function bbp_buddypress_add_notification_custom( $reply_id = 0, $topic_id = 0, $forum_id = 0, $anonymous_data = false, $author_id = 0, $is_edit = false, $reply_to = 0 ) {
    
    	// Bail if somehow this is hooked to an edit action
    	if ( !empty( $is_edit ) ) {
    		return;
    	}
    
    	// Get autohr information
    	$topic_author_id   = bbp_get_topic_author_id( $topic_id );
    	$secondary_item_id = $author_id;
    
    	// Hierarchical replies
    	if ( !empty( $reply_to ) ) {
    		$reply_to_item_id = bbp_get_topic_author_id( $reply_to );
    	}
    
    	// Get some reply information
    	$args = array(
    		'user_id'          => $topic_author_id,
    		'item_id'          => $reply_id,
    		'component_name'   => bbp_get_component_name(),
    		'component_action' => 'bbp_new_reply',
    		'date_notified'    => get_post( $reply_id )->post_date,
    	);
    
     	// 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'] = $reply_to_item_id ;
    
    		bp_notifications_add_notification( $args );
     	}
    }
    remove_action( 'bbp_new_reply', 'bbp_buddypress_add_notification', 10 );
    add_action( 'bbp_new_reply', 'bbp_buddypress_add_notification_custom', 10, 7 );
    
    #178480
    r-a-y
    Participant

    The reply form showing directly beneath the reply should be fixed as of:
    https://bbpress.trac.wordpress.org/ticket/2971

    Edit – Haven’t tested with TinyMCE though.

    #178476
    Robkk
    Moderator

    One other little thing though. I notice that the reply form appears below all sub-replies of a reply, instead of directly beneath the intended reply.

    I think the reply.js code and possible other areas for threaded replies code can be improved to fix this. No idea how right now.

    When the reply form is at its default location in a bbpress topic, the Visual tab works fine. But when the reply form pops up after clicking “reply” on a comment, the Visual tab fails to work (can’t type in it or see the contents).

    I think this is another known issue. One of these tickets need to possible be reopened and include a patch for this issue.

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

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

    #178453
    Robkk
    Moderator

    Alright I was asking if there could be sending bbPress subscriptions issues and hopefully I could help with that, but only if you already set up sending mail on localhost.

    There isn’t much I can help on sending emails through WAMP as the last time I tried a few years back it was a pain to do so and fix some issues I was facing. See if this can help you though.

    http://www.wpbeginner.com/plugins/how-to-receive-wordpress-emails-from-localhost/

    #178450
    Robkk
    Moderator

    Ok. I found the problem: Buddypress.

    The functionality of reply.js works for bbpress, but does not work if the topic is in a forum that is within a Buddypress group.

    Just tested on your site, as well as my test site. And yes that BuddyPress is related to this issue.

    May not specifically be BuddyPress and their code. I think there are tickets with bbPress’ BuddyPress extend code that might have issues with some conditionals in a bbPress post that is in a group.

    Will look through bbPress trac for some possibly related tickets.

    Edit: Found the ticket.

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

    It is pretty easy to workaround this issue as well, since all you have to do is enqueue the javascript with a different conditional or enqueue it sitewide, but doing it sitewide might cause another issue somewhere.

    Will do some testing and get back.

    #178440
    ideas4design
    Participant

    Hi guys.

    I created my first bbPress forum, which is this -> http://bit.ly/1p1fpjH

    I then I cloned that forum to another URL -> http://bit.ly/2evx82i

    All right, because I modified the URL WordPress. But when I press to enter any part of the forum, it redirects me to the first forum.

    What is the problem? Do I have to change the URL bbPress? Any ideas?

    Thank you very much!

    #178432

    In reply to: Admin user approval

    mimbelli
    Participant

    Hi Pascal,
    Thanks for your reply.

    I installed BuddyPress to reduce plugin use for my need but actually I use just the sitewide BBPress forum. Actually I’m trying to get the whole picture.
    FWIW Buddypress doesn’t add new user roles but, for forum, it uses BBPress forum. Please correct me if I’m wrong.

    As admin I need to approve user once registered. How I can avoid to assign worpress role “subscriber” and maybe assign BBPress role “blocked” until an admin take action validating the user?

    I’m just trying to obtain a classic feature of all forums out there. I tried on Buddypress and WordPress but everybody says that it’s aquestion related to other product. I’m deadlock 🙂

    PS
    Imagine for a moment that I have only WP + BBPress forum. How I get this behaviour?
    Until an admim approve it, a new user cannot browse the site and forum.

    Thank you

    Pascal Casier
    Moderator
    #178420
    james8181
    Participant

    No worries. I appreciate your help with this Robin.

    I am using the beaver builder page builder and their beaver child theme. I am entering it into the Appearance > customizer area. There is an area for code snippets in there. I usually put CSS in their global CSS area but have been advised from beaver builder that CSS that needs to affect dynamically generated pages (ie, not pagesi have created in the wordpress UI) need to be put in here.

    #178412
    Robkk
    Moderator

    Just changed my site to a twenty sixteen child theme, still see no problem.

    Yeah, that’s what I want. But I’m completely lost now. No idea why this doesn’t work for me.

    Are you sure there’s nothing else I need to do? Just copy the reply.js file into a folder called js under my child theme? And that’s it? I can’t understand why it wouldn’t work even when I created a brand-new subdomain, and did no other modifications: just installed wordpress, added bbpress, created bare child theme and added reply.js. What else could be interfering with this function!?

    Yeah that’s it. I am lost how you are getting issues for this still. There shouldn’t be an issue with this and default themes.

    Only issue I have ever come across regarding issues with threaded replies is while using the Divi theme, some custom scripts in the theme has issues with it for some reason.

    I also tested a topic without a forum like what you have on your test site for the heck of it, and I still have not run into issues.

    Here is my custom twenty sixteen child theme that you can use and test yourself.

    https://cloudup.com/c-0XtmQvdjm

    #178410
    atmojones
    Participant

    Ok, this is very unusual, but after a lot of testing it seems that @mentions do not get linked when there are spaces in front of the @mention in multiples of 2.

    The autosuggest feature works fine when typing the post. The @mention links correctly when looking at the users buddypress activity feed, but the end result in the forum post is a plain text @mention IF there is 2, 4, 6, 8, … spaces in from of the @mention.

    If someone has a solution to this that would be great, but I would settle for someone pointing me to the function that converts the @mention to linked text after database retrieval.

    Wordpress 4.6.1
    bbPress: 2.5.10

    #178406
    Jon Fergus
    Participant

    Yeah, that’s what I want. But I’m completely lost now. No idea why this doesn’t work for me.

    Are you sure there’s nothing else I need to do? Just copy the reply.js file into a folder called js under my child theme? And that’s it? I can’t understand why it wouldn’t work even when I created a brand-new subdomain, and did no other modifications: just installed wordpress, added bbpress, created bare child theme and added reply.js. What else could be interfering with this function!?

    I tried also simply using twentysixteen theme and adding reply.js to the existing js folder (in case there was some issue with using a child theme) and this didn’t work either.

    Here’s my bare test site: http://staging-nexus.universaltheosophy.com/forums/topic/test-topic/

    Try logging in:

    [mod note: aaand it’s gone.]

    #178404

    In reply to: Multiple Forums

    Robin W
    Moderator

    you should find this plugin will do that

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

    within the plugin set your users into two private groups, and allocate a forum/forums to each group.

    Users will then be able to see and interact with only their forums inc. search.

    davidcom
    Participant

    Wordpress version: 4.6.1
    bbpress version: Version 2.5.10
    Link to site: http://frenchamericancenter.com/blog/
    I confirm that issue still happens with Twenty Fourteen

    Hello.

    I’ve had the plugin, Yet Another Star Rating installed on my blog for quite a while now. Today I decided to install bbpress. Normally, once bbpress is installed, it creates new options in the dashboard menu (Forums, Subjects…). My problem is, when the “Yet Another Star Rating” plugin is activated, the bbpress menu items disappear from the dashboard menu (Forums, Subjects,…).

    Can you give any advice on how to have both plugins installed and working?

    #178395
    matrixd
    Participant

    Hi, community, I need some help please.

    My instalation is a wordpress Multisite with buddypress and bbpress with 20.000 members / 7.000 topics / 425.000 posts. I use the last version of wordpress, buddypress and bbpress

    1. I need to move my bbpress http://www.e-artemis.gr/forumz to subdomain oldforum.e-artemis.gr and keep it close from posting.
    2. I need to install a fress bbpress to http://www.e-artemis.gr with the same members.

    Is there anyway to do it harmless!

    Thanks
    Kostas

    #178384
    james8181
    Participant

    Ahhh man. i just tried to deactivate the bbpress and the bbpress UI plugins to test something and it killed my site.

    http://www.clashingbeavers.com just throws up:

    Fatal error: Call to undefined function bbp_get_dynamic_roles() in /home/clashing/public_html/wp-content/plugins/bbp-style-pack/css/styles.php on line 3086

    I cant even get to the wordpress dashboard.

    Please help!!

    #178371
    Robin W
    Moderator

    I didn’t realise you were trying to do so much

    suggest you download my plugin

    https://wordpress.org/support/plugin/bbp-style-pack

    and then come back if you still have stuff needed.

    #178365
    Robin W
    Moderator
    #178360
    james8181
    Participant

    Hello,

    When any user posts in any forum the following error messages appear, however the message DOES actually post. Anyone know what is causing this problem? and how to fix it. I am not a programmer so the code does not mean much to me

    Warning: call_user_func_array() expects parameter 1 to be a valid callback, class ‘BBP_Admin_Replies’ does not have a method ‘update_reply’ in /home/clashing/public_html/wp-includes/plugin.php on line 524

    Warning: Cannot modify header information – headers already sent by (output started at /home/clashing/public_html/wp-includes/plugin.php:524) in /home/clashing/public_html/wp-includes/pluggable.php on line 1174

    WordPress 4.6.1
    bbpress Version 2.5.10
    Beaver Builder Child ThemeVersion: 1.0
    http://clashingbeavers.com/beaver-forums/ (although the forums are hidden when not logged in)

    Thanks for you help

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