Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 13,751 through 13,775 (of 14,293 total)
  • @robin-w

    Moderator

    Not quite sure what you’re asking

    Where have you put the shortcode? on the homepage, on a page or on a post?

    and where would you like the shortcode to go on the homepage, on a page or on a post?

    @robin-w

    Moderator

    I think you have got some display issues

    under IE, Firefox and Chrome (haven’t tested others) at 100% the submit buttons disappears. At 75% you see it. Do a zoom in and out to see the effect.

    Fix that and the checkbox will probably appear !

    @robin-w

    Moderator

    Do you want :

    just the latest reply (or topic is no replies)
    The title or all the body?
    Do you want it in the body or in a sidebar?

    In reply to: Fatal error

    @robin-w

    Moderator

    I have been on your site 6 times, and seen the error twice. It comes and goes, so is unlikely to be pure code related, as that stuff either works or doesn’t.

    There seems to be a bit of buz about at the moment about a similar error, in particular for go-daddy customers

    eg

    http://www.cryoutcreations.eu/forums/t/fatal-error-cannot-call-overloaded-function-fowp-includesuser-php-on-line-217

    https://wordpress.org/support/topic/fatal-error-1002?replies=14

    although both refer to a different line, and maybe entirely unrelated, but posted just in case.

    Let us know if this is you also?

    In reply to: bbPress 2.5.3

    @robin-w

    Moderator

    @surangaudimedia

    have you :

    Check other plugins

    Check that no other plugins are affecting this.

    Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.

    Check themes

    If plugins are not the cause, the it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.

    come back once you done those of you still have a problem

    In reply to: Links in posts

    @robin-w

    Moderator

    No problem 🙂

    @robin-w

    Moderator

    I’m only getting as far as the content and then the words “filed under” then it stops, no checkbox, no submit either !

    Do you get more than this?

    @robin-w

    Moderator

    can you post a url, so that we can see what it looks like on a working page, and what it looks like on the forum page.

    @robin-w

    Moderator

    the url reads

    http://domain.com/whatever-your-shortcode-page-is-called/page/2/

    So presume your page is called “topics”

    The code works – I’ve just retested it on twentyten site and pagination and subsequent pages were fine, so suggest you try

    Check other plugins

    Check that no other plugins are affecting this.

    Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.

    Check themes

    If plugins are not the cause, the it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.

    and then come back if you need further help.

    @robin-w

    Moderator

    Just check that it is not plugin related first

    Check other plugins

    Check that no other plugins are affecting this.

    Turn off all other plugins, and see if that fixes the problem. If the problem is resolved, add back one at a time to see which is causing the conflict.

    Then to confirm it is a theme problem..

    Check themes

    If plugins are not the cause, the it may be a theme issue. Switch to a default theme, such as twentytwelve, and test.

    Come back and let us know if you fixed, or for more help

    @robin-w

    Moderator

    With several thousand people writing plugins and all in theory choosing unique names for things like functions and variables, it’s not surprising that things clash occasionally !

    Anyway – glad you’re fixed !

    @robin-w

    Moderator

    Thanks for pointing this out. I’ve raised a trac ticket

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

    so a developer should pick this up at some stage

    Thanks again

    @robin-w

    Moderator

    you mean one of the plugins?

    when you work it out, you’ll probably need to contact the plugin author, but do come back with which one.

    @robin-w

    Moderator

    Sorry, I don’t run buddypress.

    You might do better on the buddypress support forum

    https://buddypress.org/support/

    Have you tried

    Installing Group and Sitewide Forums

    and there is also talk of

    https://wordpress.org/plugins/private-bp-pages/

    and what have you set visibility within bbp to be eg

    https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/ section 5

    In reply to: Rename "Submit" button

    @robin-w

    Moderator

    You’d need to change a couple of templates

    wp-content/plugins/bbpress/templates/default/bbpress/form-topic.php line 203

    and

    wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php line 135

    You do this by creating a directory under your theme called “bbpress” and copying these two files to there. Then modify the lines as you want, you’ll need to change the word ‘Submit’ in the following towards the end of the line to whatever you want.

    <?php _e( ‘Submit’, ‘bbpress’ ); ?>

    bbPress will then use these files instead

    You could use a translate function, but Submit is such a widely used it might affect any submit on your site

    In reply to: Change color

    @robin-w

    Moderator

    No problem, glad you’re fixed !

    In reply to: Links in posts

    @robin-w

    Moderator

    I use the ‘restrict content’ plugin

    https://wordpress.org/plugins/restrict-content/

    @robin-w

    Moderator

    ok, so if you’re not miles down the redesign, I’d copy across your current site and then mod from there

    see

    https://codex.bbpress.org/creating-a-test-site/

    for a lot of detail on this.

    @robin-w

    Moderator

    @sooskriszta Well you asked for it, so I have just written a plugin that gives date and time instead of freshness.
    It will be uploaded to wordpress plugins in the next few days, but you can download immediately from

    bbp last post plugin

    Any feedback appreciated !

    In reply to: bbPress 2.5.3

    @robin-w

    Moderator

    @sooskriszta Well you asked for it, so I have just written a plugin that gives date and time instead of freshness.
    It will be uploaded to wordpress plugins in the next few days, but you can download immediately from

    bbp last post plugin

    Any feedback appreciated !

    In reply to: Change color

    @robin-w

    Moderator

    That’s interesting because both topic and reply should both use the same class and styling to display (or not!) the avatar and name.

    The code they are drawing from is around line 208 in bbpress.css

    #bbpress-forums div.bbp-topic-author a.bbp-author-name, #bbpress-forums div.bbp-reply-author a.bbp-author-name {
    clear: left;
    display: block;
    }

    you could add

    #bbpress-forums div.bbp-topic-author a.bbp-author-name, #bbpress-forums div.bbp-reply-author a.bbp-author-name {
    background-color : none !important ;
    }

    in your style.css to this to see if it clears it.

    Otherwise post a link to your url and I’ll take a closer look

    In reply to: Change color

    @robin-w

    Moderator

    but only on replies, not on the starting topic?

    In reply to: Change color

    @robin-w

    Moderator

    ok, it is not showing for admin, so is it happening

    only on replies
    only on stig username

    I need to work out when it is happening

    In reply to: bbPress 2.5.3

    @robin-w

    Moderator

    @ kwellafrica If you still have a problem, can you post it as a new topic, and I’ll pick it up

    In reply to: Menu Error

    @robin-w

    Moderator

    I don’t get to a forum on any of those links, presume you are still testing, so can’t answer the 401 message.

    : http://propertycrowdz.com/forums/forum/rentals/ is the way bbPress shows the url.

    There is some logic behind it, but it does annoy some people

    The general index comes up as mysite.com/forums
    but an individual forum is a forum called rentals hence forum/rentals that belongs to the forums index, hence forums/forum/rentals.

    You can turn this off – Dashboard>settings>forums go to forum root slug and uncheck the forum prefix.

    Below that you can change the names, so for instance you can have “support” instead of forums if you want.

    Come back if you still got a 401 error, and I’ll take a look.

Viewing 25 replies - 13,751 through 13,775 (of 14,293 total)