Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 776 through 800 (of 7,561 total)
  • Author
    Search Results
  • #270997
    Robin W
    Participant

    @r-a-y

    I know this is an old thread, but I can’t get your excellent code working for tinymce on topic/reply front end.

    Works fine in tinymce on backend, Works fine for textarea on front end, but not timymce on front end. I need it working on frontend in forums.

    Is there a more up to date version that works with current bp and bbp, or do you have any ideas how to get it working.

    the code I am using is

    /**
     * Enable at-mention autocomplete on BuddyPress group forum textareas.
     */
    function my_enable_mentions_in_group_forum_textareas( $retval ) {
    	$bbpress = false;
    
    	// Group forum reply.
    	if ( bp_is_group() && 'topic' === bp_action_variable() && bp_action_variable( 1 ) ) {
    		$bbpress = true;
    	}
    
    	// Group forum topic.
    	if ( bp_is_group() && bp_is_current_action( 'forum' ) ) {
    		$bbpress = true;
    	}
    
    	// Do stuff when on a group forum page.
    	if ( true === $bbpress ) {
    		$retval = true;
    		
    		// Ensure at-mentions autocomplete works with TinyMCE for bbPress.
    		add_filter( 'tiny_mce_before_init', 'cac_enable_mentions_in_group_forum_tinymce', 10, 2 );
    	}
    
    	return $retval;
    }
    add_filter( 'bp_activity_maybe_load_mentions_scripts', 'my_enable_mentions_in_group_forum_textareas' );
    
    /**
     * Ensure at-mentions autocomplete works with TinyMCE for bbPress.
     *
     * @param array  $settings   An array with TinyMCE config.
     * @param string $editor_id Unique editor identifier, e.g. 'content'.
     * @return array  $mceInit   An array with TinyMCE config.
     */
    function cac_enable_mentions_in_group_forum_tinymce( $settings, $editor_id ) {
    	// Add bbPress' editor IDs to enable BP mention autocomplete.
    	if ( 'bbp_topic_content' === $editor_id || 'bbp_reply_content' === $editor_id ) {
    		$settings['init_instance_callback'] = 'window.bp.mentions.tinyMCEinit';
    	}
    
    	return $settings;
    }
    Anonymous User 13302461
    Inactive

    As an admin and people @mention me a lot on bbpress, I’m getting a ton of emails when people keep quoting a post that I was mentioned in.

    Please can we disable mentions when they are inside a quote? THe person has already been notified when the OP did the mention. Please remove this bombardment of emails when users keep quoting the OP.

    Thank you. Also I have no option in my profile settings (on my website) about mentions, so I cannot even disable email notifications. Maybe as I have activity stream disabled?

    #270977
    sasenzon
    Participant

    Someone at bbpress told me to come here. I wish I could figure out the answer.

    My intent was to have it only available to users in this class.
    I set it up as hidden in the manage settings on the front end.
    On the dashboard however, it is set to open public.
    Also – it is in a group that I set up as hidden.
    However, the dashboard it shows that it is in a public group.

    Perhaps there is a conflict here?
    I am self-taught at buddypress. Would love to learn how to be an expert.

    #270961
    David Cavins
    Keymaster

    You might try the bbPress support forum for more specific help. https://bbpress.org/forums/

    #270951
    danperis
    Participant

    First of all, I am new to this world.
    I have a simple webpage with a forum. WP 4.9.4. buddypress 2.9.3. bbpress and other plugins, among which BuddyPress Group Email Subscription.
    about 200 users (but little activity, less than 300 topics, about 1000 posts).
    When someone posts a new topic/reply it takes minutes from pressing “submit” to seeing the page refreshed with the message posted.
    by debugging it a bit, I discovered that it gets stuck in a for loop in the BuddyPress Group Email Subscription. I wonder if this is normal, but I saw that several people had this issue with that plugin, and I also saw that the developers are not very responsive.
    Anyway, this is my point: the BuddyPress Group Email Subscription function is included in this way:
    add_action( ‘bp_activity_after_save’ , ‘ass_group_notification_activity’ , 50 );
    So, I suppose that the post is firstly saved, then the function is called.
    However, users do not know this, they just see that the page takes minutes to refresh. And thus they are tempted to stop the loading and resubmit the post (generating in fact duplicates).
    My question is: is it possible to refresh the page after the post is saved, and only later call the BuddyPress Group Email Subscription function? Like if the would be a bp_activity_after_post or bp_activity_after_refresh option?
    Or other suggestions on how to solve the issue? Are there other ways to choose whether to receive emails after each post/reply or daily/weekly digests?
    many thanks!

    #270942
    sasenzon
    Participant

    bbpress – 2.5 14-6684
    wp 4.9.4

    The site is members.institutechiro.com

    When some users try to post on a forum it either resets to the main forum page without posting or does so and leaves an error message: no activity found please try another filter
    It doesn’t seem to happen all the time. Can you help? THanks.

    #270916
    agenceglanum
    Participant

    Hi all,

    We are encountering a problem when we want to crop the image profile -> “There was a problem cropping your profile photo”.
    We have the same configuration in our development environment (WAMP), and the crop works well.

    Any idea?
    Thanks!

    WP version: 4.9.3
    Theme: Woffice 1.7.2
    BBpress version: 2.5.14-6684
    Site: https://extranet.clipnclimb.biz/

    Gomle
    Participant

    First of all, a big thank you to all contributors for this useful and traight out mindblowing software! And for free! Wow! :

    In general I am not much of a coder, but I can understand some, and I have two questions:

    QUESTION 1.
    About buddypress bubble notification (not email) when there is a bbpress answer to a topic you either started or are subscribed to:
    – This does not work on my new site – should it? As buddypress and bbpress are so welded together, it would surprise me if this “bubble notification on forum replies” is not thought about before, but if it isn’t – what would I want to do, to notify users via the bubble when someone replies to a topic they either started or subscribed to?
    – I have enabled the notification addon in buddypress, and I reveive emails, it just doesn’t notify via the bubble.

    QUESTION 2.
    When a new member register, and is active – either in bbpress or in buddypress / groups or updates his profile or something else – he is still not visible under sitewide activity: New members. This does not work on a clean install of newest wordpress, newest buddypress and whatever theme. I’ve tested many.

    Is this a bug, or do I have to do something to the settings to make this work?

    #270862
    sebaurel
    Participant

    Hello,

    I have a notification problem from bbpress to buddypress.
    When a user responds to a topic, the author receives an empty notification!
    Screenshot

    How can I delete or fix it?

    Wordpress 4.9.4
    bbPress 2.5.14
    BuddyPress 2.9.3

    Other plugins used:
    BuddyPress Member Reviews
    GEO my WP
    MediaPress

    #270845
    jameshh93
    Participant

    Or if not how can I just turn off the rel nofollow for all users then?

    Posted on Bbpress forums and looks as though the solution provided their for getting rid of nofollow seem to get ignored when buddypress activated see link to forum thread

    Remove rel=”nofollow” for admin only?

    #270727
    sasenzon
    Participant

    Hello. I just started using a new forum with my bbpress.
    bbpress – 2.5 14-6684
    wp 4.9.4
    The site is members.institutechiro.com

    A user just forwarded me his email and it is full of code. Example.
    <p class=”p1″><span class=”s1″>Great first week content.</span></p>
    <p class=”p1″><span class=”s1″>I was interested to know that an intellectual generation has 33 integers; making me a 4th gen chiro.</span></p>

    please help.
    Thanks.
    Simon

    sasenzon
    Participant

    Custom Profile Filters for BuddyPress question

    I am trying to use this plugin. I put brackets around words in the fields.

    But when I to to “view” profile – and click the words I get a page not found.

    I don’t see any suggestions on the plugin help page.

    If I click on a profile item that was “mandatory” then it takes me to the proper member search page. But the optional profile items that the plugin is designed to turn into search terms – leads me to page not found.
    bbpress – 2.5 14-6684
    wp 4.9.4

    The site is members.institutechiro.com

    #270709
    sandra17
    Participant

    Hello

    Following the installation of Buddypress, many users do not receive the activation email, although their account seems to create on the site … Moreover, it seems that this problem concerns those who register with their mobile phone ..an activation key is requested…What is going on? Thanking you in advance for your precious help because we do not understand the mistake…

    Wordpress 4.9.3
    bbPress 2.5.14-6684

    Sandra

    #270601
    Abolfazl Ahani
    Participant

    Thanks Paul

    I hope you are doing well.

    There is still no sign of this long-awaited enhancement.

    Best Regards

    #270571
    Paul Wong-Gibbs
    Keymaster

    If you’ve found a way to change the permalinks directly via bbPress (the /forums/ permalinks), then you know the plugin’s worked. If they’re not working for the permalinks on the Groups Forum screen, you’re probably out-of-luck.

    Unfortunately, most of the permalinks through BP are hardcoded and are very, very tricky to customise.

    #270570
    Paul Wong-Gibbs
    Keymaster

    If you want a traditional forum, you want to use bbPress not BuddyPress. See https://bbpress.org.

    #270567
    Abolfazl Ahani
    Participant

    Is it possible to change buddypress group forum permalink structure?
    Like : example.com/groups/sample-group/forum/topic/%post_id%/
    last part will be %post_id%, instead of /%post_name%/.

    The default structure is creating problem in some languages. I used Persian to the topics name. Link looks like:
    http://team.joyofpersian.com/groups/via-stories/forum/topic/%D8%A2%D8%AE%D8%B1%DB%8C%D9%86-%D8%A8%D8%B1%DA%AF-%D8%AF%D8%A7%D8%B3%D8%AA%D8%A7%D9%86%DB%8C-%DA%A9%D9%88%D8%AA%D8%A7%D9%87-%D8%A7%D8%B2-%D8%A7%D9%88-%D9%87%D9%86%D8%B1%DB%8C/

    I am using the latest versions of WP, BP, bbPress
    I tested these plugins:

    both work correctly in forums that are not associated to a buddypress group, the link is like:
    [sitename]/forums/topic/[topic-id]/
    but when forums are associated to a group, the link is like:
    [sitename]/groups/[group-name]/forum/topic/[topic-name]/

    I found the same question in this topic, with no reply:

    #270550
    iesbakersfield
    Participant

    I have a fresh install of the latest wordpress and bp. However, when i visit the register page and try registering, i get redirected to the homepage and nothing is under pending users. No email confirmation, nothing.
    I also have anyone can register and I also have permalinks to Post name.

    I also tried adding a primary field and nothing shows up on the registration page for custom fields. Thanks for your help!

    1. Which version of WordPress are you running?
    Version 4.9.2

    2. Did you install WordPress as a directory or subdomain install?
    Subdomain

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    No, fresh new install.

    6. Which version of BP are you running?
    Version 2.9.3

    7. Did you upgraded from a previous version of BP? If so, from which version?
    No

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    No, fresh install, only BP.

    9. Are you using the standard WordPress theme or customized theme?
    Standard

    10. Which theme do you use ?
    Standard Twenty Seventeen

    11. Have you modified the core files in any way?
    Nope

    12. Do you have any custom functions in bp-custom.php?
    Nope

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    Nope

    14. Please provide a list of any errors in your server’s log files.
    None

    15. Which company provides your hosting?
    IES Central

    16. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Apache

    #270538
    Scott Hartley
    Participant

    Actually, I believe this is in the correct space.

    Currently, my understanding is in BuddyPress we are making an association between the forum that you add during the setup screen and then retrieving the topics of the associated forum.

    Which means this is, in fact, a BuddyPress issue. However, I don’t know how much of an issue this is because while subforums are possible within bbPress, the implementation in BuddyPress has no way to add Subforums (or to even create a forum as a category for that matter). This simply means the use case would only be those who have an administrator level and can create those from the backend.

    #270537
    Andrew Tegenkamp
    Participant

    I cross posted at https://bbpress.org/forums/topic/sub-forums-inside-a-group/ since this is that area where they work with each other, but any guidance even on where to get started to develop this as an option or feature is certainly appreciated.

    Thanks.

    #270523
    Venutius
    Moderator

    Hi,

    This is a bbPress question, you need to ask on their forums.

    Shashi Kumar
    Participant

    Hi @ngoegan
    Above code is working fine on my install. I am not facing a redirection issue on forum page. If you closely watch the code there is an if statement which checks if we are on register page.
    You can do a few things
    1. Clear your cache if using a caching plugin.
    2. Clear your browser cookies and check
    3. Go to settings > permalink and re save
    4. Change to default theme and deactivate all plugins except bbpress and buddypress and place the code in theme’s functions.php file and check
    Happy Debugging 🙂

    ngoegan
    Participant

    Oh no! I’m having redirect issues again 🙁

    My Events Page (The Events Calendar plugin) and My Forum Page (bbpress) are both redirecting to the Activity page now. All others are fine – groups, members, etc.

    I tried re-setting them in the navigation menu, I tried disabling plugins, I’m not sure why your code is causing pages other than ‘register’ to re-direct to activity?

    #270455
    Venutius
    Moderator

    This sounds lie a bbPress question, you are probably better off asking there.

    valerietst
    Participant

    Hello everyone. I really need some help here.
    So I’ve had issues with not receiving (and users not receiving) notification emails before. I’ve done the whole deactivating plugins to see what is not compatible, I’ve repaired emails under TOOLS. I’ve even uninstalled and reinstalled BuddyPress and bbpress, but for whatever reason I cannot fix this problem this time. Also, while trying to fix this problem myself, I realized that if you are using a YAHOO account then you will receive notifications, but it is not working at all for gmail or Texas University email accounts. I became aware of this problem today and it was working perfectly fine last Friday. Please, if someone can help me with this problem it would be greatly appreciated!

Viewing 25 results - 776 through 800 (of 7,561 total)
Skip to toolbar