• Hello,

    I’m using the latest for the moment version of the plugin and I was wondering is there any way the option “Show Column Headers” to be applied for custom post types as well?

    I think this piece of code in the plugin is responsible for that option but my OOP knowledge is less than 0 and I have no idea how to call the mentioned functions from outside of the class in the theme’s functions.php

    if( $type == 'post' ){
    	add_filter( "manage_post_posts_columns", array( $this, 'set_custom_edit_qppr_columns' ) );
    	add_action( "manage_post_posts_custom_column" , array( $this, 'custom_qppr_column' ), 10, 2 );
    }elseif( $type == 'page' ){
    	//add_filter( "manage_page_pages_columns", array( $this, 'set_custom_edit_qppr_columns' ) );
    	//add_action( "manage_page_pages_custom_column" , array( $this, 'custom_qppr_column' ), 10, 2 );
    	add_filter( "manage_page_posts_columns", array( $this, 'set_custom_edit_qppr_columns' ) );
    	add_action( "manage_page_posts_custom_column" , array( $this, 'custom_qppr_column' ), 10, 2 );
    }else{
    	add_filter( "manage_{$type}_posts_columns", array( $this, 'set_custom_edit_qppr_columns' ) );
    	add_action( "manage_{$type}_posts_custom_column" , array( $this, 'custom_qppr_column' ), 10, 2 );
    	add_filter( "manage_{$type}_pages_columns", array( $this, 'set_custom_edit_qppr_columns' ) );
    	add_action( "manage_{$type}_pages_custom_column" , array( $this, 'custom_qppr_column' ), 10, 2 );
    }

    https://www.ads-software.com/plugins/quick-pagepost-redirect-plugin/

Viewing 1 replies (of 1 total)
  • Thread Starter WPBot

    (@wpbot)

    It turns out that if I include the plugin file in my theme’s functions.php the column shows on all custom post types (no matter whether they’re from the theme itself or the Types plugin).

    include_once(WP_PLUGIN_DIR  . '/quick-pagepost-redirect-plugin/page_post_redirect_plugin.php');

    I think this should work out of the box without the need for file inclusion and it is some kind of a bug, so could you please fix it in the next version of the plugin?

    In case someone needs to reproduce the bug – everything necessary is the latest version of the plugin (5.1.7 at the moment), wordpress 4.4.2 (though I suppose it will be the same on older ones as well) and a new custom post type created with the Types plugin ( https://www.ads-software.com/plugins/types/ ) (I think any other theme or plugin that has custom post types will do as well).

Viewing 1 replies (of 1 total)
  • The topic ‘Show Column Headers for custom post types’ is closed to new replies.