Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 6,676 through 6,700 (of 6,778 total)
  • Author
    Search Results
  • #53619
    Sam Bauers
    Participant

    I’m working on a revised patch file for categories to accommodate the latest builds with the new templating file structure. Although it seems to be just me and spencerp who are using it. Of course, if you are customising your templates, then you will still have to edit your own based on the changes to the default theme.

    #53465

    davidbessler,

    Your theme needs to have a call to bb_head() in its header.php.

    If you’re using a version of the default header, make sure bb_head() is actually being executed on every page load. There was a bug in early versions of bbPress that prevented bb_head() from being called on anything but topic pages.

    As an aside, if you’re adding javascript, you should definitely use bb_enqueue_script().

    bb_enqueue_script( 'give-it-some-name', '/soruce/file.js');

    #52899
    spencerp
    Member

    @nateolsen, I just added ALL 3 databases into ONE database, like such:

    database_name (holding all three)

    bb_forums

    bb_posts

    bb_privatemessages

    bb_tagged

    bb_tags

    bb_topicmeta

    bb_topics

    mw_archive

    mw_categorylinks

    mw_externallinks

    mw_filearchive

    mw_hitcounter

    mw_image

    mw_imagelinks

    mw_interwiki

    mw_ipblocks

    mw_job

    mw_langlinks

    mw_logging

    mw_math

    mw_objectcache

    mw_oldimage

    mw_page

    mw_pagelinks

    mw_querycache

    mw_querycachetwo

    mw_querycache_info

    mw_recentchanges

    mw_redirect

    mw_revision

    mw_searchindex

    mw_site_stats

    mw_templatelinks

    mw_text

    mw_trackbacks

    mw_transcache

    mw_user

    mw_user_groups

    mw_user_newtalk

    mw_watchlist

    sk2_blacklist

    wp_bad_behavior

    wp_bas_log

    wp_bas_os

    wp_bas_pages

    wp_bas_refer

    wp_bas_searches

    wp_bas_ua

    wp_bas_visitors

    wp_bbpress_post_options

    wp_bbpress_post_posts

    wp_categories

    wp_comments

    wp_link2cat

    wp_linkcategories

    wp_links

    wp_options

    wp_post2cat

    wp_post2tag

    wp_postmeta

    wp_posts

    wp_secureimage

    wp_sk2_logs

    wp_sk2_spams

    wp_tags

    wp_tag_synonyms

    wp_usermeta

    wp_users

    Of course, used the normal database prefix for each one specifically. ;) :) It was mentioned though, that for the mw_ ones, you didn’t have to use the “mw_” prefix for when trying to mesh with bbpress/WP.. but, to play it safe, I used the default “mw_” prefix anyway.. Choice is your’s really.. :) ;)

    @mozey, nice!! I’ll have to try that out sometime, well, when I get more time. ;) :) Thanks for tips and pointers! ;) :)

    spencerp

    Trent Adams
    Member

    By default, the bbpress-integration.php plugin that you are using in WordPress brings over the registrations from bbPress and gives them the default role that you have for WordPress. That would mean that if they are given author status then that would be the default role for new members in WordPress. Maybe check that out.

    I tested this on my test forum and then changed the default role from subscriber to admin and sure enough the new user that I created came across in WP as an admin.

    Trent

    #52340
    ateale
    Member

    kickass! yes our server was set by default to php4. The server guys said:

    We have checked our server logs. The reason for the issue is not related to the memory limits for your account.

    The file_put_contents() function is only available in PHP 5.

    By default our servers handle any requests to .php file through the PHP 4 interpreter. By default the PHP 5 interpreter processes only files with .php5 extension.

    If you want to change this in a way that .php files are processed by the PHP 5 interpreter you should put the following line in your /www/blog/.htaccess file:

    AddHandler application/x-httpd-php5 .php”

    #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. :)

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