Hello @wph4,
made some tests here and looks like it works fine with the following added to the child-theme functions.php:
add_action('template_redirect', 'handle_marketpress_contents', 100);
function handle_marketpress_contents(){
//do nothing if isn't mp shop page
if ( ! ( function_exists('mp_is_shop_page') && mp_is_shop_page() ) )
return;
//display the page content if not displayed by customizr itself
if ( 'page' != tc__f('__post_type') && is_page() ){
add_filter('__post_type', '__return_page');
// don't display post and attachment content
remove_action('__loop', array( TC_post::$instance, 'tc_post_content'));
remove_action('__loop', array( TC_attachment::$instance, 'tc_attachment_content'));
}
remove_action ( '__before_loop' , array( TC_headings::$instance , 'tc_render_headings_view' ) );
function __return_page(){
return 'page';
}
}
I also suggest you to add this css:
article.product {
border-top: 0;
margin-top: 0;
padding: 0;
}
Hope it works also with your premium extension and with multisite, which I couldn’t test.
Bests