Forum Replies Created
-
In reply to: Moved WP location and now Forum tab missing
so what did you do to make it ‘live’?
In reply to: Fatal error: ob_end_flush()googled ‘All In One SEO Pack bbpress’ and got several entries
The plugin author seems quite helpful, maybe post on their support forum
In reply to: Fatal error: ob_end_flush()@chkdisk – thanks for this will be interesting to see if highrollerusa is using that plugin.
In reply to: Moved WP location and now Forum tab missingso is the live site trying to access the sub directory domain, or having tested have you put everything into live?
In reply to: Fatal error: ob_end_flush()Depends what the issue is.
I suggest this approach as it helps define whether on a ‘clean’ default theme with no other plugins bbpress is experiencing issues.
If it is ok in a clean site, then I’d suggest talking to your host provider – most are good with wordpress, and may identify any issues.
If you can identify a conflict, then we can look at a solution, sometimes it is easy, often it might be harder 🙂
I presume your test site is on a local server?
If you’re ok/good with web stuff, then you might consider putting a test site on-line so that it is an exact match for the live environment, most host providers allow sub-domains and if you switch on discourage search then it doesn’t interfere see
https://codex.bbpress.org/creating-a-test-site/
then you can be happier that live will work.
Anyway just a thought !!
In reply to: Error on show "all reply" page (in backend).repair is worth a try
Is this a new installation and has it worked before?
In reply to: Automatic Link bbPress Forumprobably better to put this to the auto linker plugin author and tell them that bbpress uses custom post types of Forums, Topics, and Replies.
In reply to: Redirection loop after submiting new topicIt 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 twentytwelve, and see if this fixes.
In reply to: Error on show "all reply" page (in backend).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 twentytwelve, and see if this fixes.
In reply to: Fatal error: ob_end_flush()try the following to se if you can pinpoint a conflict in live
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 twentytwelve, and see if this fixes.
yes – functions.php in your parent theme will be the place, BUT keep a record of what you have changed, as you’ll lose this on any theme updates, and will need to add it back after upgrade !
In reply to: Plugin Disappeared on WordPress Dashboardgreat – glad you’re fixed, something conflicting, but at least you have a resolution even if we don’t know definitively what the problem was !
In reply to: Fetch Topics of Particular Forumno problem, and thanks for letting us know the solution – I’ll remember it for future and look to change the website
In reply to: how to make bbpress categories and forums as pagesPage id – go to
Dasboard>forums>all forums
Hover over the edit button of the forum, but do not click.
you will see in the bottom left the url of that forum with forum=xxx that is the number
In reply to: Fetch Topics of Particular ForumIt did not work for me.
Please describe what you mean by this and exactly what you put into the page?
In reply to: Smaller content in repliesgreat – glad you’re fixed !
In reply to: Editing the "Freshness" column contentsLike many plugins the documentation is not great, and as a humble user I have added to it as I have learnt, a good deal of the documentation is mine.
bbpress is a complex plugin, and I sympathise that it is not great to grasp.
With templates, all functions are written to allow you to filter what is there, this is a standard wordpress/php process, so you’re sort of expected to know about it as part of wordpress! I did try to explain it in
you can filter many bbpress functions using ‘parse args’ capability – a standard wordpress technique or just filter the whole function, you’ll see a return apply_filters in all template functions and this is the hook that you use.
so for you you could us the code in your other post
If you’d like to help with documentation, just find where something is poor and write what you think it needs changing to, it is newcomers like you that can really help improve what is there
In reply to: Smaller content in repliesIn reply to: how to make bbpress categories and forums as pagesjust use shortcodes
https://codex.bbpress.org/shortcodes/
in particular
[bbp-single-forum id=$forum_id]In reply to: Display the last topic updated in the forums loopput this in your functions file
function rw_custom_freshness_link( $forum_id = 0 ) { $forum_id = bbp_get_forum_id( $forum_id ); $active_id = bbp_get_forum_last_active_id( $forum_id ); $link_url = $title = ''; if ( empty( $active_id ) ) $active_id = bbp_get_forum_last_reply_id( $forum_id ); if ( empty( $active_id ) ) $active_id = bbp_get_forum_last_topic_id( $forum_id ); if ( bbp_is_topic( $active_id ) ) { $link_url = bbp_get_forum_last_topic_permalink( $forum_id ); $title = bbp_get_forum_last_topic_title( $forum_id ); } elseif ( bbp_is_reply( $active_id ) ) { $link_url = bbp_get_forum_last_reply_url( $forum_id ); $title = bbp_get_forum_last_reply_title( $forum_id ); } $time_since = bbp_get_forum_last_active_time( $forum_id ); if ( !empty( $time_since ) && !empty( $link_url ) ) $anchor = '<a href="' . esc_url( $link_url ) . '" title="' . esc_attr( $title ) . '">' . esc_attr( $title ) . '</a>'; else $anchor = esc_html__( 'No Topics', 'bbpress' ); return apply_filters( 'rw_get_forum_freshness_link', $anchor, $forum_id, $time_since, $link_url, $title, $active_id ); } add_filter('bbp_get_forum_freshness_link', 'rw_custom_freshness_link' );In reply to: Avatars in widget 2012great – glad you’re fixed
In reply to: Fetch Topics of Particular ForumIn reply to: layout problem with bbpress@robkk – no evidence myself that bbpress has wamp or mamp issues, but have seen it quoted occasionally by others – probably is a red herring !
In reply to: layout problem with bbpressPresume you have been through
and
bbpress is not great on mamp or wamp, is this what you mean by localhost.