Forum Replies Created
-
In reply to: ERROR: Are you sure you want to do this?
ok, no idea why this is happening – it 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.
Then come back
In reply to: Live chat pluginplenty of wordpress live chat plugins, just google ‘wordpress live chat plugin free’
In reply to: Whitespace above first image in topicyour image is using your themes ‘aligncenter’ property, which causes it to display as a new block, so it starts ‘under’ where the author finishes.
I’m not sure how you are adding images – do you get an option of how to display them, if so don’t do center
In reply to: Any Way to Convert WordPress Comments to BBPressgreat post – thanks for taking the time to fully document this 🙂
In reply to: Combine WordPress Comments and BBpress Postsgreat post – thanks for taking the time to fully document this 🙂
the shortcode goes in say page content.
so create a page and put
[bbp-single-topic id=$topic_id]
In reply to: Forum Width in Twenty Seventeenvia css try
.has-sidebar:not(.error404) #primary { width: 100% !important; }
you can set it to more than 100% if you wish !
try my style pack plugin, it has this + many other features and will save you having to maintain code
In reply to: Importing data via sqlThe file is :
/bbpress/includes/admin/converters/Example.php
so if you go to
you can download it to your PC and open the file
In reply to: Whitespace above first image in topicis your forum public? If so post a link and I’ll see if a simple css change is needed
In reply to: Whitespace above first image in topichmm – could be a whole host of things
does this happen with all images?
Only just started or always been the case or new to using images?
Just you account or everyone?In reply to: Search a single forum with bbPressThis approach is not working anymore
did it work and has stopped, or has it never worked for you?
In reply to: Recent replies listok, remove the whole line
<?php echo do_shortcode(‘[bbpress_recent_replies_by_topic show =5]’) ?>
then add this to your functions
add_action( 'bbp_template_before_forums_loop', 'call_bbpress_recent_replies_by_topic' ); function call_bbpress_recent_replies_by_topic () { echo do_shortcode("[bbpress_recent_replies_by_topic show=5]") ; }
This just hooks to the line after the one you’d added
<?php do_action( ‘bbp_template_before_forums_loop’ ); ?>
so saving you having to amend that template.
This works on my site.
In reply to: Adding Author’s Role as Class to Replies/Topics?ok, which div do you want the class added to, give me the existing class/classes in that div so I can identify
In reply to: How to fix fatal error?In reply to: Importing data via sqlgreat – glad to have helped 🙂
In reply to: Link to bbpressNot quite sure what what level of knowledge you are coming – the question could mean many things.
If your front end is a page, then you just use wordpress to add a link into the content of thte page – the chain icon is the one. The url will be the one in your browser when you are on the forums part of the site.
Otherwise come back with a more detailed request
In reply to: Importing data via sqlbbpress just uses
posts
post_meta
and for its own settings
optionsforums, topics and replies are all post types in wordpress.
go to
for more info including an example importer.
I documented my import from snitz access database when I very first started using bbpress, and you may want to read through that as well in this page
In reply to: Hidden forums not visible to Participant rolegreat – glad you are fixed
In reply to: LearnDash & bbpress integration plugin issueinitially I’d ask learndash, and this is a paid plugin that I don’t have access to
In reply to: ERROR: Are you sure you want to do this?the error is a permissions one.
Does this occur on both the front end and the back end (dashboard>topcis>create new topic)
Is it just one user, all users?In reply to: Recent replies listnot sure why, but adding show seems to fix
<?php echo do_shortcode(‘[bbpress_recent_replies_by_topic show =5]’) ?>
In reply to: Public/private posts- visibilityI’ve been thinking this over, and can’t see a simple way to achieve this.
To get something working would involve adding extra fields to a topics meta data, and then filtering the display to catch.
With the forum visible in effect the code for a forum or set of forums would need to (by default) make a topic private using an additional field, and then all the display parameters would need to hide it unless made public. That means closing every back door in search, profiles, displays, freshness all widgets and other areas so that no-one sees it unless set to public, which is one hell of a lot of work, and a large re-write of many bbpress functions.
I could modify my private groups plugin which makes forums (but not content) visible, so that certain topics are shown, but again it is a heap of code. Beyond free help I’m afraid, but if you want to look at that route contact me via my website http://www.rewweb.co.uk
In reply to: Recent replies listwhereabouts in loop-forums.php did you put it ?
can you post the whole of your code – so I can copy/paste into my file and check what it does on mine