Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 13,976 through 14,000 (of 32,503 total)
  • Author
    Search Results
  • #135855
    KorvinM
    Participant

    I’m having the same problem as kiagua and Andy Smith
    WordPress 3.6
    bbPress 2.3.2

    exactly the same error message, referencing line 1199. Interestingly the warning shows up twice.

    Anyway, here’s the whole function which contains that line:`/**
    * Adds ability to include or exclude specific post_parent ID’s
    *
    * @since bbPress (r2996)
    *
    * @global DB $wpdb
    * @global WP $wp
    * @param string $where
    * @param WP_Query $object
    * @return string
    */
    function bbp_query_post_parent__in( $where, $object = ” ) {
    global $wpdb, $wp;

    // Noop if WP core supports this already
    if ( in_array( ‘post_parent__in’, $wp->private_query_vars ) )
    return $where;

    // Bail if no object passed
    if ( empty( $object ) )
    return $where;

    // Only 1 post_parent so return $where
    if ( is_numeric( $object->query_vars[‘post_parent’] ) )
    return $where;

    // Including specific post_parent’s
    if ( ! empty( $object->query_vars[‘post_parent__in’] ) ) {
    $ids = implode( ‘,’, array_map( ‘absint’, $object->query_vars[‘post_parent__in’] ) );
    $where .= ” AND $wpdb->posts.post_parent IN ($ids)”;

    // Excluding specific post_parent’s
    } elseif ( ! empty( $object->query_vars[‘post_parent__not_in’] ) ) {
    $ids = implode( ‘,’, array_map( ‘absint’, $object->query_vars[‘post_parent__not_in’] ) );
    $where .= ” AND $wpdb->posts.post_parent NOT IN ($ids)”;
    }

    // Return possibly modified $where
    return $where;
    }`

    line 1199:`
    if ( in_array( ‘post_parent__in’, $wp->private_query_vars ) )
    return $where;`

    This might sound like a wild hack in the dark but I thought I’d have a go at simply making the second parameter an array, like so:

    // Noop if WP core supports this already
    	if ( in_array( 'post_parent__in', array($wp->private_query_vars) ) )
    		return $where;

    and much to my surprise this seems to have solved the problem in as much as the error warning is gone and as far as I can tell so far, the two (private) fora I have set up seem to be running as normal.

    #135852
    am71722
    Participant

    I’m still getting a 500 server error… Not sure what is going on. You have done a wonderful job with the code though. What would cause custom imports to fail and not built in imports?

    #135851
    Stephen Edgar
    Keymaster

    Introduce Forum Importer template for use with importing from Phorum v5.2.x (Tested on v5.2.19)

    http://codex.bbpress.org/import-forums/ & ​​http://codex.bbpress.org/import-forums/phorum

    Working: Categories, Forums, Topics, Replies & Users
    Not Working Yet: User Passwords & Custom BBCode for Topic & Reply Content

    Attached to bbPress Trac Ticket #2382 is the 1st pass patch for Phorum importing into bbPress.

    To test the importer download the latest patch from the link above and copy/ftp the file into the /includes/admin/converters/ folder of your bbPress plugin.

    I hope to get the remaining outstanding items done ASAP.
    (User passwords will be a little trickier and will take a bit more time)

    Any feedback and/or testing that you can provide will help me out tremendously.

    Cheers,

    Stephen 🙂

    stevie77n
    Participant

    Hi,

    I was hoping that someone could tell me if there is there a way to display a list of child forums for specific parent using a shortcode?

    For example, I have a number of private member forums that visitors need to login to view. I want to have a page that they visit to logon with the list of private forums below.

    http://www.blueclouditsolutions.com/asap/
    Wordpress version: 3.6
    bbpress version: 2.3.2

    Thanks for your help.

    Steve.

    #135845
    johni33
    Participant

    No, it’s still doing it, no response from bbpress.

    #135842
    nvkodde
    Participant

    Were you able to figure out this problem? I’m having the same issue.

    #135836
    Stephen Edgar
    Keymaster

    I downloaded a trial of Social Engine and I have now set it up to test with…

    I am using Social Engine v4.6.0, what version do you have/using???

    I may have missed it but I was unable to select a table prefix for the MySQL database during install so all the Social Engine v4.6.0 database tables all have a common prefix of ‘engine4_’ and here is a pic of the MySQL DB structure for the forum tables.

    With your importer I noticed that with your ‘from_tablename’ for each section you are using multiple table names in each section. eg. In the ‘forum section’ you have used ‘se_forums’, ‘se_forumtopics’ & ‘forum’ for ‘from_tablename’, you can really only use a single database table for each section unless you have a valid set of ‘join_tablename’, ‘join_type’ & ‘join_expression’.

    In my updated import script that I will link to below I used ‘forum_forums’ for each field in the ‘forum section’ and on the bbPress import screen I used a table prefix of ‘engine4’ thus the query during import will use all the forum info from the ‘engine4_forum_forums’ database table as per my image above.

    I started with the copy of your import script you linked to which was a great help in getting up and running quickly and I have updated it with as many fields as I can find and things ‘appear’ to be working quite well at my end though some more testing is still needed.

    Anyway, you can take a look at the update I did which also brings some code tweaks and formatting inline with the other bbPress Importers.

    As long as you are using Social Engine v4.6.0 I think this should help a great deal, if your using an old v3 version we will have to see if I can get my hands on a copy of that.

    One more thing… What about users? Do you need tom convert/import them???
    (I will end up adding the user import to this for when others need to)

    Without further ado…. Check it out here:
    https://gist.github.com/ntwb/cefe6fe20b1a652a50fc
    (It still needs a few more tweaks and checks, but it is close)

    #135834

    In reply to: problem

    tveryadvancedhelp
    Participant

    I think you need to check that file php code, on line 1198, if there not some mistake. It’s showing 1199 but you always need to look back from that line to discover the problem.
    you always can contact me verd733@gmail.com for help.

    -Tvery.

    #135821

    In reply to: PHP-Fusion to bbPress

    Stephen Edgar
    Keymaster

    If ‘PHP-fusion’ uses a MySQL database you should be able to modify the included ‘Example.php’ import script.

    You can take a stab at modifying the included ‘Example.php’ included with bbPress to try importing your forums just as @vogelsang did for importing from Drupal. There are some basic instructions here on creating your own custom imports for bbPress.

    Further information on importing existing forums into be bbPress can be found here:

    https://codex.bbpress.org/import-forums

    #135819
    carmelneta
    Participant

    hey all,
    ive created a custom topic loop that shows 3 recent replies on every topic, but for some reason it dosent effect the loop in paged after the first page.

    
        <li>
    <ul class="cn_bbp_rep_list">
        
          <?php 
             
            bbp_has_replies(array('post_parent'    => bbp_get_topic_id()));
            while ( bbp_replies() ) : bbp_the_reply();
                $current_topic_reply_id = bbp_get_reply_id();
          ?>
                <li class="cn_rep">
                    <?php bbp_reply_author_link( array( 'size' => '20' ) ); ?>
                    	<a>" class="bbp-reply-permalink"> <?php bbp_reply_title(); ?> </a>
                        <?php bbp_reply_post_date(); ?>
                </li>
            
      <?php endwhile; ?>
    

    Any help?

    #135818
    Stephen Edgar
    Keymaster

    If ‘mm_forum/Typo3 as CMS′ uses a MySQL database you should be able to modify the included ‘Example.php’ import script.

    You can take a stab at modifying the included ‘Example.php’ included with bbPress to try importing your forums just as @vogelsang did for importing from Drupal. There are some basic instructions here on creating your own custom imports for bbPress.

    Further information on importing existing forums into be bbPress can be found here:

    https://codex.bbpress.org/import-forums

    #135802
    Stephen Edgar
    Keymaster

    If ‘Social Engine 3’ uses a MySQL database you should be able to modify the included ‘Example.php’ import script.

    You can take a stab at modifying the included ‘Example.php’ included with bbPress to try importing your forums just as @vogelsang did for importing from Drupal. There are some basic instructions here on creating your own custom imports for bbPress.

    Further information on importing existing forums into be bbPress can be found here:

    https://codex.bbpress.org/import-forums

    #135798
    Stephen Edgar
    Keymaster

    Introduce Forum Importer template for use with importing from MyBB v1.6.xx(Tested on v1.6.10)

    http://codex.bbpress.org/import-forums/ & ​​http://codex.bbpress.org/import-forums/mybb

    Working: Categories, Forums, Topics, Replies & Users
    Not Working Yet: User Passwords & Custom BBCode for Topic & Reply Content

    Attached to bbPress Trac Ticket #2378 is the 1st pass patch for MyBB importing into bbPress.

    To test the importer download the latest patch from the link above and copy/ftp the file into the /includes/admin/converters/ folder of your bbPress plugin.

    I hope to get the remaining outstanding items done ASAP.
    (User passwords will be a little trickier and will take a bit more time)

    Any feedback and/or testing that you can provide will help me out tremendously.

    Cheers,

    Stephen 🙂

    #135797
    Stephen Edgar
    Keymaster

    Introduce Forum Importer template for use with importing from PunBB v1.4.x (Tested on v1.4.2)

    http://codex.bbpress.org/import-forums/ & ​​http://codex.bbpress.org/import-forums/punbb

    Working: Forums, Topics & Users
    Not Working Yet: Categories, Replies, User Passwords & Custom BBCode for Topic & Reply Content

    Attached to bbPress Trac Ticket #2379 is the 1st pass patch for PunBB importing into bbPress.

    To test the importer download the latest patch from the link above and copy/ftp the file into the /includes/admin/converters/ folder of your bbPress plugin.

    I hope to get the remaining outstanding items done ASAP.
    (User passwords will be a little trickier and will take a bit more time)

    Any feedback and/or testing that you can provide will help me out tremendously.

    Cheers,

    Stephen 🙂

    #135790
    scooter23
    Participant

    Now I cannot create any new topics and I could not reply to this topic. I had to create this new account just to be able to reply. Can someone look into my account issue? A bit frustrating that there is no other support options besides these forums but I do understand.


    @netweb
    Thanks! I did try Chrome, FireFox and IE initially and it was the same thing.

    Here is my question.

    WordPress 3.6
    bbPress 2.3.2

    I have bbPress and BuddyPress setup on a multisite network with sitewide and group forums. Is it possible to integrate the group forum with a multisite site?

    ie.-
    XYZ BuddyPress Group = http://mainsite.com/groups/xyz/forum
    XYZ Blog = http://xyz.mainsite.com

    Can the group forums integrate to the site? So if a post is made on the site it will show back on the group page or if on the group page it will go back to the site?

    If that is not possible, is it possible to at least display the group forum data on the subsite with a shortcode or something?

    Thanks for any help!

    chasehansford
    Participant

    Cool, that the app that I have been using is already been with bbpress. As an ipad case reviewer, I frequently use bbpress and Tapatalk at the same time as it is required for us to do.

    #135778
    adamfilip
    Participant

    I am having trouble altering the CSS to fix the topic description from getting cut off
    please look here

    http://latow.com/test/forums/forum/latow-general/

    any assistance would be greatly appreciated
    here is my current CSS

    /**
     * bbPress specific CSS
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    /* =bbPress Style
    -------------------------------------------------------------- */
    
    #bbpress-forums hr {
    	margin: 0 0 1px 0;
    }
    
    #bbpress-forums {
    	background: transparent;
    	clear: both;
    	margin-bottom: 20px;
    	overflow: auto;
    	font-size: 12px;
    }
    
    #bbpress-forums div.even,
    #bbpress-forums ul.even {
    	background-color: transparent;
    }
    
    #bbpress-forums div.odd,
    #bbpress-forums ul.odd {
    	background: transparent;
    }
    
    body.reply-edit .reply {
    	float: none;
    }
    
    #bbpress-forums div.reply {
    	height: auto;
    	width: 100%;
    }
    
    #bbpress-forums div.bbp-forum-header,
    #bbpress-forums div.bbp-topic-header,
    #bbpress-forums div.bbp-reply-header {
    	background-color: transparent;
    }
    
    #bbpress-forums .status-trash.even,
    #bbpress-forums .status-spam.even {
    	background-color: #fee;
    }
    #bbpress-forums .status-trash.odd,
    #bbpress-forums .status-spam.odd {
    	background-color: #fdd;
    }
    
    #bbpress-forums .status-closed,
    #bbpress-forums .status-closed a {
    	color: #696969;
    }
    
    #bbpress-forums ul {
    	list-style: none;
    	margin: 0;
    	padding: 0;
    }
    
    #bbpress-forums li {
    	margin: 0;
    	list-style: none;
    }
    
    #bbpress-forums ul.bbp-lead-topic,
    #bbpress-forums ul.bbp-topics,
    #bbpress-forums ul.bbp-forums,
    #bbpress-forums ul.bbp-replies,
    #bbpress-forums ul.bbp-search-results {
    	font-size: 12px;
    	overflow: hidden;
    	border: 1px solid #eee;
    	margin-bottom: 20px;
    	clear: both;
    }
    
    #bbpress-forums li.bbp-header,
    #bbpress-forums li.bbp-body,
    #bbpress-forums li.bbp-footer {
    	clear: both;
    }
    
    #bbpress-forums li.bbp-header,
    #bbpress-forums li.bbp-footer {
    	background: transparent;
    	border-top: 1px solid #eee;
    	font-weight: bold;
    	padding: 8px;
    	text-align: center;
    }
    
    #bbpress-forums li.bbp-header {
    	background: #212121;
    }
    
    #bbpress-forums li.bbp-header ul {
    	overflow: hidden;
    }
    
    #bbpress-forums .bbp-forums-list {
    	margin: 0 0 0 5px;
    	padding-left: 15px;
    	border-left: 1px solid #ddd;
    }
    
    #bbpress-forums .bbp-forums-list li {
    	display: inline;
    	font-size: 11px;
    }
    
    #bbpress-forums li.bbp-footer p {
    	margin: 0;
    	line-height: 1em;
    }
    
    li.bbp-forum-info,
    li.bbp-topic-title {
    	float: left;
    	text-align: left;
    	width: 70%;
    }
    li.bbp-forum-topic-count,
    li.bbp-topic-voice-count,
    li.bbp-forum-reply-count,
    li.bbp-topic-reply-count {
    	float: left;
    	text-align: center;
    	width: 15%;
    }
    
    li.bbp-forum-freshness,
    li.bbp-topic-freshness {
    	text-align: center;
    	float: left;
    	width: 15%;
    }
    
    #bbpress-forums li.bbp-body ul.forum,
    #bbpress-forums li.bbp-body ul.topic {
    	border-top: 1px solid #eee;
    	overflow: auto;
    	padding: 8px;
    }
    
    li.bbp-header div.bbp-topic-content span#subscription-toggle,
    li.bbp-header div.bbp-topic-content span#favorite-toggle,
    li.bbp-header div.bbp-reply-content span#subscription-toggle,
    li.bbp-header div.bbp-reply-content span#favorite-toggle {
    	float: right;
    }
    
    #bbpress-forums div.bbp-forum-title h3,
    #bbpress-forums div.bbp-topic-title h3,
    #bbpress-forums div.bbp-reply-title h3 {
    	line-height: 1em;
    	margin: 8px 0;
    }
    
    #bbpress-forums div.bbp-forum-author,
    #bbpress-forums div.bbp-topic-author,
    #bbpress-forums div.bbp-reply-author {
    	float: left;
    	text-align: center;
    	width: 115px;
    }
    
    #bbpress-forums div.bbp-forum-author img.avatar,
    #bbpress-forums div.bbp-topic-author img.avatar,
    #bbpress-forums div.bbp-reply-author img.avatar {
    	border: none;
    	max-width: 80px;
    	padding: 0;
    	margin: 12px auto 0 auto;
    	float: none;
    }
    
    #bbpress-forums div.bbp-forum-author a.bbp-author-name,
    #bbpress-forums div.bbp-topic-author a.bbp-author-name,
    #bbpress-forums div.bbp-reply-author a.bbp-author-name {
    	margin: 0 12px;
    	word-break: break-word;
    	display: inline-block;
    }
    
    #bbpress-forums div.bbp-forum-author .bbp-author-role,
    #bbpress-forums div.bbp-topic-author .bbp-author-role,
    #bbpress-forums div.bbp-reply-author .bbp-author-role {
    	font-size: 11px;
    	font-style: italic;
    }
    
    #bbpress-forums li.bbp-header .bbp-search-author,
    #bbpress-forums li.bbp-footer .bbp-search-author,
    #bbpress-forums li.bbp-header .bbp-forum-author,
    #bbpress-forums li.bbp-footer .bbp-forum-author,
    #bbpress-forums li.bbp-header .bbp-topic-author,
    #bbpress-forums li.bbp-footer .bbp-topic-author,
    #bbpress-forums li.bbp-header .bbp-reply-author,
    #bbpress-forums li.bbp-footer .bbp-reply-author {
    	float: left;
    	margin: 0;
    	padding: 0;
    	width: 120px;
    }
    
    #bbpress-forums li.bbp-header .bbp-search-content,
    #bbpress-forums li.bbp-footer .bbp-search-content,
    #bbpress-forums li.bbp-header .bbp-forum-content,
    #bbpress-forums li.bbp-footer .bbp-forum-content,
    #bbpress-forums li.bbp-header .bbp-topic-content,
    #bbpress-forums li.bbp-footer .bbp-topic-content,
    #bbpress-forums li.bbp-header .bbp-reply-content,
    #bbpress-forums li.bbp-footer .bbp-reply-content {
    	margin-left: 140px;
    	padding: 0;
    	text-align: left;
    }
    
    div.bbp-forum-header,
    div.bbp-topic-header,
    div.bbp-reply-header,
    li.bbp-body div.hentry {
    	margin-bottom: 0;
    	overflow: auto;
    	padding: 8px;
    }
    
    div.bbp-forum-header,
    div.bbp-topic-header,
    div.bbp-reply-header {
    	border-top: 1px solid #ddd;
    	clear: both;
    }
    
    span.bbp-author-ip {
    	font-family: 'Helvetica Neue', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
    	font-size: 11px;
    	font-weight: bold;
    	color: #aaa;
    }
    
    /* =Topic and reply content
    -------------------------------------------------------------- */
    
    #bbpress-forums div.bbp-forum-content,
    #bbpress-forums div.bbp-topic-content,
    #bbpress-forums div.bbp-reply-content {
    	margin-left: 60px;
    	padding: 12px 12px 12px 0;
    	text-align: left;
    }
    
    #bbpress-forums div.bbp-topic-content a,
    #bbpress-forums div.bbp-reply-content a {
    	background: none;
    	border: none;
    	display: inline;
    	font-weight: normal;
    	margin: 0;
    	padding: 0;
    }
    
    #bbpress-forums div.bbp-topic-content h1,
    #bbpress-forums div.bbp-reply-content h1,
    #bbpress-forums div.bbp-topic-content h2,
    #bbpress-forums div.bbp-reply-content h2,
    #bbpress-forums div.bbp-topic-content h3,
    #bbpress-forums div.bbp-reply-content h3,
    #bbpress-forums div.bbp-topic-content h4,
    #bbpress-forums div.bbp-reply-content h4,
    #bbpress-forums div.bbp-topic-content h5,
    #bbpress-forums div.bbp-reply-content h5,
    #bbpress-forums div.bbp-topic-content h6,
    #bbpress-forums div.bbp-reply-content h6 {
    	clear: none;
    	line-height: 1em;
    	margin: 24px 0;
    	padding: 0;
    }
    
    #bbpress-forums div.bbp-topic-content img,
    #bbpress-forums div.bbp-reply-content img {
    	max-width: 100%;
    }
    
    #bbpress-forums div.bbp-topic-content ul,
    #bbpress-forums div.bbp-reply-content ul,
    #bbpress-forums div.bbp-topic-content ol,
    #bbpress-forums div.bbp-reply-content ol {
    	margin: 0 15px 15px;
    	padding: 0;
    }
    
    #bbpress-forums div.bbp-topic-content ul li,
    #bbpress-forums div.bbp-reply-content ul li {
    	list-style-type: disc;
    }
    
    #bbpress-forums div.bbp-topic-content ol li,
    #bbpress-forums div.bbp-reply-content ol li {
    	list-style-type: decimal;
    }
    
    #bbpress-forums div.bbp-topic-content ol li li,
    #bbpress-forums div.bbp-reply-content ol li li {
    	list-style-type: lower-alpha;
    }
    
    #bbpress-forums div.bbp-topic-content ol li li li,
    #bbpress-forums div.bbp-reply-content ol li li li {
    	list-style-type: upper-roman;
    }
    
    #bbpress-forums div.bbp-topic-content code,
    #bbpress-forums div.bbp-reply-content code,
    #bbpress-forums div.bbp-topic-content pre,
    #bbpress-forums div.bbp-reply-content pre {
    	font-family: Inconsolata, Consolas, Monaco, Lucida Console, monospace;
    	display: inline;
    	background-color: transparent;
    	border: 1px solid #ddd;
    	padding: 2px;
    }
    
    #bbpress-forums div.bbp-topic-content pre,
    #bbpress-forums div.bbp-reply-content pre {
    	display: block;
    	line-height: 18px;
    	margin: 0 0 24px;
    	padding: 5px 10px;
    	white-space: pre;
    	overflow: auto;
    }
    
    #bbpress-forums div.bbp-topic-content pre code,
    #bbpress-forums div.bbp-reply-content pre code {
    	display: block;
    	border: none;
    	padding: 0;
    	margin: 0;
    	background-color: transparent;
    	overflow-wrap: normal;
    }
    
    /* =Breadcrumb and Tags
    -------------------------------------------------------------- */
    
    div.bbp-breadcrumb {
    	float: left;
    }
    
    div.bbp-breadcrumb,
    div.bbp-topic-tags {
    	font-size: 12px;
    }
    
    #bbpress-forums div.bbp-breadcrumb p,
    #bbpress-forums div.bbp-topic-tags p {
    	margin-bottom: 10px
    }
    
    #bbpress-forums div.bbp-topic-tags {
    	float: right;
    }
    
    #bbp-topic-hot-tags {
    	clear: both;
    }
    
    /* =Search
    -------------------------------------------------------------- */
    
    #bbpress-forums #bbp-search-form {
    	clear: left;
    }
    
    #bbpress-forums div.bbp-search-form {
    	float: right;
    }
    
    /* =Admin Links
    -------------------------------------------------------------- */
    
    span.bbp-admin-links {
    	float: right;
    	color: #ddd;
    }
    span.bbp-admin-links a {
    	color: #bbb;
    	font-weight: normal;
    	font-size: 10px;
    	text-transform: uppercase;
    	text-decoration: none;
    }
    fieldset span.bbp-admin-links {
    	float: left;
    }
    tr td span.bbp-admin-links a:hover {
    	color: #ff4b33;
    }
    td.bbp-topic-admin-links,
    td.bbp-topic-counts {
    	width: 50%;
    }
    
    .bbp-forum-header a.bbp-forum-permalink,
    .bbp-topic-header a.bbp-topic-permalink,
    .bbp-reply-header a.bbp-reply-permalink {
    	float: right;
    	margin-left: 10px;
    	color: #ccc;
    }
    
    /* =Toggles
    -------------------------------------------------------------- */
    
    .bbp-topic-action #favorite-toggle a {
    	text-decoration: none;
    	padding: 0 3px 1px;
    	color: #7c7;
    	border: 1px solid #aca;
    	background-color: #dfd;
    	font-weight: bold;
    	font-size: 13px;
    	}
    	.bbp-topic-action #favorite-toggle a:hover {
    		color: #5a5;
    		border-color: #7c7;
    		background-color: #beb;
    	}
    	.bbp-topic-action #favorite-toggle span.is-favorite a {
    		color: #faa;
    		border: 1px solid #faa;
    		background-color: #fee;
    		}
    		.bbp-topic-action #favorite-toggle span.is-favorite a:hover {
    			color: #c88;
    			border-color: #c88;
    			background-color: #fdd;
    		}
    
    .bbp-topic-action #subscription-toggle a {
    	text-decoration: none;
    	padding: 0 3px 1px;
    	color: #7c7;
    	border: 1px solid #aca;
    	background-color: #dfd;
    	font-weight: bold;
    	font-size: 13px;
    	}
    	.bbp-topic-action #subscription-toggle a:hover {
    		color: #5a5;
    		border-color: #7c7;
    		background-color: #beb;
    	}
    	.bbp-topic-action #subscription-toggle span.is-subscribed a {
    		color: #faa;
    		border: 1px solid #faa;
    		background-color: #fee;
    		}
    		.bbp-topic-action #subscription-toggle span.is-subscribed a:hover {
    			color: #c88;
    			border-color: #c88;
    			background-color: #fdd;
    		}
    
    #bbpress-forums .bbp-forum-info .bbp-forum-content,
    #bbpress-forums p.bbp-topic-meta {
    	margin: 5px 0 5px;
    	padding: 0;
    	font-size: 11px;
    }
    
    #bbpress-forums p.bbp-topic-meta span {
    	white-space: nowrap;
    }
    
    /* =Pagination
    -------------------------------------------------------------- */
    
    .bbp-pagination-count {
    	float: left;
    	border: 1px solid transparent;
    }
    
    .bbp-pagination-links {
    	float: right;
    	list-style: none;
    	display: inline;
    	}
    	.bbp-pagination-links a,
    	.bbp-pagination-links span.current {
    		display: block;
    		float: left;
    		padding: 0px 5px;
    		margin-left: 5px;
    		border: 1px solid #efefef;
    		text-decoration: none;
    		}
    		.bbp-pagination-links a:hover,
    		.bbp-pagination-links span.current {
    			background: #eee;
    			opacity: 0.8;
    			border: 1px solid #ddd;
    		}
    
    	.bbp-pagination-links span.dots {
    		display: block;
    		float: left;
    		padding: 1px 4px;
    		margin-left: 5px;
    	}
    
    .bbp-pagination {
    	float: left;
    	width: 100%;
    	margin-bottom: 15px;
    }
    
    .bbp-topic-pagination {
    	display: inline-block;
    	margin-left: 5px;
    	margin-bottom: 2px;
    	}
    	.bbp-topic-pagination a {
    		font-size: 10px;
    		line-height: 10px;
    		padding: 1px 3px;
    		border: 1px solid #ddd;
    		text-decoration: none;
    	}
    
    /* =Forms
    -------------------------------------------------------------- */
    
    #bbpress-forums fieldset.bbp-form {
    	clear: left;
    }
    
    #bbpress-forums fieldset.bbp-form {
    	border: 1px solid #eee;
    	padding: 10px 20px;
    	margin-bottom: 10px;
    }
    
    #bbpress-forums fieldset.bbp-form legend {
    	padding: 5px;
    }
    
    #bbpress-forums fieldset.bbp-form label {
    	margin: 0;
    	display: inline-block;
    }
    
    #bbp-edit-topic-tag.bbp-form fieldset.bbp-form label,
    #bbp-login fieldset label,
    #bbp-register fieldset label,
    #bbp-lost-pass fieldset label {
    	width: 100px;
    }
    
    #bbpress-forums fieldset.bbp-form p,
    #bbpress-forums fieldset.bbp-form textarea,
    #bbpress-forums fieldset.bbp-form select,
    #bbpress-forums fieldset.bbp-form input {
    	margin: 0 0 8px;
    }
    
    textarea#bbp_reply_content,
    textarea#bbp_topic_content,
    textarea#bbp_forum_content {
    	width: 97%;
    	box-sizing: border-box;
    }
    
    textarea#bbp_forum_content {
    	height: 210px;
    }
    
    #bbpress-forums fieldset.bbp-forum-form-attributes {
    	width: 200px;
    	float: right;
    	clear: none;
    	margin-left: 25px;
    }
    
    /**
     * Fix for too-long forum names, usually from conversion
     */
    #bbpress-forums fieldset select#bbp_forum_id {
    	max-width: 200px;
    }
    
    .bbp-topic-form,
    .bbp-reply-form,
    .bbp-topic-tag-form {
    	clear: left;
    }
    body.topic-edit .bbp-topic-form div.avatar img,
    body.reply-edit .bbp-reply-form div.avatar img,
    body.single-forum .bbp-topic-form div.avatar img,
    body.single-reply .bbp-reply-form div.avatar img {
    	margin-right: 0;
    	padding: 10px;
    	border: 1px solid #ddd;
    	line-height: 0;
    	background-color: #efefef;
    }
    
    body.page .bbp-reply-form code,
    body.page .bbp-topic-form code,
    body.single-topic .bbp-reply-form code,
    body.single-forum .bbp-topic-form code,
    body.topic-edit .bbp-topic-form code,
    body.reply-edit .bbp-reply-form code {
    	font-size: 10px;
    	background-color: #f0fff8;
    	border: 1px solid #CEEFE1;
    	display: block;
    	padding: 8px;
    	margin-top: 5px;
    	width: 369px;
    }
    
    #merge_tag,
    #delete_tag {
    	display: inline;
    }
    
    div.bbp-submit-wrapper {
    	margin-top: 15px;
    	float: right;
    	clear: both;
    }
    
    p.form-allowed-tags {
    	width: 462px;
    }
    
    /* =TinyMCE in themes
    -------------------------------------------------------------- */
    #bbpress-forums div.bbp-the-content-wrapper {
    	margin-bottom: 10px;
    }
    
    #bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
    	width: 100%;
    	margin: 0;
    	font-size: 12px;
    }
    
    #bbpress-forums div.bbp-the-content-wrapper table,
    #bbpress-forums div.bbp-the-content-wrapper tbody,
    #bbpress-forums div.bbp-the-content-wrapper tr,
    #bbpress-forums div.bbp-the-content-wrapper td {
    	border: none;
    	padding: 0;
    	margin: 0;
    	width: auto;
    	line-height: 1em;
    }
    
    #bbpress-forums div.bbp-the-content-wrapper input {
    	font-size: 12px;
    	padding: 5px;
    	margin: 0 2px 0 0;
    	line-height: 1em;
    }
    
    #bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar {
    	padding: 5px;
    	min-height: 26px;
    }
    #bbpress-forums div.bbp-the-content-wrapper td.mceToolbar {
    	padding: 4px 4px 8px;
    }
    
    #bbpress-forums div.wp-editor-container {
    	margin: 0;
    	padding: 0;
    	line-height: 0;
    }
    
    #bbpress-forums div.bbp-the-content-wrapper td.mceStatusbar {
    	line-height: 16px;
    }
    
    /* =Edit User
    -------------------------------------------------------------- */
    
    #bbpress-forums #bbp-your-profile fieldset {
    	padding: 20px 20px 0 20px;
    }
    	#bbpress-forums #bbp-your-profile fieldset div {
    		margin-bottom: 20px;
    		float: left;
    		width: 100%;
    		clear: left;
    	}
    	#bbpress-forums #bbp-your-profile fieldset select {
    		margin-bottom: 0;
    	}
    	#bbpress-forums #bbp-your-profile fieldset input,
    	#bbpress-forums #bbp-your-profile fieldset textarea {
    		margin-bottom: 0;
    		width: 60%;
    		background: #f9f9f9;
    		border: 1px solid #ddd;
    		box-shadow: none;
    		padding: 5px 8px;
    		border-radius: 0;
    	}
    	#bbpress-forums #bbp-your-profile fieldset input:focus,
    	#bbpress-forums #bbp-your-profile fieldset textarea:focus {
    		border: 1px solid #ccc;
    		box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
    		outline-color: rgba(240,255,240,0.1);
    	}
    	#bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox {
    		width: auto;
    	}
    	#bbpress-forums #bbp-your-profile fieldset legend {
    		display: none;
    	}
    	#bbpress-forums #bbp-your-profile fieldset label[for] {
    		float: left;
    		width: 20%;
    		padding: 5px 20px 5px 0;
    		text-align: right;
    		cursor: pointer;
    	}
    	#bbpress-forums #bbp-your-profile fieldset dl label[for] {
    		text-align: left;
    		width: 60%;
    	}
    	#bbpress-forums #bbp-your-profile fieldset span.description {
    		margin: 5px 0 0 20%;
    		font-size: 12px;
    		font-style: italic;
    		float: left;
    		clear: left;
    		width: 60%;
    		padding: 5px 8px;
    		border: #cee1ef 1px solid;
    		background-color: #f0f8ff;
    	}
    
    	#bbpress-forums #bbp-your-profile fieldset fieldset {
    		margin: 0;
    		border: none;
    		padding: 0;
    		clear: none;
    		float: none;
    	}
    	#bbpress-forums #bbp-your-profile fieldset fieldset.password {
    		width: 60%;
    		display: inline;
    	}
    	#bbpress-forums #bbp-your-profile fieldset fieldset.password input,
    	#bbpress-forums #bbp-your-profile fieldset fieldset.password span {
    		width: 100%;
    	}
    	#bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl {
    		margin: 0;
    	}
    	#bbpress-forums #bbp-your-profile fieldset fieldset.password span.description {
    		margin-left: 0;
    		margin-bottom: 20px;
    	}
    
    	#bbpress-forums #bbp-your-profile fieldset.submit button {
    		float: right;
    	}
    
    /* =Notices
    -------------------------------------------------------------- */
    
    div.bbp-template-notice,
    div.indicator-hint {
    	border-width: 1px;
    	border-style: solid;
    	padding: 0 0.6em;
    	margin: 5px 0 15px;
    	border-radius: 3px;
    	background-color: #ffffe0;
    	border-color: #e6db55;
    	color: #000;
    	clear: both;
    }
    div.bbp-template-notice a {
    	color: #555;
    	text-decoration: none;
    }
    	div.bbp-template-notice a:hover {
    		color: #000;
    	}
    	div.bbp-template-notice.info {
    		border: #cee1ef 1px solid;
    		background-color: #f0f8ff;
    	}
    	div.bbp-template-notice.important {
    		border: #e6db55 1px solid;
    		background-color: #fffbcc;
    	}
    	div.bbp-template-notice.error,
    	div.bbp-template-notice.warning {
    		background-color: #ffebe8;
    		border-color: #c00;
    	}
    	div.bbp-template-notice.error a,
    	div.bbp-template-notice.warning a {
    		color: #c00;
    	}
    	div.bbp-template-notice p {
    		margin: 0.5em 0 6px 0 !important;
    		padding: 2px;
    		font-size: 12px;
    		line-height: 140%;
    	}
    
    /* =Stickies
    -------------------------------------------------------------- */
    
    .bbp-topics-front ul.super-sticky,
    .bbp-topics ul.super-sticky,
    .bbp-topics ul.sticky,
    .bbp-forum-content ul.sticky {
    	background-color: #ffffe0 !important;
    	font-size: 1.1em;
    }
    
    /* =Revisions
    -------------------------------------------------------------- */
    
    #bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log,
    #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log,
    #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log {
    	border-top: 1px dotted #ddd;
    	width: 100%;
    	margin: 0;
    	padding: 8px 0 0 0;
    	font-size: 11px;
    	color: #aaa;
    }
    
    #bbpress-forums .bbp-topic-content ul.bbp-topic-revision-log li,
    #bbpress-forums .bbp-reply-content ul.bbp-topic-revision-log li,
    #bbpress-forums .bbp-reply-content ul.bbp-reply-revision-log li {
    	list-style-type: none;
    }
    
    /* =Widgets
    -------------------------------------------------------------- */
    
    .bbp-login-form fieldset legend {
    	display: none;
    }
    
    .bbp-login-form .bbp-username input,
    .bbp-login-form .bbp-email input,
    .bbp-login-form .bbp-password input {
    	padding: 5px;
    }
    
    .bbp-login-form label {
    	width: 140px;
    	display: inline-block;
    }
    
    #sidebar .bbp-login-form label {
    	width: 70px;
    }
    
    .bbp-login-form .bbp-username,
    .bbp-login-form .bbp-email,
    .bbp-login-form .bbp-password,
    .bbp-login-form .bbp-remember-me,
    .bbp-login-form .bbp-submit-wrapper {
    	margin-top: 10px;
    }
    
    .bbp-login-form .bbp-remember-me {
    
    }
    
    .bbp-login-form .bbp-submit-wrapper {
    	text-align: right;
    }
    
    .bbp-login-form .bbp-login-links {
    }
    
    .bbp-login-form .bbp-login-links a {
    	float: left;
    	clear: left;
    }
    
    .bbp-logged-in img.avatar {
    	float: left;
    	margin: 0 15px 0 0;
    }
    
    .bbp-logged-in h4 {
    	font-weight: bold;
    	font-size: 1.3em;
    	clear: none;
    	margin-bottom: 10px;
    }
    
    /* =Avatars
    -------------------------------------------------------------- */
    
    #bbpress-forums p.bbp-topic-meta img.avatar,
    #bbpress-forums ul.bbp-reply-revision-log img.avatar,
    #bbpress-forums ul.bbp-topic-revision-log img.avatar,
    #bbpress-forums div.bbp-template-notice img.avatar,
    #bbpress-forums .widget_display_topics img.avatar,
    #bbpress-forums .widget_display_replies img.avatar,
    #bbpress-forums p.bbp-topic-meta img.avatar {
    	float: none;
    	margin-bottom: -7px;
    	border: 3px double #ddd;
    }
    
    fieldset div.avatar {
    	float: right;
    }
    
    /* =BuddyPress Activity Streams
    -------------------------------------------------------------- */
    
    .activity-list li.bbp_topic_create .activity-content .activity-inner,
    .activity-list li.bbp_reply_create .activity-content .activity-inner {
    	border-left: 2px solid #eaeaea;
    	margin-left: 5px;
    	padding-left: 10px;
    }
    
    /* =User Pages
    -------------------------------------------------------------- */
    
    #bbpress-forums h1 {
    	clear: none;
    	font-size: 1.8em;
    	line-height: 1em;
    	padding-bottom: 10px;
    }
    
    #bbpress-forums #bbp-user-wrapper {
    	float: left;
    	width: 100%;
    }
    
    #bbpress-forums .bbp-user-section {
    	overflow: auto;
    }
    
    #bbpress-forums #bbp-user-wrapper h2.entry-title {
    	font-size: 1.4em;
    	margin: 0;
    	padding-bottom: 10px;
    	padding-top: 0;
    	clear: none;
    }
    
    #bbpress-forums #bbp-user-wrapper ul.bbp-lead-topic,
    #bbpress-forums #bbp-user-wrapper ul.bbp-topics,
    #bbpress-forums #bbp-user-wrapper ul.bbp-forums,
    #bbpress-forums #bbp-user-wrapper ul.bbp-replies,
    #bbpress-forums #bbp-user-wrapper fieldset.bbp-form {
    	clear: none;
    }
    
    #bbpress-forums #bbp-single-user-details {
    	margin: 0;
    	width: 150px;
    	float: left;
    	overflow: auto;
    }
    
    #bbpress-forums #bbp-single-user-details #bbp-user-avatar {
    	margin: 0;
    	width: 150px;
    }
    
    #bbpress-forums #bbp-single-user-details #bbp-user-avatar img.avatar {
    	border: none;
    	height: 150px;
    	padding: 0;
    	margin: 0 0 20px 0;
    	width: 150px;
    }
    
    #bbpress-forums #bbp-single-user-details #bbp-user-description {
    	float: none;
    	margin-left: 180px;
    }
    
    #bbpress-forums #bbp-single-user-details #bbp-user-navigation {
    	float: none;
    	margin: 0;
    }
    
    #bbpress-forums #bbp-single-user-details #bbp-user-navigation li {
    	margin: 0;
    }
    
    #bbpress-forums #bbp-single-user-details #bbp-user-navigation a {
    	padding: 5px 8px;
    	display: block;
    	border: 1px solid transparent;
    	text-decoration: none;
    }
    
    #bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a {
    	background: #eee;
    	opacity: 0.8;
    }
    
    #bbpress-forums #bbp-user-body {
    	margin-left: 180px;
    }
    
    body.my-account #bbpress-forums {
    	border-top: none;
    	padding-top: 0;
    	margin-bottom: 0;
    }
    
    /* =User Capabilities
    -------------------------------------------------------------- */
    
    #bbpress-forums dl.bbp-user-capabilities {
    	display: inline-block;
    	vertical-align: top;
    }
    
    #bbpress-forums dl.bbp-user-capabilities dt {
    	margin: 0 0 10px;
    	text-transform: capitalize;
    }
    
    #bbpress-forums dl.bbp-user-capabilities dd {
    	margin: 0;
    	padding: 0;
    }
    
    /* =BuddyPress Group Forums
    -------------------------------------------------------------- */
    
    #bbpress-forums div.row-actions {
    	font-size: 11px;
    	visibility: hidden;
    }
    
    #bbpress-forums li:hover > div.row-actions {
    	visibility: visible;
    }
    
    #135773
    bjorn2run
    Participant

    I was running into the same issue, here’s what I did:
    I copied:
    /wp-content/plugins/bbpress/templates/default/bbpress/form-topic.php
    into the root of my theme folder:
    /wp-content/themes/(YourTheme)/form-topic.php

    I renamed the file to:
    form-topic-home.php

    so I can call it separately and makes changes to it without having an impact on the normal add topic form.

    In my new file I removed the if statements for testing if the page is a single forum or a topic edit, my form is going into a modal on my homepage, so neither of those will ever be necessary.

    Starting at line 12 I deleted this:

    <?php if ( !bbp_is_single_forum() ) : ?>
    
    <div id="bbpress-forums">
    
    	<?php bbp_breadcrumb(); ?>
    
    <?php endif; ?>
    
    <?php if ( bbp_is_topic_edit() ) : ?>
    
    	<?php bbp_topic_tag_list( bbp_get_topic_id() ); ?>
    
    	<?php bbp_single_topic_description( array( 'topic_id' => bbp_get_topic_id() ) ); ?>
    
    <?php endif; ?>

    Next on what was line 28 I changed
    <?php if ( bbp_current_user_can_access_create_topic_form() ) : ?>
    to
    <?php if ( bbp_current_user_can_publish_topics() ) : ?>

    The original code does a lot of checking if the user can edit forums, if we’re on a single page or if this is one off page, we’re really only looking for the current user’s ability to post topics, and we’re given that (inside that same function actually)

    At the very bottom of the file you’ll also want to delete this:

    <?php if ( !bbp_is_single_forum() ) : ?>
    
    </div>
    
    <?php endif; ?>

    as it’s the closing div tag to the stuff we cut out at the top of the file.

    Now where you were going to use the short code, call a template part instead, and you should be square.

    <?php bbp_get_template_part( 'form', 'topic-home' ); ?>

    #135765
    Tecca
    Participant

    These are being taken from your site’s CSS (non-bbPress side):

    ul ul li:before
    ul li:before

    Those are the culprits. Add this to your bbPress.css file:

    ul ul li:before {
        display: none;
    }
    
    ul li:before {
        display: none;
    }

    Or remove them altogether from your site’s CSS if you don’t need them.

    marvcwebkeeper88
    Participant

    Copying the RAW Paste data worked for me:
    1. Rename existing group.php file located here as group.php.old:
    /wp-content/plugins/bbpress/includes/extend/buddypress

    2. Open notepad and paste the code located here: http://pastebin.com/nfYvigz4
    3. Save the file and upload it to the directory above.

    I’m now able to create groups. Hopefully things stay inline during the next BP or bpPress update.

    #135762
    stuudio
    Participant

    For some reason, I can not get rid of those damn bullets.
    http://www.oostuudio.ee/wp-content/uploads/2013/08/65-bbpres_fkn_bullets.jpg
    (I added red marks so you can see the problematic dots/bullets)

    I am using bbPress 2.3.2 (installed as plugin via WP admin)

    I wasted hours with FF and Chrome dev tool but did not get anywhere.

    I am no css master but I was expecting this to fix the problem:

    #bbpress-forums ul {
    list-style: none outside none;
    }
    #bbpress-forums li {
    list-style: none outside none;
    }

    I was wrong. It has no effect at all.

    So, I need your help to fix this because I can not launch a forum, looking like this: http://www.oostuudio.ee/foorum/f/poletamine/

    Thank you

    #135761

    In reply to: bbConverter

    Stephen Edgar
    Keymaster

    bbConverter is out of date and no longer updated.

    bbPress includes a phpBB importer and details on how to use it and any phpBB import issues can be found in these links:

    https://codex.bbpress.org/import-forums

    https://codex.bbpress.org/import-forums/phpbb

    #135760
    Stephen Edgar
    Keymaster

    I have myBB importer ~75% complete, hopefully I’ll get it uploaded to bbPress later today.
    (Categories, Forums, Topics, Replies & Users working 100% with outstanding issues being some BBCode conversions and user passwords)

    dasped
    Participant

    Running bang up-to-date WP Multisite, Buddyperss, BBPress.

    No preview available, site still under maintenance.

    I need to remove group forum posts from showing up within the forum index.

    Seems quite strange that you can set up private groups with their own forums, but all their forum post activity shows up for all to read on the [bbp-topic-index] page? Not so private?

    Am I missing something that is staring me in the face or is this seriously just how it works? If the latter is the case, I’d be very grateful if anyone could please assist with a workaround of some description.

    I’d like to eliminate all group posts from showing on the forum index page listing if possible please.

    Regards….

    #135758
    dasped
    Participant

    Good day,

    I seem to be having an issue with page titles not showing up.

    Build all current and latest. WP Multisite – Buddypress – BBPress.

    To be clear, this page’s title is <h3 id="post - ***">Troubleshooting</h3>

    This is what I’m missing, any reason this should occur please, or something I’m missing.

    Thanks.

Viewing 25 results - 13,976 through 14,000 (of 32,503 total)
Skip to toolbar