Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 5,651 through 5,675 (of 14,314 total)
  • @robin-w

    Moderator

    yes you should be able to change in the child theme.

    @robin-w

    Moderator

    maybe a theme css issue – try changing themes as a test.

    @robin-w

    Moderator

    @momomoko sorry only so much I can do for free – this is not a bug in bbpress or an easy ‘how to’ – you’ll need to work it out

    @robin-w

    Moderator

    @nayanboost – what url do they take you to ?

    this (changed) code from my plugin may help you create a link

    `$text=__(‘Profile’, ‘bbp-style-pack’) ;
    $class=’bsp_button1′ ;
    $current_user = wp_get_current_user();
    $user=$current_user->ID ;
    echo ‘<a class=”‘.$class.'” href=”‘ . esc_url( bbp_get_user_profile_url( $user) ) . ‘”>’ . $text . ‘</a>’;`

    @robin-w

    Moderator

    @momomoko

    bbp_get_template_part( ‘user’, ‘topics-created’ )

    will use the template ‘user-topics-created.php’ – basically you put all the words together to make the file (that just how wordpress does it!)

    These templates all sit in the same directory as the content-single-user.php file.

    In reply to: Freshness wrong

    @robin-w

    Moderator

    no problem !!

    @robin-w

    Moderator

    yep !!

    some bits of WP are really annoying !!

    @robin-w

    Moderator

    so have you essentially done this

    find
    wp-content/plugins/bbpress/templates/default/bbpress/content-single-user.php

    transfer this to your pc and edit

    and save

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

    where %your-theme-name% is the name of your theme

    Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/content-single-user.php

    bbPress will now use this template instead of the original

    @robin-w

    Moderator

    ok, glad you are fixed

    @robin-w

    Moderator

    bbpress just uses WordPress login, so if your users have WordPress access (eg subscribers), then they will get the bbpress default access (or you can manually set this up).

    you then set each forum as ‘private’ and it’s existence is then only seen by subscribers

    @robin-w

    Moderator

    I am looking to put announcements/notices above the listing of forums.

    sorry, I’m confused – so exactly where? – can you mock up please

    Preferably, I would like these to be Super Sticky posts instead of just notices but could work with that.

    now you’ve confused me – if you make them super sticky posts, then they will appear as the top post in each forum – if that satisfies, then you don’t need anything further.

    @robin-w

    Moderator
    <p>
    <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe">
    
    <label for="bbp_topic_subscription">Notify me of follow-up replies via email</label>
    </p>

    @robin-w

    Moderator

    sorry – my style pack is in play – 2 minutes and I’ll come back again

    @robin-w

    Moderator

    my code in that area is

    <p class="bsp_topic_subscription_reply">
    
    							<input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe" tabindex="102">
    
    							
    								<label for="bbp_topic_subscription">Notify me of follow-up replies via email</label>
    						
    						</p>

    @robin-w

    Moderator

    Can’t see it out of place on my test site

    bbpm_notify looks like the notify plugin? strongly suspect that is the issue.

    otherwise

    particular browser?
    tried changing themes (as a test) to see if it is theme related?

    @robin-w

    Moderator

    ok, it probably doesn’t work for lots of nested then.

    It is a known error with bbpress and there is a trouble ticket lodged for it

    In reply to: Freshness wrong

    @robin-w

    Moderator

    ok, this version has an issue with last active

    so until a formal fox is released..

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>bug fixes and tick Fix Last Active Time

    @robin-w

    Moderator

    great

    @robin-w

    Moderator

    moderators already have this ability

    @robin-w

    Moderator

    by default bbpress does not require approval – they should just publish.

    So either you have another plugin doing this (eg bbpress notify) or your comment moderation is set to tight – look in

    dashboard>settings>discussion and check the befor a comment appears and the part below where the no. links allowed in a comment and the words that are allowed.

    In reply to: Freshness wrong

    @robin-w

    Moderator

    sorry which ‘update’ did you run ?

    @robin-w

    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Forum Display enable item 6 forum description.

    Then in

    dashboard>forums>edit forum in each forum you can put in the content part whatever you want to appear. in your case the same description for each forum, but you can have a different.

    Finally to get this on the main forums list, create a page called ‘forums’, and put your description at the top of this. Then add the shortcode [bbp-forum-index] to this. bbpress will then use this as the main forums page.

    @robin-w

    Moderator

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>bug fixes

    and enable the Fix Threaded Replies Jump

    @robin-w

    Moderator

    looks like bbp_title is not working for users.

    the code is called by a filter in
    \bbpress\includes\core\filters.php

    which is

    Line 43: add_filter( 'wp_title', 'bbp_title', 10, 3 );

    the function bbp_title is held in

    \bbpress\includes\common\template.php

    and the function starts at line 2578.

    I may get a chance to look further tomorrow (or maybe not!), but if you fancy having a look. The function has a filter at the end, so if you can work out what’s wrong, should be easy to add a fix

    @robin-w

    Moderator
Viewing 25 replies - 5,651 through 5,675 (of 14,314 total)