dmillbank 0 Report post Posted June 22, 2011 When I go to Dashboard > Platform Pro > Settings > Template Setup > Site Header Template Sections and click on the down arrow for Advanced Setup a list of hooks are presented and at the bottom of the list it says (View template for additional hooks & filters). Could somebody please direct me to what template that last sentence is referring to? It would be great to have a reference sheet for all the hooks that are available. Share this post Link to post Share on other sites
Simon 248 Report post Posted June 22, 2011 Current list: http://www.pagelines.com/trac/ticket/1 Share this post Link to post Share on other sites
dmillbank 0 Report post Posted June 22, 2011 Simon, you're the man. Thanks! Share this post Link to post Share on other sites
jane_l 3 Report post Posted July 11, 2011 Is there a hook to place something inside the comment loop? I'm trying to add this php code: <?php if ( class_exists( 'WPEditableComments' ) ) { WPEditableComments::edit('Edit'); } ?> <?php if ( class_exists( 'WPEditableComments' ) ) { WPEditableComments::delete('Delete'); } ?> but using the following results in the Edit comments function showing up after the comment input box, not inside the comment. Thanks. add_action('pagelines_inside_bottom_pl_comments','edit_comments'); function edit_comments() { ?> <?php if ( class_exists( 'WPEditableComments' ) ) { WPEditableComments::edit('Edit'); } ?> <?php if ( class_exists( 'WPEditableComments' ) ) { WPEditableComments::delete('Delete'); } ?> <?php } Share this post Link to post Share on other sites