Forum Replies Created
-
In reply to: Sticky topic appearing in more than one forum
Is it sticky or super sticky?
In reply to: Forum link in breadcrumb not workinggreat – thanks for posting the solution
In reply to: Sorting answers inside of topicsmy style pack plugin has a topic order tab, which lets you sort by topic date
In reply to: bbpress future? no funding?I’m only a helper on here, and have nothing to do with development of bbpress, so these are just personal comments.
bbpress’s philosophy has always been to be a light plugin, and allow others to create add-on plugins that have optional functionality.
The main author JJJ is proud that the plugin is so stable that new releases are not needed regularly.
A new version 2.6 will when released contain performance improvements and lots of code improvements under the hood, but the only visible addition is per forum moderation.
Most features asked for are available in add-on plugins.
Are there any particular things you are after?
In reply to: Question about creating forumsMy plugin private groups will let you have public, private and premium forums
In reply to: 500: post_status no arraytry doing the change that @tweichart suggested ie
on line 1800 of the same file
the error is still the same and it’s on line 1800. Fixing something on ln 1850 won’t do the trick here I guess, so you’d need to change as initially written ln 1796 from
$post_stati = $posts_query->get( 'post_status' ); to
$post_stati = $posts_query->get( 'post_status' ); if (!is_array($post_stati)){ $post_stati = array($post_stati); }
and then report back
as far as I am aware the moderation plugin still works, but I didn’t write it !!
In reply to: Every profile but one results in visiting 404 pagetry
dashboard>settings>permalinks and just click save.
This will reset them
may not change, but good first step
great, and thanks for the feedback
In reply to: 500: post_status no arrayok, thanks for that.
In reply to: Approve Topics before PlubishingI have a plan to look at this plugin at some stage, but it’s not high priority at the moment as I’m tied up with paid work.
sorry!
In reply to: Remove “To Forum List” Link From Tophard to judge as you only showed a postbox size image, but doesn’t look like bbpress
version 2.5.13 just released should fix this issue
In reply to: 500: post_status no arraywqhich is exactly what it should look like, and is the same as the hotfix you applied
what is the exact error you are now getting?
In reply to: 500: post_status no arraythanks, yes I can now see the file.
It ahs the required change in it.
what do you see when you look at line 1851 ?
no problem – glad you’re fixed !!
In reply to: Remove “To Forum List” Link From Topare you using buddypress – looks like a buddypress box ?
Suspect you are using php 7.1
so 3 fixes
1. downgrade to a lesser version of php
2. upgrade to bbpress 2.6rc3
3. in bbpress 2.5.12 change line 1851 from
$meta_query = $posts_query->get( ‘meta_query’ );
to
$meta_query = $posts_query->get( ‘meta_query’, array() );
Since the next upgrade will fix that anyway, no issue in changing the bbpress file
best I can offer I’m afraidIn reply to: 500: post_status no arraydidn’t know that 2.5.13 had been released, where did you get a copy?
your filter reads
add_filter( 'bbp_get_breadcrumb',mod_bbp_get_breadcrumb, 98, 2);
it should read
add_filter( 'bbp_get_breadcrumb','mod_bbp_get_breadcrumb', 98, 2);
you need single quotes around the 2nd function
In reply to: Profile URL – how to remove username from URLinteresting question
I think bbpress just uses the wordpress pretty permalinks, so might be worth trying this plugin to see if you can change the default
I’ve only read the page above, not tried it !
Please do report back if it works (or if it doesn’t)
In reply to: New user difficulty and log in problemsFirstly, when a user registers,
bbpress just uses wordpress, so it should work if qordpress is working.
Can you try using http://www.mysite.com/wp-login and see if that works.
Also, when a user logs in, in the login bbpress widget, it still shows the username and password login boxes, but if I go into a sub forum, the widget then shows the users details.
not sure what you mean here. On what page or post do you have this first widget?
In reply to: remove paragraph and breakok, a new page in a default theme has this
<div class="entry-content"> <div id="bbpress-forums">
your page has this
<div class="entry-content"> <div style="clear: both"></div> <div class="the_champ_sharing_container the_champ_horizontal_sharing" super-socializer-data-href="https://www.lifeleap.org/community/"> <div class="the_champ_sharing_title" style="font-weight:bold">Share:</div> <ul class="the_champ_sharing_ul"> <li class="theChampSharingRound"> <li class="theChampSharingRound"> <li class="theChampSharingRound"> <li class="theChampSharingRound"> <li class="theChampSharingRound"> </ul> <div style="clear:both"></div> </div> <div style="clear: both"></div> <p> <br> </p> <div id="bbpress-forums">
Don’t think it’s bbpress
In reply to: remove paragraph and breakso is this a page with
[bbp-forum-index]
in it?
In reply to: remove paragraph and breakseems to be something in your page layout within entry content.
How is that page constructed?
what puts the social icons in?