Results 1 to 3 of 3

Thread: Getting rid of brackets around artist name

  1. #1
    Join Date
    Feb 2005
    Location
    Posts
    16

    Default 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 ...

  2. #2
    Join Date
    Dec 2003
    Location
    South Carolina
    Posts
    63

    Default 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/]-->.&amp;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

  3. #3
    Join Date
    Feb 2005
    Location
    Posts
    16

    Default 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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •