Hi Casey,
So adding
<?php
function my_connection_types() {
p2p_register_connection_type( array(
'name' => 'pages_to_pages',
'from' => 'page',
'to' => 'page'
) );
}
add_action( 'p2p_init', 'my_connection_types' );
?>
to the functions.php file show show “Connected Pages (to)” and “Connected Pages (from)” meta boxes in my edit pages admin and when I add a “to” fro page 1 to page 2 —- page 2 shouldn’t show a link back to page 1 by default. It’s only if I add ‘reciprocal’ => true that page 2 should link back to page 1?