Support Forums for LiveMesh Themes & Plugins › Forums › Enigmatic Theme Support › Editing Portfolio Custom Fields in the Backend › Reply To: Editing Portfolio Custom Fields in the Backend
July 12, 2013 at 3:30 am
#1115

Keymaster
You need to change the /framework/framework.php file at line number 350 to add custom-fields
to supported features for custom post type –
register_post_type('portfolio', array('labels' => $labels, 'public' => true, .... 'menu_position' => 20, 'supports' => array('title', 'editor', 'thumbnail', 'comments', 'excerpt', 'custom-fields') )
Then the custom fields option should show up on ‘Screen Options’ on the top right of the portfolio edit window.
And you can change the next and previous code in loop-nav.php file at line number 21.