Add the following code to your theme’s function.php file, or a functionality plugin to use Custom Fields to modify the Genesis Blog/Portfolio Pages.
<?php
/** Custom field to tweak genesis layout */
$remcontent = get_post_meta($post->ID, "remcontent", $single = true);
if ( isset($remcontent) && $remcontent == 'false' ){
remove_action('genesis_post_content', 'crystal_portfolio_do_post_content');
}
Share Your Two Cents