Hello, ssmediaco.
I just visited the URL in your post on an iPhone using the Chrome browser and I was able to see the Amazon reviews. If you are still not able to see them on your mobile device/browser, you might need to clear the browser cache, or there could be an issue with your theme or mobile browser.
There is one caveat to using the plugin on mobile/responsive sites: iframes do not typically scale in a responsive way. Therefore, the Amazon reviews delivered by ScrapeAZon might require both horizontal and vertical scrolling on a mobile device to read.
You can get a slightly better result on a responsive site by tweaking your HTML and CSS so that a ScrapeAZon containing element scales instead and the iframe scrolls within that element. For example, I know of one site that places ScrapeAZon’s shortcode inside a div with an ID of “scrapediv,” and then uses the following CSS markup to ensure that the iframe does not distort the responsive site:
#scrapediv {
width:100%;
height:500px;
overflow:auto;
-webkit-overflow-scrolling:touch;
}
@media only screen and (min-device-width: 768px) and (orientation: portrait),
screen and (max-width: 994px) {
#greviews,#scrapediv{
width:400px;height:300px;
}
}
@media screen and (max-width: 320px) {
#greviews,#scrapediv{
width:300px;
height:300px;
}
}
Unfortunately the Amazon Advertising API returns only an iframe URL as the source for the customers reviews, not the reviews themselves, which makes responsive design a bit challenging because iframes do not scale in a responsive way.
Hope this helps. Thanks for using ScrapeAZon and let me know if I can be of further assistance.
James