Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 4,076 through 4,100 (of 64,487 total)
  • Author
    Search Results
  • #214372
    Robin W
    Moderator
    #214366
    Robin W
    Moderator

    so at the bottom of this for instance – providing you are logged in !

    Requests & Feedback

    #214330
    Milan Petrovic
    Participant

    Hi,

    Enabling TinyMCE is just one step, bbPress uses filters to limit the set of tags and attributes allowed, and for participants, it can be very limiting. In this case, bbPress doesn’t allow the ‘style’ attribute in HTML. A lot of things TinyMCE does require various HTML tags support and support for ‘class’ and ‘style’ attributes.

    I have support for this in my GD bbPress Toolbox Pro plugin. Or, if you prefer coding the solution, check out ‘bbp_kses_allowed_tags’ filter for bbPress allowing you to pass modified list of HTML tags and attributes to use instead.

    Regards,
    Milan

    #214328
    itspriyanka
    Participant

    I am using bbpress for my website which is in development phase right now. One of my forum topics can be accessed here: https://drf.learnwise.in/forums/topic/retinitis-pigmentosa/. I am using visual editor by adding this code in my functions.php:

    function bbp_enable_visual_editor( $args = array() ) {
    $args[‘tinymce’] = true;
    return $args;
    }
    add_filter( ‘bbp_after_get_the_content_parse_args’, ‘bbp_enable_visual_editor’ );

    All the formatting options except alignment are working fine. For alignment, it show the HTML tags as well after posting; as you can see in the forum.

    Can someone let me know how to solve this?
    Thanks,
    Priyanka

    #214325
    ricks03
    Participant

    Thanks!

    I’ve tried this to no avail.

    I ‘m using the responsive theme, with a child theme. I take the full-width-page.php from the themes/responsive folder, copy it to /themes/my-responsive/bbpress.php

    But nothing changes? that should work?

    #214322
    sunpavi
    Participant

    I do not want the participants to reply to the topic I posted in bbpress topic. I want it to be a closed loop. I just want the participants to just view the topics but not reply to the topic. Is there any setting that I can use to hide the bbp-reply-form for all participants?

    #214311
    2cats
    Participant
    #214310
    2cats
    Participant

    Just thought I would post the conclusion here: although the hosting company (which is quite reliable) showed me in the server settings that emails and bcc’s are unlimited, I installed the WP Mail SMTP plugin (pro) with the email log and could clearly see bcc’s were being curtailed somehow. So, I added the asynCRONoug bbPress Subscriptions plugin and it works like a charm. Problem solved. Thank you so much for your assistance.

    #214305
    Chuckie
    Participant

    Don’t get me wrong. My own site is fine 100%. BBPress in itself must be ok. But this literal website has issues.

    #214304
    Mike Witt
    Participant

    I am curious to hear more about the iPhone issue. We have ongoing problems that *appear* to be related to iPhones on both of our WP sites. And the problems are not just related to bbPress. People have trouble posting on forums, but they also have trouble signing up to the site (through MemberPress) and sometimes simply viewing blog posts.

    I don’t personally have any Apple devices, and these problems are a mystery to me. So if there’s any more information available, I’d love to hear it.

    Chuckie
    Participant

    I am not sure if it is related but things like videos can trigger moderation to kick in. I have personally switched off moderation since the current mechanism is by no means efficient. Any topic / reply that goes to moderation just vanishes and the user is not informed. This is clearly not OK but I have no idea to improve it in the bbPress code.

    There is a ticket open for this issue for several months now but I don’t think it is being worked on. You can go into your discussion settings and adjust certain properties that affect when content will trigger moderation. This is in your WordPress settings.

    But like I say, I switched off moderation all together due to the confusion is causes for users. There are other topics on here with info on how to do that.

    I am not saying it is the cause of your problem. Just wanted to mention it.

    #214296
    Robin W
    Moderator
    #214292
    ricks03
    Participant

    My current theme (Responsive) comes with several templates.

    By default, bbPress appears to be using the (unsurprisingly) “Default” template, and I just want to change bbPress to use the “Full Width” template. I don’t see a setting for that. Possible?

    Can I create a page with a shortcode or something?

    #214291
    Babak Fakhamzadeh
    Participant

    I provide a workable solution in this thread:

    Add custom tab to profile page

    #214290
    Babak Fakhamzadeh
    Participant

    I provide a workable solution in this thread:

    Add custom tab to profile page

    #214289
    Babak Fakhamzadeh
    Participant

    Here’s my solution. It’s not as neat as it should be, but it works, without mucking around in bbpress or its core functions.

    In this example, I’m adding a tab/page for ‘events’. My theme is ‘rebalance-child’.

    1. Copy user-profile.php and user-details.php to /bbpress/ in your theme folder.

    2. Near the top of user-details.php, add something like this:

    $profile_sub = "";
    if (isset($_GET["sub"])) {
    	$profile_sub = $_GET["sub"];
    }
    if ($profile_sub != "events") {
    	$profile_sub = "";
    }

    3. Replace the code that displays the first bullet (‘Profile’) with something like this:

    			<li class="<?php if ( bbp_is_single_user_profile() && $profile_sub == "" ) :?>current<?php endif; ?>">
    				<span class="vcard bbp-user-profile-link">
    					<a class="url fn n" href="<?php bbp_user_profile_url(); ?>" title="<?php printf( esc_attr__( "%s's Profile", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>" rel="me"><?php esc_html_e( 'Profile', 'bbpress' ); ?></a>
    				</span>
    			</li>
    			
    			<li class="<?php if ( bbp_is_single_user_profile() && $profile_sub == "events") :?>current<?php endif; ?>">
    				<span class="vcard bbp-user-profile-link">
    					<a class="url fn n" href="<?php bbp_user_profile_url(); ?>?sub=events" title="<?php printf( esc_attr__( "%s's Events", 'rebalance-child' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php esc_html_e( 'Events', 'rebalance-child' ); ?></a>
    				</span>
    			</li>

    4. Update user-profile.php to display something else, based on the value of the ‘sub’ query string parameter. So, something like this:

    <?php
    	if ($_GET["sub"] == "events") {
    		//stuff related to events//
    	}
    	else {
    		//regular stuff//
    	}
    ?>

    Above, ‘//regular stuff/’ would be the content that was in user-profile.php before.

    sunpavi
    Participant

    I uploaded a video in the replies section of the topic in bbPress. After publishing the video, it redirected me to an HTTP 500 error page and after refreshing the admin, when I went back the Replies secton, the answers section was showing blank even though the answers count is showing

    Please help

    #214266
    Robin W
    Moderator

    bbpress registration simply passes that detail to wp_registration. You have a plugin ‘easy hide login’ that might be hiding the wp registration so the referral dies not work.

    Try deactivating and see if that fixes.

    If so, that plugin might have a registration link that you should use instead.

    #214254
    Chuckie
    Participant

    I use this code on my website

    // ==============================================================
    // Tweak MCE Toolbars (bbPress Editor)
    function ajt_enable_visual_editor( $args = array() ) {
      global $bsp_style_settings_form ;
      $args['tinymce'] = true;
      $args['teeny'] = false;
      if ($bsp_style_settings_form['Show_editorsactivate'] == 1)  $args['quicktags'] = false;
      return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'ajt_enable_visual_editor' );
    // ==============================================================
    

    Works for me.

    #214252
    Rasyr
    Participant

    I came to bbpress from SMF forums, and one thing I miss are seperate post and reply pages (with button links to them (i.e. a New Topic link that goes to a post page that has ONLY the post box (and accessories) on it

    And on the page of a given thread, a reply butotn that goes to a page similar to the post page (but contains the previous posts on the topic with quote links to quote a given post into the reply text box.

    Both of which would remove the editor from the forum/topic pages.

    I cannot seem to find any plug-ins that allow this. Anybody have any ideas?

    #214247
    nedhoste
    Participant

    Hi Robin

    Thanks for coming back on this – I tried the permalinks and nothing changed. The short code is [bbp-register] copied from the BBpress shortcakes page.

    I will have look through the link you sent as well

    Ned

    #214242
    nedhoste
    Participant

    Hi – I am new to BBP and this may be a really obvious question.

    I am running Avada 7.02 on WP 5.5.1

    I have set up the registration and lost password and forum pages – I have allowed anyone to register in settings – however when I test the registration page, it allows me to fill in the Username and email panels. But when I click the register button the page redirects to a 404 page and the registration does not complete. (If the solution is blindingly obvious, please be gentle! but still let me know)

    Any ideas, solutions gratefully received.

    The plugins live on the site are
    ManageWP – Worker by GoDaddy
    WPML Multilingual CMS by OnTheGoSystems
    Yoast SEO Multilingual by OnTheGoSystems
    bbPress by The bbPress Contributors
    Contact Form 7 Multilingual by OnTheGoSystems
    Cookie Notice by dFactory
    Ditty News Ticker by Metaphor Creations
    Ditty Twitter Ticker by Metaphor Creations
    Easy Hide Login by Arshid
    Feed Them Social – for Twitter feed, Youtube, Pinterest and more by SlickRemix
    Avada Builder by ThemeFusion
    Avada Core by ThemeFusion
    Avada Custom Branding by ThemeFusion
    LiteSpeed Cache by LiteSpeed Technologies
    Mailchimp for WooCommerce by Mailchimp
    MC4WP: Mailchimp for WordPress by ibericode
    Wordfence Security by Wordfence
    Yoast SEO by Team Yoast
    WPForms Lite by WPForms
    MailChimp for WordPress Multilingual by OnTheGoSystems
    WPML Media by OnTheGoSystems
    WPML String Translation by OnTheGoSystems
    WPML Translation Management by OnTheGoSystems

    The site address is micro-oiseau.com

    Many thanks in advance.Have a great weekend

    Ned

    #214239
    jdp2
    Participant

    In the new topic or reply form I don’t want to show which html-tags can be used.

    “You may use these HTML tags and attributes:” followed by all html tags that can be used.
    The last part is shown in a green block, like this form of the BBpress forum.

    Is it possible to remove that part without using a child theme?

    I use WP 5.5.1, BBpress 2.6.5, Ixion-theme 1.1.5
    Forum Oranjebuurt

    #214237
    Mark Smith
    Participant

    Private groups
    By Robin Wilson
    and you can also use bbPress

    Hot Themes
    Participant

    Hello,

    We have bbPress and Yoast (latest versions) on our website. Today, using Semrush’s site audit, we discovered hundreds of pages without page titles (actually, the page title is there, it shows only our website name). All these pages are profile pages of our forum participants, including their topics, replies, engagements, and favorites pages.

    We have tried to fix this using the “BBP Improvements for Yoast” plugin (old version 1.0) and it added page titles to the profiles pages, for example, “username’s Profile – Site name”. However, the titles are again the same for topics, replies, engagements, and favorites page (“username’s Profile – Site name” everywhere). Ideally, they would be “username’s Profile – Topics – Site name”, “username’s Profile – Replies – Site name”, etc.

    Any help to fix this problem will be appreciated. Our forum link is HotThemes forum

    Best regards,
    Milos

Viewing 25 results - 4,076 through 4,100 (of 64,487 total)
Skip to toolbar