I have a content type (music) with fields(image,track,title). I used a soundmanager player to display my track with its tpl.php(bar.tpl.php).
I have tried to display url of the image field inside the (bar.tpl.php) but got only (http://localhost/mysite) using this code
<div class="sm2-inline-element album-art"> <img src="<?php $file = file_load($node->field_image_boss['und'][0]['fid']); print file_create_url($file->uri); ?>" /> </div>