Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 16,651 through 16,675 (of 32,506 total)
  • Author
    Search Results
  • #112074
    jamieskella
    Member
    #112073
    jamieskella
    Member

    I think I may have a related issue, two of them in fact:

    – For some reason my forum index won’t show more than 5 forums. If I create 7, 2 are hidden.

    – My topics list only shows 5 topics, even though it says “Viewing 5 topics 1 through 15”

    Please see example here: http://pantheones.com.au/latest-posts/

    Do you have any idea why this would be?

    #42542
    DonnaS
    Member

    Hi thanks for listing the shortcodes, these make things easy.

    What id goes in this one? Where to find it?

    [bbp-single-topic-tag] – Show the topics within a specific tag

    Do these work for bp’s install?

    #112072

    I just check and at the moment there are no parameters you can pass to it.

    Regarding the pagination, I’m not sure where it is getting the 5 cut off limit from. Maybe jjj can give some insight to that.

    #42533
    lmoon
    Member

    Hello,

    My forums are all listed in “dashboard> all forums” but when I go to view them on the actual page , or view them from inside whilst editing them, the page comes up not found.

    I have just tried creating a new forum and I viewed it before I published it and I saw it correctly, but when I published it and then tried to view it it came up page not found again.

    The forum index views correctly under the forums page as this is a shortcode.

    Where have all my 300 odd forums gone?

    I would really appreciate anyones help here, I can’t bear to have to make them all again.

    http://www.lifeafterlondon.com

    #42524
    jamieskella
    Member

    Are there any parameters for [bbp-topic-index] that can be added to this? By default it only shows 5 topics before pagination kicks in.

    #112068

    In reply to: Sudden BBconfig issues

    Do you have a recent backup you can revert to? (Though I am guessing not).

    Paste your bb-config to a website like http://pastie.org/ and we will be able to see what line 17 is (without the code getting messed up).

    If there is any sensitive information such as passwords that are in the file make sure and remove those before posting here.

    #57758

    Ultimately I’m back to where I began. I want to continue using the WP top bar but have the edit account option link to bbPress’s account page.

    No, I am not aware a way to easily keep the admin bar but filter the user link so that it goes to the bbPress profile page instead of your wp-admin user.

    Something like this would need to be a custom plugin.

    I mentioned various things you can do, without touching virtually any code, that would help keep users from hitting /wp-admin – unfortunately hacking the admin-bar is not one of those things.

    #57755
    jamieskella
    Member

    I would like the login in the header as my first widget location is below the fold. Is it possible to use the widget code elsewhere?

    #57754

    Just use the bbPress Login Widget that is packaged with bbPress :)

    #57753
    jamieskella
    Member

    So I suppose the issue here is that I then have to link to the pages – e.g. the registration page, the login page and so-forth.

    Except these links would be static, so even if they had logged in that link in the header would still say “login”?

    I’m not a coder, so creating dynamic user links in the header area isn’t something I can do.

    Is there a plugin or code available to implement a dynamic login/user area like what is seen on this site?

    #57752

    You would want to disable the admin bar site-wide for “Subscribers”.

    Then you would have a link in your site/theme that takes your members to the bbPress profile page where they can edit their profile.

    If you disable the admin bar and use login/registrations forms via shortcodes there is really no reason for the users to ever use /wp-admin unless the specifically went to it.

    #57750

    You can do user registration and user login all on the front end using shortcodes and/or other plugins available – there is no reason the basic user needs to use wp-admin at all.

    Shortcodes: https://bbpress.org/forums/topic/bbpress-20-shortcodes

    #57747
    jamieskella
    Member

    Is there a plugin for this yet, or can anyone confirm if timskii’s code still works? I really would like the bbPress profile to be the only profile non-administrative users can access.

    #112056
    highexistence
    Participant

    Fixed this by adding 'paged' => 1 to the query

    #112055
    highexistence
    Participant

    For example, if I’m on page 2 of a topic, that code will show me the second page of the most recent topics. It’s somehow pull parameters from the other loop on the page.

    #42510
    highexistence
    Participant

    I’m using bbp_has_topics to display topics in my sidebar. On forum pages, this gives me strange results sometimes.

    Is there a better way to display topics for a second time on one page? Or to reset the loop or whatever is causing the issue?

    #112052

    Unfortunately I don’t have one.

    Judging by all the problems listed on https://wordpress.org/tags/network-publisher?forum_id=10 I would say this plugin is not coded well or up to standards. In fact I would avoid using it all together.

    If you find a plugin that is done properly it should likely work with out any issues.

    I just tested it and you are right! Seems to be screwy when using the numeric permalinks.

    We’re going to look into that. I definitely appreciate you coming back and posting about the problem you encountered – this will help us make 2.1 as solid as possible when it is released publicly :)

    dangerZ
    Member

    I think it has to do with the permalink style. I had numeric permalinks before. If i Change it to “post name” permalinks i think the original code works.

    Copy everything from /bbp-theme-compat into your active theme directory. Once that’s done bbPress should detect it (in 2.1 that is) and use that instead!

    #112053
    Nirzol1
    Member

    I find where is the prob

    It s my theme, I use elegant themes and

    In ePanel there is an option in

    General Settings >>> General tabs

    Number of Posts displayed on Archive pages

    before limit is set to 5 I put 50 and bbpress works All Forum appear in list and get_posts() recover all post

    But is NOT a fix . :/

    So if someone have a solution ?

    I also posted on elegantthemes forum support.

    #111904
    Patricia BT
    Participant

    ok, so as this worked for me I cannot help you more :( I’m sorry

    maybe a permalink/htaccess problem?

    Cheers

    #112033
    dangerZ
    Member

    Okay, i got it working and it’s awesome! (although a bit buggy)

    After backing up the bbpress folder, I basically left the existing bbpress plugin running and activated, and just copied the 2.1 plugin contents into the existing plugin folders.

    One bug i caught is that there is no beginning slash for the “EDIT” Link in topics for the admin, so I went in the code and added that.

    This change was made in bbp-topic-template.php at line 2199

    if ( $wp_rewrite->using_permalinks() ) {

    $url = $topic_link . $bbp->edit_id;

    $url = trailingslashit( $url );

    i changed it to

    if ( $wp_rewrite->using_permalinks() ) {

    $url = $topic_link . ‘/’. $bbp->edit_id;

    $url = trailingslashit( $url );

    #112046
    Nirzol1
    Member

    Ok

    I find something but I don’t know if is good to do like that .

    In function.php add this :

    add_action(‘wp_enqueue_scripts’, ‘add_my_stylesheet’);

    function add_my_stylesheet() {

    $myStyleFile = get_theme_root_uri() . ‘/myTheme/mybbpress.css’;

    if ( (is_post_type_archive( ‘forum’ )) ) {

    wp_enqueue_style( ‘myStyleSheetsi’, $myStyleFile);

    }

    }

    Create a file in your theme mybbpress.css :

    div.bbp-breadcrumb, h1.title{

    display:none;

    }

    Just to notice, all changes is for first page forum only(http://mysite.com/forums) if you want to make changes on all your forums pages replace

    if ( (is_post_type_archive( ‘forum’ )) ) {

    by

    if ( (is_post_type_archive( ‘forum’ ) || is_singular( array( ‘forum’, ‘topic’, ‘reply’ ) )) ) {

    I tried is_page_template(‘bbpress.php’) or is_page(35) etc… (a lot I tried :p)

    but don’t work.

Viewing 25 results - 16,651 through 16,675 (of 32,506 total)
Skip to toolbar