• Resolved AutomatedKid

    (@automatedkid)


    i just read your faq section regarding the issue of adding a new column to the panels. i also read about having available hooks to use. i am not a programmer, just a wannabe one, so should i try to contact the author of threewp broadcast to see if they would somehow make their plugin compatible w apm?

    because it brings tears to my eyes that i have to disable ur plugin since we have clue what pages/posts have been broadcasted via the the network.

    thanks

    https://www.ads-software.com/extend/plugins/advanced-page-manager/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi, first thank you for using our plugin. Yes, you have to contact the author of ThreeWP Broadcast plugin to have him/her supporting our plugin. It should be easy as we’ve stuck to the original WordPress hooks to create our own. If this author needs our assistance, don’t hesitate to direct him/her to us. We will be glade to help.

    Hi we’ve investigated again your issue.

    First, it’s pretty easy to have the custom column added. Here’s the code you need.

    global $threewp_broadcast;
    add_filter( 'apm_manage_pages_columns', array( $threewp_broadcast, 'manage_posts_columns' ) );
    add_action( 'apm_manage_pages_custom_column', array( $threewp_broadcast, 'manage_posts_custom_column' ), 10, 2 );

    Just copy this snippet in your functions.php for example.

    However, you may have problems as ThreeWP Broadcast may create pages without letting our plugin to know it. It means that you won’t see pages broadcasted from another blog in APM tree.

    Hope it helps.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘add new column, knowing your faq statement’ is closed to new replies.