Hi @Bob
Right now in the item fields you can add the {$value} {$valueUrl} {$choice} {$fieldId} to the Value Display HTML, could an {$itemID} be added, so that a items id number can be placed into the value display html content.
So for eg if the Showcase item 123 is viewed the value display html for that item would be
would be output as
Right now in the item fields you can add the {$value} {$valueUrl} {$choice} {$fieldId} to the Value Display HTML, could an {$itemID} be added, so that a items id number can be placed into the value display html content.
So for eg if the Showcase item 123 is viewed the value display html for that item would be
HTML:
<br><br><img src="http://www.yourpshome.net/img/ratingtitle.png" alt="Rating" />
<div class="ItemContainer">
<div class="Item">
<div class="boxModelFixer"><b>Style</b><br>How do you rate the style and design of this space?
<div id="rate_{$itemID}" align="center"></div>
</div>
</div>
would be output as
HTML:
<br><br><img src="http://www.yourpshome.net/img/ratingtitle.png" alt="Rating" />
<div class="ItemContainer">
<div class="Item">
<div class="boxModelFixer"><b>Style</b><br>How do you rate the style and design of this space?
<div id="rate_123" align="center"></div>
</div>
</div>
Last edited:
Upvote
0