The problem is there's a misspelling in themes/opcv/templates/views/views-view-list--featured-projects--block.tpl.php around line 20.
First of all, sites/default/files/styles/large/public/1_5.jpg does not exist.
Secondly, the URL is not correct.
It should be: <img src="<?php print $GLOBALS['base_url'] . base_path(); ?>/sites/default/files/styles/large/public/1.jpg" alt="" />

Comments

Jeffrey C.’s picture

In the end I slightly modified the code again, to make sure the image for the latest project is loaded, instead of having to update the code every time a new project is created.
themes/opcv/templates/views/views-view-list--featured-projects--block.tpl.php, line 19~22

  <div class="ps_image_wrapper"> 
    <img src="<?php $result = views_get_view_result('featured_projects'); print $result[0]->field_field_image[0]['rendered']['#path']['path']; ?>" alt="" /> 
    <projecttitle><?php print $result[0]->node_title; ?></projecttitle>
  </div>
rterrero’s picture

Solution #1 works for me. Thanks!!!