Meh!
It’s happening on other pages
https://cassie2.thinkmedia.ca/listings/
***********************************************
Single-Listing.PHP
***********************************************
<?php
remove_action( ‘genesis_entry_header’, ‘timothy_do_postdate’, 5 );
remove_action( ‘genesis_entry_header’, ‘genesis_post_info’, 12 );
remove_action( ‘genesis_after_entry’, ‘genesis_do_author_box_single’, 8 );
remove_action( ‘genesis_entry_footer’, ‘genesis_post_meta’ );
remove_action( ‘genesis_comment_form’, ‘genesis_do_comment_form’ );
remove_action( ‘genesis_entry_footer’, ‘timothy_related_posts’, 20 );
add_action( ‘genesis_after_entry’, ‘aeprofiles_show_connected_agent’ );
function aeprofiles_show_connected_agent() {
if (function_exists(‘_p2p_init’) && function_exists(‘agentpress_listings_init’)) {
echo’
<div class=”connected-agent-listings”>’;
aeprofiles_connected_agents_markup();
echo ‘</div>’;
}
}
/* Replace Sidebar */
remove_action( ‘get_header’, ‘timothy_child_sidebars_init’, 15 );
add_action( ‘genesis_sidebar’, ‘timothy_tax_do_sidebar’ );
function timothy_tax_do_sidebar() {
genesis_widget_area( ‘listing-sidebar’ );
}
genesis();