Hi,
I suppose you are using module,this kind of issues happen only for module.We are trying to implement to get the videos as well the playlist on the same page.We will be releasing the same at the end of feb 2010.We will keep you posted once it's done.
Yes it's possible to hide the views as well names for outside the player..
If your using component you can find the code below code in
root/components/com_hdflvplayer/views/player/tmpl/playerlayout.php
This is for title or name:
Code:
<div style="text-align:center;font-weight:bold;color:#ff6600;height:30px;">
<a href="index.php?option=com_hdflvplayer&Itemid=<?php if($itemid) echo $itemid;?>&id=<?php echo $details1['rs_playlist'][$i]->id?>&page=<?php echo $page; ?>"> <?php echo $details1['rs_playlist'][$i]->title ?></a>
</div>
This is for viewed:
Code:
<div style="text-align:center;color:#135CAE;">
<?php echo "Viewed :". ' ' .$details1['rs_playlist'][$i]->times_viewed ?>
</div>
Just remove those lines.
If you are using module then the above code need to be removed at
root/modules/mod_hdflvplayer/tmpl/default.php
Hope this helps you..
Thanks.