Hi everyone,
I’m having issues with the label for the “set my rating” button->id=7 on music (albums and songs)
What I’m trying to do and already works on tvshows and movies is when there is no user rating the label is “set my rating”, if the rating is already set, the button label is “my rating . “rating number”
the problem is that I cannot archive the same result on music. the default label is “set my rating” no matter what I do… What is the problem/what am I doing wrong
PHP Code:
<variable name="SetSee">
<value condition="IsEmpty(ListItem.UserRating)">$LOCALIZE[38023]</value>
<value condition="!IsEmpty(ListItem.UserRating)">$LOCALIZE[38018] • $INFO[ListItem.UserRating]</value>
</variable>
PHP Code:
<control type="button" id="7">
<description>Set my rating</description>
<label>$VAR[SetSee]</label>
<include>DefInfoButtons</include>
</control>
Thanks in advance
Best Regards