Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 6,676 through 6,700 (of 6,773 total)
  • Author
    Search Results
  • #51957
    Atsutane
    Member

    Correct me if i wrong .. by default when a user is regis. WP will set the “display name” equal to “username”. I try the code already and i dont get a blank name :) Anyway maybe i will change the code to do a double check.

    #53006
    yooakim
    Member

    This theme is a lot nicer that the old default theme.

    It works but there are a few issues.

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

    Great work!

    /Joakim

    #53219
    mouse8b
    Member

    In the default template’s register.php, I replaced the registration form with a message and link and it seems to have worked just fine. ( http://www.bandtr.com/wordpress/bbpress/ ). If there are some other factors at work that I am not aware of and need to know about, please let me know.

    If you look at the top of the default theme’s header (/bb-templates/header.php) you will see:

    <link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />

    <?php global $bb_locale; if ( ('rtl' == $bb_locale->text_direction) ) : ?>

    <link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />

    <?php endif; ?>

    Currently, you have a file called he.mo (is that the right name for Hebrew?) in bbPress’ languages directory.

    You should also put a file called he.php in that directory that has the following content.

    <?php

    $text_direction = 'rtl';

    ?>

    Then, bbPress will know that your language is RTL and should include both the style.css and the style-rtl.css automatically.

    But, you’re right. There are a bunch of CSS bugs it looks like. I’ll see what I can do to fix them.

    #50663

    In reply to: Displaying Photos>

    There’s a plugin for images: https://bbpress.org/plugins/topic/5?replies=14

    The <blockquote> tag is allowed by default.

    #53039

    Changing the ‘name’ value (line 125) from your bb-includes/capabilities.php file would be enough

    #53053
    so1o
    Participant

    ok i think i know what the problem is.. you have a custom theme.. you dont have a ‘bb_head’ hook in that theme..

    check header.php in the default theme..

    #1185
    so1o
    Participant

    Updates:

    – Added choice either to completely hide private forums or show them with private prefix

    – Added selectable prefix text, default set to ‘private’

    – Removed redundant forum_access_update_option

    – Created Common Submit for all options

    Ref:

    http://bbpress.org/forums/topic/385

    http://bbpress.org/forums/topic/385?replies=25#post-2808

    Download:

    http://www.adityanaik.com/projects/plugins/bb-private-forums/

    #51821

    In reply to: Plugin – Member List

    Trent Adams
    Member

    You uploaded the files to the right place! bbPress will try and see if a file is located in those 2 directories before defaulting back to the bb-templates/ directory!

    As for the link to thte member list page, most people have been adding that in their ‘views’ section of front-page.php. Copy front-page.php from /bb-templates/, edit the file to include the link, re-upload into my-templates/

    That way, if it doesn’t work (the way you edited it), you can delete front-page.php from my-templates and bbPress will use the original again in bb-templates! Nice eh!

    Trent

    #1183
    M
    Member

    Just looking to change the default ‘Member’ forum role title to something more appropriate for my forum. What file would that be contained in?

    #53005
    bbolman
    Participant

    It seems to work just fine for me. I must admit, I do like this more than the default theme.

    #51721
    Nicki Faulk
    Member

    Updated plugin list:

    * Allow Images 0.7.1

    * Avatar .73a

    * bbEmoticons version 0.72

    * Memberlist .73c

    * Google Sitemap Generator .6

    * BBPress Private Messaging 0.73

    * Use Display Name 0.7.2

    * Online List 1.3-fix

    * WordPress Integration .7

    * Post Notification 1.2

    * My Resolve Title 0.1

    * Limit Latest Discussion 0.73

    #52199
    Trent Adams
    Member

    I haven’t heard back, so why not. I am not saying for sure that everything is going to work on this one. Backup your current my-templates/ folder and then test with this one:

    Trent’s bbPress Default Template

    Trent

    #51682
    spencerp
    Member

    Nicki, I’m using another version of this plugin.. I had asked Thomas earlier in the thread, for one that sends one out no matter what, or who’s thread gets replied too. ;):)

    https://bbpress.org/forums/topic/313?replies=34#post-1766

    So, by default.. his original plugin won’t do that. ;) :)

    https://bbpress.org/forums/topic/313?replies=35#post-1528

    spencerp

    #52850
    lordcoder
    Member

    Ok the problem is solved by using this function instead of the default profile_menu :

    function profile_menu() {

    global $bb, $bbdb, $bb_current_user, $user_id, $profile_menu, $self, $profile_page_title, $bb_table_prefix;

    $user_id=(isset($user_id)) ? $user_id : $bb_current_user->ID;

    $list = "<ul id='profile-menu'>";

    $list .= "nt<li" . ( ( $self ) ? '' : ' class="current"' ) . '><a href="' . get_user_profile_link( $user_id ) . '">' . __('Profile') . '</a></li>';

    if ( isset( $profile_menu ) ) :

    foreach ($profile_menu as $item) {

    // 0 = name, 1 = users cap, 2 = others cap, 3 = file

    $class = '';

    if ( $item[3] == $self ) {

    $class = ' class="current"';

    $profile_page_title = $item[0];

    }

    if ( can_access_tab( $item, $bb_current_user->ID, $user_id ) )

    if ( file_exists($item[3]) || function_exists($item[3]) )

    $list .= "nt<li$class><a href='" . wp_specialchars( get_profile_tab_link($user_id, $item[0]) ) . "'>{$item[0]}</a></li>";

    }

    endif;

    $list .= "n</ul>";

    echo $list;

    }

    #51720
    Nicki Faulk
    Member

    Thank you, devils_adv. :)

    #51719

    wow.

    !!!!

    something to measure sucess by…!

    love it.

    #51718
    Nicki Faulk
    Member

    Thanks, spencerp! :)

    #51717
    spencerp
    Member

    I love it!! ;) :) You did an awesome job on the theme/forums there.. ;) :)

    /Get’s in line for downloading a copy of it, once she’s going to share it.. LoL! ;) :)

    spencerp

    /By the way, your link still stands on my main site: spencerp.net … under one of the links sections.. ;) :) I haven’t been there in a while though, but will stop in again then.. I promise! ;)

    #51716
    Nicki Faulk
    Member

    Thank you, ardentfrost. :D

    re: version – Whoops! Right you are, my bad. :)

    #51715
    ardentfrost
    Member

    btw, you’re using memberlist .73c, not .73a ;)

    #51714
    ardentfrost
    Member

    Very nice looking. Glad you’re using a few of my plugins :) Theming bbpress isn’t so easy yet, but it’s doable and you certainly did a good job.

    #51713
    Nicki Faulk
    Member

    Yeah, I know that once theming ability is added to bbPress, I’ll probably be fixing several things on this theme! LOL

    But hey, it’s yet another toy for me to muck up, I mean, play with. :D

    #51712
    Trent Adams
    Member

    That sounds great! I know so10 has requested (through TRAC) that we have something in the admin to choose themes. Here is what I have been doing for mine!

    /my-templates/theme1/

    /my-templates/theme2/

    /my-templates/theme3/

    Then I just have to copy contents of the theme folder I want to use to the root of /my-templates/

    It is a pain right now, but really simple when using FTP I guess!

    Trent

    #51711
    Nicki Faulk
    Member

    Thank you, Trent. :D

    I just may do that. I’m still working out little kinks here and there (mostly spacing issues), but I’ll definitely share here when I’m finished (or at least satisfied LOL!).

    :)

Viewing 25 results - 6,676 through 6,700 (of 6,773 total)
Skip to toolbar