Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 11,276 through 11,300 (of 14,146 total)
  • @robin-w

    Moderator

    @bobey but that would stop them making replies as well

    @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 twentytwelve, and see if this fixes.

    Then come back

    @robin-w

    Moderator

    @kendorama yes that should do it

    @robin-w

    Moderator

    Have edited the above to make it more accurate, but still may have errors !

    @robin-w

    Moderator

    If you have FTP access then :

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress
    find
    wp-content/plugins/bbpress/templates/default/bbpress/form-reply.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/form-reply.php
    bbPress will now use this template instead of the original

    then you need to chnage the line

    <?php if ( bbp_current_user_can_access_create_reply_form() ) : ?>
    

    to do a check for keymaster and author

    something like

    <?php if ( bbp_is_user_keymaster())  || bbp_get_reply_author_id() == bbp_get_current_user_id() : ?>
    

    bbp_get_reply_author_id() might need to be bbp_get_topic_author_id() – you’ll need to try it to see

    Give this a go, I’m very short of time at the moment, so haven’t tested !

    @robin-w

    Moderator

    @twist360 I’d like to save this solution in my folder of useful info.

    To save me copying and cobbling together the final answer from the above, can you post the final code you did for the solution below as one package

    This will help others and be useful

    Thanks Robin

    In reply to: Help with Custom View

    @robin-w

    Moderator

    I have to say I think your programming skills are probably better than mine !

    The views bit hooks to bbp_has_topics, so the args are the key part to get this going, rather than needing to alter php files

    see

    Adding Custom View Shortcode

    for how another user got a custom view with meta data working – I’m a bit tied up at the moment to write the answer, but judging by your post above you should be able to work it out !

    If you don’t then come back and I’ll try and help when I get some time

    If you do, please post the whole solution here in the spirit of sharing – it would be a good one to have for other people, and to add as a plugin to the other plugin.

    @robin-w

    Moderator

    or add the following to your style.css

    . bbp-reply-content a:link, a:visited, a:hover {
    color: blue !important ;
    }
    
    

    Functions files and child themes – explained !

    @robin-w

    Moderator

    ok, I’m not quite clear on what you want to happen

    so when I register I complete what information?

    and which bits of that information do you want to hide?

    and what do you want to happen instead

    please come back with a sequence, so that we can work out the best solution

    @robin-w

    Moderator

    ok, I’ve had a look.

    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 twentytwelve, and see if this fixes.

    Then come back

    In reply to: ERROR Author Link

    @robin-w

    Moderator

    The link to padelstar works

    the link to EVELYN PADEL just seems to go to another page

    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 twentytwelve, and see if this fixes.

    Then come back

    @robin-w

    Moderator

    Great – glad you’re fixed !

    @robin-w

    Moderator

    Great – glad you’re fixed !

    @robin-w

    Moderator

    that’s a known with that plugin from looking at the support forum

    https://wordpress.org/support/plugin/custom-post-type-page-template

    Sorry you’ll need to google to find one

    @robin-w

    Moderator

    yes, just create a wordpress page and put one of the following shortcodes in it

    [bbp-topic-form] – Display the ‘New Topic’ form where you can choose from a drop down menu the forum that this topic is to be associated with.
    [bbp-topic-form forum_id=$forum_id] – Display the ‘New Topic Form’ for a specific forum ID.

    @robin-w

    Moderator

    It is difficult to understand your question – don’t worry it is unlikely that I would understand your native language !!

    Can you send me the example via my website

    http://www.rewweb.co.uk

    @robin-w

    Moderator

    Not quite sure why, but the replies class is not showing

    Try adding

    .forums.bbp-replies {
      clear: both !important;
    }

    to your style.css

    Functions files and child themes – explained !

    that fixed it in my browser

    @robin-w

    Moderator

    ok,

    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 twentytwelve, and see if this fixes.

    Then come back

    @robin-w

    Moderator

    ok, it’s caused by your themes style sheet

    line 5600 says

    .no-touch .reply {
      visibility: hidden;
    }
    

    and this is hiding bbpress reply

    you could try adding

    #bbpress-forums .no-touch .reply {
      visibility: visible !important;
    }
    

    to your css file

    see

    Functions files and child themes – explained !

    @robin-w

    Moderator

    ok, without looking in detail, suggest you try

    bbpress wp4 fix2

    If this doesn’t fix, come back

    @robin-w

    Moderator

    if it’s not a plugin issue viz

    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.

    the it is likely to be a a theme issue

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    Then come back

    @robin-w

    Moderator

    ok, at least we know you’ve got the right file !

    Try the following

    delete all the content from wp-content/themes/twentyeleven/bbpress/content-single-forum.php

    and then paste the following in

    
    <?php
    
    /**
     * Single Forum Content Part
     *
     * @package bbPress
     * @subpackage Theme
     */
    
    ?>
    
    <div id="bbpress-forums">
    
    	<?php bbp_breadcrumb(); ?>
    
    	<?php bbp_forum_subscription_link(); ?>
    
    	<?php do_action( 'bbp_template_before_single_forum' ); ?>
    
    	<?php if ( post_password_required() ) : ?>
    
    		<?php bbp_get_template_part( 'form', 'protected' ); ?>
    
    	<?php else : ?>
    
    		<?php bbp_single_forum_description(); ?>
    
    		<?php if ( bbp_has_forums() ) : ?>
    
    			<?php bbp_get_template_part( 'loop', 'forums' ); ?>
    
    		<?php endif; ?>
    
    		<?php if ( !bbp_is_forum_category() && bbp_has_topics() ) : ?>
    
    			<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    			<?php bbp_get_template_part( 'loop',       'topics'    ); ?>
    
    			<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>
    
    		<?php elseif ( !bbp_is_forum_category() ) : ?>
    
    			<?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>
    
    		<?php endif; ?>
    
    	<?php endif; ?>
    
    	<?php do_action( 'bbp_template_after_single_forum' ); ?>
    
    </div>
    

    save and then try it.

    @robin-w

    Moderator

    ok, but with default theme twenty fifteen, the user set to participant, and just bbpress the edit will show, so something is affecting this.

    @robin-w

    Moderator

    just edited the above !

    Forgot the theme directory in the first post !

    and have just edited earlier post to correct for future 🙂

    @robin-w

    Moderator

    no problem, I remember my first time playing with FTP, which was only two years ago !

    Great that you making progress !

    the directory should be

    wp-content/themes/twentyeleven/bbpress

Viewing 25 replies - 11,276 through 11,300 (of 14,146 total)