Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 5,601 through 5,625 (of 6,776 total)
  • Author
    Search Results
  • #80197

    You changed the defaults, instead of just using different parameters when you call the function? Editing core files is really bad practice…

    #32010
    Jon Dingman
    Member

    I’m trying to figure it out, is there an easy way to make sure that ALL my permalinks use the .html file extension instead of the default /profile/username and no extension at all?

    Thanks!

    #80194

    In the first line of function bb_tag_heat_map:

    $defaults = array( ‘smallest’ => 8, ‘largest’ => 22, ‘unit’ => ‘pt’, ‘limit’ => 40, ‘format’ => ‘flat’ );`

    Line 3158 of functions.bb-template.php in my slightly outdated SVN of 1.0.2

    #32001
    InvTrdr
    Member

    Is it possible to add a navigation bar to the default Kakumei theme? If so, how?

    Thanks.

    #80193
    InvTrdr
    Member

    Where is the default of “40” seen?

    #80192

    bbPress functions have a set of default values that are overwritten by the arguments passed when it’s called, so if a value isn’t specified for something, it stays with the default.

    #80234

    In reply to: Modifying header.php

    CraigElias
    Member

    Thanks for the help.

    Sorry about that.

    Try this … http://shiftselling.com/forum/bb-templates/kakumei/header.txt

    I’ve decided to modify the default template – kakumei – because it’s a cleaner design and I think it will be simpler to modify so it suits my needs.

    Thanks,

    Craig

    #79979

    In reply to: removing tags

    chrishajer
    Participant

    Yes, I meant the default theme, kakumei.

    So, it’s a problem with your theme.

    I created an account and posted a test topic. I don’t even see the little X next to the tag to delete it. So, how are you going about deleting tags? Normally, you get a little X next to any tag you use so you can delete your own tags.

    #79978

    In reply to: removing tags

    InvTrdr
    Member

    hey chris. I tried it on a different theme from the bbpress showcase and the tags delete function works properly. The URL is http://www.invictatrader.com/bbpress FYI. What is the stock theme? The default theme?

    #31984
    InvTrdr
    Member

    I have <?php bb_tag_heat_map( 9, 38, ‘pt’, 80 ); ?> in my tag.php file. Still I can only see 40 tags max in the heat map. Am I supposed to change “80” somewhere else too? Maybe in the function? Where do I find the function below? Got it from another topic.

    Thanks.

    function bb_tag_heat_map( $args = ” ) {

    $defaults = array( ‘smallest’ => 8, ‘largest’ => 22, ‘unit’ => ‘pt’, ‘limit’ => 45, ‘format’ => ‘flat’ );

    #80093

    Try matching the code with the default theme and if you need to show more additional info then you can take a look at this too https://bbpress.org/forums/topic/unhide-profile-email-adresses

    #80036
    johnhiler
    Member

    I’m not sure why this would happen, especially on the default theme.

    I would recommend two things:

    1) First, try disabling your plugins to see if that helps at all. If it does, enable one plugin at a time to see which plugin is causing the conflict.

    2) If that doesn’t work, try this plugin?

    https://bbpress.org/plugins/topic/front-page-topics/

    I use it on all my sites, and it’s been great…

    Good luck!

    #31941
    honestscott
    Participant

    Hi,

    I had set my post per page to 12 in the reading settings in my default Theme Kakumei Blue, and what happened was once a topic hit 13 pages, and it filled with 12 posts…your posts would not show up.

    You could type it in and hit send, but nothing showed up. I would even get an email saying there was a new post, but when I clicked the link nothing showed up.

    I ended up returning the setting to the default 30 posts per page and it is working again…is this the way that setting is supposed to work?

    Thanks!

    Scott

    Mark
    Member

    Those are warnings, not errors. They are only presented when E_STRICT is on, as the PHP engine can and will disregard them and continue to compile just fine. Without looking into the problem too deep (it’s getting on, and I’m about ready for bed), off the top of my head I would suggest that the deprecated warnings are due to the fact that PHPs handling of OOP has changed mildly between v4 and 5. Objects are now passed by reference by default, whereas in PHP4 they weren’t. Since bbPress is backwards compatible to work on PHP4 (it cuts down on the snarky accusations that one might receive for being version specific), it will return warnings in PHP5 that are just that. Warnings.

    That’s the only real problem too. Turn off E_STRICT and you won’t get the remaining notices. The ‘headers already sent’ errors are due to the fact that you’re getting the deprecated warning (which outputs text to the screen, thus sending headers) before the script has completed its run.

    So… simply put, it can be called stable, as it’s purely your setup that is causing the issue, not bbPress itself.

    #31922
    pigmonkey
    Member

    I would like to make email addresses viewable in member profiles to all of my forum members (but not unregistered viewers). By default, email addresses are only viewable to admins. How can I change this?

    #79908
    gerikg
    Member

    that’s strange I thought by default, people have to register. What version are you using and you have any integration?

    #79907
    chrishajer
    Participant

    By default, non-logged in members cannot post. How is it that they can post in your forum? Are you using a plugin?

    And by ‘make a reply to a post’, what do you mean? That the reply is not threaded or indented, or maybe you mean they’re not able to quote the message they’re replying to?

    Please clarify. Thanks.

    #79828

    “Currently, plug-ins for both WordPress and bbPress, WordPress’ forum software solution are available.”

    *sigh*

    Apparently the bbPress plugin is still in alpha, as of about 10 days ago:

    http://forum.gigya.com/forum/Default.aspx?g=posts&m=1619

    The WordPress one is released though, so maybe it’d be fine under a WP/bbP integration setup

    #31889
    Gautam
    Member

    I have developed an ajaxed chat plugin, which uses phpfreechat.net script. That script has multiple themes, multiple languages, and multiple features.

    There is also a settings page in which you can save various parameters/config for the script.

    There can be 2 types of storages – mysql & file, default is mysql, it automatically uses the bbPress db you are using and makes tableprefixajaxed_chat table.

    You can see the various commands that can be used in chat, and the FAQ at phpfreechat.net

    There are 2 ways you can call the chat:

    http://yoursite.com/?chat

    or by placing this code anywhere in your template:

    <?php if (function_exists('ajaxed_chat_load')) ajaxed_chat_load(); ?>

    Live Demo (At my test forums): http://forum.gaut.am/ (inside template) or http://forum.gaut.am/?chat (full screen)

    Download Link – http://gaut.am/uploads/ajaxed-chat-1.0-beta.zip

    Note – It is beta version, not a release (for now)

    I still need to work on the admin settings page, but still its not too bad for now.

    Comments, feedback & suggestions are welcomed!

    #31888

    Topic: Changing font

    in forum Themes
    Eleeist
    Member

    By default the text in the text box when you are writing a message is the Courier New. How can I change it?

    #79689
    gerikg
    Member

    I had a problem with a css file that wouldn’t import a php file. (@import url(css/loader.php);)

    look at the main css file and see if there is any importing involved.

    #79425

    All my code is written against 1.0.2 SVN, so it’s not 0.9-only :) and yeah, $allowed_tags is meant to be changed and then back again, not the cleanest way of doing things, but it should work. The copy that’s working live at the moment is below (I just realised I forgot to turn on the validation code too, oops):

    <?php
    /*
    Plugin Name: Restrict Topic Tags
    Description: Restricts tags to a pre-defined list.
    Author: Kawauso
    Version: 0.1.1
    */

    $allowed_tags = array(
    'test4',
    'test 3',
    'test3',
    'test2',
    );

    function restrict_topic_tags_form( $args = null )
    {
    $defaults = array( 'topic' => 0, 'submit' => __('Add »'), 'list_id' => 'tags-list' );
    $args = wp_parse_args( $args, $defaults );
    extract( $args, EXTR_SKIP );

    if ( !$topic = get_topic( get_topic_id( $topic ) ) ) {
    return false;
    }

    if ( !bb_current_user_can( 'edit_tag_by_on', bb_get_current_user_info( 'id' ), $topic->topic_id ) ) {
    return false;
    }

    global $page, $allowed_tags;

    $current_tags = bb_get_topic_tags( $topic->topic_id );
    $allowed_tags = array_flip( $allowed_tags ); // CHANGE PLACES!
    foreach( $current_tags as $tag ) {
    if( isset( $allowed_tags[ $tag->name ] ) )
    unset( $allowed_tags[ $tag->name ] );
    }
    $allowed_tags = array_flip( $allowed_tags ); // CHANGE PLACES!

    if( is_array( $allowed_tags ) && !empty( $allowed_tags ) ) { ?>
    <form id="tag-form" method="post" action="<?php bb_uri('tag-add.php', null, BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_ADMIN); ?>" class="add:<?php echo esc_attr( $list_id ); ?>:">
    <p>
    <select name="tag" id="tag">
    <option value=""><?php _e("Select a tag")?></option>
    <?php foreach( $allowed_tags as $tag ) { ?>
    <option value="<?php echo $tag?>"><?php echo $tag?></option>
    <?php } ?>
    </select>
    <input type="hidden" name="id" value="<?php echo $topic->topic_id; ?>" />
    <input type="hidden" name="page" value="<?php echo $page; ?>" />
    <?php bb_nonce_field( 'add-tag_' . $topic->topic_id ); ?>
    <input type="submit" name="submit" id="tagformsub" value="<?php echo esc_attr( $submit ); ?>" />
    </p>
    </form>
    <?php
    } // End if

    } // End function

    function restrict_topic_tags( $tag ) {

    global $allowed_tags;

    if( !in_array( $tag, $allowed_tags ) )
    return array();

    return array($tag);
    }

    add_filter( 'bb_add_topic_tags', 'restrict_topic_tags' );

    #79687
    RahimTSNE
    Member

    after giving 755 permission the guangzhou started working but i want to use inove instead. Suggest me the solution.

    thanks

    joseffb
    Member

    I’m not able to get WPMU 2.8.4 and BP 1 to SSO at all. I tried and can’t get it to work any help would be grateful.

    I have the multi-domain plugin setup and also have the bbpress-integrate plugin in the “plugins” directory.

    WP-Config.php

    /**

    * The base configurations of the WordPress.

    *

    **************************************************************************

    * Do not try to create this file manually. Read the README.txt and run the

    * web installer.

    **************************************************************************

    *

    * This file has the following configurations: MySQL settings, Table Prefix,

    * Secret Keys, WordPress Language, and ABSPATH.

    *

    * This file is used by the wp-config.php creation script during the

    * installation.

    *

    * @package WordPress

    */

    // ** MySQL settings – You can get this info from your web host ** //

    /** The name of the database for WordPress */

    Removed for Security

    /** The Database Collate type. Don’t change this if in doubt. */

    define(‘DB_COLLATE’, ”);

    define(‘VHOST’, ‘yes’);

    $base = ‘/’;

    define(‘DOMAIN_CURRENT_SITE’, ‘thisissite1.com’ );

    define(‘PATH_CURRENT_SITE’, ‘/’ );

    define(‘SITE_ID_CURRENT_SITE’, 1);

    define(‘BLOGID_CURRENT_SITE’, ‘1’ );

    /**#@+

    * Authentication Unique Keys.

    *

    * Change these to different unique phrases!

    * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}

    *

    * @since 2.6.0

    */

    define( ‘NONCE_KEY’, ‘&^YU8obCOZmNz)#udi$ghSLF’ );

    define( ‘AUTH_KEY’, ‘t0d87hpJOq!DBA#gp7VZ#dez’ );

    define( ‘AUTH_SALT’, ‘CdaJ42PU3iCsjehU(*h8V#6k’ );

    define( ‘LOGGED_IN_KEY’, ‘LihT(0OQBtTkw82^c0jmT4ub’ );

    define( ‘LOGGED_IN_SALT’, ‘NinP#50Uq(KU#LQ5h64on9v*’ );

    define( ‘SECURE_AUTH_KEY’, ‘UYi3SxHzUXE48E!vvggXv&s8’ );

    define( ‘SECURE_AUTH_SALT’, ‘c@p6I*b*hvcr8F^SMfr7JG^!’ );

    /**bbpress integration **/

    define(‘USER_COOKIE’, ‘wordpressuser’);

    define(‘PASS_COOKIE’, ‘wordpresspass’);

    define(‘COOKIEPATH’, $base);

    define(‘SITECOOKIEPATH’, ‘/’);

    define(‘COOKIE_DOMAIN’, ‘.thisissite2.com’); // same as bbPress

    /**#@-*/

    /**

    * WordPress Database Table prefix.

    *

    * You can have multiple installations in one database if you give each a unique

    * prefix. Only numbers, letters, and underscores please!

    */

    $table_prefix = ‘wp_’;

    /**

    * WordPress Localized Language, defaults to English.

    *

    * Change this to localize WordPress. A corresponding MO file for the chosen

    * language must be installed to wp-content/languages. For example, install

    * de.mo to wp-content/languages and set WPLANG to ‘de’ to enable German

    * language support.

    */

    define (‘WPLANG’, ”);

    // double check $base

    if( $base == ‘BASE’ )

    die( ‘Problem in wp-config.php – $base is set to BASE when it should be the path like “/” or “/blogs/”! Please fix it!’ );

    // uncomment this to enable wp-content/sunrise.php support

    //define( ‘SUNRISE’, ‘on’ );

    // uncomment to move wp-content/blogs.dir to another relative path

    // remember to change WP_CONTENT too.

    // define( “UPLOADBLOGSDIR”, “fileserver” );

    // If VHOST is ‘yes’ uncomment and set this to a URL to redirect if a blog does not exist or is a 404 on the main blog. (Useful if signup is disabled)

    // For example, the browser will redirect to http://examples.com/ for the following: define( ‘NOBLOGREDIRECT’, ‘http://example.com/&#8217; );

    // Set this value to %siteurl% to redirect to the root of the site

    // define( ‘NOBLOGREDIRECT’, ” );

    // On a directory based install you must use the theme 404 handler.

    // Location of mu-plugins

    // define( ‘WPMU_PLUGIN_DIR’, ” );

    // define( ‘WPMU_PLUGIN_URL’, ” );

    // define( ‘MUPLUGINDIR’, ‘wp-content/mu-plugins’ );

    // Uncomment to disable the site admin bar

    //define( ‘NOADMINBAR’, 1 );

    define( “WP_USE_MULTIPLE_DB”, false );

    /* That’s all, stop editing! Happy blogging. */

    /** WordPress absolute path to the WordPress directory. */

    if ( !defined(‘ABSPATH’) )

    define(‘ABSPATH’, dirname(__FILE__) . ‘/’);

    /** Sets up WordPress vars and included files. */

    require_once(ABSPATH . ‘wp-settings.php’);

    /**bbpress integration **/


    bb-config.php

    <?php

    /**

    * The base configurations of bbPress.

    *

    * This file has the following configurations: MySQL settings, Table Prefix,

    * Secret Keys and bbPress Language. You can get the MySQL settings from your

    * web host.

    *

    * This file is used by the installer during installation.

    *

    * @package bbPress

    */

    // ** MySQL settings – You can get this info from your web host ** //

    /** The name of the database for bbPress */

    Removed for security

    /**#@+

    * Authentication Unique Keys.

    *

    * Change these to different unique phrases!

    * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}

    *

    * Change these to different unique phrases!

    * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key service}

    *

    * @since 2.6.0

    */

    define( ‘BB_NONCE_KEY’, ‘&^YU8obCOZmNz)#udi$ghSLF’ );

    define( ‘BB_AUTH_KEY’, ‘t0d87hpJOq!DBA#gp7VZ#dez’ );

    define( ‘BB_AUTH_SALT’, ‘CdaJ42PU3iCsjehU(*h8V#6k’ );

    define( ‘BB_LOGGED_IN_KEY’, ‘LihT(0OQBtTkw82^c0jmT4ub’ );

    define( ‘BB_LOGGED_IN_SALT’, ‘NinP#50Uq(KU#LQ5h64on9v*’ );

    define( ‘BB_SECURE_AUTH_KEY’, ‘UYi3SxHzUXE48E!vvggXv&s8’ );

    define( ‘BB_SECURE_AUTH_SALT’, ‘c@p6I*b*hvcr8F^SMfr7JG^!’ );

    $bb->wp_table_prefix = ‘wp_’;

    $bb->wp_home = ‘http://thisissite2.com/&#8217;;

    $bb->wp_siteurl = ‘http://thisissite2.com/&#8217;;

    // Integrating with mu

    $bb->cookiepath = ‘/’;

    $bb->cookiedomain = ‘.thisissite2.com’; // leading . allows subdomain sharing

    $bb->usercookie = ‘wordpressuser’; // WPMU doesn’t hash cookies

    $bb->passcookie = ‘wordpresspass’; // WPMU doesn’t hash cookies

    // Load WordPress so we can use the same templates.

    define(‘WP_BB’, ‘true’);

    require_once(‘/home/content/82/4558682/html/wp-blog-header.php’);

    /**#@-*/

    /**

    * bbPress Database Table prefix.

    *

    * You can have multiple installations in one database if you give each a unique

    * prefix. Only numbers, letters, and underscores please!

    */

    $bb_table_prefix = ‘bb_’;

    /**

    * bbPress Localized Language, defaults to English.

    *

    * Change this to localize bbPress. A corresponding MO file for the chosen

    * language must be installed to a directory called “my-languages” in the root

    * directory of bbPress. For example, install de.mo to “my-languages” and set

    * BB_LANG to ‘de’ to enable German language support.

    */

    define( ‘BB_LANG’, ” );

    #79461

    function do_action($tag, $arg = '')

    do_action() has an arguments variable as it’s 2nd argument, sorry for not being clearer. That’s passed when it runs an action function and if nothing is passed, it defaults to an empty string.

    $bb_table_prefix would be the prefix for the bbPress tables though, wouldn’t it? In the case of a WP/bbP integration, the bbPress user data is stored in the WordPress user tables, so those aren’t under the same prefix as the bbPress tables. Unless it changes automatically for WordPress user tables somehow?

Viewing 25 results - 5,601 through 5,625 (of 6,776 total)
Skip to toolbar