Alok Tiwari
Forum Replies Created
-
Forum: Plugins
In reply to: [Amazon Product Price] Invalid xml responseHello,
May be your API credentials is not compatible to access amazon.de
So it will showing 0.00
For more i need to check your website admin panel.Forum: Plugins
In reply to: [Amazon Product Price] Invalid xml responseHi please open the plugin folder and then open a file “amazon_api_class.php”
Then change the code on line approx 113 .
return aws_signed_request("com", $parameters, $this->public_key, $this->private_key, $this->associate_tag);
Replace With
return aws_signed_request("de", $parameters, $this->public_key, $this->private_key, $this->associate_tag);
But both domain not work same time. only single domain work at a time.
Thanks
Forum: Plugins
In reply to: [Amazon Product Price] Invalid xml responseHello Avaray,
I want to inform you that this plugin is only work on domain .com not others domain like as .co.uk so it is not working in spain. For this need to change code and set it for spain domain.
Forum: Plugins
In reply to: [Amazon Product Price] Pricing Amazon productos in EurosFor showing price in euro you are sure your product cost in amazon is in euro if not i will need to convert first. If in euro need to change the sign in plugin file. amazon-product-price.php
Forum: Plugins
In reply to: [Amazon Product Price] Invalid xml responseHi,
This is may be the problem of other domains or may be your key. Current this plugin fetch product from amazon.com not other domain like as co.uk
Currently no updated plugin you can discuss me direct my mail which domain you want in your plugin.Thanks
Forum: Plugins
In reply to: [Amazon Product Price] moving the price down in a postOK thank you if any other work contact me.
Forum: Plugins
In reply to: [Amazon Product Price] Need Help with InstallationYes you can use this on template files or in post detail page. Post detail content come from content.php mostaly so you can put this code as
<?php do_shortcode("[price asin='B00KQ7SBTE']"); ?>
Forum: Plugins
In reply to: [Amazon Product Price] moving the price down in a postHello,
you will need to change the shortcode content it is currently display on that code. Open the file “amazon-product-price.php” and go to the function price_handler() and change this code
echo '<p>'; if(!empty($price) && !empty($MSRP)) { echo 'Retail Price: '.$MSRP2.'<br>'; echo 'Lowest Price: '.$price.'<br>'; $MSRP2 = number_format($MSRP /100,2); $percent = ($Savings/$MSRP2); echo 'Saveing Percent: '.number_format($percent,2).'%<br>'; } elseif(!empty($price) && empty($MSRP)) { echo 'Price: '.$price.'<br>'; } echo '</p>';
to
$result = '<p>'; if(!empty($price) && !empty($MSRP)) { $result .= 'Retail Price: '.$MSRP2.'<br>'; $result .= 'Lowest Price: '.$price.'<br>'; $MSRP2 = number_format($MSRP /100,2); $percent = ($Savings/$MSRP2); $result .= 'Saveing Percent: '.number_format($percent,2).'%<br>'; } elseif(!empty($price) && empty($MSRP)) { $result .= 'Price: '.$price.'<br>'; } $result .= '</p>'; return $result;
Then it will work as you want. If not contact me on wptricksbook.com via contact request form.
Thanks
Forum: Plugins
In reply to: [WooCommerce - Beanstream Payment] Payment errorYou will need to customize the plugin file and replace the function add_error() to wc_add_notice( ‘‘ . $btn[‘label’] . ‘ ‘ . __( ‘is a required field.’, ‘woocommerce’ ), ‘error’ ); and then check problem will be resolved. if not i can do it for you contact on wptricksbook.com via contact request form.
Forum: Plugins
In reply to: [WooCommerce - Beanstream Payment] Payment errorYes i have fixed it on the website. I have change the code of plugin according the woocommerce version may be you have used woocommerce new version. This error solved by changing the woocommerce new message functions.
Thanks
Forum: Plugins
In reply to: [Amazon Product Price] How to change seperator of PriceHello,
You can write the code to change number format as the “.00” to “,-” as this code => number_format($inp, 2, ‘,’, ‘.’); use this code to change it.
Forum: Plugins
In reply to: [Amazon Product Price] Show real Amazon PriceHello,
Please open the file inside plugin folder and file amazon-product-price.php and go to the line no. 165 you can find the code as
//echo '<pre>'; //print_r($result->Items->Item);
remove the comment or replace it as =>
echo '<pre>'; print_r($result->Items->Item);
run the page you can view all the detail Find your price variable and replace it as “$price = $result->Items->Item->OfferSummary->LowestNewPrice->Amount;”
Forum: Plugins
In reply to: [Amazon Product Price] For which countries does this plugin workIt currently working on amazon.com
Please go to the plugin folder and open the file includes/amazon_api_class.php
and go to line no. 113 you will find this text “return aws_signed_request(“com”, $parameters, $this->public_key, $this->private_key, $this->associate_tag);”
Replace it with “return aws_signed_request(“de”, $parameters, $this->public_key, $this->private_key, $this->associate_tag);”
Then it is working.
Forum: Plugins
In reply to: [Amazon Product Price] Invalid xml responseMy mail is [email protected]
Forum: Plugins
In reply to: [Amazon Product Price] Invalid xml responseHello,
Yes this is the problem of the Amazon domain.I am working on that part for updating plugin. If you want to resolve it now to please provide us the URL of website and admin access so i change the plugin code.
Thanks