Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: modify this code to show various artists information (Read 1994 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

modify this code to show various artists information

I've been messing about trying to make my own fcs, I've managed to get almost everything working the way I want. Problem is my various albums only show the title of the track, what I would like is for it to show the artist & title only if the album artist tag exists. Similar to how Navigator works.

This is mine:


this is how I want it to look:

modify this code to show various artists information

Reply #1
This is what I use in my ARTIST column:
Code: [Select]
[$meta(album artist) / ][%artist%]

For you I guess it would be:
Code: [Select]
$if($meta(album artist),%artist% / )[%title%]

modify this code to show various artists information

Reply #2
Thanks for that, exactly what I was looking for.

Even more impressive that you managed it without seeing the code I forgot to post 

 

modify this code to show various artists information

Reply #3
This is a bit shorter.
Code: [Select]
 [%track artist% / ][%title%]