2 things I need help with, thank you in advance.
Website: http://www.RockItMembers.us
1. This is a cloned domain of my blog so I can work on updates and I ran into a problem with the latest version of Podpress. In Firefox 5 everything looks fine but if you open my site in IE 8 you'll see that the player and Download button are messed up. Any ideas which css is causing this problem?
2. On my current website I have a function where users have to log in before they can see the podpress download button. To do this I edited the podpress_theme.php file (podpress 8.8) and added:
if($val['enablePlayer']) {
if($podPressContent != '') {
$podPressContent .= "<br/>\n";
}
$podPressContent .= '<div id="podPressPlayerSpace_'.$GLOBALS['podPressPlayer'].'"> </div>'."\n";
}
if(isset($val['image'])) {
if (is_user_logged_in()) {
if($val['enableDownload'] && !empty($val['URI'])) {
$podPressContent .= '<a href="'.$val['URI'].'" target="new">';
}
$podPressContent .= '<img src="'.podPress_url().'images/'.$val['image'].'" border="0" align="top" class="podPress_imgicon" alt="icon for podpress" />';
if($val['enableDownload'] && !empty($val['URI'])) {
$podPressContent .= '</a>';
}
if(!$podPressTemplateData['showDownloadText'] == 'enabled') {
$val['enableDownload'] = false;
}
} else {
$podPressContent .= '<i><a href="http://www.rockitpro.com/wp-login.php">Log in</a> <font color="black">to download the MP3.
It\'s free and instant to <a href="http://www.rockitpro.com/wp-login.php?action=register">
register</a>!</font></i><br />';
}
}
if($val['enableTorrentDownload']) {
$podPressContent .= '<a href="'.$val['URI_torrent'].'" target="new">';
if(strstr($val['image'], '_button')) {
$torrentimg = 'misc_torrent_button.png';
I included some code before & after so you can get an idea of where I put it. With the new Podpress I can't figure out where to do this at or what to replace, can you help me out?