Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 9,251 through 9,275 (of 14,313 total)
  • @robin-w

    Moderator

    not my field of expertise, but suggest you have the wp code,

    and try

    function bbp_enable_visual_editor( $args = array() ) {
        $args['tinymce'] = true;
        $args['quicktags'] = false;
        return $args;
    }
    add_filter( 'bbp_before_get_the_content_parse_args', 'bbp_enable_visual_editor' );

    this just does the ‘turn on’ earlier

    may work, may not !!

    @robin-w

    Moderator

    great – thanks for posting

    @robin-w

    Moderator

    and if you want to suggest code changes, then this is the place

    https://bbpress.trac.wordpress.org/

    @robin-w

    Moderator

    I am just a humble user, so can’t comment on changing core code, but is it is styling capability you want you could filter the actual title eg

    add_filter( 'bbp_get_forum_title', 'rew_title');
    
    function rew_title () {
    
    $title = '<span class="rew">.$title.'</span>' ;
    
    return $title ;
    
    }

    @robin-w

    Moderator

    users are assigned their role when they first log in, so you would not see a role on user creation

    @robin-w

    Moderator

    great – glad you are fixed

    @robin-w

    Moderator

    ok, closest without code would be :

    1. go into

    dashboard>settings>bbp style pack>breadcrumbs

    Leave Disable all forums breadcrumbs UNTICKED

    but tick disable on 1, 2, & 3

    then put this into

    dashboard>settings>bbp style pack>Custom css

    
    .bbp-breadcrumb-forum {
    
      border-radius: 28px;
      padding: 7px 15px;
      text-decoration: none;
      background: #3498db linear-gradient(to bottom, #3498db, #2980b9) repeat scroll 0 0
    
    }
    
    .bbp-breadcrumb-forum::before {
    
    content: "Back to ";
    
    }

    you may need to play with the background color to get it to suit your website – I’ve given you a blue gradient

    In reply to: TTFB problem

    @robin-w

    Moderator

    think you’re being a tad optimistic 🙂

    @robin-w

    Moderator

    so

    1.no breadcrumb – that’s easy to achieve

    2. back button – yes but back to what –
    a) forum->topic and then back to forum for that topic – yes do-able
    b) forum->sub-forum and then back to higher forum – yes do-able
    what else?

    In reply to: TTFB problem

    @robin-w

    Moderator

    not quite sure what you are expecting as a reply – the guy you paid answered your question.

    Basically he is telling me that we won’t be able to achieve good loading time, because it is running on WordPress and the database design is a problem.

    bbpress runs on wordpress, and as wordpress is running on 74 million websites, I suspect that the database won’t be migrated away from mysql anytime soon.

    @robin-w

    Moderator

    you are telling me that this was working, and now it is not.

    If you have changed bbpress version, then revert to the previous, but I strongly suspect that this not the case.

    Otherwise you have changed something, either in a theme version, a wordpress setting, a page settings, a template, a theme setting, a plugin update or something else such as a php version, a server setting etc, etc. etc.

    I cannot possibly guess at what you have changed, so I cannot see how to help.

    @robin-w

    Moderator

    I believe version 2.6 will

    7.1 introduced some funny things, and screws up many plugins !

    @robin-w

    Moderator

    try resetting permalinks

    dashboard>settings>permalinks

    and just click save

    then come back

    @robin-w

    Moderator

    because the membership plugin is able to create also other membership privileges and content and that does not work if the member has a forum role of participant.

    can you give us specific examples of what this means

    @robin-w

    Moderator

    ok, so it will have been something that has changed.

    Not sure how we can help further

    In reply to: Adding to menu bar

    @robin-w

    Moderator

    good, so you are making progress

    In reply to: Adding to menu bar

    @robin-w

    Moderator

    ok, I don’t have avada, but have a look on the bottom left of the appearance>menus page and see if there is an option under any of the items there to add a forum

    then come back

    @robin-w

    Moderator

    But previously we were able to view the Title of the forum

    so this is something that was working, but now isn’t?

    In reply to: Adding to menu bar

    @robin-w

    Moderator

    I suspect they are just links in a menu.

    go back into

    dashboard>appearance>menus

    where they appear in the menu’s against each item on the right you should see words like ‘page’ ‘posts’ ‘category’ ‘custom link’ etc.

    what do the forums have against them?

    @robin-w

    Moderator

    use the plugin GD bbpress attachments for files.

    @robin-w

    Moderator

    sorry but it is theme related.

    since you bought a paid theme, suggest you contact them for support

    @robin-w

    Moderator

    your theme is doing this.

    Do you know how to ftp files to your server?

    In reply to: Adding to menu bar

    @robin-w

    Moderator

    this sound like a theme issue.

    do you have a link to whatever this ‘dropdown’ is?

    @robin-w

    Moderator

    Great – glad you’re fixed

    @robin-w

    Moderator

    seems like that will be fixed in bbpress 2.6

    so 3 fixes

    1. downgrade to a lesser version of php
    2. upgrade to bbpress 2.6beta-2
    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 afraid

Viewing 25 replies - 9,251 through 9,275 (of 14,313 total)