Hi there,

I've combed through all the code but I can't figure out how to accomplish what I want. I'm using Soundmanager2 with CCK FileField, and I'd like to output the description/title but not have it link to the MP3. Is that possible?

Thanks,

jimi

Comments

joecanti’s picture

A quick fix for this would be to locate the page-player.css in the page player folder and add display:none; to .sm2-filelink.

So:

Old:

.sm2-filelink {
color:white;
display:block;
font-size:0.6em;

}

New:

.sm2-filelink {
color:white;
display:block;
font-size:0.6em;
display:none;

}

It looks like you can also edit this css to change colours/font styles etc which would be useful.

Cheers, Joe

jddeli’s picture

Priority: Normal » Critical

That dont work
is there a realy solution?

theohawse’s picture

Priority: Critical » Normal

Not really a true solution, but it's one step towards hiding the links:

Old:
ul.playlist div.sm2-filelink a {
  color: black;
  display: block;
}
New:
ul.playlist div.sm2-filelink a {
  color: black;
  display: none;
  visibility: hidden;
}
theohawse’s picture

Status: Active » Closed (duplicate)

Found another issue regarding the identical problem: http://drupal.org/node/1082344
Please post in that thread if you need a more solid solution than just css.