Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 20,726 through 20,750 (of 32,517 total)
  • Author
    Search Results
  • #34703
    Oxhorn
    Member

    The Leaderboard plugin is fantastic, but it is broken. I can get it to show a Leaderboard, but whenever a user clicks on any of the other display options aside from “of all time” they get redirected to the forum homepage, as you can see here:

    http://oxhorn.com/forum/view.php?view=leaderboard

    I’m not the only one with this problem, others on the plugin’s discussion have had it too. how can this be fixed?

    Thanks :)

    Oxhorn
    Member

    I’m running bbpress 1.0.1 and I am hesitant to upgrade because I don’t know what it will do to my plugins (most of which have been abandoned by their authors) and I’m not sure why I should upgrade. Plus, with the rumor of a bbpress plugin for wordpress coming out, I’m concerned about the future of this version of bbpress. Maybe you guys can answer some questions for me.

    Here is my bbpress so you can see where I’m at:

    1) Will my users, plugins, databases and themes all still work find and dandy if I upgrade? Is there an easier way to upgrade aside, like there is with wordpress?

    2) These are my current plugins. Does anyone know any incompatability with them and the current version of bbpress?:

    adsense for bbpress

    after the deadline

    ajaxed quote

    akimset

    allow images

    bb-lightbox2

    bb-no spam user

    bb-scripture links

    bbcode buttons toolbar

    bbcode light

    bb cumulus

    bb pm

    bbpress signatures

    bb topic views

    bb video

    bozo users

    facebook like

    leaderboard

    members online

    mini stats

    post count plus

    post count pluss for wordpress

    project honey pot for bbpress

    reputation (karma) for bbpress

    social it

    subscribe to topic

    unread posts

    3) When/if this new bbpress plugin comes out, will there be a way to convert my bbpress installation into teh plugin or otherwise make it compatable?

    Thanks bunches all!

    #86455

    In reply to: jquery loading

    mr_pelle
    Participant

    May I suggest another solution? bb_enqueue_script() is deprecated, you should first check if script is already included using wp_script_is() and then call wp_enqueue_script().

    add_action( 'bb_init', 'enqueueJQuery' );

    function enqueueJQuery() {
    if ( !wp_script_is( 'jquery' ) )
    wp_enqueue_script( 'jquery' );
    }

    #87965

    In reply to: Welcome Back _ck_

    blogher8
    Participant

    I was not checking into the forums for few months and I am SO glad to see you back, _ck_. :-)

    #34689
    pagal
    Participant

    1. Is it possible to send an administrative PM to all members? ( Admin’s One PM to all registered members at once)

    2. How can restrict the participation more then two members?

    I mean I don’t want to provide users to add others users to participate in their private discussion.

    I just need two members participation in one private discussion..

    3.When a PM is sent by a User it generates an email to the User’s email address notifying them that they have sent an email. The User knows they sent a PM because they just sent it :) Can this be turned off? Of course, need to keep having an email sent to the recipient of the PM telling them that they have a PM to go and look at.

    4. is it possible to add captcha in bbpm?

    any help appreciated

    cheers

    #34685
    Spookey
    Member

    Hi folks!

    I’v just installed bbpress for the first time. No problem with installation or tweaks, but i can’t figure out how to correct the time when posts where written.

    I have translated the .po file to Norwegian, and it looks like everything is OK in there when generating the .mo file and upload it to my server..

    Take a look at this picture where i show you my “problem”: http://country4you.com/temp/Forum.gif

    You see the arrows :) How do i change “Hours” to Norwegian?

    This is what “Started: %s ago” is translated to in the .po file: “Skrevet: for %s siden”

    Thanks for a great forum!

    //Roy

    #34684
    Milan Dinić
    Participant

    Anyone downloaded bbPress 1.0.2 from http://bbpress.org/download/ lately? I just did and when I started installation I got warnings but succeed in installing. But when I installed I couldn’t login.

    I belive this problems are related to update to BackPress/pomo library and that new versions of it are not compatible with bbPress 1.0.2 code. Anyone can reproduce this?

    Dr4ke
    Member

    Hey

    When I was writing plugin last time they dont want run install function after activation. Trouble was in position of plugin file in subfolder in ‘my-plugins’.

    When I looked in plugins.php I saw the problem. Script make ‘do_action()’ on overall path to plugin from my-plugins. For example: ‘plugin/plugin.php’. So orginal function have to be ‘bb_activate_plugin_plugin/plugin’ what in incorrect. I wrote few lines and all works fine.

    After line 66 in bbpress/bb-admin/plugins.php:

    $posSlash = strpos($plugin,'/');
    if(intval($posSlash) != 0){
    $plugin = substr($plugin,$posSlash+1);
    }

    After that all works fine :) May be included in next bbPress version.

    Regards

    D.

    bbpresscn
    Member

    Now i can upload and display images by “bbPress Attachments (0.2.7)”,Thanks chrishajer ^_^ !

    Why use “Insert image” can’t upload local images by “BB Wysiwyg Editor” ?

    1、http://i3.6.cn/cvbnm/34/d0/78/c48e66ff8327690fec7bf4f656252383.jpg

    2、http://i3.6.cn/cvbnm/99/3b/a7/2930018fd485a6aec8e04d39e94f48f3.jpg

    #90659
    Gautam Gupta
    Participant

    Great! :-)

    6 months ago, the counter was at 50k – https://bbpress.org/forums/topic/bbpress-10-crosses-50000-downloads

    #90611
    sureshdrim
    Participant

    Hello Zaerl..

    I think there’s still something missing in ur code.I came out with more simple code which is tested and working good. (not sure if its 100 % reliable)

    function reply_link() {

    global $topic;

    $add = topic_pages_add();

    $last_page = bb_get_page_number( ( isset( $topic->topic_posts ) ? $topic->topic_posts : 0 ) + $add );

    $h2 = esc_attr( get_topic_link( 0, $last_page ) . ‘#postform’ );

    echo $h2;

    }

    Hello kevinjohngallagher..

    Actually I was looking for href value of an anchor tag which I want to add below each post.

    #90609

    I tried this code but not working as expected.

    Could you tell us what it is and is not doing?

    We can not help you if you don’t tell us whats wrong :)

    #90608
    sureshdrim
    Participant

    Hello zaerl..

    There’s something wrong.I tried this code but not working as expected.

    #90423
    mr_pelle
    Participant

    Here’s a more complete non-core-hacking solution:

    <?php
    /*
    Plugin Name: Customize User Profile
    */

    add_filter( 'get_profile_info_keys', 'customize_user_profile', 10, 2 );

    function customize_user_profile( $fields, $context ) {
    /**
    * Remove undesired fields
    *
    * Commented = left
    * Uncommented = removed
    */
    // unset( $fields['first_name'] );
    // unset( $fields['last_name'] );
    unset( $fields['user_url'] );
    // unset( $fields['from'] );
    unset( $fields['occ'] );
    unset( $fields['interest'] );

    /**
    * Add new fields
    *
    * Quoting functions.bb-core.php, line 906:
    * meta_key => (required?, Label, hCard property). Don't use user_{anything} as the name of your meta_key.
    */
    $fields['my_meta_key'] = array(
    false,
    __( 'My meta key' ),
    'text'
    );

    return $fields;
    }
    ?>

    Of course, as usual, replace < and > with angular parentheses.

    #90607
    zaerl
    Participant

    Curtesy of the ajaxed-quote plugin:

    function replay_link() {
    if ( !bb_is_topic() ) return false;

    global $page, $topic, $bb_post;

    if ( !$topic || !topic_is_open( $bb_post->topic_id ) || !bb_is_user_logged_in() || !bb_current_user_can('write_posts') )
    return false;

    $post_id = get_post_id();

    $add = topic_pages_add();
    $last_page = get_page_number( $topic->topic_posts + $add );

    if ( $page == $last_page ) return '#post_content';
    } else return get_topic_link( 0, $last_page ) ) . '#postform";
    }

    Not tested.

    zaerl
    Participant

    You can use only a-z, A-Z, 0-9 and the - in login names. After registration you can set up the so-called “display name” (name, surname) where you can insert all the fancy unicode characters you want.

    #89397
    Cathy Mitchell
    Participant

    I am also trying to change the order of the topics on the front page

    #90587

    In reply to: Kakumei Black theme

    chrishajer
    Participant

    I don’t see subscribe to topic here either. It’s supposed to be near the tags according to kevinjohngallagher, but I don’t see it when I am logged in.

    What is your question about themes? You upload with FTP or SCP to your bbPress installation, into a folder called my-templates. Be sure the my-templates folder has 755 permissions, then your new theme folder has 755 permissions. And be sure it’s not inside ANOTHER folder. So, it should be like this:

    bb-config.php
    my-templates/
    ----bbpressblack/
    style.css (with your header)

    Should not be like this:

    bb-config.php
    my-templates/
    ----bbpressblack/
    bbpressblack/
    style.css (with your header)

    I don’t think that would work

    #90393
    pagal
    Participant

    @ Kev

    It will be a tiny networking tool, for those who want personally interactions (beyond Private Mesg Plugin ).

    People will be able to add each others, block, ignore. Can share photos, videos, links.

    Register users can posts on other walls by their permission.

    Email notification to the user on every wall posting.

    Captcha secturity, words limitations, Like it, points, rating.

    That’t it.

    My little Wish :-)

    #90482
    mr_pelle
    Participant

    Thank you Kevin for the SAVEQUERIES trick!

    #90554

    Unread post/topics – Is it really hard to made this?

    1) Yes

    2) There’s a plugin for this for just over 2 years.

    Quoating and Posting reply

    Roughly 2 years. But uses JavaScript.

    i cant stay manual formatin of text with HTML. Its such waste of our time!

    Loads of plugins for this. I know mine are from early 2008, and I’m sure _ck_’s bbcode lite and bbcode buttons are from before then.

    Allowed quicktags.

    That function. I dont know how change allowed tags. Right now Its not soo important…

    “Tags are over-rated. People simply don’t use them – especially non-techy people who see the value. We have 7038 topics on bbPress.org and yet 35/39 Tags have less than 25 topics, the other 4 have more (but pagination doesn’t work in the new theme). Even if we don’t attempt to count duplicates, bbpress.org has less than 10% of all topics tagged. If we were to check for duplicates, it would definately half”

    -https://trac.bbpress.org/ticket/1243

    Automatic tags

    Apart from my answer above.

    There has been a plugin for this for 2 years.

    Slug

    I see where you’er coming from on this, but it’s not a great idea.

    A forum is an N-to-N system. A blog is a 1-to-N (or few-to-N) so control of such things is needed and easier.

    I am sure there will be some folks out there with good examples, but I’ve never ran into an issue with a slug of any forum I’ve used in all my years.

    Thanks for your suggestions and time though :)

    Kev

    #90481
    _ck_
    Participant

    I know of at least one very complex, very high volume bbpress site that uses cloning very well. And stand-alone makes the site much more responsive. It even uses several installed copies of bbpress linked very well.

    It’s the cost of the environment you chose. If you absolutely insist on using WordPress, you better be ready to throw a ton of hardware at it if you need to scale and insist on deep integration.

    It’s perfectly possible to create cached portions of a site or common segments that can be included across WP and bbPress. It’s a matter of intelligent design.

    When you start banking on 1mb of code loading per instance and a few dozen queries per user per page because of deep integration, you are guaranteed growth failure sooner or later – it just won’t scale.

    #34641
    tukz
    Member

    i’m trying to create a div class by requesting user role title, but it actually return an empty string on source code each time when web page is loaded. i’m using :

    echo user_title();

    What i’m trying to do this? I want to show a picture (ads) only for members, all other role will hide this ads via CSS style. Does there is a way to do this? can someone help please echo user title proprely?

    note: i’m also using “role-manager” plugin, i don’t know if this can cause trouble.

    edit: can’t display the code properly. 😡

    #90392

    Pagal,

    Could you tell us what the plugin is supposed to do?

    Someone might be able to make an alternative, but not if we don’t knoe what the plugin is for. Help us, help you :)

    #90391
    pagal
    Participant

    Oops! Sorry _ck_ dear, don’t be rude. I don’t want to start nagging here….And I don’t have any evil intentions, Also I’m not willing to destroy your paid work, I just asking if it is possible to share it or can anyone make alternative? You can close this topic if you are afraid. I’ll never ask again about it.

    @Kev, Thanks for your interest

    What functionality is it you want us to create for you?

    I don’t have any personal intentions, I don’t want to make it just for me. And I don’t really know how many people need for such a plugin.

    I’ve some ideas, I want to share it with you, But I think Mod is not happy with this topic. :(

Viewing 25 results - 20,726 through 20,750 (of 32,517 total)
Skip to toolbar