Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 18,301 through 18,325 (of 64,532 total)
  • Author
    Search Results
  • #153060
    blackjak231
    Participant

    Thanks for the tip but i actually ended up adding the following at the top of the pages i needed it on :

    $args = array(
    	'post_parent' => 0,
    );

    Not very DRY as it is repeated (i could have done a function though…) but it does the job perfectly.
    HOWEVER, since every loop resets the $args array, i think it only works for me because my dropdown menu with the forums is before any other loop on the page.

    Here is the code i added in the pages i needed to show the dropdown (bootstrap):

    
    <?php if ( bbp_has_forums($args) ) : ?>
    	<?php while ( bbp_forums() ) : bbp_the_forum(); ?>
    		<li><a id="textdropdown" class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a></li>
    	<?php endwhile; ?>
    <?php else : ?>
    	<?php bbp_get_template_part( 'feedback', 'no-forums' ); ?>
    <?php endif; ?>
    

    I hope this helps you @selenii and anybody else who was trying to do this. I would however recommend Robkk’s way as it uses clean code from bbPress. Haven’t tried it though.

    Good luck and thank you!

    Robkk
    Moderator

    if you really want the replies and topics to be on the products page.

    this would require custom development

    http://jobs.wordpress.net/

    #1 outsourcing service for WordPress

    if you want bbpress/woocommerce integration

    i think there is some plugins that would help, cant think of them right at the moment.

    #153053
    Robin W
    Moderator

    probably several ways you could do this.

    Quickest I can think of is to alter the loop-single reply template

    You should really do this in a child theme, as otherwise theme upgrades will overwrite this – google wordpress child theme video for lots of useful videos on how to do this – it’s quick and simple.

    Create a bbPress folder in your theme :

    Wp-content/%yourthemename%/bbpress

    Where %yourthemename% is the name of your theme.

    Then go into

    Wp-content/plugins/templates/default/bbpress/loop-single-reply-php

    Copy this file into the bbPress folder in your theme. bbPress will now use this file instead of the default, and you can amend this file.

    line 61 does the content styling, so quickest to alter the background of this file.

    so you would put a check I their for keymaster, and if so, use a different class that has a different background.

    How up on coding and css are you, so that I don’t spend hours typing what you already know?

    #153052

    In reply to: Hi sorry i'm new here

    Robkk
    Moderator

    buddypress and bbpress are plugins for wordpress, so they need wordpress to work.

    bbpress does have an older standalone version of itself, it can work by itself.
    Using it with newer versions of wordpress might cause issues.

    About

    About bbPress

    bbPress is forum software, made the WordPress way.

    Have you ever been frustrated with forum or bulletin board software that was slow, bloated, and always got your server hacked? bbPress is focused on ease of integration, ease of use, web standards, and speed.

    We’re keeping things as small and light as possible while still allowing for great add-on features through WordPress’s extensive plugin system. What does all that mean? bbPress is lean, mean, and ready to take on any job you throw at it.

    Philosophy

    Now that bbPress is all grown up, we’re certain of a few things:

    Open Source, always and forever
    Less (code) is more
    Code is poetry
    Simplicity is a feature
    Speed & security are paramount to a great user experience
    Every line of code is written with these principles in mind, and if that sounds good to you get involved!

    About

    About buddyPress

    BuddyPress is a powerful plugin that takes your WordPress.org powered site beyond the blog with social-network features like user profiles, activity streams, user groups, and more. Some fantastic uses might be:

    A campus wide social network for your university, school or college.
    An internal communication tool for your company.
    A niche social network for your interest topic.
    A focused social network for your new product.
    If you’re using BuddyPress in a unique or interesting way, be sure to let people know on the forums; we’re always interested!

    BuddyPress is not “all or nothing”

    BuddyPress comes with several components that integrate directly with your site, with each other, and even with other plugins (check out bbPress for support forums.) If you only want to use a few features, BuddyPress will automatically adapt, showing only the menu items, pages and buttons for the features you have enabled.

    BuddyPress.org

    This site is built on WordPress and BuddyPress (we believe in the software we build!). Please consider registering and becoming part of the BuddyPress community. By doing this you’ll be able to contribute to the documentation, ask questions in the forum as well as build your BuddyPress profile so other BuddyPress developers and contributors can keep in touch with you.

    #153044

    In reply to: SMF Import to bbPress

    Bestru
    Participant

    Hello,

    i’ve the same problem as tehred.

    The database from the smf forum and from the wordpress / bbpress is on the same mysql server.

    What make i wrong?

    #153038
    Hector
    Participant

    hi @giantqtipz, in wp-content/plugins/bbpress/templates/default/css/bbpress.css

    search line 121:

    #bbpress-forums .bbp-forums-list li {
    display: inline ;
    font-size: 11px;
    }

    Changing the display: inline to display: list-item

    regards 😉

    #153035
    giantqtipz
    Participant

    Hi guys!

    Im loving bbpress. i think its perfect for my site.

    I want to make my subcategories appear vertically. right now its like this:

    Videogames
    – PS4, PS3

    I want to make it

    Videogames
    – PS4
    – PS3

    how do i do that?

    thanks so much guys.

    #153033
    Ryan
    Participant

    I have this issue as well and I am going to get to the bottom of it somehow or another and will post here when I find out the issue.

    The plugins I have similar to OP are:
    bbPress
    Black Studio TinyMCE
    GD bbPress Attachments

    #153032
    solosails
    Participant

    It seems many many people are having this issue with various themes, I have managed to almost get mine working by tampering with the blog template settings..

    However it seems that this issue could be avoided altogether if the user page could be a shortcode in a hardcoded page instead of dynamically being created which is why so many themes are not doing it correctly.

    Surely BBPress could figure out a more stable way of doing this user profile page?

    #153029

    In reply to: SMF Import to bbPress

    tehred
    Participant

    I hate to sound like a newb, but I am one when it comes to this.
    As you probably guessed, I’m trying to convert a SMF database file over to bbPress.

    I looked at the db, and it appears to be fine – I can see tons of old stuff in it. It’s about 122mb. I copied it into the same folder as the converter, and I think I had everything set up correctly, except that the converter does not appear to be finding the database. Here is what I’m seeing:

    View post on imgur.com

    All I have been able to guess is that I have the database in the wrong folder and that is why the converter is not starting?

    Any help is appreciated. Thanks!

    #153027
    Robin W
    Moderator

    Suggest this is theme related and you need to get bbpress to use the right theme template

    Step by step guide to setting up a bbPress forum – Part 1

    #153024
    hiniguez
    Participant

    Hi,

    It seems to be recommended to protect wp-admin area with .htpasswd an .htaccess. That’s what I did with all my websites.

    Some plugins are using admin-ajax.php. So, in .htaccess I added a line for this file.

    It looks like bbpress uses other files of the wpadmin area (on the user point of view – front office). Can somone tells me which files ?

    Thanks a lot,

    Hervé

    #153021
    Nitac
    Participant

    We’ve come across a couple of issues when a topic has > 1000 replies.

    Slow to post:

    • We’ve had users noticing a significant increase in post time. Might related to this post?

    Less than 1k replies:

    • User submits post and post id is appended to URL
    • Eg. /topic-name/page/13/#post-12345
    • User is anchored to their post

    More than 1k replies:

    • User submits post and post id is appended to URL but ignores/overrides the page reference.
    • Eg. /topic-name/#post-12345
    • User is redirected to the first page of the topic
    #153020
    treb0r23
    Participant

    @RavanH Thanks a lot!

    I’m going to wait a bit longer and see if BBPress gets updated to fix these issues before I need the site to go live. if not, I’m going to give this a whirl.

    #153019
    Stephen Edgar
    Keymaster

    I haven’t taken a close look for a while at attachment importing has some limitations that we really can’t do at this stage until some improvments upstream in WordPress Core are added.

    For now the best solution I have seen would be to adapt the following for Vanilla 2.1

    https://github.com/CybMeta/kunena-attachments-to-bbpress

    Kunena converter for bbPress 2.4

    Kunena converter for bbPress 2.4

    Out of curiousity which attachment/file upload plugin are you using with Vanilla as I believe it doesn’t include one in the standard install.

    Stephen Edgar
    Keymaster

    The top two importers included with bbPress are phpBB and SMF, primarily because these are the two most popular importers and where most feature requests come from.

    I’d love to know some detailed information on what/why/where you think the phpBB import is broken and/or why you don’t think it works so well.

    I haven’t seen any reports for quite a while on issues with the phpBB importer.

    #153014
    Stephen Edgar
    Keymaster

    The code /includes/admin/converters/SMF.php#L717 is replacing [tt] and [/tt] respectively with <tt> and </tt> and a quick lookup of the “teletype” HTML tag shows we should not really be using it all 😉

    http://www.w3.org/wiki/HTML/Elements/tt

    Can you post the HTML raw source of the post from SMF for me, this will allow me to see if it is currently doing it correctly, which I think it is per the details and screenshot below.

    SMF Source: [sup]superscript[/sup]<br />[sub]subscript[/sub]<br />[tt]teletype[/tt]
    bbPress Converted Source: <sup>superscript</sup><br><sub>subscript</sub><br><tt>teletype</tt>

    https://i.cloudup.com/jnMQwRKTXA.png

    We probably should rather than converting them <tt> / </tt> convert them to a span and/or p HTML elements:

    e.g.

    <span style="font-family: monospace;">
    This is a sample.
    </span>
    
    #153013
    Stephen Edgar
    Keymaster

    I had a quick look around to see if I could find if it was a port or fork of another forum project but very little info was around.

    I’d suggest taking a look at either the phpBB or SMF importers, they are pretty much the top two importers that are included with bbPress and have the best “import” feature support for bbPress.

    The ‘Example.php” importer also tries (I know it can/could/should be better) to explain some of the field mappings.

    I made a start on guessing the field mappings for the forum section based on the phpBB importer:

    Using a table prefix deluxebb_ should work fine with the field map 'from_tablename' => 'forums',, as the converter joins these staements together giving you deluxebb_forums 🙂

    https://gist.github.com/ntwb/da6466dc2b057942f0fa

    I’ll let you have a crack at the topics, replies and users and then I’m more than happy to tweak it with some of the newest updates that will be included in the next release of bbPress.

    #153012
    brittonk
    Participant

    I’m moving a social site into BuddyPress and the forums used a now defunct DeluxeBB. It doesn’t seem to be one of the options for the Importer Tools. Do any of you know if the structure of DeluxeBB matches that of one of the options listed?

    Here are the forums, threads, and posts tables which contain most of the information needed for this migration.

    --
    -- Table structure for table <code>deluxebb_forums</code>
    --
    
    CREATE TABLE IF NOT EXISTS <code>deluxebb_forums</code> (
      <code>ordered</code> int(5) DEFAULT '0',
      <code>cid</code> varchar(225) DEFAULT NULL,
      <code>name</code> varchar(225) DEFAULT NULL,
      <code>fid</code> int(6) NOT NULL AUTO_INCREMENT,
      <code>topics</code> varchar(225) DEFAULT NULL,
      <code>replies</code> varchar(225) DEFAULT NULL,
      <code>viewstatus</code> varchar(10) DEFAULT NULL,
      <code>poststatus</code> varchar(10) DEFAULT NULL,
      <code>replystatus</code> varchar(10) DEFAULT NULL,
      <code>lastpost</code> varchar(225) DEFAULT NULL,
      <code>lastpostby</code> int(10) DEFAULT '0',
      <code>description</code> tinytext,
      <code>lastpid</code> int(6) DEFAULT '0',
      <code>lastpidtime</code> varchar(255) DEFAULT NULL,
      <code>password</code> varchar(32) DEFAULT NULL,
      <code>userlist</code> mediumtext NOT NULL,
      <code>moderators</code> mediumtext NOT NULL,
      <code>ficon</code> varchar(25) NOT NULL,
      PRIMARY KEY (<code>fid</code>),
      KEY <code>cid</code> (<code>cid</code>),
      KEY <code>lastpostby</code> (<code>lastpostby</code>),
      KEY <code>lastpid</code> (<code>lastpid</code>)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ;
    
    -- --------------------------------------------------------
    
    --
    -- Table structure for table <code>deluxebb_posts</code>
    --
    
    CREATE TABLE IF NOT EXISTS <code>deluxebb_posts</code> (
      <code>pid</code> bigint(10) NOT NULL AUTO_INCREMENT,
      <code>tid</code> bigint(10) NOT NULL DEFAULT '0',
      <code>author</code> int(10) NOT NULL DEFAULT '0',
      <code>subject</code> varchar(285) CHARACTER SET latin1 NOT NULL,
      <code>message</code> text NOT NULL,
      <code>picon</code> varchar(50) CHARACTER SET latin1 NOT NULL DEFAULT '',
      <code>postdate</code> int(10) NOT NULL DEFAULT '0',
      <code>ip</code> varchar(50) CHARACTER SET latin1 NOT NULL DEFAULT '',
      <code>smiliesoff</code> smallint(1) DEFAULT '0',
      PRIMARY KEY (<code>pid</code>),
      KEY <code>author</code> (<code>author</code>),
      KEY <code>tid</code> (<code>tid</code>,<code>postdate</code>,<code>ip</code>)
    ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=495424 ;
    
    -- --------------------------------------------------------
    
    --
    -- Table structure for table <code>deluxebb_threads</code>
    --
    
    CREATE TABLE IF NOT EXISTS <code>deluxebb_threads</code> (
      <code>tid</code> bigint(10) NOT NULL AUTO_INCREMENT,
      <code>fid</code> int(5) NOT NULL DEFAULT '0',
      <code>author</code> int(10) NOT NULL DEFAULT '0',
      <code>subject</code> varchar(285) NOT NULL,
      <code>picon</code> varchar(50) NOT NULL DEFAULT '',
      <code>views</code> int(3) NOT NULL DEFAULT '0',
      <code>replies</code> int(3) NOT NULL DEFAULT '0',
      <code>closed</code> smallint(1) NOT NULL DEFAULT '0',
      <code>pinned</code> smallint(1) NOT NULL DEFAULT '0',
      <code>moved</code> int(10) unsigned DEFAULT '0',
      <code>flame</code> tinyint(1) NOT NULL DEFAULT '0',
      <code>lastpostby</code> varchar(255) NOT NULL DEFAULT '0',
      <code>lastpostdate</code> int(10) NOT NULL DEFAULT '0',
      <code>hiddenby</code> text NOT NULL,
      <code>likedby</code> text NOT NULL,
      PRIMARY KEY (<code>tid</code>),
      KEY <code>fid</code> (<code>fid</code>),
      KEY <code>pinned</code> (<code>pinned</code>),
      KEY <code>lastpostdate</code> (<code>lastpostdate</code>),
      KEY <code>author</code> (<code>author</code>),
      KEY <code>moved</code> (<code>moved</code>),
      KEY <code>ashouts</code> (<code>fid</code>,<code>tid</code>,<code>author</code>)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=406651 ;
    #153011
    Stephen Edgar
    Keymaster
    #153010
    Stephen Edgar
    Keymaster

    Thanks for the ticket in Trac, we will work on adding either of the plugins mentiooned in the Trac ticket to bbPress.

    https://bbpress.trac.wordpress.org/ticket/2698

    #153008
    ttmt
    Participant

    Hi all

    I’m using a WP multisite. One of the sites is a bbpress forum.

    On another site I’m pulling through the lastest post using the code below

    The only thing I can’t seem to find is the shortcode to show an extract of the post.

    Is there a shortcode to show an extract of the post.

    
    <?php
        switch_to_blog( 3 );
        $topics_query = array(
          'author'=> 0, 
          'post_type'=> bbp_get_topic_post_type(), 
          'post_parent'=>'any', 
          'posts_per_page'=>3, 
          //'post_status'=>join(',', array(bbp_get_public_status_id(), bbp_get_closed_status_id()), 
          'show_stickes'=> false, 
          'meta_key'=>'_bbp_last_active_time', 
          'orderby'=>'meta_value', 
          'order'=>'DESC', 
          'meta_query'=>array(bbp_exclude_forum_ids('meta_query'))
        );
        
        $widget_query = new WP_Query($topics_query);
    
        if ($widget_query->have_posts()) :
          $widget_output = $before_widget;
          $widget_output .= $before_title . $title . $after_title;
          ob_start();
    
        while ($widget_query->have_posts()):
          $widget_query->the_post();
          $topic_id = bbp_get_topic_id($widget_query->post->ID);
          $author_link = bbp_get_topic_author_link(array('post_id'=>$topic_id, 'type'=>'both', 'size'=>60));
          $forum_id = bbp_get_topic_forum_id($topic_id);   
      ?>
    
      <div class="col-sm-4"> 
        <div class="post">
          <h4><a>"><?php bbp_topic_title($topic_id); ?></a></h4>
          <p class="date"><span><?php bbp_author_link($topic_id); ?></span> <?php bbp_topic_last_active_time($topic_id);?></p>
          <p> <!--show post extract--> </p>
          <a href="">Read more</a>
        </div>
      </div>
    
      <?php 
        endwhile; 
        endif; 
        wp_reset_postdata();
      ?>
    
    #153002

    In reply to: Forum Icons?

    Robin W
    Moderator

    just tested worked fine on my twentyten test site

    suggest 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 twentyten to prove your code works.

    #152996

    In reply to: Picture

    Icaroferreira
    Participant

    My bbPress codes have many other plugins mixed with it, so I can not make these changes.

    I want to modify only these three items photo already do one weeks and I can not. =(

    I give you my username and password, you can get into my wp-admin to do these three changes? Please.

    3 items

    #152995

    Topic: Forum Icons?

    in forum Troubleshooting
    LaunchFocus
    Participant

    http://www.kristarella.com/2013/04/bbpress-forum-icons/

    Above link does not work. What is the best way to add forum icons?

    Our forum URL – http://launchfocus.com/forums/

Viewing 25 results - 18,301 through 18,325 (of 64,532 total)
Skip to toolbar