Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 3,501 through 3,525 (of 64,452 total)
  • Author
    Search Results
  • #217838
    Chuckie
    Participant

    Hi

    My discussion is here:

    https://github.com/EnlighterJS/Plugin.TinyMCE/issues/14

    To summarize, I use EnlighterJS to display code blocks inside WordPress and bbPress. It is fantastic at what it does. However I have noticed odd behaviour if someone hits “Quote” and quotes a code block. You can see an example of what it looks like in the linked discussion.

    It seems that the quote shortcut might nee some updating to cater properly for EnlighterJS code blocks. I can’t remember if this particular shortcode is part of bbPress or part of the bbPress GD Toolkit.

    Julia
    Participant

    I have plan to link bbpress to events manager plugin.
    The path is [bbpress]⇒[WP calendar]⇒[events manager].
    The participants look at topic in bbpress at first.
    Next he visits WP calendar and then events manager booking-form at last.

    How to send the bbpress topic title which he visited
    to the next next page(booking-form in events managaer)?

    Do I have to use filter or actions in events manager?

    The code ongoing

    
    add_filter('events-manager-hook', 'bbpress_title', 20);
    function bbpress_title($topic_title,$topic_id){
    
    	global $my_global;  // previous-topic title and topic title in the events manager 	
    
    	$topic_id = bbp_get_topic_id();
    	$topic_title['title']=$topic_id -> ???;
    	$my_global = get_topic_title();? ⇒ error!!
    
        }
    return  $topic_title;
    }
    

    Or do you have any other plans?

    #217814
    DianaN
    Participant

    How to completely disable posting for our forums?

    I had a moderation plugin installed that did this, but it has been abandoned.

    Appreciate your help and guidance,

    Diana
    https://standupgirl.com
    WP: 5.6
    BBpress: 2.6.6

    #217810
    hollywoodave
    Participant

    Hi,

    i’ve a problem with media upload. I use bbPress 2.6.6 and WordPress 5.6
    Users (Subriscriber Site + Partecipant Forum) cant’upload media file from topics or replies. The messagge error is: “You dont have permission to attach files to this post” on WordPress”.
    They only able to do from their dashboard but i use a plugin in order to hide the wordpress toolbar.
    I have installed PublishPress Capabilities and GD bbPress Attachments.

    The first with this setting:
    Subscriber: create media, media edit, upload files.
    Partecipant: create media, media edit, upload files, assign topic tags, edit replies, edit topics, participate, publish replies, publish topics, read private forums, spectate.

    The second is a solution, but i want that my user insert their media in the reply.

    Ps. Administrator and Moderator are able to upload media from Topic and Replies.

    Can you please help me?

    Thank You,

    Davide

    krzysztofzpom
    Participant

    Hello:)

    We’ve been using bbres for a while, and we want users to be able to email each other directly. I would like the e-mail address to be displayed instead of the ip number under the every user.

    But I wish they were hidden like here

    How to hide the author of posts for unlogged users.

    I am asking for help.

    WordPress 5.5.1
    Wersja 2.6.5
    http://tarnowskiegory.com.pl/forum/

    #217802
    Robin W
    Moderator

    bbpress forum utility pack has in it

    \bbp-jp-utility\templates\form-custom-signup.php

    which is a replacement for form-user-register, and takes over, so your version is not used.

    you should ask the author about modifying this template, he may have a hook you can use, but if you do end up modifying the plugin template, you will need to repeat this everytime that plugin is updated.

    #217800
    smith512
    Participant

    I’m using
    bbpress forum utility pack
    GD bbpress Attachments
    WP ULike
    EWWW Image Optimizer
    Akismet Anti-Spam

    frenchlemans
    Participant

    Ok, I saw the new translation files in https://translate.wordpress.org/projects/bbpress/
    everything works at the level of the integration of the missing files.
    For me problem solved.
    Thank you

    frenchlemans
    Participant

    Hello,

    With Notepad ++ I added to the Po file a French translation for an expression contained in /plugins/bbpress/includes/topics/functions.php.
    I then opened the Po file to validate the translation and generate the Mo file, they are up to date in languages ​​/ plugins / bbpress-fr_FR.po and also bbpress-fr_FR.mo.
    The problem is that I do not see the translation of this expression on my site, all the others of the same Mo file are present.

    I have looked at many expressions in this “functions.php” file and many of them have never been translated.

    What is the problem ?

    Thanks for your future answers.

    Regards

    Line 156 of functions.php :
    // No topic title
    if ( empty( $topic_title ) ) {
    bbp_add_error( 'bbp_topic_title', __( 'Error: Your topic needs a title.', 'bbpress' ) );
    }

    #217793
    Robin W
    Moderator

    what other bbpress related plugins are you using ?

    #217792
    smith512
    Participant
    <?php
    
    /**
     * User Registration Form
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    // Exit if accessed directly
    defined( 'ABSPATH' ) || exit;
    
    ?>
    
    <form method="post" action="<?php bbp_wp_login_action( array( 'context' => 'login_post' ) ); ?>" class="bbp-login-form">
    	<fieldset class="bbp-form">
    		<legend><?php esc_html_e( 'Create an Account', 'bbpress' ); ?></legend>
    
    		<?php do_action( 'bbp_template_before_register_fields' ); ?>
    
    		<div class="bbp-template-notice">
    			<ul>
    				<li><?php esc_html_e( 'Your username must be unique, and cannot be changed later.',                        'bbpress' ); ?></li>
    				<li><?php esc_html_e( 'We use your email address to email you a secure password and verify your account.', 'bbpress' ); ?></li>
    			</ul>
    		</div>
    
    		<div class="bbp-username">
    			<label for="user_login"><?php esc_html_e( 'Username', 'bbpress' ); ?>: </label>
    			<input type="text" name="user_login" value="<?php bbp_sanitize_val( 'user_login' ); ?>" size="20" id="user_login" maxlength="100" autocomplete="off" placeholder="半角英数字" />
    		</div>
    
    		<div class="bbp-email">
    			<label for="user_email">大学のメールアドレス</label>
    			<input type="text" name="user_email" value="<?php bbp_sanitize_val( 'user_email' ); ?>" size="20" id="user_email" maxlength="100" autocomplete="off" />
    		</div>
    
    		<?php do_action( 'register_form' ); ?>
    
    		<div class="bbp-submit-wrapper">
    
    			<button type="submit" name="user-submit" class="button submit user-submit"><?php esc_html_e( 'Register', 'bbpress' ); ?></button>
    
    			<?php bbp_user_register_fields(); ?>
    
    		</div>
    
    		<?php do_action( 'bbp_template_after_register_fields' ); ?>
    
    	</fieldset>
    </form>
    

    is this okay?

    #217791
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users

    Health Check & Troubleshooting

    Then come back

    #217781
    smith512
    Participant

    Yes, that is there.

    Why my form-user-register.php is not update?

    Also, I tried to directly add code to form-user-register.php in bbpress (not child theme’s bbpress), the result was not changed.

    #217776
    Robin W
    Moderator

    ok, so that file should be :

    wp-content/themes/%your-theme-name%/bbpress/form-user-register.php

    where %your-theme-name% is the name of your theme

    #217774
    smith512
    Participant

    Yes. I made ‘bbpress’ directory by following your manual.
    I looked at this

    I’m sorry for my poor English.
    Thanks.

    #217772
    Robin W
    Moderator

    so are these templates in a folder called ‘bbpress’ within your child theme?

    #217770
    smith512
    Participant

    Yes. I copied bbpress’s template to my child theme, and not I put my original template but I add codes to bbpress’s templates.

    For example,
    before “form-user-register.php”
    <input type="text" name="user_login" value="<?php bbp_sanitize_val( 'user_login' ); ?>" size="20" id="user_login" maxlength="100" autocomplete="off" />

    after “form-user-register.php”
    <input type="text" name="user_login" value="<?php bbp_sanitize_val( 'user_login' ); ?>" size="20" id="user_login" maxlength="100" autocomplete="off" placeholder="half-width characters" />

    hardel
    Participant

    Hi guys,

    When browsing a user’s forum replies, page 1 works as expected:

    https://rockclass101.com/members/karenj/forums/replies/

    If you click “page 2” or “3”, then the url it generates results in a 404:

    https://rockclass101.com/members/karenj/page/2/

    It should be generating this url to work properly:

    https://rockclass101.com/members/karenj/forums/replies/page/2/

    —-

    This error is also happening for “topics started”. As you can see with this user’s page:

    https://rockclass101.com/members/lisadmh/forums/

    I’m using the latest version of WP & BBPress, but this error has existed for at least a year. Perhaps a bug?

    #217751
    uksentinel
    Participant

    Ok, So using BBPRESS and I have hit an issue when I use the BBP STYLE PACK shortcode [bsp-profile] to allow registered users to edit their profiles, the shortcode does not work.

    I believe it is because I have installed WordPress in a directory called /WP,

    So [bsp-profile] creates the hyperlink https://uktechhub.com/wp/forums/users/xxxxx

    but profiles are located at https://uktechhub.com/forums/users/xxxx/

    Is there any way to change how the shortcode [bsp-profile] points to the profiles without the /wp attribute added ?

    Thanks

    #217744
    loireenbateaux
    Participant

    Hi everyone,

    Does anyone know how can i remove “Create New Topic” at the bottom of my forum
    I want to disable “Create New Topic” in for all logon users
    I want to control the topics myself and only allow particpants to reply to topics that are in the forum.

    I’m using bbPress (2.6.6), bbp style pack (4.7.2)
    Thank you so much for any help

    #217701
    sagar702
    Participant

    Hi There,
    I was just searching for some existing topics through the search box of bbpress forum, but I think there is an error in the code so the existing topic not showing from there, could you please help me out, why so?

    #217698
    sasasasaaa
    Participant

    Hello,

    to try how pagination works I choosed in settings -> topic and reply per page:
    One for topic page and one for reply page.
    And I have choosen nested replies 4 levels deep.

    I have two topics:
    – 23 replies for the first topic
    – one reply for the second topic

    This is how my pagination looks:

    On forum page:
    Pagination shows 3 pages.
    1. page: shows 2 topics instead of one.
    2. page: shows only first topic instead of second and pagination shows two pages.
    3. page: message appears: “sorry now topics found” and no pagination

    On topic page:
    no pagination at all.

    What could might be the problem?

    I use wordpress: 5.6 and bbpress: 2.6.6

    Thanks a lot

    #217694

    In reply to: Preview

    Robin W
    Moderator

    only ones I know are

    Preview Post

    and I’ve not looked at either

    #217685

    Topic: Preview

    in forum Installation
    Gunivortus
    Participant

    There are forums where, after having written something to contribute, before definitely saving it, a preview can be viewed, in which the post is presented as it would be after saving it.
    Is this also possible in bbpress? (If yes, how / where?)

    #217659
    Robin W
    Moderator

    bbpress just uses wordpress in the background for login. When login fails wordpress seems to take over.

    I added some code in

    bbp style pack

    dashboard>settings>bbp style pack>login failure

    to try and overcome this

Viewing 25 results - 3,501 through 3,525 (of 64,452 total)
Skip to toolbar