When plugin is activated it is blocking Genesis Title Toggle and functions.php code:
/** Remove page titles */
add_action( 'get_header', 'child_remove_page_titles' );
function child_remove_page_titles() {
if ( is_page() && ! is_page_template( 'page_blog.php' ) )
remove_action( 'genesis_post_title', 'genesis_do_post_title' );
}
Is there any workaround for this, fairly important issue.
http://wordpress.org/extend/plugins/genesis-connect-woocommerce/