Forum Replies Created
-
In reply to: Sort topics in a Forum
can you say what order you would like them sorted into?
In reply to: How to insert the widget on forum pagessorry – that was for the code via ftp.
If you just want a list then go into dashboard>appearance>widgets and just look for all those that’s tart with (bbpress)
In reply to: Sorting Forumsgo to
dashboard>forums>all forums>edit forum and on the right hand side you will see ‘Order’
simply set from 0 upwards for each forum.
In reply to: How to prevent post, wait for approval?In reply to: Forum not showing for public and public commentingyes use my private groups plugin to set visibility public
In reply to: How to insert the widget on forum pageswp-content/plugins/bbpress/includes/common/widgets.php
In reply to: Double forum folder listtheme and bbpress both displaying
you can turn off the bbpress breadcrumbs using
or by using the style pack plugin
In reply to: How to insert the widget on forum pagesIn reply to: Strange orphan pipes on headersGreat – glad to have helped
In reply to: Strange orphan pipes on headersthat pipe is from the admin links and seems to be an extra one.- not sure why this appears for you – could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
That will hopefully tell you what is causing it
In reply to: Strange orphan pipes on headersI don’t see that -I suspect that it only appears for logged in users, and is related to ‘favorites|subscribe’
In reply to: Forum style / setupsorry – I don’t get involved in skype conversations on a free support site.
my final thought would be that if you are not running any hierarchy, then this is how the forum will display.
Try setting up some categories with sub forums to see if it is actually all working
In reply to: Strange orphan pipes on headersif you post a link to an example I should be able to help
In reply to: Any good free bbpress themes ?the themes for this site are available here
https://meta.trac.wordpress.org/browser/sites/trunk/buddypress.org/public_html/wp-content/themes
In reply to: How To Add “New Topic” buttonmy style pack plugin has a new topic button
In reply to: FORUM PAGE & BUTTONS DON’T DISPLAY PROPERLYok, untested but try
wp-content/plugins/bbpress\templates\default\bbpress\form-search.php
copy to your PC and
line 17
<input tabindex="<?php bbp_tab_index(); ?>" class="button" type="submit" id="bbp_search_submit" value="<?php esc_attr_e( 'Search', 'bbpress' ); ?>" />
change to
<input tabindex="<?php bbp_tab_index(); ?>" class="button" type="submit" id="search_submit" value" />
save this file to
ie wp-content/themes/%your-theme-name%/bbpress/form-search.php
where %your-theme-name% is the name of your theme
In reply to: Forum style / setupIf you’ve done everything else correctly – would put money on it being a caching issue – deactivating the plugin may not stop it working.
plugin says ‘3.Admin can delete all cached files from the options page’ suggest you do this
In reply to: Forum style / setupsuspect that wp fastest cache might be saving a version.
In reply to: Forum style / setupyou could try uploading it to the main bbpress templates
wp-content/plugins/bbpress/templates/default/bbpress/loop-forums.php
But you will need to remember that any updates to bbpress will overwrite this, and you’ll need to repeat.
Otherwise suggest you search your site for loop-forums.php to see if any other instances are on it. If you overwrite them with the style pack version, then it must take effect at some point !
In reply to: Forum style / setupOk, I can’t immediately see anything there that would muck it up.
Sorry, but whilst I would love to have the time to fix every issue, some require personal intervention, which is outside of the scope of free help.
In reply to: Attached files in topics and repliesIf you allow anonymous posting and file uploads, you will be spammed to hell !
In reply to: How to insert the widget on forum pagesyour theme should create a page with a sidebar, which is where you would put widgets
In reply to: Membership: Hide forum and answersin the file
bbpress\includes\common\shortcodes.php and amend the ‘bbp-single-forum’ shortcode
In reply to: nesting topic repliesNot sure if you mean reply threading?
dashboard>settings>forums>reply threading
In reply to: FORUM PAGE & BUTTONS DON’T DISPLAY PROPERLY1. you have two css declarations that are affecting
#main-col .elements-box ul li, #main-col .post ul li { list-style: inside none square; padding-left: 0; }
and
#main-col .elements-box ul ul li, #main-col .post ul ul li { list-style: inside none circle; }
if you are not interested in having circles or squares anywhere on your site out this in your css.
#main-col .elements-box ul li, #main-col .post ul li { list-style: none !important ; }
#main-col .elements-box ul ul li, #main-col .post ul ul li { list-style: none !important ; }
2. whilst some styling can be done, it would take an change to a template to achieve what you want for search. If you are familiar with moving files using FTP and editing files on your PC, come back and I’ll help further
3. Can’t see that as it only shows to those logged in.