The AMAZONPRODUCTS
shortcode is limited in what it can return as it is intended to be a more complete product layout. The amazon-elements
shortcode is full featured and basically allows you to add any elements you want, AS LONG AS they are included in the product you are trying to display.
This part is just for completeness and for others reading:
Not all products have a description available. Most people think that if it has one on Amazon, that there is one available, but the reality is, not all data is passed via the API, so the plugin is limited to only that data.
That said, the description, when available, is displayed however your theme style sets it (for the most part) and the layout or look can be adjusted with CSS styles. You would need to add the following to your plugin styles (located in the Amazon Products menu under Amazon PIP Options and then the Styles tab). Make sure you check to use your own images and then put this at the bottom of the other styles there:
.amazon-description,.amazon-element-desc {
text-align: justify;
}
The other elements can really only be displayed using the amazon-elements
shortcode like so:
[amazon-elements asin="9999999999" fields="lg-image,customerreviews"]
These of course, can be split into different amazon-elements shortcodes to put the elements anywhere on the page you want:
[amazon-elements asin="9999999999" fields="lg-image"]
some content here.
[amazon-elements asin="9999999999" fields="customerreviews"]
These may need to be styled a bit with CSS, but you can put them any place you want.
See the Shortcode Usage page in the Amazon Products menu for more on using the amazon-elements
shortcode.
Warmest regards,
Don