I had the same problem.
For this I had to just add a line in my theme, but this is unlikely to be specific to the theme that I have used. I put the code below, it just be a track for you:
‘lib>metaboxes>portfolio-spec.php’ and add this line of code:
‘priority’ => ‘low’,
So to look like this:
$portfolio_mb = new WPAlchemy_MetaBox(array
(
‘id’ => ‘_studiofolio_portfolio_meta’,
‘title’ => ‘Portfolio box’,
‘template’ => get_template_directory() . ‘/lib/metaboxes/portfolio-meta.php’,
‘types’ => array(‘portfolio’),
‘priority’ => ‘low’,
‘mode’ => WPALCHEMY_MODE_EXTRACT
));