Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 8,476 through 8,500 (of 14,282 total)
  • @robin-w

    Moderator

    you’re welcome

    @robin-w

    Moderator

    ok, no idea why this is happening – 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

    In reply to: Live chat plugin

    @robin-w

    Moderator

    plenty of wordpress live chat plugins, just google ‘wordpress live chat plugin free’

    @robin-w

    Moderator

    your image is using your themes ‘aligncenter’ property, which causes it to display as a new block, so it starts ‘under’ where the author finishes.

    I’m not sure how you are adding images – do you get an option of how to display them, if so don’t do center

    @robin-w

    Moderator

    great post – thanks for taking the time to fully document this 🙂

    @robin-w

    Moderator

    great post – thanks for taking the time to fully document this 🙂

    @robin-w

    Moderator

    the shortcode goes in say page content.

    so create a page and put

    [bbp-single-topic id=$topic_id]

    @robin-w

    Moderator

    via css try

    .has-sidebar:not(.error404) #primary {
    	width: 100% !important;
    }

    you can set it to more than 100% if you wish !

    @robin-w

    Moderator

    try my style pack plugin, it has this + many other features and will save you having to maintain code

    bbp style pack

    In reply to: Importing data via sql

    @robin-w

    Moderator

    The file is :

    /bbpress/includes/admin/converters/Example.php

    so if you go to

    Download

    you can download it to your PC and open the file

    @robin-w

    Moderator

    is your forum public? If so post a link and I’ll see if a simple css change is needed

    @robin-w

    Moderator

    hmm – could be a whole host of things

    does this happen with all images?
    Only just started or always been the case or new to using images?
    Just you account or everyone?

    @robin-w

    Moderator

    This approach is not working anymore

    did it work and has stopped, or has it never worked for you?

    In reply to: Recent replies list

    @robin-w

    Moderator

    ok, remove the whole line

    <?php echo do_shortcode(‘[bbpress_recent_replies_by_topic show =5]’) ?>

    then add this to your functions

    add_action( 'bbp_template_before_forums_loop', 'call_bbpress_recent_replies_by_topic' ); 
    
    function call_bbpress_recent_replies_by_topic () {
    	echo do_shortcode("[bbpress_recent_replies_by_topic show=5]") ;
    }

    This just hooks to the line after the one you’d added

    <?php do_action( ‘bbp_template_before_forums_loop’ ); ?>

    so saving you having to amend that template.

    This works on my site.

    @robin-w

    Moderator

    ok, which div do you want the class added to, give me the existing class/classes in that div so I can identify

    @robin-w

    Moderator

    suggest you report it here

    Support Forums

    or talk to your host provider

    In reply to: Importing data via sql

    @robin-w

    Moderator

    great – glad to have helped 🙂

    In reply to: Link to bbpress

    @robin-w

    Moderator

    Not quite sure what what level of knowledge you are coming – the question could mean many things.

    If your front end is a page, then you just use wordpress to add a link into the content of thte page – the chain icon is the one. The url will be the one in your browser when you are on the forums part of the site.

    Otherwise come back with a more detailed request

    In reply to: Importing data via sql

    @robin-w

    Moderator

    bbpress just uses

    posts
    post_meta
    and for its own settings
    options

    forums, topics and replies are all post types in wordpress.

    go to

    Import Forums

    for more info including an example importer.

    I documented my import from snitz access database when I very first started using bbpress, and you may want to read through that as well in this page

    Custom Import

    @robin-w

    Moderator

    great – glad you are fixed

    @robin-w

    Moderator

    initially I’d ask learndash, and this is a paid plugin that I don’t have access to

    @robin-w

    Moderator

    the error is a permissions one.

    Does this occur on both the front end and the back end (dashboard>topcis>create new topic)
    Is it just one user, all users?

    In reply to: Recent replies list

    @robin-w

    Moderator

    not sure why, but adding show seems to fix

    <?php echo do_shortcode(‘[bbpress_recent_replies_by_topic show =5]’) ?>

    @robin-w

    Moderator

    I’ve been thinking this over, and can’t see a simple way to achieve this.

    To get something working would involve adding extra fields to a topics meta data, and then filtering the display to catch.

    With the forum visible in effect the code for a forum or set of forums would need to (by default) make a topic private using an additional field, and then all the display parameters would need to hide it unless made public. That means closing every back door in search, profiles, displays, freshness all widgets and other areas so that no-one sees it unless set to public, which is one hell of a lot of work, and a large re-write of many bbpress functions.

    I could modify my private groups plugin which makes forums (but not content) visible, so that certain topics are shown, but again it is a heap of code. Beyond free help I’m afraid, but if you want to look at that route contact me via my website http://www.rewweb.co.uk

    In reply to: Recent replies list

    @robin-w

    Moderator

    whereabouts in loop-forums.php did you put it ?

Viewing 25 replies - 8,476 through 8,500 (of 14,282 total)