Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 15,026 through 15,050 (of 64,515 total)
  • Author
    Search Results
  • #163180
    Henk070
    Participant

    Hi Stephen,

    I think I’ve read about every post on importing a phpBB forum into bbpress, but to no avail. I have managed to find above info in the php.config file and used these in the import settings in bbpress import (I was quite sure I finally found what I was looking for, because I first used user:’root’ and password ‘root’), but I’m getting the exact same result as above: “no users to convert. no passwords to clear, etc. etc.

    This is what is running:
    I have bbpress 2.5.7 No forums created
    WP version 4.2.2
    phpBB 3.0.x
    Clean install of MAMP 3.2.1.

    This is what I did:
    I made an export of the phpBB database to be imported.
    I am running MAMP
    Created a new database on MAMP with the same name as the exported one, then imported the database into MAMP
    Use ‘localhost’ on port 3306 (same as on MAMP) and dbname, user, password and prefix as found in the php.config file from the phpBB install.

    No luck: “no users to convert. no passwords to clear”, etc. etc…

    Your help would be much appreciated!

    Thanks!
    Henk

    #163179

    Topic: Sidebar Issue

    in forum Installation
    hannah.headrick
    Participant

    Hi,

    I am building a forum (http://144.130.51.45/~bslifestyle/forums/forum/bespoke-lifestyles-forum/) with BBPress Version 2.5.7 and can’t get the sidebar to show up on either the page listed or what may be the forum index (http://144.130.51.45/~bslifestyle/forums/). I have contacted the support team for the theme I am using (Dante) and they have said:

    “Hi,

    Just checked and the same is happening with the other WordPress themes.
    You have the latest version of the plugin but looks something is wrong.

    Try to upload the plugin files again, if it don’t work you should contact BBPress support to help you to show the sidebar.”

    Can I have some help getting the sidebar to display?

    Also, as an aside, how can I get sidebars to show up on other forum pages? I have tried multiple plugins and so far none have worked (may be related to the original issue).

    Thanks

    #163177

    In reply to: Error in Installation?

    OscarGuy
    Participant

    Also, I’m running Frontier theme if it matters. I have two websites. I had installed BBPress on one months ago before I swapped to Frontier and that one installed fine. However, I had deactivated. Now that I’m using Frontier there and I tried reinstalling it, the same thing happens: no option to add forums in the dashboard.

    #163174
    patrix87
    Participant

    Sorry about that, I did not intend to insult anyone, French is my first language and maybe that sound worst that I intended it to be.

    For the update you could add a line to check for buddypress xprofiles and check this field instead of the bbpress one :

    xprofile_get_field_data( 'Signature', $user_id );

    sorry again about that.

    #163173
    Robin W
    Moderator

    The bbp-signature plugin is designed to work with bbpress not with buddypress, so it works fine – I’ve amended your original post to reflect that for future users in the first post to save them needing to read the whole thread.

    But the code wasn't too terrible

    General open software etiquette is not to insult other software authors, we are all at different levels and any software that works is useful 🙂

    The original author of this software is unable to continue supporting it, so I have access to it so that it can continue.

    I think it was made to work with buddypress groups whitout xprofiles yes. A simple update could fix that.

    If you’d care to suggest code that would make it work for users with and without buddypress, please contact me via my website, as I’d love to include it in the plugin

    http://www.rewweb.co.uk

    #163172

    In reply to: Error in Installation?

    Robin W
    Moderator
    #163171

    In reply to: BBPress fullwidght

    PinkishHue
    Participant

    Your site is not available so I can’t have a look.

    If you’re using a custom theme with ‘theme options’ you need to look at the settings there to see if the default setting is with a sidebar, your forum will use this default page unless you create templates specially for it.

    Here’s some info on the templates that bbpress looks for in your theme:

    https://codex.bbpress.org/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/

    Usually using page.php in most themes, so you could try opening up your page.php, remove the code that includes a sidebar, then save it as bbpress.php

    #163162

    In reply to: Languages in bbPress

    Adri Oosterwijk
    Participant

    It is really annoying that no one seems to bother…..
    bbPress is at this time not showing in the backend of the site, it does in the front end but in a wrong way.

    #163160
    ecorey
    Participant

    So this afternoon, it stopped showing my topics to my participants too. I went to my staging install and I deactivated every plug-in other than bbPress. The 502 error was still there. So, I deleted the entire forum with all topics and replies. The 502 error was still there. I changed the theme and the error was still there. Is there something else that I can try? I really don’t want to start over and it doesn’t appear that will help anyway.

    #163159
    trig_
    Participant

    hello, sorry i already tryed everything about this issues,

    i can’t get full width on my forum page

    http://teamplay.gamehosting.it/?forum=teamplay

    can you help me? i already removed php my sydebar ecc…

    #163157
    pandreas
    Participant

    Thank you all for your replies.

    I have found this solution https://wordpress.org/plugins/gd-bbpress-attachments/screenshots/ which works perfectly!!

    Regards,

    Andreas

    #163149
    PinkishHue
    Participant

    I was able to do this by adding this to my functions.php / custom plugin:

    
    // Add custom fields to bbpress topics on front end
    add_action ( 'bbp_theme_before_topic_form_content', 'bbp_extra_fields');
    function bbp_extra_fields() {
       $value = get_post_meta( bbp_get_topic_id(), 'YOUR-FIELD-NAME', true);
       echo '<label for="bbp_extra_field">My Extra Field:</label><br>';
       echo "<input type='text' name='YOUR-FIELD-NAME' value='".$value."'>";
    }
    
    //Save and update the values from the front end
    add_action ( 'bbp_new_topic', 'bbp_save_extra_fields', 10, 1 );
    add_action ( 'bbp_edit_topic', 'bbp_save_extra_fields', 10, 1 );
    
    function bbp_save_extra_fields($topic_id=0) {
      if (isset($_POST) && $_POST['YOUR-FIELD-NAME']!='')
        update_post_meta( $topic_id, 'YOUR-FIELD-NAME', $_POST['YOUR-FIELD-NAME'] );
        
    }
    

    I think that’s correct but am in a bit of a code-haze at the moment! Hopefully it puts you on the right track at least. (And I can’t remember where I got the original code so apologies for not crediting original author)

    #163148
    project_subdomain
    Participant

    Hi!
    When clicking through bbpress user pages (profile, edit profil, subscriptions etc..) the avatar and the user navigation will be displayed on the left side on all those pages by default.

    How can I remove avatar’s and user navigation’s div from all pages except the user’s profile home page to get more space?

    Tried this in user-details.php, did not work (blank screen):

    <?php if ( bbp_is_user_home() ){ ?>
    <div id="bbp-user-avatar">
    [...]
    </div>
    <div id="bbp-user-navigation">
    </div>
    }

    Thanks in advance!

    #163141
    darlingstewie
    Participant

    I am pretty much out of ideas as to what to do.

    Our website is http://www.geekgirlpenpals.com

    We have Godaddy managed wordpress hosting. I call their customer support and they have no idea what’s wrong.

    We were using the Hueman theme for a long time, and suddenly yesterday the BBpress plugin began acting up and causing a 500 internal server error. It caused those errors on both Posts and Forums. The error only appears to people who are logged in.

    Once I deactivated BBpress, the error was gone (but so were the forums)

    Since I knew it was BBpress, I uninstalled and reinstalled BBpress plugin. That did not fix it

    I turned on the Twenty Fourteen theme and that seems to show the forums fine. So I went ahead and installed a new theme, thinking it must be a theme issue.

    The theme worked great for about 5 hours and showed the forums and blog (while logged in, which is when the problem was occuring) but now as of 5 minutes ago – exact same problem.

    Feel free to use username jimbob and password jimbobsauce to test the Internal Server Error

    HELP 🙁

    #163140
    project_subdomain
    Participant

    Hi!
    I ‘d like to change the meta titles (browser’s page title) for bbpress’ profile/user pages as it was not catched by the translation in my language.
    So far I tried this which does not work:

    function amend_title () 
    
    { elseif ( bbp_is_single_user() ) { 
    
    	if ( bbp_is_user_home() ) { 
    
    $new_title['text'] = esc_attr_x( 'Translation of Your Profile', 'User viewing his/her own profile', 'bbpress' ); 
    } 
    } else { 
    			$new_title['text'] = sprintf( esc_attr_x( "%s's", 'User viewing another users profile', 'bbpress' ), get_userdata( bbp_get_user_id() )->display_name ); 
    		} 
    
    if ( bbp_is_single_user_topics() ) { 
    			$new_title['format'] = esc_attr__( "%s Translation of topics",        'bbpress' ); 
    
    } elseif ( bbp_is_single_user_replies() ) { 
    			$new_title['format'] = esc_attr__( "%s Translation of replies",       'bbpress' ); 
    
    } elseif ( bbp_is_favorites() ) { 
    			$new_title['format'] = esc_attr__( "%s Translation of favorites",     'bbpress' ); 
    
    } elseif ( bbp_is_subscriptions() ) { 
    			$new_title['format'] = esc_attr__( "%s Translation of subscriptions", 'bbpress' ); 
    } else { 
    			$new_title['format'] = esc_attr__( "%s Translation of profile",       'bbpress' ); 
    		} 
    } elseif ( bbp_is_single_user_edit() ) { 
    if ( bbp_is_user_home_edit() ) { 
    			$new_title['text']   = esc_attr__( 'Translation of edit profile', 'bbpress' ); 
    } else { 
    			$new_title['text']   = get_userdata( bbp_get_user_id() )->display_name; 
    			$new_title['format'] = esc_attr__( "Translation of edit %s's profile", 'bbpress' ); 
    		} 
    
     return $new_title; 
    } 
    add_filter('bbp_before_title_parse_args', 'amend_title' ); 

    Any help is much appreciated!
    Thanks!

    #163139
    swdesign
    Participant

    I am hoping someone here can help me or shed some light on what we can do about this. We have the WishList Member plugin installed, setup and running. It was not until then that we realized that despite the fact you can assign specific forums to each level any topics created by members with access to that level will not inherit that protection.

    This means that if member A has access to Forum A by being a member of Level A in WishList member and creates a new Topic, lets say ‘A’. Topic A is now visible to the entire world and not just members with access to Level A. Hope that makes sense.

    You can go into the WishList Member settings and protect that topic correctly after the fact, but that is a manual step for each and every topic that members create. That is definitely not going to work long term.

    I am hoping someone has some ideas on what we can do about this. I have contacted WishList Member and they say despite the fact they say the ‘integrate’ with bbPress they do not support this. Which I think is a cop out, since you can go in afterwards and protect the topics…

    Doctor Psyringe
    Participant

    Revival!

    It gets hilariously worse when running a MultiSite – Calling a SubSite “Forum” – then working around this issue. The bigger your site, the less you want everything to weigh for User loading and Server handling. There’s now an option in the bbPress Settings called ‘Prefix all forum content with the Forum Root slug (Recommended)’ – I’ve unchecked it. I’m willing to bet I run into *at least* one hundred different user issues now that I’ve done so. This was definitely designed for the smaller blog, even with it’s latest updates I’m having unrelated issues not addressed in documentation.

    I’m an advanced User, too. As cool as BuddyPress is, it’s pretty much useless without bbPress integration. As much as people would like to pretend (yep, you’re dreaming) their running their own “social media website”, it’s an unrealistic dream compared to running a Forum. Financing that dream over the Forum is poor form, but w/e.

    By the time it gets addressed, the advanced users with thousands of of hits a day wont change it. Why? Because of the Social Media Integration like Facebook, Twitter, and G+ – NOT BUDDYPRESS (which I run for other much different *fluffy* reasons). Likes and Shares are gold, it’s networking and sales. We will weigh our links; SHARING LINKS and LIKES; over making the url pretty for SEO at that point… no matter how terrific the fix.

    8 years too late pretty much. I know it’s community driven – and that’s respectable. Doesn’t change the bigger picture, though, and imo this plugin outweighs BuddyPress in importance concerning the current evolution of WordPress itself.

    #163133
    nicnack
    Participant

    yes but does that mean there are multiple login processes? once into the membership section and another into bbPress? Im simply wanting a forum to be part of my membership section so is there a way to modify the ‘forum’ page settings?

    Luis Fatorbinario
    Participant

    I use to have a good custom function on my theme that add custom banners before articles, what I do is to write a function with the rotation ads inside.

    The final lines are like this:

    return $custom_adsense . $content;
    }
    add_filter(‘the_content’, ‘custom_banner’);

    What is the_content equivalent in bbPress?
    How can I add a custom banner over all topics?

    My theme is Twenty Fourteen and I have a nice space above these forum pages that fits ads perfectly.

    #163131
    Doctor Psyringe
    Participant

    Hello. I run a MultiSite. I’m a firm believer in “Weight” – meaning I should only have the plugins I want activated on a site that demands it – in such a way that gives users a seamless experience (as if they never left the root). Otherwise, it weighs down the entire multisite, in my case of 8 subsites all serving vital purposes. eg. /root / magazine /forum /store /support /project1 /project2 /project3 /etc. Also helps with security.

    Every time I activate a bbPress plugin on a SubSite – it deactivates bbPress. Everytime I activate bbPress, it deactivates the plugins. I don’t need bbPress sitewide, nor do I need it’s plugins sitewide. It’s useless weight – and while I could use Plugin Organizer to manually disable the plugins 7 times accross dozens of addons… why should I have to?

    Potentially a user-error, I’m curious why this is might be occurring – or if there’s a solution to the issue?

    #163130
    Robkk
    Moderator

    No you were trying to find this code as if it was already in your theme , I just showed you the original code so you could understand why it was causing the issue.

    But just place this CSS code where you would put custom CSS like what I already listed.

    You do not have to replace any code just add it as custom css

    #bbpress-forums .single_post a {
      font-size: 12px !important;
      margin-left: 0 !Important;
    }

    Since your bbPress forums look custom I can’t tell which is custom and what could be your theme so you would have to edit this code and replace the original code in the bbpress.css file if you want or just place it in some other custom css areas with !important after the width to help out.

    You can place the code in the bbpress.css file where you want , it is your site
    the two places i said would be better for beginners so that the code doesn’t conflict with the media queries.

    li.bbp-forum-topic-count,
    li.bbp-topic-voice-count,
    li.bbp-forum-reply-count,
    li.bbp-topic-reply-count {
    border: 0px none;
    width: 10% !important;
    margin-right: 20px !important;
    margin-top: 0px !important;
    }
    #163129
    stiffmeister12
    Participant

    Okay so if I am understanding this correct (sorry im still learning this stuff)
    for my themes style.css files you want me to find the code

    .single_post a {
    font-size: 14px ;
    margin-left: 0 ;
    }
    and replace it with

    #bbpress-forums .single_post a {
    font-size: 12px !important;
    margin-left: 0 !Important;
    }

    And for this code

    li.bbp-forum-topic-count,
    li.bbp-topic-voice-count,
    li.bbp-forum-reply-count,
    li.bbp-topic-reply-count {
    border: 0px none;
    width: 10% !important;
    margin-right: 20px !important;
    margin-top: 0px !important;
    }
    you want me to open up the bbpress.css and add it above the media queries or just at the top above the other css rules?

    #163128
    Robkk
    Moderator

    Well a good way to link to the users topics created is maybe create a custom bbPress login widget as listed here.

    Redirect from page to profile url (menu link)

    I might create a gist to post what I mentioned in the topic

    #163127
    Robkk
    Moderator

    Your theme had something similar to this CSS

    .single_post a {
      font-size: 14px ;
      margin-left: 0 ;
    }

    So the new CSS I gave you would overwrite it only on bbPress forums.

    you can add it

    to your child themes style.css

    in a custom css plugin

    and you could add it to the bbpress.css file if you put it in your child theme in a folder called css somewhere above the media queries or just at the top above the other css rules.

    #163124
    stiffmeister12
    Participant

    I just checked my themes style.css and there is nothing with bbpress forums in it right now for some reason there is however css code in my responsive.css for bbpress forums

    #bbpress-forums .status-category li.bbp-in-forum-freshness {
    margin-left: 1px;
    width: 33.494% !important;

    #bbpress-forums .bbp-topics li.bbp-body ul.topic {
    border-bottom: medium none !important;
    border-left: 0 none !important;
    border-top: 2px solid #aaa !important;
    box-shadow: 1px 1px 0.5px 0 rgb(221, 221, 221);

Viewing 25 results - 15,026 through 15,050 (of 64,515 total)
Skip to toolbar