Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 3,626 through 3,650 (of 64,425 total)
  • Author
    Search Results
  • #216849
    simonlepamplemousse
    Participant

    ok it’s changing!

    by going under bbpress 2.5.14 I find the subscriptions to the forum in the progil, and I can unsubscribe and subscribe and the subscriptions page takes it into account

    on the other hand as soon as I pass to the 2.6 and the following ones it does not work any more, I lose the posting of the subscriptions to the forum (but not to the subjects which still work)

    #216848
    simonlepamplemousse
    Participant

    2.6.6

    but the forum under bbpress dates from December 2016.
    I thought of modifying the version of bbpress
    but I could not find the previous versions for download, including the one under 2.5

    #216842
    simonlepamplemousse
    Participant

    I have to re-explain that even reinstalling bbpress, setting the default theme, and disabling any other plugins, the action of subscribing to a forum doesn’t work.

    Very precisely, on the forum in question it is clearly indicated Subscriber. But in bbpress profile, the Subscriptions page does not indicate any forum and there is no notification.

    Suddenly, I dry

    #216840
    defiance12
    Participant

    I just wanted to say a BIG thank you to @johnjamesjacoby and the rest of the fabulous team for creating and maintaining this excellent free forum software! My forums at https://nerdpunk.com.au/forum/cyberpunk-2077/ look and function better than I could have possibly dreamed. They are super fast and responsive and with the support of the community with the various plugins available, the customizations that you can do with bbPress is almost limitless!

    Also, I wanted to shout out @robin-w, his bbp style pack plugin is fantastic. I have performed many custom css improvements with this addon, and I see him posting regularly on these forums assisting others. A big thank you to you sir!

    One request, if you guys deem my forums to be on par with the other forums showcased at https://bbpress.org/about/examples I’d appreciate a link to my forums their too, so other potential users can see what this great open-source forum can do πŸ™‚

    #216831
    simonlepamplemousse
    Participant

    I disabled the theme and plugins. They are all out of the question.

    That’s what it seemed to me, they are all out of the question.

    In addition, here I did the test, the error also exists. The error is therefore linked to the bbpress plugin.

    #216825
    Robin W
    Moderator

    If you wish to change bbpress templates, you only need worry about those you want to change for instance if you wished to change user-details.php you would

    find
    wp-content/plugins/bbpress/templates/default/bbpress/user-details.php

    transfer this to your pc and edit

    and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

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

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/user-details.php

    bbPress will now use this template instead of the original

    #216820
    yt
    Participant

    Hello
    Thanks for your solution.
    Please tell me in which file of my site’s theme or plugins\bbpress\templates\default must use?

    #216816
    yt
    Participant

    Hello

    I want a code to use in the function file of bbPress to hide all links in the content of forum’s topics and replies for visitors.

    I mean until a visitor is not logged in the forum, instead of displaying links, it shows a text message like “displaying links to members only” and a registration link to register and enter his account so that redirects to the last page in the topic or reply.

    Additional Explanation:

    I Use the code below:

    add_filter( 'the_content', 'content_link_for_user_snippets', 1 );
     
    function content_link_for_user_snippets( $content = '' ) {
        // Snippets.ir
        if( ! is_user_logged_in() ) {
            preg_match_all( "#<a(.*?)>(.*?)#i", $content, $matches );
            $num = count( $matches[0] );
            for( $i = 0; $i < $num; $i++ ) {
                $content = str_replace( $matches[0][ $i ], '<a href="' . ( get_permalink() ) . '"><span style="color:#F00;">[displaying links to members only]<span></a>', $content );
            }
        }
     
        return $content;
    }

    in My site’s Theme and word very nice but it doesn’t have any effect in form and couldn’t use it in bbPress function’ file.

    #216807
    muranomidwest
    Participant

    I’m confused as to why there is simply no featured image for Topics. This makes bbPress virtually unusable for any purpose other than tech support and ticket management. I would suggest there are better tools for that anyway.

    If you are trying to manage a blogging platform, every single post, in this case a topic, simply MUST have the option of attaching a featured image. Reasonable people could have always agreed to disagree how important the security aspects of uploading images are or are not, but that horse has long since left the barn.

    Assuming we either trust our community or really just don’t care about whatever concern drove this decision, why can’t we simply have a featured image that people who are uncomfortable can turn off?

    Can you offer even one single reason why we don’t have this?

    #216806
    Robin W
    Moderator

    this is what I might out in style pack

    add_action ('bbp_template_before_single_forum' , 'bsp_template_notices') ;
    
    add_action ('bbp_template_before_single_topic' , 'bsp_template_notices') ;
    
    function bsp_template_notices() {
    
    	// Bail if no notices or errors
    	if ( ! bbp_has_errors() ) {
    		return;
    	}
    
    	// Define local variable(s)
    	$errors = $messages = array();
    
    	// Get bbPress
    	$bbp = bbpress();
    
    	// Loop through notices
    	foreach ( $bbp->errors->get_error_codes() as $code ) {
    
    		// Get notice severity
    		$severity = $bbp->errors->get_error_data( $code );
    
    		// Loop through notices and separate errors from messages
    		foreach ( $bbp->errors->get_error_messages( $code ) as $error ) {
    			if ( 'message' === $severity ) {
    				$messages[] = $error;
    			} else {
    				$errors[]   = $error;
    			}
    		}
    	}
    
    	// Display errors first...
    	if ( ! empty( $errors ) ) : ?>
    
    		<div class="bbp-template-notice error" role="alert" tabindex="-1">
    			<ul>
    				<li>
    					<?php echo implode( "</li>\n<li>", $errors ); ?>
    					<a href="#new-post">
    					<?php _e('Click here to correct', 'bbp-style-pack') ; ?>
    					</a>
    				</li>
    			</ul>
    		</div>
    
    	<?php endif;
    
    }
    #216794
    haddlyapis
    Participant

    Perfect. Thx Robin!!
    The following now works

    /* only run forum script in forum area */
    add_action( 'wp_print_scripts' , 'deregister_forum_script');
    
    function deregister_forum_script(){
    if ( !is_bbpress() ){
        wp_deregister_script('forum-js');
    }}

    This ticket is now closed. thx!

    #216780
    Robin W
    Moderator

    both the top and bottom login links are the default login, they were there to start with

    which probably suggests they are theme related.

    bbpress just passes details to WordPress login, and if the theme is also using WordPress login, it may well be that on a single page you have 3 things sending info to WordPress authorisation, so any one might send an ‘after login’ redirect, and it might be different dependant on which is completed.

    If you also have membership plugins active, then these might also catch a login and do a redirect.

    computers are consistent (often annoying so!) so it might be either different logins, or other changes you are making to membership that are affecting.

    I’d start by stripping back and working out what is doing what.

    so

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentytwenty, and see what changes.

    Plugins

    If that doesn’t work, also deactivate all plugins, and see what the login at the top and bottom do. Then add bbpress and see what changes.

    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

    #216779
    silviach
    Participant

    bbpress login widgets

    both the top and bottom login links are the default login, they were there to start with

    #216778
    muranomidwest
    Participant

    I’m surprised that this issue persists. We are looking to develop an interactive blog function in which everyone sees images on everything all the time, without needing to realize that they are in WP and bbPress handles everything but images well. Even with Mediapress or any of the various image attachment and styling plugins, the limitations on displaying image posts persists.

    Assuming that I’m not interested in someone else’s concern over the integrity of the uploaded files, has anyone found a plugin, piece of PHP or any other means to display the posts in a topic or forum, along a thumbnail image?

    I feel like by this point, we should be able to display topic indexes and posts as a list, a grid, masonry or something that looks rather like FB, all with images included.

    What is the obstacle, and more importantly, are there solutions?

    #216777
    Robin W
    Moderator

    so what are you using to login – bbpress login widgets, shortcodes or what?

    #216774
    #216771
    Robin W
    Moderator

    ok, I can only suggest you look at possible conflicts

    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

    #216757

    In reply to: Quoted replies

    Robin W
    Moderator

    ok, the discussion also points to

    GD bbPress Tools

    have you tried this ?

    #216756

    In reply to: Quoted replies

    pflanzenoma
    Participant

    Best current solution for quoting replies?

    I wish two options: “reply” and “reply with quote”

    #216749
    Ricsca2
    Participant

    vBulletin

    I found this guide there is no written how to do it …

    #216741
    Robin W
    Moderator

    this plugin lets you set who can post links, and lots of other features.

    It still works fine, despite not having been updated for a while

    bbPress – Moderation Tools

    #216737
    pflanzenoma
    Participant

    Hello Robin,

    in another forum (based on phpBB) they have a very useful feature to keep spammers out: It is not allowed to place links before someone has made 30 postings.

    I suggest that the owner of this forum has made a script himself, because it does not work very good – the error message “Links not yet allowed” appears also when answers with quote are started. But I find the idea very good!

    Do you think that something like this might be implemented in bbPress?

    Best wishes
    Hannelore

    #216728

    In reply to: Messy Emails to users

    Robin W
    Moderator

    are you using the text editor in bbpress, or have you got a visual editor running ?

    #216721
    neon67
    Participant

    as I understand it, now it will be given to insert only own feeds after registering a token, and it will not be possible to insert, for example, Leonel Messi. Therefore, no updates to bbpress will help. Now everyone needs to solve this problem independently (((

    #216710

    In reply to: New Views Code Help

    Robin W
    Moderator

    I take it you have an add action statement

    add_action( 'bbp_register_views' ....

    View Topic By

Viewing 25 results - 3,626 through 3,650 (of 64,425 total)
Skip to toolbar