Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 18,251 through 18,275 (of 64,516 total)
  • Author
    Search Results
  • #153180
    Stefan Velev
    Participant

    Hi there,

    I am trying to add a search form in the forum’s topics (sub forums) and I would like to hear your opinion on that issue.
    bbPress has built in search form, which is unfortunately available only on the main forums list.
    I would like to have that search on the sub forums as well at let my users search the forums when they are browsing the topics.

    Any idea how to achieve this?
    WP v. 3.9.2
    bbPress v. 2.5.3

    #153179

    In reply to: SMF Import to bbPress

    Bestru
    Participant

    @netweb

    Thanks, it works ๐Ÿ™‚

    I noticed that, the attachments from old smf board are not migrated.
    Also, the post date is displayed for two hours in the past.
    Will Private Message with imported or need i use a plugin for bbpress?
    And can i get the Avatars from the Users?

    I know many Questions :))

    If this is resolved, the import works perfectly ๐Ÿ™‚

    #153178
    Robin W
    Moderator

    something has changed !

    Have you added any functions, or might be a plugin

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Otherwise try adding this at the bottom of your functions file

    function change_reply_order() {
    $args['order'] = 'ASC';
     return $args;
    }
    add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
    
    #153170

    In reply to: disable Sidebar

    Robin W
    Moderator

    i managed to have the index full width by making my own page with the forum shortcode and page set using full width layout. but once i click anywhere on the forum (go to a section, thread) the sidebar re appears.

    That’s because it’s going back to the bbpress.php which isn’t working for you.

    try replacing

    if (have_posts()) : while (have_posts()) : the_post();
    
                    /**
    
                     * Find the post formatting for the pages in the post-page.php file
    
                     */
    
                    get_template_part('post', 'page');
    
                    
    
                    if(comments_open( get_the_ID() ))  {
    
                        comments_template('', true); 
    
                    }
    
                endwhile;
    

    with

    
    
    while( have_posts() ): the_post(); 
    
    	 the_content(); 
    
     endwhile; 
    
    

    in your bbpress.php file

    #153158

    In reply to: disable Sidebar

    docpariolo
    Participant

    i went to bbPress WP Tweaks and chose bbpress.php but i just realized that i cant no longer go to wp-admin/options-general.php?page=bbpress.. lack of rights, it says. i know this is now off topic, but any ideas?

    #153157

    In reply to: Tough migration

    Stephen Edgar
    Keymaster

    I just tested the topic tag import and everything appears fine for me.

    * I created a WordPress post tag topic
    * I created a WordPress post category topic
    * I created a WordPress post and added the tag topic and category topic to the post
    * Imported from bbPress 1.2 with topics including the topic tag topic

    All results appear fine for me, I have posts/topics correctly associated with each taxonomy:
    * http://example.com/tag/topic/
    * http://example.com/category/topic/
    * http://example.com/forums/topic-tag/topic/

    #153156

    In reply to: disable Sidebar

    docpariolo
    Participant

    hello,

    im having issues with this.

    ive taken page-template-full.php from wp-content/themes/Rox

    <?php
    
    /**
    
     * Template Name: Full Width, no sidebar(s)
    
    */
    
    get_header(); ?>
    
        <div id="main-fullwidth">
    
            
    
            <?php 
    
                if (have_posts()) : while (have_posts()) : the_post();
    
                    /**
    
                     * Find the post formatting for the pages in the post-page.php file
    
                     */
    
                    get_template_part('post', 'page');
    
                    
    
                    if(comments_open( get_the_ID() ))  {
    
                        comments_template('', true); 
    
                    }
    
                endwhile;
    
                
    
                else :
    
                    get_template_part('post', 'noresults');
    
                endif; 
    
            ?>
    
            
    
        </div><!-- #main-fullwidth -->
    
        
    
    <?php get_footer(); ?>

    and copy pasted as bbpress.php in the same location, and it does nothing.

    i managed to have the index full width by making my own page with the forum shortcode and page set using full width layout. but once i click anywhere on the forum (go to a section, thread) the sidebar re appears.

    its driving me crazy.

    #153155

    Topic: No Search box?

    in forum Installation
    markklanac
    Participant

    Hello –

    I am running WP 4.0 and bbPress Version 2.5.4.

    I can make a forum, but I do not see an area to search within the forum.

    What am I missing?

    Thanks!

    #153154

    In reply to: Tough migration

    Stephen Edgar
    Keymaster

    Stephen my rant was no way a slight against you and your work, assuming youโ€™re the lead programmer? I know itโ€™s been a hard road, Iโ€™ve been using bbpress since version .9, and seen a few leads over the years.

    I didn’t take it that way at all ๐Ÿ™‚


    @JohnJamesJacoby
    is the lead developer, I’ve just hitched along for the ride since trying to migrate from phpBB to bbPress didn’t work, I do far more than just the import side of things now, I’m still learning PHP and constantly finding more and more ways to improve bbPress.

    Much to my delight, the posts in the wp category were not deleted, just the category itself. So I just recreated the category and put those posts in it again.

    Excellent

    But the tags in the wordpress site were definitely overwritten in the migration, including any custom taxonomies using the same slugs.

    Ok, that’s a problem, it is also a scenario I haven’t tried and or thought of even though bbPress does register its own custom taxonomy. I’ll take a look at doing some imports with existing taxonomies in WordPress (tags/categories) and see what happens.

    I also hope for a bright bbPress future and I have a pretty big wish list for it also, some documented around the place, some not ๐Ÿ™‚

    #153151

    In reply to: SMF Import to bbPress

    Stephen Edgar
    Keymaster

    @bestru Thanks, there is a minor bug in the SMF, it has been fixed for the next release.

    If you take a look at this https://bbpress.trac.wordpress.org/changeset/5332 and change that mistaken <tt> for <br> in the SMF.php file things should work just fine.

    Let me know how that goes for you ๐Ÿ™‚

    #153150

    In reply to: 404 on Edit my post

    creator2000
    Participant

    Well, I really thought that might be the case, BUT…

    Please take a look at this here:
    http://temp.stillrunnin.com/runnin-board/topic/billetproof-is-back-in-2014/

    This is a version of my site running “Twenty Fourteen” theme and only bbPress plugin activated. Same problem.

    Please LMK and I can provide you with a temp login to test this further.

    Thank you!

    #153143

    In reply to: 404 on Edit my post

    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    #153140

    In reply to: New to bbPress

    Robin W
    Moderator

    look at the step by step guides in the documentation

    Codex

    #153136

    In reply to: Tough migration

    Hard Seat Sleeper
    Participant

    Stephen my rant was no way a slight against you and your work, assuming you’re the lead programmer? I know it’s been a hard road, I’ve been using bbpress since version .9, and seen a few leads over the years.

    Much to my delight, the posts in the wp category were not deleted, just the category itself. So I just recreated the category and put those posts in it again.

    But the tags in the wordpress site were definitely overwritten in the migration, including any custom taxonomies using the same slugs.

    The community I’m involved with is large and active. Since the forum went live again they are back to posting. We’re kind of tied to bbpress as long as it’s supported and is feasible. Here’s hoping the future is bright.

    #153135

    Topic: New to bbPress

    in forum Installation
    spymasterhugh009
    Participant

    I decided to uninstall BuddyPress because it was too damn complicated to understand for a 68 year young non-geek!

    So I have installed your latest version which said it was compatible with my version of WP which has the latest updates.

    If you visit SpyCraftU you will see NO pages for the forum I have set up or the topics under it. So how do I set up a Members page for the forum so people can register?

    I sure as hell hope that bbPress is easier than BuddyPress which looks like a NIGHTMARE to make work!

    Thanks!
    Hugh009 Spymaster

    #153134
    Cariva
    Participant

    Hi everyone, I’ve seen several questions kind of like this one but not exactly, so forgive me if it’s been answered and I’ve missed it!

    Wordpress 4.0, bbPress 2.5.4.

    What I need is a forum that only a specific group of people (several hundred, increasing annually) can view and use. Because of the numbers involved it’s not practical to manually add them to an allowed list for the forum.

    Solution idea 1:
    A Forum page which shows you just a Login form, plus a Sign Up form. The Sign Up form has an additional field for a specific code, which we will distribute to our members via a Mailchimp list.

    Solution idea 2:
    The Sign Up form automatically cross-references with the Mailchimp list, so that only people who are already on the list are able to sign up for the forum.

    Your help enormously appreciated!

    Cariva

    Robin W
    Moderator

    I want the forum menu link to be visible but nothing else, no forum titles/topics etc simply a login panel and a message explaining that the forum is for members only.

    ok, put the following in your functions file

    //Stop non-logged in user seeing the forums and show forum login page instead

    function lab_logged_in_bbptopics($have_posts){
    	if (!is_user_logged_in()){
    		header("Location: /forum-login/");
    		exit ;
    		}
    return $have_posts;
    }
    add_filter('bbp_has_topics', 'lab_logged_in_bbptopics');
    add_filter('bbp_has_forums', 'lab_logged_in_bbptopics');
    add_filter('bbp_has_replies', 'lab_logged_in_bbptopics');
    

    The create a page called ‘forum login’ and ensure the permalink is set to ‘forum-login’. You can actually use any name or permalinl, but the permalink has to match the one in line 3 above.

    into that page you can put something like

    You must be both registered AND a member of the club to use the forums.
    
    If you are not a member, why not <a href="/join-us/"> Join the club </a>
    
    Otherwise please login in
    
    [bbp-login]
    
    

    Then create a ‘join-us’ page that they can go to.

    If I disable the toolbar in this way, will I need a plugin to allow users to make basic changes to their profile in an environment that is consistent with the front end of the website?

    There are several ways to get an edit profile – this one adds it to your custom menu if they are logged in

    Layout and functionality – Examples you can use

    janfeng
    Participant

    In author page everybody can comment,author can’t del this comment.

    #153119
    everykid
    Participant

    Started by disabling all pludgins…no change

    Dumb luck…I went into Settings: Format and unchecked “Add Toolbars and buttons to text area to help with HTML formatting”
    Now I can see a border around the box intended for entering descriptor of the box. …a step toward solving this.

    I don’t care if users have toolbar or formatting for this box but I expect I will for other boxes so still would like a fix.

    I believe the change has to be in file bbpress/templates/default/bbpress/form-topic.php.

    I am totally uncomfortable at messing around much at this level but think I need to edit this file and add some code to add a box title like “Topic Description (manditory)”

    below I include the part of that original file from bbpress where it would need to be but not sure what it should look like or where to put it. I expect this is a simple thing for someone who knows what they are doing but for me…not so much! The actual code and where to copy and paste it would save me hours of trial and error. (if some code could also be added to allow the rechecking of the ‘Post Formtting’ box without loosing the border that would be a real bonus.)

    From file form-topic.php

    div>

    <?php bbp_get_template_part( ‘form’, ‘anonymous’ ); ?>

    <?php do_action( ‘bbp_theme_before_topic_form_title’ ); ?>

    <p>
    <label for=”bbp_topic_title”><?php printf( __( ‘Topic Title (Maximum Length: %d):’, ‘bbpress’ ), bbp_get_title_max_length() ); ?></label><br />
    <input type=”text” id=”bbp_topic_title” value=”<?php bbp_form_topic_title(); ?>” tabindex=”<?php bbp_tab_index(); ?>” size=”40″ name=”bbp_topic_title” maxlength=”<?php bbp_title_max_length(); ?>” />
    </p>

    <?php do_action( ‘bbp_theme_after_topic_form_title’ ); ?>

    <?php do_action( ‘bbp_theme_before_topic_form_content’ ); ?>

    <?php bbp_the_content( array( ‘context’ => ‘topic’ ) ); ?>

    <?php do_action( ‘bbp_theme_after_topic_form_content’ ); ?>

    <?php if ( ! ( bbp_use_wp_editor() || current_user_can( ‘unfiltered_html’ ) ) ) : ?>

    <p class=”form-allowed-tags”>
    <label><?php _e( ‘You may use these <abbr title=”HyperText Markup Language”>HTML</abbr> tags and attributes:’,’bbpress’ ); ?></label><br />
    <?php bbp_allowed_tags(); ?>
    </p>

    <?php endif; ?>

    <?php if ( bbp_allow_topic_tags() && current_user_can( ‘assign_topic_tags’ ) ) : ?>

    <?php do_action( ‘bbp_theme_before_topic_form_tags’ ); ?>

    <p>
    <label for=”bbp_topic_tags”><?php _e( ‘Topic Tags:’, ‘bbpress’ ); ?></label><br />
    <input type=”text” value=”<?php bbp_form_topic_tags(); ?>” tabindex=”<?php bbp_tab_index(); ?>” size=”40″ name=”bbp_topic_tags” id=”bbp_topic_tags” <?php disabled( bbp_is_topic_spam() ); ?> />
    </p>

    <?php do_action( ‘bbp_theme_after_topic_form_tags’ ); ?>

    <?php endif; ?>

    #153118

    In reply to: Tough migration

    Stephen Edgar
    Keymaster

    A sleepless week later, it is done.

    Been there, done that ๐Ÿ˜‰

    First, it imported all posts, even years-old spam, so I deleted that migration and figured out how to really delete spam in the standalone, and then imported again.

    Tough gig, but once it is done it is done…

    Then I found out that tags were not integrated, rather if tags were in the forum, they simply deleted any tags or custom taxonomies with the same name in the wordpress install. The site relies heavily on these tags, so we we spent a few days re-tagging everything and re-checking.

    Tags should indeed work and import as expected, for example, here on bbpress.org this was imported using the same importer you used.

    The “profile” tag ~7 year old topics -> https://bbpress.org/forums/topic-tag/profile/page/7/

    Now this morning I see that one entire category of the wp install was deleted. Luckily it was not a heavily trafficked section of the site. At this point weโ€™ve put days of work into this data, so rather than roll back, weโ€™ll recreate that category.

    WordPress deleted a category or forum? or was the category/forum not imported?

    bbpress has given our site community many things over the years, I canโ€™t complain at all. But the new version is much slower than the standalone version, and much harder for us to edit and modify. My viewers actually have a diminished experience now.

    We are improving performance for the next release and yes, things are different now that it is a WordPress plugin, I can’t even begin to count the improvements I’d like added to bbPress, there are many, but not so much time to make it all happen quickly. ๐Ÿ™‚

    The tide has turned over the years. While WordPress fumbled with bbpress and buddypress, Facebook came to the fore and basically sucked all the community out of the wp platform. Itโ€™s a shame, and not likely to turn around for any of us here. I applaud the hard work of the devs who worked on this platform over the years, but it has been an exhausting experience this last week, and I am not done yet. It will be another sleepless night.

    Thanks for applause and migrating data from one platform to another is not the easiest thing in the world, I’ve tried to help make it easier and more reliable but again more can be done and not enough time to do it.

    #153117
    Hard Seat Sleeper
    Participant

    I was using a standalone bbpress for many years, but the latest WordPress update did something to mess up cookie integration. The writing was on the wall for my old standalone forum, I decided to move forward and upgrade and migrate.

    A sleepless week later, it is done.

    First, it imported all posts, even years-old spam, so I deleted that migration and figured out how to really delete spam in the standalone, and then imported again.

    Then I found out that tags were not integrated, rather if tags were in the forum, they simply deleted any tags or custom taxonomies with the same name in the wordpress install. The site relies heavily on these tags, so we we spent a few days re-tagging everything and re-checking.

    Now this morning I see that one entire category of the wp install was deleted. Luckily it was not a heavily trafficked section of the site. At this point we’ve put days of work into this data, so rather than roll back, we’ll recreate that category.

    bbpress has given our site community many things over the years, I can’t complain at all. But the new version is much slower than the standalone version, and much harder for us to edit and modify. My viewers actually have a diminished experience now.

    The tide has turned over the years. While WordPress fumbled with bbpress and buddypress, Facebook came to the fore and basically sucked all the community out of the wp platform. It’s a shame, and not likely to turn around for any of us here. I applaud the hard work of the devs who worked on this platform over the years, but it has been an exhausting experience this last week, and I am not done yet. It will be another sleepless night.

    #153116
    ntrabue
    Participant

    Hello, our company is on a google apps domain. While I prefer gmail, most of my co-workers prefer outlook.

    I hadn’t noticed this while putting the site together, however, it appears that email notifications don’t seem to appear as links by default in outlook 2010 or 2013 the URLs just appear as plain text. I figured it was something I could probably fix so I started looking around. I stumbled on this in includes/common/functions.php

    	// Strip tags from text and setup mail data
    	$topic_title   = strip_tags( bbp_get_topic_title( $topic_id ) );
    	$reply_content = strip_tags( bbp_get_reply_content( $reply_id ) );
    	$reply_url     = bbp_get_reply_url( $reply_id );
    	$blog_name     = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
    	$do_not_reply  = '<noreply@' . ltrim( get_home_url(), '^(http|https)://' ) . '>';
    
    	// For plugins to filter messages per reply/topic/user
    	$message = sprintf( __( '%1$s wrote:
    
    %2$s
    
    Post Link: %3$s
    
    -----------
    
    You are receiving this email because you subscribed to a forum topic.
    
    Login and visit the topic to unsubscribe from these emails.', 'bbpress' ),
    
    		$reply_author_name,
    		$reply_content,
    		$reply_url
    	);

    if I’m reading this correctly, it does indeed simply output the string of the URL. What would be the best way to go about making sure this is recognized in outlook as a link?

    Thank you in advance for your help.

    #153106
    Robin W
    Moderator

    bbPress is tested with wordpress default themes. It maybe a conflict – you need to check plugins and themes

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    #153104
    ficurran
    Participant

    Hey,

    I am currently using bbpress, along with front end pm. In my directory of users in front end pm, I would love each user’s name to link to their bbpress profile page.

    This is the section of php within front end pm I would be looking to add the profile urls to I think:

    foreach($users as $u)
    {
    $directory .= “<tr class=’trodd”.$a.”‘><td>”.$u->display_name.”</td>”;

    $directory .= “<td>actionURL.”newmessage&to=”.$u->user_login.”‘>”.__(“Send Message”, “fep”).”</td></tr>”;
    if ($a) $a = 0; else $a = 1;
    }

    Any thoughts on how I would do this?

    Thank you in advance ๐Ÿ™‚

    #153094

    In reply to: No forum after import

    Loofah
    Participant

    More info…

    All forums seem to have published themselves which probably explains away the scheduled bit above. All forums are shown at ‘webitename.org/forums’ which appears to be the default and no issue with that. No topics are showing up despite them existing and publishedin the Forums > Topics area of bbpress.
    When you click on a forum title the address bar adds in a level e.g ‘webitename.org/forums/forum/introductions’ which I wonder is a legacy from the import and the cause of the problems?

    Help!

Viewing 25 results - 18,251 through 18,275 (of 64,516 total)
Skip to toolbar