Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 31,676 through 31,700 (of 64,534 total)
  • Author
    Search Results
  • #113365
    BobHatcher
    Participant

    Ok, well, I figured it out. There are two things you need to worry about when you dump the contents of the bbp-twentyten theme into your child theme folder.

    1) The style.css file for bbp-twentyten will overwrite your child theme style.css and that’s the one that tells it to inherit the parent theme’s characteristics. So, what I did was to rename the bbp-twentyten style.css to style-bbpresstwentyten.css before I copied all the files in.

    2) The file screenshot.png which is the image that will show on your Themes page will get overwritten too. If you don’t delete or rename that file you will be very confused when you go to the Themes page because you’ll probably be looking for a screenshot of your child theme, not of bbpress twentyten. So, again, I renamed the file in the bbpress-twentyten directory to screenshot-bbpresstwentyten.png

    Hopes this helps some others.

    Bob

    #45135
    Jeaz
    Participant

    Hey,

    In 2.1 bbPress can now parse YouTube links and embed them directly into the posts, which is a great feature.

    However, I’ve come across one problem, the width of the videos.

    The videos default to 640 width which is too wide for my content. In wordpress media settings I’ve entered that the content shouldn’t be wider than 500px but bbPress do not adhere to that setting.

    Also, since the embed add width and height inline, I can’t change it with CSS.

    The only workaround right now is to add &w=500 at the end of the YouTube link, but that’s not ideal for many reasons. First, it makes more complicated for my users to add video. And also, it means that if I ever change width of the forum in the future, 500 might not be the ideal width and I’d have to go over and change it all again.

    Not sure if I should put this as a bug in the trac. I certainly don’t mind doing that but don’t want to flood it unnecessarily.

    #45131
    injua
    Participant

    bbPress 2.1-r3920.

    Really think there should be a role setting or a simple off-on setting to turn off akismet checking for logged in users.

    With the current governmental paranoid craziness regarding online privacy. More and more users are turning to proxies or VPN with shared IP. This leads to a lot of ham being caught in the process.

    Hope to see it in the future.

    In the BBP_Akismet class in bbb-extend-akismet.php there are this function with a do_action call. Do anyone know a quick and simple way to turn it off from here with code in functions.php?

    // Spam
    if ( 'true' == $post_data['bbp_akismet_result'] ) {
    
    // Let plugins do their thing
    do_action( 'bbp_akismet_spam_caught' );
    
    // This is spam
    $post_data['post_status'] = bbp_get_spam_status_id();
    
    // We don't want your spam tags here
    add_filter( 'bbp_new_reply_pre_set_terms', array( $this, 'filter_post_terms' ), 1, 3 );
    
    // @todo Spam counter?
    }
    
    sxalexander
    Member

    Thanks for the in-depth response, Jennifer. This is very helpful.

    murale
    Member

    Thanks. Fixed it. It appears it was the “bbPress WP Tweaks” plugin causing the issue.

    #113188
    sxalexander
    Member

    I can echo this. I’d like to hide this functionality from my users to clean up the interface if possible.

    #113828
    blogher8
    Participant

    Okay, and just to make matters weirder, I could log into my WordPress install (same account/password but for some reason you have to login again when you go over to bbpress) on the same iPhone.

    AND I could log into the bbpress side on a different iPhone (borrowed one from somebody). But on my own iPhone I suddenly can’t. And I’ve been doing it successfully for years.

    #45112
    #113363
    BobHatcher
    Participant

    Well, I am revisiting this and I appreciate baldg0at’s help. But, I have another question.

    If after creating my child theme which has a style.css in it that inherits the characteristics of the parent theme, and then I

    “Copy the files from plugins>bbpress>bbp-themes>bbp-twentyten into your child theme folder.”

    Won’t I then have the style.css from the bbp-twentyten theme and not the style.css that allows the child to inherit the parent’s theme characteristics?

    This is very confusing.

    #45118
    Faegan44
    Member

    Hi.

    I would like to be able to change column headings on bbpress. For instance, I would like “Freshness” to be “Most Recent” or something else. How can I do this? Thanks!

    Nicola
    Member

    I installed BBpress via Buddypress – site wide forums.

    I then set up up the slugs and the forum was working fine. I have a theme that already includes styling in the style.css file so customising colours and such wasn’t a problem. However I wanted to have the ability to add other content to the page which I couldn’t as the forum page didn’t actually exist in my wordpress pages.

    I then noticed a message saying “The following active BuddyPress Components do not have associated WordPress Pages: Discussion Forums”. After I created the page named forum and associate it with the forums, it stops working in the front end when navigating to my site and redirected to the homepage. So within the created Forum page I added this shortcode

    [bbp-forum-index]

    I was then able to select the new forum page as the forum in buddypress and remove the notice.

    The forum is now still located at mysite.com/forum which is great. I prefer this method I want to have the ability to add content to the created forum page as I said above.

    But now the forum page seems to have added in the share and twitter plugins and I’ve no idea how to fix this! please help.

    http://stylereaction.com/forum

    #113701
    Lynq
    Participant

    Yes you can use bbp_has_forums() and pass it some arguments to filter the query. for example something like:

    if ( bbp_has_forums( array( 'posts_per_page' => 1, 'max_num_pages' => 1 ) ) )
    bbp_get_template_part( 'bbpress/loop', 'forums' );

    This will filter the loop depending on what arguments you pass bbp_has_forums. I am not too sure on what filter or action you could use that to get that working on all queries.

    Default arguments for bbp_has_forums.

    // The default forum query for most circumstances
    $default = array (
    'post_type' => bbp_get_forum_post_type(),
    'post_parent' => bbp_is_forum_archive() ? 0 : bbp_get_forum_id() ,
    'post_status' => implode( ',', $post_stati ),
    'posts_per_page' => get_option( '_bbp_forums_per_page', 50 ),
    'orderby' => 'menu_order',
    'order' => 'ASC'
    );

    No problem for helping btw, I try to help as much as I can, I may just get in the way sometimes :p

    #113778
    Jeaz
    Participant

    All your posts and structure will be intact. You may have to look over your theme settings though, as they made quite a lot of changes there.

    It is also backwards compatible, so if you install 2.1 you can revert back 2.0.

    marcusjwilson
    Participant

    Hi –

    We’re having a problem with posting new Topics to bbPress from the front end of the site – but just in IE9. When trying to create a new Topic and hitting “Submit” the page simply refreshes without adding the Topic. When the page refreshes, the Topic submission form still contains the user’s content in the “Topic Description” field.

    bbPress is working fine in all other browsers… any ideas what the issue might be, or if there are known conflicts with other plugins?

    We’re running:

    WP 3.3.1

    BuddyPress 1.5.4

    bbPress 2.0.2

    Many thanks!

    #113744
    brettbrett
    Member

    fixed this with a custom login page for the sub-blog

    #113803

    Pull up the functions.php in you *WordPress* theme (not bbPress theme) – place that snippet at the very bottom. Right before ?> if your file has it.

    :)

    #113774
    Stephen Edgar
    Keymaster

    bbPress out of the box will not support [shortcodes] so JW Player will not work in forum posts.

    If you want to enable [shortcodes] in bbPress topics & replies then give this a try.

    https://wordpress.org/extend/plugins/bbpress2-shortcode-whitelist/

    And then install a ‘whitelist supported’ video player eg.

    https://wordpress.org/extend/plugins/vipers-video-quicktags/

    #110597
    DarwinsDream
    Member

    So when is the official non developer version coming out?

    #113801
    DarwinsDream
    Member

    Thanks Jared :D you have no clue how good it is to have you on my side on this one hahaha

    I saw You and John write that exact answer on another post and my lack of knowledge in actual hand PHP scripting cause me to kill my site wich is about 70% bbpress i killed my functions.php so i had to download a new version of bbpress and replaced the files i touched with new ones.

    I am positive (*crosses fingers*) that this do_shortcode script will work for me.

    Main Issue: I have NO clue where in the functions.php to put it, can you give my sad non PHP reading butt an example of where it should go or would you like me to post my functions page here.

    One more question:Do you mean my wordpress theme folder or my bbpress theme folder.

    As always Jared you my friend are the freaking man and thank you :)

    DarwinsDream
    Member

    Wow i had no clue anyone was here in this bbpress forum, seems like everyone is posting on this topic. There are other topics going too guys. Like one’s that haven’t been addressed in 5 days… just saying :P

    John?

    Jared?

    Anointed?

    Can someone please take a look at my most recent topic that I posted. While waiting for an answer Ive crashed my site twice(worse than i ever had before) bringing it back twice and then rebuilt it totally again once in about 48 hours. I really need some help. I soooo don’t want to do a complete redesign in a new platform, but that is an option that has crossed my mind. I’m so happy with my wordpress/bbpress site. But I need to get this video player working.

    Jason Dadarria

    Executive Director

    Soundhampton Technologies

    NY,NY

    http://www.soundhampton.com

    http://www.soundhampton.com/the_knowledge_forum

    #113799
    DarwinsDream
    Member

    Wow no help at all…. where is Jared when you need him? Tis a sad day at bbpress.org , Well can anyone please just be like.

    nah that’s impossible or hey idiot you should know how to do that… anything… please

    #45088
    cruthas
    Member

    Hi There,

    I am running the latest wordpress

    site url is: http://www.climberism.com/forum-page-tst/

    We have an iframe setup in the url above pointing to the bbpress forum we have installed. It is the only way I can get it to work with my wordpress theme. Anyway, is there a way to stop the iframe refresh from always going back to the same page? ie. if you’re in the “gear talk” section and refresh you just get dumped back to the main forum page.

    If anyone has any ideas, that would be awesome. Thanks.

    #44664
    sonld89
    Member

    Dear all, I have a wordpress website and in website have a bbpress forum. I want comment in a topic of website sort by post date desc but reply in a topic of forum sort by post date asc.

    I was config “Setting -> Discussion: Comments should be displayed with the newer comments at the top of each page” and add filter:

    add_filter( 'bbp_has_replies_query', 'bbp_reverse_reply_order' );
    function bbp_reverse_reply_order( $query = array() ) {             
    
                // Bail if no query
    if ( empty( $query ) ) return;
    
                // Change the order
    $query = 'ASC';
    
                // Return the adjusted query
    return $query;
    }

    BBPress order reply when query the replies by post date asc but when paging the replies is sorted by post date desc on a page.

    Please help me resolved this issue. Thanks!

    kaoskaos
    Member

    I know.

    “Edit: Found a solution to this problem myself.”

    #45087
    DarwinsDream
    Member

    I cant get my jwplayer shortcode to work in bbpress. I am aware of the shortcode issue in bbpress. But I need all shortcodes to work in bbpress. Security is not an issue at this point.

    I tried the (get_shortcode)code in the theme fuctions.php file with no result. Not really sure if I was supossed to put it in the wordpress theme or the bbpress theme. Maybe im writing the code in the wrong spot, I’m not the strongest on php my strengths are html, css, and design. This issue has been a thorn in my side for about a week. So if anyone can tell me exactly where to place the–

    add_action( ‘bbp_get_reply_content’, ‘do_shortcode’);

    php script so I can get this thing flowing, I would def owe you a buck.

    also i get an error when i try and install shortcode whitelist and bbcode

Viewing 25 results - 31,676 through 31,700 (of 64,534 total)
Skip to toolbar