Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 59,176 through 59,200 (of 64,401 total)
  • Author
    Search Results
  • #53013
    Trent Adams
    Member

    Not sure if they did or not, but it is pretty simple to change. Head to style.css and find the following:

    #profile-menu {
    list-style: none;
    position: absolute;
    right: 0;
    }

    and change to something like the following:

    #profile-menu {

    margin-top: -20px;
    margin-right: -20px;
    padding: 20px;
    float:right;
    }

    Not perfect, but something to start from!

    Trent

    #53012
    mattpeckham
    Member

    Hey Trent,

    Did anyone come up with a resolution for the original poster’s:

    “When i click on “View your profile” the menu choices goes off way out to the right…”

    Cheers,

    Matt

    #61571

    In reply to: How Do I Do This?

    chrishajer
    Participant

    Just grab the links to the individual forum pages then, and insert them into a WordPress page. You’ll have to maintain it manually, so if you add a new city you would need to add a new link to that WordPress page. I imagine there is probably a way with integration to use the bbPress functions in a WordPress page but I think that’s more work than it’s worth, especially if your list of cities is pretty much set.

    Your WordPress page would be titled “Forum” then, and in that page would be the links to the individual forums. Then you might not even need front-page.php since you’d be navigating directly to the parent forums for each city. I think you would probably leave it there so if anyone navigated in the breadcrumbs to the next level ‘up’ they would still get a list of all cities, either links to the parents, or the way you had it set up initially with the long front page.

    #61739
    peterwsterling
    Participant

    I am a dork!

    I searched and searched – so I posted – and then I found this https://bbpress.org/forums/topic/cant-add-additional-tags-to-post

    The detailed fix by Scott works – ye ha!

    Isn’t it always the way?

    #2636
    peterwsterling
    Participant

    I have installed bbPress using the same DB as WordPress so they can both share user details. This works great. Although I have not put bbPress in a sub-dir of WordPress to share cookies.

    However, when I log in as the Key Master (who is also the administrator in WordPress) I cannot create new Forums. It says I don;t have permission to do that! When I use the exact same set up with a dedicated bbPress DB it all works ok.

    Is this a bug? I think it must be…

    #61570

    In reply to: How Do I Do This?

    chgogrrl99
    Member

    Oh, BTW, what just to make sure I explained it clearly…

    On my main WP site, in my navigation bar, I was going to have Page called forums. If someone clicked on that “Forum” Page button they would see a list of cities. I just thought it would be easier for them to be transported directly to their city of choice rather than having to scroll down the page once reaching the bbpress forums.

    #2633
    livibetter
    Member

    Should be used for TESTING ONLY

    Download this file

    Install:

    Put activate.php to your template folder.

    Put bb-activate.php to your bbPress root folder.

    Put EnhancedRegistration directory to my-plugins

    Only tested on kakumei template without other plugins. Currently, it only support user activation. User will receive an additional mail with a code for activation. They can click the link within that mail, or manually navigate to the activation page.

    And Key Master can delete user haven’t activated over ## hours.

    Possible features in later releases: Registration Approval, Registration Email Verification.

    Please tell me what do you think!

    #61704
    chrishajer
    Participant

    I think a plugin IS the easiest way to do it without having to resort to modifying core files, which is generally a bad idea. You lose your changes when you upgrade bbPress.

    I think you’ve found the best information about the profile already by browsing the source. There is no official documentation that I know of, but browsing the source is good, and there is at a start of an additional source:

    http://bbpulp.org/wiki/Main_Page

    I wish I knew more about plugins to help you with this, but I don’t. I’m sure someone else will come along and explain how to do this easily. There is another current thread about modifying the profile information, so learning how to do it would help in both places. I’m pretty sure the answer is to do it with a plugin rather than modifying core files.

    We’re writing our own history here :-b)

    #53529
    chrishajer
    Participant

    sambauers, are you saying I have to move to India or China to get a job like that? More work being taken away from Americans … :D

    Seriously though, I have a few spam users registered every day, and they always link their username to a website, but there are never any posts by them (maybe I delete them soon enough after registering that they never make a post.) So, what good is it creating a user with a link to a website in a profile they never post from? Would a list of users show up somehow in a stock bbPress install where the links there could actually drive traffic to them somehow? I know WHY they do it, but if their username is never shown next to a post, how would the link to their site ever get picked up? I’ve always wondered about that.

    #61550

    In reply to: How Do I Do This?

    chrishajer
    Participant

    > 1. I’d like to add our logo with either a button

    > that says “Home” or something indicating back to

    > the main page. I tried to add the logo included

    > in a banner, but it wasn’t aligned correctly.

    Try inserting it again so people can see it and help you get it aligned properly

    > 2. I’d like to make the green lettering a bolder

    > Color, maybe even change the size of the font.

    In your theme, find this around line 21 and change to whatever you like:

    a { color: #2e6e15; text-decoration: none; }
    a:hover { color: #006400; }

    You can change the color and font weight and size there.

    > 3. I’d like to eliminate “Latest Discussions”

    > entirely.

    In front-page.php, on line 11, change this:

    <?php if ( $topics || $super_stickies ) : ?>

    to this

    <?php if ( 0 > 1 ) : ?>

    That originally said “if there are topics or super_stickies” then do the rest, which is show the latest discussions. Changing it as shown will cause it to never show “Latest Discussions” because zero is never greater than one (the statement always evaluates false so the code block is skipped). If you want to actually rip out the code that would display the Latest Discussions, you would delete lines 12 to 41 in the file front-page.php in your theme. Those are the line numbers in the stock file, your line numbers might be different. Delete from

    <?php if ( $topics || $super_stickies ) : ?>

    to

    <?php endif; // $topics or $super_stickies ?>

    inclusive.

    > 4. This message board is huge…Is there a way

    > to anchor each city so we can put links on a

    > page on the main site. Example: “Click Here To

    > Go To the Chicago Forums” and they are taken to

    > the Chicago part of the board.

    I have to think about that one. I imagine there’s a way to do it, but I haven’t ever done it. Since the name of the city is not a link, you’d have to make that a link to that category, and then suppress the listing of the child forums on the front page. Or, you could just create a new front-page.php that links to only those parent forums. Can you post a link to a screenshot of how you accomplished the different cities like that? Something from your admin panel, or a link to the post here that guided you toward separating things into cities like that?

    WAIT: is it this that allowed you to separate the cities? I think livibetter could probably help you do what you want there since that was their code initially.

    #2634
    Sam Bauers
    Participant

    I’ve added the GPL license to the trunk of bbPress as well as a README containing copyright/attribution to contributors to bbPress.

    You can view the current README file here:

    http://trac.bbpress.org/browser/trunk/README

    I think this is a nice way to acknowledge the individual contributions of people involved in the development of bbPress.

    I haven’t dug very deep (or even at all) into the changesets to find out past contributors. If you believe you should be on the list then please raise a new ticket in Trac pointing out what you contributed and when (the actual changeset number is really handy). I’ll validate it then add you as soon as I can.

    If anyone out there who has some experience in the field of applying the GPL to projects wants to constructively criticise the way I have applied the license to the project then please go ahead. However we will not be applying headers to every file at this stage.

    #2631
    richsad
    Member

    Hi. I want to change the data that is collected in the Registration:Profile Information page of bbpress. Some background…

    I have a bbpress/WPMU integration. The system is working fine in terms of the two sites being integrated. When a user goes to register for an account on the forum, they are presented with a form with name, email, website, occupation, location and interests. I see in the source code where the associative array is (get_profile_info_keys). So I could modify the fields there, but there must be some “proper” way to change the profile info that is gathered.

    I apologize if this is plainly explained somewhere. I can’t seem to find any admin page related to changing the bbpress profile info. I’d prefer to do this the sanctioned way and not modify source files.

    Reading other posts I see stuff about plugins and the profile, but surely that isn’t the easiest way to change the nature of the data collected?

    #58202

    In reply to: bbSync

    fel64
    Member

    William: does a single, unique reply in bbpress sometimes not appear in wp and sometimes appear several times? Does this change as you reload the page or does it change from reply to reply (but stay consistent between refreshes)?

    Vafaaaan: they don’t. I’ve yet to implement that.

    #58201

    In reply to: bbSync

    vafaaaan
    Member

    If i submit a post in wp with tags .. the tags are missing in bbpress. They dont get synced?

    #61692

    @fel64:

    My Blog’s address is: http://www.cmscentral.de/index.php

    Installed in subfolder /content/

    My forum’s address is: http://www.cmscentral.de/content/forum

    I installed bbpress in my Blog’s/WP’s subfolder, because that supposedly should automatically have the right cookie settings.

    Could this be a www/no-www issue?

    #55907
    citizenkeith
    Participant

    Thanks for writing this plugin. :)

    Every time I update the restriction settings, my Private Forum plugin settings are reset to “Open To All.” Not sure if the problem is with this plugin or the Private Forum plugin.

    #59680

    In reply to: OpenID for bbpress

    baptiste
    Member

    Did anyone find that you could piggyback onto the WordPress integration/authentication when using the OpenID plugin? It didn’t work for me. I had the plugin activated on my WordPress site and was able to login and create users just fine, but bbPress didn’t know about the credentials and wouldn’t login.

    I need to get more familiar with how the integration is working – I thought it would work fine since it created a normal WordPress user record. But it kept saying the userid was unknown… Will probably dig into it later. The WP plugin is great – the persona fill in stuff is very cool. Only quirk was my ‘Display As’ defaulted to the userid even though a name was included. But I digress.

    #61695
    chrishajer
    Participant

    Would any of these plugins be useful?

    Support Forum

    Private Forums

    Change Roles

    I think editing out the capability to post for certain member roles would do the trick (the last plugin).

    #60047
    chrishajer
    Participant

    It’s been discussed a couple times:

    https://bbpress.org/forums/topic/anonymous-posting

    https://bbpress.org/forums/topic/anonymous-post

    https://bbpress.org/forums/topic/my-manager-wants-to-remove-the-need-for-passwords-altogether

    I would just make them register. If they can’t be bothered with that, why let them bother you with support questions? Can you think of other places where this is allowed?

    Heck they can just register with a fake name and disposable email. It’s not that big a deal.

    #61691
    fel64
    Member

    electroniques: what are the urls of your installs? You probably need to set the cookie domains explicitly.

    joeby: I’d love to, but advice to electroniques is going to help you too. If you want to reward the help anyway, that’d be awesome.

    #61040
    vafaaaan
    Member

    omg sry ..

    add_profile_tab(__(‘Name’), ‘edit_profile’, ‘moderate’, ‘this-file-was-missing.php’);

    So many ppl in this forum .. i can’t breathe ;)

    #61039
    vafaaaan
    Member

    am i doing it right?

    function ed08_tab_add()
    {
    add_profile_tab(__('ED 08'), 'ed08', 'moderate', 'ed08-template.php');
    }
    add_action('bb_profile_menu', 'ed08_tab_add');

    #61038
    vafaaaan
    Member

    cant get new profile tab/page link to work.. :(

    #61037
    vafaaaan
    Member

    What does these?

    add_profile_tab(__('Name on tab'), 'whats this?', 'And this?', 'file.php');

    .

    if i call it once in my plugin it will remain until i deactivate it ?

    .

    Add settings?

    bb_update_option('my_options', $options);

    .

    Delete settings?

    bb_delete_option('my_options');

    .

    Show notice on admin page?

    bb_admin_notice(__('Settings Saved'));

    #61653

    In reply to: Suggestions and misc

    vafaaaan
    Member

    Im using bbpress-integration.php first then installed bbsync .. seems working ok. Think ill let users signup via bbp and add admins trough wp.

    OT: trac … is there a similar web-based management of software projects without the python stuff, written in php out there?

Viewing 25 results - 59,176 through 59,200 (of 64,401 total)
Skip to toolbar