Forum Replies Created
-
In reply to: bbPress Fatal Erreur
Suspect you are using php 7.1
3 fixes
1. downgrade to a lesser version of php
2. upgrade to bbpress 2.6 RC
3. in bbpress 2.5.12 go to /includes/forums/functions.php and 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: Grab topic IDs from forum IDIs there anyway I can get a list of topic IDs inside a forum ID?
sorry missed this first time round.
you’ll want bbp_has_topics which you’ll find in
\includes\topics\template.php
line 140
function bbp_has_topics( $args = '' )you can call it with a forum id eg
<?php $query = bbp_has_topics( array( 'post_parent' => '2579') ); ?>this will return an array of topics from forum ID 2579 which you can then work with
In reply to: Forums messed up. How do I delete MySQL data?wp_bp is buddypress
bbpress uses custom post types for forums, topics and replies, and various ‘options’ settings, then of course users have meta data.
Quickest way would be to re-install and reactivate bbpress then use that to delete as above and then remove bbpress again. Much better than messing with sql tables
In reply to: Forums messed up. How do I delete MySQL data?dashboard>tools>forums>reset forums
In reply to: Forum link stopped workingsorry thought you went with phpbb ?
In reply to: Forum link stopped working7.1 will work with 2.5.13 when released
In reply to: Topic/Reply Styling doesn’t workok, without a link, I can’t get further – as I need to see what css is being applied at browser level.
In reply to: Topic Text not displayingIn reply to: Forum link have disappearhmm, not sure what to suggest.
what other plugins do you have?
In reply to: Topic/Reply Styling doesn’t workok, without a link it is hard to say.
but first I’d try closing and reopening your browser, it needs to reload the css.
Can you also confirm/try other settings to know that the style pack plugin is working
In reply to: Forum link have disappearOk, I understand – that is called ‘breadcrumbs’
I think your theme might be hiding them.
as a test try a default theme such as twentyten and see if they are there
The come back
In reply to: “get forum list” can’t find forumsIn reply to: Forums index does not workgreat – glad you are fixed !!
In reply to: Forums index does not workok, you need to get this code into your site.
@media screen and (max-width: 400px) { .list-view .site-content .cat-links, .list-view .site-content .entry-content, .list-view .site-content .entry-summary, .list-view .site-content footer.entry-meta { display: initial !important; } }There are many ways to do this.
If you theme has a custom css area, you can put it in there
Otherwise you can look for a css plugin and add that
or you could install and activate my style pack plugin
and go to
dashboard>settings>bbp style pack>custom css and put the code in there
In reply to: Reply count does not workgreat – glad you’re fixed !
In reply to: Reply count does not worktry
dashboard>tools>forums>repair forums
and select the appropriate ‘count replies in each topic’ or ‘count replies in each forum’
If that doesn’t fix, run all of them, but one at a time !
In reply to: Forums index does not workline 2930 of your custom css file changes this for
@media screen and (max-width: 400px)using
.list-view .site-content .cat-links, .list-view .site-content .entry-content, .list-view .site-content .entry-summary, .list-view .site-content footer.entry-meta { display: none; }you need to add some custom css for instance
@media screen and (max-width: 400px) { .list-view .site-content .cat-links, .list-view .site-content .entry-content, .list-view .site-content .entry-summary, .list-view .site-content footer.entry-meta { display: initial !important; } }In reply to: Forums index does not workI’d need a link to your site to see
In reply to: Internal Server Error in Repliesgreat – thanks for coming back
go to my site and go to my contact page and email me from there, I need to get some access details so I can see the issue
In reply to: Internal Server Error in RepliesIt 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: Forum link have disappeartry
dashboard>settings>permalinks and just click save
see if that fixes.
In reply to: Forum widthok that’s firmly theme related, but I’ll give you a starter and let you play
Put this in your theme’s custom css area, presuming it has one
.section-inner { width: 1200px; } .content { width: 65%; } .sidebar { width: 27.5%; }and then just play with the numbers to get what you want
In reply to: Uninstall Breaks My Wp Adminok, not sure I can help further – think it is a wordpress/database issue.
Last 2 throws of the dice
1. is debug switched on, and if not turn it on to see what errors are appearing. if you need instructions for that – come back
2. try changing theme to a default one like twentyseventeen, then deactivate and see if that does anything. if that works you could switch back to your normal theme once bbpress is gone.
In reply to: Uninstall Breaks My Wp Adminif that doesn’t work, you can rename it back