Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 4,701 through 4,725 (of 6,780 total)
  • Author
    Search Results
  • #40525
    trivum
    Member

    I have an issue that seems to be with the theme I am using. When I install bbPress, it doesn’t register a title when I look at my view source code. I also get an “Error 404” message in the breadcrumbs of my site’s theme (NOT in the bbPress breadcrumbs).

    I don’t get this when I switch to a default WP theme, so it seems related to my theme (WPzoom’s Manifesto).

    I have run a buddypress update plugin thinking this might help, but it doesn’t. I also get this message with BuddyPress compatibility: “Your active theme does not include bbPress template files. Your forums are using the default styling included with bbPress.” (I’m fine with the bbPress default styling, by the way. Just wondering if the first part of that message might relate to my problem in any way.)

    Thanks in advance for any suggestions.

    #110109
    David
    Member

    One cool option I forgot to mention earlier…

    If it’s important for you to have the topics of each forum listed on your forum index page you can call them individually by using a shortcode for a particular parent forum (in this case, using WP’s do_shortcode):

    <?php echo do_shortcode('[bbp-single-forum id=1234]') ?>

    where 1234 is the ID number of the parent forum. I’ve experimented with this for a *Category* type parent forum and it works well. I imagine it would do the same thing for a *Forum* type parent forum. You’d obviously want to lead it with a header title for the parent forum.

    Call each parent forum this way and you’ve got a nicely organized index page. (NOTE: you can call individual (non-parent) forums this way too but by default they call the entire single forum template part that includes the form. If you’re interested in messing with this it’s handled in [your bbPress directory]/bbpress/content-single-forum.php.)

    The disadvantage is that it’s built manually for each parent so any new parent forums will have to added manually as well, but you do have a lot of control.

    #110108
    David
    Member

    @LifeFreeOrDie, I can’t answer your question completely but maybe I can give you a little help.

    You can order your forums by defining the Order in the respective Forum’s admin page. Counting starts at 0, which is the default.

    Creating sub-forms is simply a matter of creating a parent forum and then for each child (sub-) forum make that parent forum the Parent in Forum Attributes. (Parents that are defined as type Forums can contain their own topics but parents that are Categories only contain other forums.)

    Unfortunately, in the forums index sub-forums are necessarily presented with their topic and reply counts in parenthesis as defined in bbp_list_forums() in loop-single-forum.php. What’s worse: there is no containing element around the count so it’s not possible to style those separately from the sub-form name. [@johnjamesjacoby or other admin: Can this be updated outside of core code?]

    However, you can style the sub-forums with CSS as they are listed as a

      .

      #110078

      Awesome! Thanks and I’ll remember that next time I have something to share.

      And I honestly don’t know enough about bbPress (yet) to integrate that yet BUT I will soon I hope lol.

      I also wanted to point out the reason I have (‘sidebar-widget-area’) in mine is I also have footer widgets. By default, then most are simple () and all you need to do is add ‘widget name’ here.

      #109781

      In reply to: "Page not found" error

      grafics
      Participant

      So I thought we had the 404 issue resolved, but not quite. Forum Directory showing (used short code on page) and links from there to primary forums works just fine. I have now discovered that child forums get 404 error. Updated permalinks, tried default theme, still no luck. Tried making the “parent” forum a category, no joy that way either.

      Tried moving the bbp-twentyten template files into child theme (and adding theme support to functions.php) and everything went haywire.

      One thought is to use pages with shortcodes for the child forums, but this site is going to have tons of child forums so that is not an appealing option and would not be user friendly for the client.

      Any ideas?

      #40464
      Anointed
      Participant

      I am using custom theme templates from bbPress within my own theme. So no shortcodes or creating pages etc.

      What I am trying to do is to show the list of most recent topics below the forum list on the forum homepage.

      I am using the following code:

      <div id="forum-front" class="bbp-forum-front">
      <div class="entry-content">

      <?php bbp_get_template_part( 'bbpress/content', 'archive-forum' ); ?>
      <br><br>
      <h3><?php _e( 'Recent Topics: ', 'bbpress' ); ?></h3><br />
      <?php bbp_get_template_part( 'bbpress/content', 'archive-topic' ); ?>

      </div>
      </div><!-- #forum-front -->

      This seems to work, however, the pagination for the topics is wrong. Currently it tries to go to /forums/forum/last-forum-title/page/2/

      It should go /topics/page/2/

      Using the default bbPress templates within my own theme, what would I add to the archive-forum.php file in order to show recent topics with pagination that works right?

      *I saw that devpress managed to pull it off, so asked over there as well.

      #40460
      Weiching
      Participant

      If a permanent link to non-default, like /% postname% / or other custom structures, user name if the number (001,999,1234 etc.) can not link to the profile.

      #40458
      ryanmurray
      Member

      I can’t find any options to change the theme from the default. Can anyone help?

      Thanks,

      Ryan

      #40455

      I figured since I was asking for help on something here:

      http://bbpress.org/forums/topic/function-calls

      I would at least give a little something that I believe some people may find useful. I may not explain this well so please feel free to ask questions and I’ll do my best to help you.

      I needed to create a whole new sidebar for my forum page and after some research and using the old noggin I came up with the following. Please note that this should be a good common usage for most themes but your situation may be unique. Adjust as needed.

      First, open your functions.php file and copy the following in there:

      // Forum Sidebar Widget Area. Empty by default.
      register_sidebar( array(
      'name' => __( 'Forum Widget Area', 'twentyten' ),
      'id' => 'forum-widget-area',
      'description' => __( 'The Forum Widget Area', 'twentyten' ),
      'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
      'after_widget' => '',
      'before_title' => '<h3 class="widget-title">',
      'after_title' => '</h3>',
      ) );

      Again, each case may be different but generally this will work. What this will do is create a new Widgetized sidebar area (located under Appearances >> Widgets)

      Alternatively, You can copy your existing widget code in functions.php for widgets but be sure to rename the areas, especially id, as I have above (forum-widget-area was originally sidebar-widget-area).

      Take note, as well of the class= and id= I have. Those are useful for my blog but you may be using different tags for yours. Adjust as needed.


      Then Create a new file and name it anything you want, for our testing purposes we’re going to use forum-sidebar.php

      Copy and paste your code from sidebar.php into your new forum-sidebar.php file.

      My original looks like this:

      // A Sidebar for widgets
      if ( is_active_sidebar( 'sidebar-widget-area' ) ) : ?>

      <div id="sidebar" class="widget-area" role="complementary">
      <ul class="xoxo">
      <?php dynamic_sidebar( 'sidebar-widget-area' ); ?>

      </div>

      As you can see, I have two spaces calling the sidebar-widget-area that was previously declared in functions.php. Yours should be very similar to this or at least easy enough to figure out.

      What you need to do is rename the two fields within the () areas to what you declared when setting up your code in functions.php, mine is

      // A Sidebar for widgets
      if ( is_active_sidebar( 'forum-widget-area' ) ) : ?>

      <div id="sidebar" class="widget-area" role="complementary">
      <ul class="xoxo">
      <?php dynamic_sidebar( 'forum-widget-area' ); ?>

      </div>

      Notice how I changed sidebar-widget-area to forum-widget-area ?

      We do this so that when your forum page is called, it shows the widgets you’ll setup later.


      Now, Open your Page Template and find:

      <?php get_sidebar(); ?>

      Or something similar. generally this is at the bottom of the code.

      Replace that with:

      <?php
      $uri = $_SERVER['REQUEST_URI'];
      if ( strpos($uri,'YOUR-FORUM-BASE') !== false ) {

      include(TEMPLATEPATH . '/forum-sidebar.php');

      } else {

      get_sidebar();

      }
      ?>

      “forum-sidebar.php” is the file you created earlier and YOUR-FORUM-BASE is the “Forums base” you have defined for your forums settings (in Settings >> Forums). Also please note the / before the file name. With this code you’ll need it.

      What this does is calls your primary URL http://yoursite.com and then attempts to detect if it’s on THIS URL or ANOTHER.

      So if yoursite.com/YOUR-FORUM-BASE then SHOW THIS else SHOW THAT.

      Using this code you can have an entirely seperate widget area for your forum page so you can make better use of the bbPress widgets without overdoing it with your current sidebar setup.

      Someone may have a better or more elegant way of achieving this but this has worked for me and it works well. I hope anyone finds it useful.

      #40447
      highexistence
      Participant

      I’m trying to show a logged-in user’s favorite topics on a single page like the page-front-topics.php template that’s included in the bbpress default theme. I used the exact same syntax as in that file but instead called in another template I created, content-archive-favorites.php, which contains the exact code (minus the containing div) from the user-favorites.php file.

      It just shows that the user has no favorites.

      Any help would be greatly appreciated!

      #40393
      jez101
      Member

      Has anyone been able to get bbPress 2.0 and the Thesis theme to work together?

      I have tried a number of things but I just can’t get it to work.

      If I do nothing and rely on the default theme the forum is totally unusable. Not only is there no styling but none of the functionality works (no links appear for a start!).

      I have tried creating a child theme as per instructions on this forum, tried using shortcodes and I have also tried copying the relevant parts of the default theme over to the thesis theme folder.

      This seems to get slightly better results in the sense that I get the forum functionality, but there is no styling. You can see my current attempt here:

      http://www.jezza101.co.uk/forums

      It seems to me like part of the theme’s framework is somehow breaking bbPress, there must be some fundamental incompatibility in there somewhere – but I really don’t know enough to debug this.

      I have asked over at the Thesis support forum but there seems to be little understanding of what’s going on over there. Is there anyone over here who has any suggestions?

      #40391
      silverks
      Member

      Hi,

      I’m currently implementing bbPress compatibility support for my theme (Graphene). I chose to go the route of using the default theme that comes with bbPress 2.0, and just add additional styles to make bbPress compatible with my theme.

      Since I’m not using the add_theme_support( 'bbpress' ) switch in my theme, bbPress displays a persistent nag in the Appearance section of WP Admin:

      Your active theme does not include bbPress template files. Your forums are using the default styling included with bbPress.

      How can I disable this nag? It doesn’t matter that the forums are using the default styling included with bbPress, since the additional custom stylesheet I implemented in the theme takes care of integrating the styling into my theme’s styles.

      Thanks!

      #40378
      Pomy
      Participant

      Howdy,

      I’m working on a bbPress Standalone version, Is is possible to restrict to choose some predefined tags during creating a topic?

      Lets suppose, I’ve created 100 specific tags for my forums. I don’t want to allow users to add more tags. That’s why I want to add these tags list into template’s “post-form.php” so that user can choose predefined list of my tags then they can choose forums and after that they can add topic.

      Like I’m looking the following fields:

      —-

      Topic title: <input default field>

      Post Field: <Input default field>

      Pick a section: < drop-down default forums field >

      Pick a Tag:<drop-down/checkbox my predefined tags>

      Then Submit

      —-

      I digg into bbPress, and I found the following solution:

      http://bbpress.org/forums/topic/limit-tags-to-a-pre-defined-list

      It is working fine on Topic page. But I need exact thing but on post form.

      Can anyone help me to achieve this?

      I will be great thankful!

      David
      Member

      bbPress templates can’t be selected from the admin as they can, for instance, for a WP page. bbPress looks for the following template files in your *main* WP theme directory in the following order:

      1. bbpress.php

      2. forum.php

      3. page.php

      4. single.php

      5. index.php

      Most themes are going to have page.php by default so it’s likely that bbPress is pulling that as the forums page template. Copying and renaming that to bbpress.php or forum.php will allow you to customize a forum-only page template. NOTE: this is the containing page template (just like for WP pages) and is *not* where you will edit the forum files themselves.

      #109978

      Yeah I tried that after my last post, both the default BP theme and a basic wordpress theme, both stock, and the problem was still there.

      This is what has made me believe its not a BBP problem. Because of this I’ve marked this topic as resolved and posted a support topic on wordpress.org:

      https://wordpress.org/support/topic/author-username-not-displaying?replies=1

      This one is really bothering me, I’m not sure what could be causing it.

      Thank you for all of your help, Andre.

      #109986
      selise
      Participant

      you can use short codes listed here:

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

      but even easier, if you are ok with the default layout, is to just use the template, “bbPress – Forums (Index)” for the blank forum page you’ve created (under page attributes on the edit page).

      #109964

      Something in your theme is causing the $post local to be reset, which makes it default to comments being turned on. bbPress forces this off for most themes, but with a custom theme that does its own global manipulations, bbPress can’t guarantee anything.

      You’ll want to figure out where your theme reloads the $post global, and either unset it, or force comments off. Start by looking in bbp-includes/bbp-core-compatibility.php fir how bbPress does it first.

      #108118
      David
      Member

      I’m looking for the same thing.

      djoep
      Member

      I did all my work locally so no issues with memory or timeout that I could not easily resolve. BTW, one thing I did along the way was to set the number of rows to 1000 vs the default 100.

      My overall strategy is to work off of a local, static version of the smf DB and local version of WP and all plugins and themes.

      Once I get the process working smoothly and reliably and I get most of the development done in the WP end of things, I’ll do the following:

      1) Lock down smf on the live site to new posts.

      2) Make a backup of the smf DB and import it to my local environment.

      3) Process the recent SMF DB using my (hopefully) perfected translation process.

      4) Use standard WP methods to Move my site to the live server.

      I’m a long ways away from this, having a lot of other development work to do (see bigtreestech.com to see where I’m starting from). I will be “practicing the moving of the site to the live server before I have to do it for real to find and fix any residual issues with URLs and paths that I expect will exist.

      Finally, I believe that the groups and group forums were created by the smf import plugin, not the sitewide forum selection from bp. I am trying to get to the point where I can go from site-wide smf, with no group association, to the same sort of forum with bbpress. I will also be using the bp internal forums for groups but there will be no “overview” of group forum activity… at least that is my thinking so far.

      #40329
      halfbinz
      Member

      Hi there,

      I have tried both ways to install and setup. One is to download then FTP upto the server (www.sharkshout.com/forum) and nothing happens when i go there. And also install new plugins which installs the bbPress.

      Difference between doing it the two ways?

      If i install the plugin i can add the Topics / Forums etc but they dont show anywhere.

      Please can someone help shed some light here. Its a fresh new website, clean default template and nothing setup or installed yet.

      thanks,

      Mark

      #109939
      dominornovus
      Member

      I’ve figured out how to change the bread crumb separator:

      <br /><br />
      // Change bbPress bread crumb separator.
      function filter_bbPress_breadcrumb_separator() {
      //$sep = ' &raquo; ';
      $sep = is_rtl() ? __( ' &laquo; ', 'bbpress' ) : __( ' &raquo; ', 'bbpress' );
      return $sep;
      }
      
      add_filter('bbp_breadcrumb_separator', 'filter_bbPress_breadcrumb_separator');

      I have not yet figured out how to add “You are here: ” at the start of the bread crumbs:

      I’ve tried this…

      <br /><br />
      function my_breadcrumb_trail_args( $trail ) {<br /><br />
      $args = '<div class="bbp-breadcrumb"><p>You are here: ';<br /><br />
      return $args;<br /><br />
      };<br /><br />
      add_filter( 'breadcrumb_trail_args', 'my_breadcrumb_trail_args' );<br /><br />
      

      …and this…

      <br /><br />
      function test($defaults) {<br /><br />
      $defaults = array(<br /><br />
      'before' => '<div class="bbp-breadcrumb"><p>You are here: ',<br /><br />
      );<br /><br />
      return $defaults;<br /><br />
      }<br /><br />
      add_filter('bbp_breadcrumb','test_args');<br /><br />
      

      Neither work.

      For now I’ve taken the hacky approach and just edited my bbPress files directly. You can see it in action here: http://www.directsponsor.org/forums/

      Any assistance with the filter would be greatly appreciated.

      #40311
      dominornovus
      Member

      What I want to achieve:

      I’ve installed bbPress as a plugin for WordPress. I want to make a few simple changes to the bbPress bread crumb function:

      bbp_breadcrumb();

      I need the bread crumb separator to be double right arrows rather than the default single arrow:

      I want to replace > with ».

      I also want to add “You are here:”

      Why I need this:

      I need to match the styling and position the Yoast Breadcrumbs. Yoast Breadcrumbs is installed as a plugin for WordPress. It breaks on bbPress pages.

      What I’ve tried:

      Using conditions and CSS, I disabled the Yoast bread crumbs on bbPress pages. I also disabled the default bbPress bread crumbs but called it just beneath my primary navigation. Effectively, I’ve “moved” the bbPress bread crumbs.

      To change the bread crumb separator I’ve researched JavaScript and jQuery string replacements but I’ve been advised that this is “hacky”.

      My question:

      What’s the conventional way of changing the output of bbPress function?

      I can provide additional JavaScript, PHP and CSS code if required.

      Live demo:

      These two live examples highlights the two types of bread crumbs:

      Yoast bread crumbs: http://www.directsponsor.org/forums/

      bbPress bread crumbs: http://www.directsponsor.org/news/

      #109881
      eraleks
      Member

      Couldn’t find the file :/ Im using the default theme that comes along with the plug-in. Do you by any chance know what it is called?

      Sorry about the hassle but im kind of noob on coding!

      #40307
      kurtzky
      Member

      Hey guys. I just integrated my WP site to BBPress. Right now I am having some problems with the default “forums” page that was created. The right sidebar is not displaying on that page, but when you go to the topics you can see it. Do you know how to fix this issue? Sorry I am really a beginner in BBPress.

      http://www.kurtzky.com/forums/

      Thanks in advance!

      #40301
      highexistence
      Participant

      How can I output the topics loop ordered by # of replies? I know I can grab them via wp_query, but I’m not sure how to also grab voices, latest poster avatar, etc. (to mimic the default topic loop).

      Any ideas? Thank you!

    Viewing 25 results - 4,701 through 4,725 (of 6,780 total)
    Skip to toolbar