Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 9,126 through 9,150 (of 14,299 total)
  • In reply to: bbPress Fatal Erreur

    @robin-w

    Moderator

    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 afraid

    @robin-w

    Moderator

    Is 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

    @robin-w

    Moderator

    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

    @robin-w

    Moderator

    dashboard>tools>forums>reset forums

    @robin-w

    Moderator

    sorry thought you went with phpbb ?

    @robin-w

    Moderator

    7.1 will work with 2.5.13 when released

    @robin-w

    Moderator

    ok, without a link, I can’t get further – as I need to see what css is being applied at browser level.

    @robin-w

    Moderator

    url, screenshot, more detail?

    how much if nay of this have you been through

    Before Posting

    @robin-w

    Moderator

    hmm, not sure what to suggest.

    what other plugins do you have?

    @robin-w

    Moderator

    ok, 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

    @robin-w

    Moderator

    Ok, 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

    @robin-w

    Moderator

    @robin-w

    Moderator

    great – glad you are fixed !!

    @robin-w

    Moderator

    ok, 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

    bbp style pack

    and go to

    dashboard>settings>bbp style pack>custom css and put the code in there

    @robin-w

    Moderator

    great – glad you’re fixed !

    @robin-w

    Moderator

    try

    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 !

    @robin-w

    Moderator

    line 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;
    }
    
    }

    @robin-w

    Moderator

    I’d need a link to your site to see

    @robin-w

    Moderator

    great – thanks for coming back

    @robin-w

    Moderator

    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

    @robin-w

    Moderator

    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

    @robin-w

    Moderator

    try

    dashboard>settings>permalinks and just click save

    see if that fixes.

    In reply to: Forum width

    @robin-w

    Moderator

    ok 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

    @robin-w

    Moderator

    ok, 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.

    @robin-w

    Moderator

    if that doesn’t work, you can rename it back

Viewing 25 replies - 9,126 through 9,150 (of 14,299 total)