• All products are showing prices as various.

    Currently using your AWS keys to test this out, however I am signed up using my own Tracking-IDs, just didnt have my AWS keys working, will get that sorted though.

    Basically only getting one product at a time, on separate pages, however for each product on their respective page shows the price as “Various”. The products are being selected by ASIN like so:

    [wpzon spec=”1″ asin=”B00KBYG53Q” listing=”1″ country=”com”]

    Is there a fix for this?

    That ASIN has these prices:

    Kindle Edition £1.82 (Amazon Price) — —
    Paperback £5.93 (Amazon Price) £5.93 (New From)

    Is there a way to select just either of the prices as oppose to having the price as various?

    https://www.ads-software.com/plugins/wpzon/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter adamraybicknell

    (@adamraybicknell)

    if ($country == "com" && $sprice == "")  {$seed = "See Details >>"; $sprice = "Various"; } elseif ($country == "com" && $sprice == $sprice) {$sprice=$sprice; $seed = "See Details >>";}
    
    if ($country == "in" && $sprice == "")  {$seed = "See Details >>"; $sprice = "Various"; } elseif ($country == "in" && $sprice == $sprice) {$sprice=$sprice; $seed = "See Details >>";}
    
    if ($country == "ca" && $sprice == "")  {$seed = "See Details >>"; $sprice = "Various"; } elseif ($country == "ca" && $sprice == $sprice) {$sprice=$sprice; $seed = "See Details >>";}
    
    if ($country == "au" && $sprice == "")  {$seed = "See Details >>"; $sprice = "Various"; } elseif ($country == "au" && $sprice == $sprice) {$sprice=$sprice; $seed = "See Details >>";}
    
    if ($country == "co.uk" && $sprice == "")  {$seed = "See Details >>"; $sprice = "Various"; } elseif ($country == "co.uk" && $sprice == $sprice) {$sprice=$sprice; $seed = "See Details >>";}

    Just found this chunk of code… now I see what they say various … :/

    How can I get the actual price?

    Thread Starter adamraybicknell

    (@adamraybicknell)

    Bit more information, in addition to $sprice not getting a value resulting in “Various” getting placed instead of price, $lprice also doesn’t get any values.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Prices all show "Various", using ASIN to get products’ is closed to new replies.