Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 6,926 through 6,950 (of 13,539 total)

  • Robin W
    Moderator

    @robin-w

    the issue is with the ‘ the code has been copied via another program and is using the wrong ones

    copy this below

    function ntwb_bbp_forum_form() {
    if ( bbp_is_user_home() && current_user_can( 'moderate' ) ) {
    echo do_shortcode( '[bbp-forum-form]' );
    }
     }
    add_action( 'bbp_template_after_user_profile', 'ntwb_bbp_forum_form' );

    the form is shown on the moderators profile

    In reply to: Undefined index error

    Robin W
    Moderator

    @robin-w

    can you just (as a brief test) deactivate the toolkit plugin and see if the error goes away.
    then come back

    In reply to: Undefined index error

    Robin W
    Moderator

    @robin-w

    can we have a bit more info? – eg is this all your site shows – errors and stops, or does it only appear on certain screens or when performing certain actions etc.

    In reply to: Struggling with login

    Robin W
    Moderator

    @robin-w

    great – glad you are fixed !

    In reply to: Struggling with login

    Robin W
    Moderator

    @robin-w

    ok, so using bbp-style pack (so make sure it is activated)

    In

    dashboard>settings>bbp Style pack>login

    set both

    Login menu item css class and
    Logout menu item css class 

    to

    aad

    then go to

    dashboard>settings>bbp Style pack>custom css and put this in there

    .aad {
    	margin-top: 11.9px;
    }

    if that doesn’t work, leave the code in there and come back


    Robin W
    Moderator

    @robin-w

    sorry, bbpress works on worpdress

    In reply to: Struggling with login

    Robin W
    Moderator

    @robin-w

    I am author of bbp style pack

    Yes we should be able to fix where the login sites, but I need a link to your site to see a live example


    Robin W
    Moderator

    @robin-w

    please give example


    Robin W
    Moderator

    @robin-w

    I’ve just added functionality to bbp-style pack for participants to close their own topics – to set see item 17 in Topic/Reply Display tab to set this

    bbp style pack


    Robin W
    Moderator

    @robin-w

    I’ve just added functionality to bbp-style pack for participants to close their own topics – to set see item 17 in Topic/Reply Display tab to set this

    bbp style pack


    Robin W
    Moderator

    @robin-w

    you’re welcome


    Robin W
    Moderator

    @robin-w

    can you give a link to an example please


    Robin W
    Moderator

    @robin-w

    thanks for posting this – it will help others


    Robin W
    Moderator

    @robin-w

    great – glad to have helped !!


    Robin W
    Moderator

    @robin-w

    @clivesmith

    If you fine with code, then this is how I would go about it

    1. create a split in topic & replies, so you have a place to put the ‘featured reply’
    Use this piece of code in your functions file

    bbp_show_lead_topic

    2. then you’ll need a flag for the featured reply.

    This code does an ‘advert’ flag for a topic, but has much of the code you’d need to do a flag for a reply to show it is featured – I’ll leave you to work out which bits you’ll need, but the key is the hook to

    add_action( 'bbp_theme_before_topic_form_submit_wrapper', 'at_checkbox' );

    change this to

    add_action( 'bbp_theme_before_reply_form_submit_wrapper', 'at_checkbox' );

    amend the references from topic to reply

    and add some if(bbp_keymaster() ) to make it only show for you, and you will be most of the way there

    // show the "Mark if it is an advert" checkbox on topic form
    	add_action( 'bbp_theme_before_topic_form_submit_wrapper', 'at_checkbox' );
    		
    function at_checkbox() {
        // Text for the topic form
    	global $topic_advert_text ;
    	?>
    		<p>
    
    			<input name="at_advert" id="at_advert" type="checkbox"<?php checked( '1', at_is_advert( bbp_get_topic_id() ) ); ?> value="1" tabindex="<?php bbp_tab_index(); ?>" />
    
    			<?php if ( bbp_is_topic_edit() && ( get_the_author_meta( 'ID' ) != bbp_get_current_user_id() ) ) : ?>
    
    				<label for="at_advert"><?php echo '<span class="dashicons dashicons-awards"></span>'.$topic_advert_text.'</label>' ;?>
    
    			<?php else : ?>
    
    				<label for="at_advert"><?php echo '<span class="dashicons dashicons-awards"></span>'.$topic_advert_text.'</label>' ;?>
    
    			<?php endif; ?>
    
    		</p>
    <?php
    }
    	
    //check if topic is advert
    function at_is_advert( $topic_id = 0 ) {
    	
    	$retval 	= false;
    
    	if ( ! empty( $topic_id ) ) {
    		$retval = get_post_meta( $topic_id, 'at_topic_is_advert', true );
    	}
    	return (bool) apply_filters( 'at_is_advert', (bool) $retval, $topic_id );
    }
    
    // save the advert state
    		add_action( 'bbp_new_topic',  'at_update_topic' );
    		add_action( 'bbp_edit_topic',  'at_update_topic' );
    
    //update topic 
    function at_update_topic( $topic_id = 0 ) {
    
    		if( isset( $_POST['at_advert'] ) )
    			update_post_meta( $topic_id, 'at_topic_is_advert', '1' );
    		else
    			delete_post_meta( $topic_id, 'at_topic_is_advert' );
    
    	}

    3. amend content-single-topic-lead.php in your child theme’s bbpress directory.

    by

    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

    find
    wp-content/plugins/bbpress/templates/default/bbpress/content-single-topic-lead.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/content-single-topic-lead.phpbbPress will now use this template instead of the original and you can amend this

    This then you can use to add some code

    if (at_is_advert( $reply_id )) then….. display this reply

    and you should be there

    so

    the reply form will show a checkbox to make a reply featured available only to say keymaster, and as keymaster you can edit a topic to make it a featured
    the content_single_topic_lead will check if a reply is featured and then show it if it is

    I wish I had the time to code this all for you, but please if you do work oyt some code, post back here for other to benefit


    Robin W
    Moderator

    @robin-w

    great – glad you are fixed, and thanks for posting what was wrong – this can help others


    Robin W
    Moderator

    @robin-w

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Buttons

    In reply to: Custom Topic Statuses?

    Robin W
    Moderator

    @robin-w

    bbpress does not do custom topic statuses, so they are coming from that support plugin, best post there as it is that plugin that needs to work with 2.6, but most plugin authors do not code for pre-release software as it changes.


    Robin W
    Moderator

    @robin-w

    ok, I cannot say why it is not working, it works in my test site

    I presume this code is going into you child theme’s function’s file – sorry but I do not know how technical you are, so I ask the obvious questions !

    you could try >9 and see if that works !

    In reply to: Per Forum Moderators

    Robin W
    Moderator

    @robin-w

    no sorry this is a 2.6 feature when 2.6 is released


    Robin W
    Moderator

    @robin-w

    that code will close the topic on 100 replies, so unless you tested with creating the 100th reply, then it would not work. Did you do this ?


    Robin W
    Moderator

    @robin-w

    ok, I would strongly suspect you membership wall, presumably a plugin – not a lot we can do if it is.

    This generic help should let you define where the issue is

    It could be a theme or plugin issue issue, so you’ll need to test to find out which

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    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.

    Then come back


    Robin W
    Moderator

    @robin-w

    that would take a lot of code, beyond free help


    Robin W
    Moderator

    @robin-w

    can you say specifically what you want – ie where you want to determine or show this?


    Robin W
    Moderator

    @robin-w

    are you totally unable to edit your forum, or are you just unable to add videos?

Viewing 25 replies - 6,926 through 6,950 (of 13,539 total)