Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 16,476 through 16,500 (of 32,519 total)
  • Author
    Search Results
  • What version of WordPress are you using? I suspect something in your theme is attempting to access a $post variable that’s been unset as part of bbPress attempting to work its magic.

    You can tell that it’s using the page template, since you have some hard-coded author information in there. It’s probably something in your theme that’s trying to access something that no longer exists.

    #43761
    cdnbofh
    Member

    using the short code [bbp-forum-index] on a page in wordpress and for some reason it show 3 of our 4 forums and duplicates one of them. We have 4 forums (For Sale, For Rent, Rules, General) and when you load the page that has the short code [bbp-forum-index] you see (For Sale, For Rent, Rules, For Sale). I have tried deleting all forums and recreating and still get the same error. However, if you go to the system created page http://sitte.name/Forums you see the correct listing. I would use that as the forum start except I do not know where I can edit that page and its Page Name always shows the last forum created instead of ‘members forum’. Anyone seen this before? I have tried searching the forums for this condition but have not had any luck. Thanks in Advance

    #112642
    cliffordpoe1
    Member

    Zofar

    Thanks for posting the shortcode [bbp-forum-index]. I was wondering how come my forums never did show up on the forums page created.

    #112479

    In reply to: Change forum color

    DELETE ME
    Member

    And I used this advice of yours …. nothing happened :-(

    https://wordpress.org/extend/plugins/bbpress-custom-css-file/

    My friend’s website is

    http://www.theReviveChallenge.com

    I have created a username and password for you to see the forum

    username jared

    password test123

    #112478

    In reply to: Change forum color

    DELETE ME
    Member

    HI Jared,

    This seems to be the issue I am facing as well for my friend’s website http://www.revivechallenge.com

    Entire website is in black and she wants to stick to albiaza theme, however when we go to forum, the links are red (which we can dead with)

    But background and text are white and one cannot read the text unless you hightlight the area.

    I am not a ‘programmer’ so to speak, are you able to guide me as to –

    1) which file will the above code go in?

    2) Do I copy paste or do I edit these values in existing coding in that file?

    I am familiar with GoDaddy FTP service and know how to get to files and directories and edit text if need to but unsure about where should above text go.

    I know … I am very novice so ANY guidance you can give will be very amazing and much appreciated.

    Thanks

    Szebastian

    #43740
    vbking
    Member

    See forum here:

    http://www.beecavenews.com/bee-cave-forum/

    1) How do I remove “Started By”?

    2) Why is “Voices” and “Posts” not aligned?

    3) Why is there so much vertical space?

    I used the bbp-single-forum id=$forum_id] code. This also looks the same when I use the standard [bbp-topic-index]. And it looks this way with and without my custom css to change look and feel.

    Thanks,

    Cory

    #112411

    HI,

    I am having the same problem:

    I am running bbpress 2.0.2 under BuddyPress and although my permalinks are nice and pretty :

    Code:
    /%category%/%postname%/

    The permalink used in the breadcrumbs is this:

    http://www.foodiesplace.com/?attachment_id=431

    (no idea where it got this from since the page does not exist)

    The breadcrumb link should look like this:

    http://www.foodiesplace.com/en/facecook-forum/

    Any ideas anybody?

    Thanx

    #108238

    in my case I went to page.php template and replaced this

    comments_template();

    with this

    if (!stristr($_SERVER['REQUEST_URI'],'/forums/')) { comments_template(); }

    where forums is my forums base

    Havardo
    Member

    I am trying to hide some forums from some users.

    This does seem to work, using the “members” plugin and by giving access to private or hidden forums.

    However, if I use the shortcodes together with forum categories, only the categories are visible and not the actual forums.

    Any ideas how to resolve this would be highly appreciated.

    #112620

    Oh, this is if I’m using the bbPress “integrated” with BuddyPress. As in I installed bbPress through BuddyPress. It seems this muddies the waters a bit. I think I’ll just wait :)

    [root@test plugins]# find . -name bbpress

    ./buddypress/bp-forums/bbpress

    ./bbpress

    ./bbpress/bbp-theme-compat/bbpress

    ./bbpress/bbp-themes/bbp-twentyten/bbpress

    [root@test plugins]# ls buddypress/bp-forums/

    bb-config.php bp-forums-bbpress.php bp-forums-loader.php

    bbpress bp-forums-bbpress-sa.php bp-forums-screens.php

    bp-forums-actions.php bp-forums-filters.php bp-forums-template.php

    bp-forums-admin.php bp-forums-functions.php

    [root@test plugins]# ls bbpress (this is a svn sync)

    bbp-admin bbp-languages bbp-theme-compat humans.txt license.txt

    bbp-includes bbpress.php bbp-themes index.php readme.txt

    [root@test plugins]#

    #109941

    Yep thats correct. You can pick and choose the args if you don’t want to reset all of them.

    function custom_forum_breadcrumb( $args ) {

    $args['sep'] = ' | ';

    return $args;

    }
    add_filter( 'bbp_get_breadcrumb_pre', 'custom_forum_breadcrumb' );

    #109940
    Matthew Simo
    Member

    I made a filter that set’s the before, after, sep & root_text for the breadcrumbs. Take a look, writes over the ‘bbp_get_breadcrumb_pre’ filter found on line 1553 of bbp-includes/bbp-common-template.php

    // Change bbPress bread crumb separator.
    function filter_bbp_breadcrumb( $args ) {

    $my_args = array(
    'before' => "n<div class="subnav bbp-breadcrumb ">n <ul class="nav nav-pills ">n <li>",
    'after' => "</li>n </ul>n</div>nn",
    'sep' => is_rtl() ? __( "</li>n <li>", 'bbpress' ) : __( "</li>n <li>", 'bbpress' ),
    'root_text' => "Support"
    );

    $args = wp_parse_args( $my_args, $args );
    return $args;

    }
    add_filter('bbp_get_breadcrumb_pre', 'filter_bbp_breadcrumb' );

    #112627

    In reply to: 2.1 download

    katmmad
    Participant

    OK — I did all that and can see the plugins/bbpress folder in Filezilla. The problem is, I can’t see it in the “plugins” page on WordPress to activate it, and the site is otherwise not recognizing it (pages I had with shortcodes aren’t working).

    Sigh. I’m testing it on wavychick.com, which is a dev site for my dev site, if that makes sense.

    #112617

    All the plugins on bbPress.org are for bbPress 1.0.

    The plugins for bbPress 2.x go on WordPress.org.

    Eventually the plugins listed here will be archived to help with the confusion :)

    #112626

    In reply to: 2.1 download

    You will need to do it using FTP.

    1. downloads zip from link

    2. unzip (will be a folder called trunk)

    3. rename trunk to bbpress

    4. access website via ftp, delete current bbpress folder in wp-content/plugins

    5. upload new one

    #112623

    In reply to: 2.1 download

    Yep, you can do that with the plugin – just make sure and upgrade to 2.1 before you install it. After that just head to the Genesis settings :)

    #112614
    #112613

    Is there a plugin that you know of that lets you post an image without attaching it? Like the bbcode [img]?

    #111831

    In reply to: post #2…

    You need to adjust the way your theme handles elements that have the reply class.

    This will get you started

    .bbp-replies .reply {
    float:none;
    margin:0;
    }

    .bbp-replies .reply a {
    background: none;
    padding:0;
    font-size:13px;
    }

    #112582
    ladymeg
    Member

    Okay…we resolved the issue by installing a SMTP plugin for WordPress.

    The default mail() function apparently works fine for the basic WordPress functions but for some reason it wouldn’t work with the bbPress plugin. So we went around it. :)

    #112604
    frank8265
    Member

    unzipped foldername is “trunk” which i renamed to bbpress.

    Downloaded a zip file from:

    https://bbpress.trac.wordpress.org/browser/branches/plugin

    and it had a different content then the “trunk” folder.

    Uploaded this one and it worked in wordpress.

    However, the initial problem from this topic still remains, also in version 2.1 :-(

    #112603

    What is the name of the new folder you are moving into the plugins directory. What’s inside it.

    Sometimes it may unzip as bbpress-r238787/bbpress/ so I just wanted to make sure that’s not the case.

    Inside the folder should be all the normal contents of bbPress. It should work fine on multisite without any issues.

    #112601

    Just delete the bbpress directory in your plugins folder and replace with the new one. You don’t need to do any uninstalling in WordPress, no.

    #43595
    rhek
    Member

    I am having some problems generating a forum index page.

    Once I created my forums I thought that by adding the url http://cyclistzone.com/vozcycling/forums/ to the menu I would be in business. Going to the url shows a featured article and the bbPress sidebar, not a forum index.

    Since I did not get a forum index I created a new page and named it Forums. I then pasted the shortcode [bbp-forum-index] into the body of the page and nothing changed. The same results were displayed as if I did not have a page. Almost seems like bbPress ignored my page.

    Here is the link to the page…

    http://cyclistzone.com/vozcycling/forums/

    The next thing I did was to create another page and name it “Test Forum.” I inserted the shortcode and this page displayed a forum index for me.

    http://cyclistzone.com/vozcycling/test-forum/

    The problem I am having now is that the slug “test-forum” only relates to this page and not to any of the forum pages because the slug “test-forum” does not exist in the bbPress settings. Those settings use the slug “forums/forum”. If I change the “forums” slug to “test-forum” I end up back to my original problem.

    I would like to leave my slugs defaulted to their original values. I just want a forum index page using the bbPress slugs and have a bbPress sidebar.

    This is probably simple, but I have not figured it out yet, so I hope someone can shed some light on what I am doing wrong.

    Thanks,

    Rhek

    ddlg2007
    Member

    Thank you John, I use bbPress 2.1 and using Shortcodes actually improve something. The list of forum looks better. But still not working correctly, you can see it again in http://site.teamcyanide.eu/example-forum.

    I know no one will take so much trouble but if you want I can give you access to the web or create an instant portable wordpress (http://www.instantwp.com/) with themes, plugin and everything ready to see what errors have. If not, nothing happens, I understand that you do not waste time on this with me.

    John thank you very much for your help, really appreciate it

Viewing 25 results - 16,476 through 16,500 (of 32,519 total)
Skip to toolbar