Getting rid of brackets around artist name
When using the Crisp theme, if the song artist name is different then the CD artist name (for example, with various artists) the name is shown in brackets ( ). Does anyone know what to delete using daxedit so that those brackets aren't there?
Thanks ...
Re: Getting rid of brackets around artist name
Open the Crisp.dax file in DaxEdit. Go to the Album Page and then scroll down towards the end of the page until you find the following code:
<h3 class="topper">TRACK LISTING</h3>
<hr>
<div class="tracklist">
<!--[volume]-->
<!--[if(volumename)]-->
<div style="margin-bottom: 8px"><!--[volumename/]--> [<!--[volumetime/]-->]</div>
<!--[/if]-->
<!-- <table class="list"> --->
<table class="tracklisttable" cellpadding="0" cellspacing="0" border="0">
<!--[track]-->
<tr>
<td class="tracklisttd"><!--[tracknum/]-->.&nbsp;</td>
<td class="tracklisttd"><!--[tracklink]--><!--[tracktitle/]--><!--[/tracklink]--> <!--[tracktime/]-->
<!--[if(trackartist)]-->
<br><i>(<!--[trackartist/]-->)</i>
<!--[/if]-->
<!--[if(trackcomposer)]-->
<br><i>(<!--[trackcomposer/]--><!--[if(trackauthor)]--> / <!--[trackauthor/]--><!--[/if]-->)</i>
<!--[else]-->
<!--[if(trackauthor)]-->
<br><i>(<!--[trackauthor/]-->)</i>
<!--[/if]-->
<!--[/if]-->
<!--[if(medialink)]-->
<br><!--[medialink]--><font color=$x2_color>play</font><!--[/medialink]-->
<!--[/if]-->
</td>
</tr>
<!--[/track]-->
Now within that code find this code:
<!--[trackauthor/]--><!--[/if]-->)</i>
<!--[else]-->
<!--[if(trackauthor)]-->
<br><i>(<!--[trackauthor/]-->)</i>
Change this:
<br><i>(<!--[trackauthor/]-->)</i>
To this:
<br><i><!--[trackauthor/]--></i>
That should do it.
Bob
Re: Getting rid of brackets around artist name
Thanks alot Bob,
It's actually the code a few lines up, that say:
<!--[if(trackartist)]-->
<br><i>(<!--[trackartist/]-->)</i>
<!--[/if]-->
that you change to:
<br><i><!--[trackartist/]--></i>
but you helped me figue it out.
Thanks again.