Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 24,026 through 24,050 (of 64,518 total)
  • Author
    Search Results
  • #137698
    schampf
    Participant

    Hi,

    I have installed bbPress and I was wondering …

    – I only want the forum to be visible when a user has logged in, so any one except anonymous can see the forums… (i mean the page where you can actually see the forums & topics ..)

    – I also want the widget with the forum categories to be visible only for the logged in users (I’ve done this with dynamic widgets)

    – and finally I want the menu-item that points to the forums also only visible to any one except anonymous …

    – the contents of the forum should not be indexed by search engines, i think i can do this with robots.txt?

    thanks !

    #137697

    In reply to: Google Authorship

    Stephen Edgar
    Keymaster

    @shrewdies Thanks for that, nice read, will help on decision making for Microdata support in bbPress.

    #137696
    Stephen Edgar
    Keymaster

    bbPress blocks shortcodes by default.

    You will need to use this plugin to setup ‘allowed’ shortcodes:
    https://wordpress.org/plugins/bbpress2-shortcode-whitelist/

    #137689
    nathan1342
    Participant

    I’ve installed bbpress, WordPress 3.6.1 and 2.4 for bbpress, and when I goto open the forum i get this error “Fatal error: Class ‘WP_Post’ not found in D:\xampp\htdocs\wordpress-test\wp-content\plugins\bbpress\includes\core\theme-compat.php on line 375”

    Anyone encountered this before and know how to fix it? I’ve searched the forums but came up empty.

    Thanks!

    #137688
    Frank_F19
    Participant

    I just installed bbPress and I’m having this odd issue where sticky posts will display but regular topic posts will not.

    For example, if I have 3 topics and one is sticky it will say “this forum contains 3 topics” but only the sticky topic will display.

    I’ve tried posting topics using different accounts (both administrative and regular) with no luck. Any idea why only sticky topics would display?

    #137686
    CraigM1970
    Participant

    Okay, I managed to work this out for myself eventually. It was quite simple once I realised I was dealing with the Teeny version. Doh!

    For anyone else who wants to add the Visual editor and also have it only paste plain text from Word etc. here’s how.

    /*  Enable visual editor on tinymce in bbPress  */
    
    function bbp_enable_visual_editor( $args = array() ) {
        $args['tinymce'] = true;
        return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
    
    /* Enable TinyMCE paste plugin */
    
    function bbp_add_paste_plugin($args) {
      array_push($args,'paste');
      return $args;
    }
    add_filter( 'teeny_mce_plugins', 'bbp_add_paste_plugin');
    
    /* Enable paste_sticky as default */
    
    function bbp_myformatTinyMCE($in) {
    	$in['paste_text_sticky'] = true;
    	$in['paste_text_sticky_default'] = true;
       return $in;
    }
    add_filter('teeny_mce_before_init', 'bbp_myformatTinyMCE');
    
    Bryan Morgan
    Participant

    I am using the latest install of wordpress, buddypress and bbpress as well as gravity forms. I am needing to place a Gravity From inside a private bbpress forum topic as this form is meant to be seen only by members of this private buddypress group. When using the typical “add form” button at the top of the edit topic page which adds the shortcode to embed the form it places the shortcode there but then the shortcode is the only thing that appears when viewing the topic, not the intended form. Is shortcode not the way to do this and if not what is the best way to proceed to allow only members of this private group access to this form?

    #137684
    Angel Candelaria
    Participant

    Hi @lomyn.

    On the bbPress install package, there should be a file called bbpress.css (under bbpress/templates/default/css). Just extract that file from the package, add the code at the end of the file, and copy it to your theme’s css directory.

    #137682
    Button9
    Participant

    I am also using Customizr and having the same problem plus some more. When I set the permalink to .forums it doesn’t matter what I write on the page the following strange text just shows (and no bbpress sidebar):

    Forum

    .
    Search for: Välkommen! › Forum Forum Topics Posts Freshness 1. Grundutbildning 0 0 No Topics 2. Vidareutbildning 0 0 No Topics 3. Skoning 0 0 No Topics 4. Smide 0 0 No Topics 5. Hovsjukdomar 0 0 No Topics 6. Journalföring 0 0 No Topics 7. Övrigt 0 0 No Topics

    If I change the permalink .forums to something else and write [bbp-forum-index] the forum shows up nicely but together with my default sidebar. I am using Instant WordPress to build my site locally and I know that there are some limits due to that, for instance I can’t write any posts in the forum. Maybe all these problems will be solved when going online?

    #137681
    freshwater
    Participant

    this worked for me. i have WP 3.6 and plug in BBpress. in WP go to Settings>Permalinks i changed from “Default” to “Post name” and now my links are working fine.

    #137680
    freshwater
    Participant

    i have the same problem. i’ve used the EXACT same word/string “AIRE” for example in multiple category child levels. i’d guess this is the problem bbpress should internally modify to make category names unique (at give me an error message when i attempt to create a category child which name already exist (but in a different category/forum path).

    #137677
    TheTwister
    Participant

    Hello, I’ve added a plugin into my wordpress (phpScheduleIt)and its interfering with this plugin. It is coming up with a message saying

    Fatal error: Call to a member function add_query_var() on a non-object in /home/guildfor/public_html/wp-includes/rewrite.php on line 47

    Any idea how I can solve it?

    I have the latest virsions of WordPress and bbPress.

    #137676
    CraigM1970
    Participant

    Wordpress 3.6.1, bbPress 2.4, Buddypress1.8.1 Site is http://www.thedoctorwhoforum.com

    I’m using the visual TinyMCE editor on my bbPress Forum pages and also on my normal WordPress blog pages.

    Some users have issues with spans and other code being copied in when they paste. I have been able to stop the pasting issue on the blog comments with the following code which added the paste plugin to TinyMCE:

    function myformatTinyMCE($in) {
    	$in['plugins'] = 'inlinepopups, paste, wordpress, wplink, wpdialogs';
    	$in['paste_text_sticky'] = true;
    	$in['paste_text_sticky_default'] = true;
       return $in;
    }
    add_filter('tiny_mce_before_init', 'myformatTinyMCE' );
    

    However, it doesn’t affect TinyMCE on the Forums. They seem to be separate. I instigated the visual editor on the bbPress topics with the following code:

    function bbp_enable_visual_editor($in) {
      $in['tinymce'] = true;
     return $in;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor');

    I’ve tried lots of different things, but I can’t seem to affect the bbPress TinyMCE the same way I can the blog TinyMCE.

    For example, this didn’t work:

    function bbp_enable_visual_editor($in) {
      $in['tinymce'] = true;
      $in['plugins'] = 'inlinepopups, paste, wordpress, wplink, wpdialogs, tabfocus';
      $in['paste_text_sticky'] = true;
      $in['paste_text_sticky_default'] = true;
     return $in;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor');

    Anybody any ideas how to add paste to the plugins and possibly add paste_text_sticky etc as well? I’m a bit new at this.

    Thanks.

    #137675
    younes0
    Participant

    Problem solved when upgrading to latest WordPress (2.6.1) and bbPress (2.4). I have WPML too.

    Great work , thanks.

    #137671

    In reply to: where do i begin?

    WordProSystems
    Participant

    thank you!! that video was incredibly helpful!! i got my forum up and going, still trying to figure out how things work. I also downloaded the bbpress tweeks plugin you suggested. i cannot seem to get it to work though. what steps do i need to do to have the members log-in section in the sidebar?

    #137667
    palmakan
    Participant

    Thank you freewpress.

    I went to line 1089 of style.css in wp-content/themes/picochic

    It had the follow in

    #content {
    float: left;
    #max-width: 67%;
    max-width: 68%;
    #margin-left: 15px;

    I added the width in to make it this.

    #content {
    float: left;
    width:68%
    #max-width: 67%;
    max-width: 68%;
    #margin-left: 15px;

    Yet it is still the same in bbpress Forums page (when you click forums from my main menu)

    Any other ideas?

    #137660
    seamtv
    Participant

    I have Genesis 2 and a responsive child theme. In my case, the forum index is working, but I, too, get this mysterious image thumbnail and cannot – for the life of me – figure out why it’s appearing. I looked at the code on the page and tracked down the image in my media library but have no idea where the instructions to display it on the page are coming from. If you ever figure it out, please let me know!
    If it’s any help, the index appears to be using an ‘archive’ css of some kind. I am wondering if there was a setting at some time to have an image header that has since been deprecated in my theme but has resulted in errant code haunting me?

    #137659
    benjito
    Participant

    I want to create a custom landing page which displays my forums.

    I have created a page with the bbPress shorcode [bbp-forum-index] which works fine.

    However, the breadcrumb “forums” link goes to a different page which contains a load of text jibberish!

    I changed the forums slug in the settings to my page (and updated the permalinks) but instead of the breadcrumb link going to the page with the shortcode, the page itself gets over-written by the text jibberish.

    It actually looks like the bbPress sidebar is loading into the main content field, though i don’t know why or how to fix.

    Page with shortcode > activenaturalist.org.uk/anforum/
    Forums breadcrumb text jibberish > activenaturalist.org.uk/fmsforum/

    If anyone thinks this post looks familiar it is because i posted about something similar in the past then went under siege from a Chinese bot, the website has only recently been allowed back up by my host.

    WP 3.6.1
    bbPress 2.4

    #137658
    benjito
    Participant

    I seem to have the opposite problem to everyone else and i can’t get the “bbPress WP Tweaks” forum sidebar to display instead of the default one. (yes i have reset permalinks, yes i have added widgets to the sidebar).

    Every forum page continues to just show the default sidebar.

    I am using the Customizr theme and suspect this may be the issue? Can anyone suggest anything else obvious i may be missing?

    I also have a separate issue with the “forums” landing page which may be linked.

    #137657
    jralston
    Participant

    I need some assistance please. I have looked all over the web and I have not found any information on how to get breadcrumbs to appear for bbpress installation. All is working fine for me so far. I am using plugin-bbpress.php as my template. There is already <?php bbp_breadcrumb(); ?> in that template but no breadcrumbs are appearing. Using the latest 2.4 bbpress plugin. Help?

    #137648
    Xevo
    Participant

    bbPress is just using WordPress’s custom post type function, so you can just use the standard loop that you use for Worpdress and edit it to only load the forums custom post type.

    #137645
    palmakan
    Participant

    Hello there,

    I am tearing my hair out to try and change the with of this forum block (area in white) on my site. It is far too small and want it to be wider.

    http://khalsaspad.com/forums/

    If one then clicks on “Traders talk forum” the width changes to a wider width.

    If you then click on “Trading rules and motivation” it changes to a different width again.

    How can I change the change the width of the area in white on all the forum blocks to be nice and wide?

    I am using bbpress 2.4 and WordPress 3.61 with the picochic theme.

    Any help would be greatly appreciated.

    Thank you so much in advance.

    Pal

    #137641
    damien990
    Participant

    Hello there!

    There has feature of Page Attributes and we can choose [full width page (no sidebar) on Pages & Post. but cannot do it on BBpress Forum.

    So How can I do it on the bbpress Forums?

    thanks

    #137639

    In reply to: bbPress and jQuery UI

    Xevo
    Participant

    This is not loaded by bbPress, probably some other kind of plugin or theme doing this.

    #137637
    Xevo
    Participant

    If it is a paid plugin they should be offering faster support in my opinion.

    I had the same problem with a plugin a while back too, unfortunately it’s not a problem that bbPress has to resolve. In my case I just rewrote the other plugin.

Viewing 25 results - 24,026 through 24,050 (of 64,518 total)
Skip to toolbar