Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter burlingtonave

    (@burlingtonave)

    Any thoughts here? Is the plugin still in active development?

    Plugin Author Jared Atchison

    (@jaredatch)

    bbPress Geneis Extend removes elements from their typical (and default) placements.

    Some child themes move these elements to new positions, or create custom elements, which the plugin will not remove. These items you will need to remove yourself.

    Below is the example code you would put in your themes functions.ph.

    /**
     * Remove custom Genesis elements
     *
     */
    function ja_remove_genesis_elements() {
    	if ( is_bbpress() ) {	
    
    		// Remove the elements here
    		// remove_action( 'genesis_entry_content', 'something_to_remove' );
    
    	}
    }
    add_action( 'genesis_before', 'ja_remove_genesis_elements' );

    The middle of that code block is where you need to remove the element. If you need assistance implementing this then I would encourage you to try and reach out to https://genesiscustomizations.com.

    Hope that helps.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Does not work with Genesis Simple Edits’ is closed to new replies.