Hi,
Grab the development version 4.7.10b02 which adds a new tag %author_text%
. %author
and %author_text%
will include artist names in this version.
The Title Format does not support %author%
or author_text
so use the Item Format option to include the title output. Find the %title%
tag in the Item Format field and replace it with the content of the Title Format field.
For example, if your Item Format field looks like this,
<div class="amazon-auto-links-product">
<div class="amazon-auto-links-product-image" style="">
%image%
%image_set%
</div>
<div class="amazon-auto-links-product-body">
%title%
%rating% %prime% %discount% %price% %disclaimer%
</div>
</div>
Change it to like
<div class="amazon-auto-links-product">
<div class="amazon-auto-links-product-image" style="">
%image%
%image_set%
</div>
<div class="amazon-auto-links-product-body">
<h5 class="amazon-product-title">
<a href="%href%" title="%title_text%: %description_text%" rel="nofollow noopener" target="_blank">%title_text% by %author_text%</a>
</h5>
%rating% %prime% %discount% %price% %disclaimer%
</div>
</div>