xadapter
Forum Replies Created
-
Hi,
Its a one year fee and you’ll get the plugin updates and support, after which you can choose to renew the license at 50% discount or if you want to continue using the plugin without updating or without support it will work even if the license expires.
Regards,
Forum: Plugins
In reply to: [Dynamic Pricing and Discounts for WooCommerce] Role Managment for guestsHi,
please raise a ticket in our online support here: xadapter.com/online-support
Forum: Plugins
In reply to: [Fedex WooCommerce Shipping Method Plugin] Combined ShippingHi @qmsllc,
Thanks for reaching out to us.
Yes, that is possible with the premium version of the plugin.
In the premium version, there are additional features like box packing using which you can pack all items into that box.The basic version of the plugin is meant for small shop owners who have a 1 or 2 products in their inventory. Hence, packing of products happens individually in it.
Hi,
The basic version of the plugin works only with the simple products, so if you have variable products the select options will still show.
You need the premium version of the plugin for this to work with the variable products.
Forum: Plugins
In reply to: [WooCommerce Shipment Tracking Plugin] can’t add a new lineHi sandeep22,
Since you are using the test mode, this error comes when you have incorrectly filled in the FedEx credentials.
Kindly fill these fields with correct values and you will not face the problem of rates again :‘FedEx Account Number”
“Fedex Meter Number”
“Web Services Key”
“Web Services Password”.Also make sure that the checkbox “Production Key” is only checked when you are using live credentials and not test credentials.
Also, if you are still facing this problem, can you please contact our support team and provide the details of the emails which FedEx has sent you. We will configure it for you.
Hi,
Currently this is not possible by price, but based on number of quantity you can choose the check on total unit and it can calculate on the mixture of the same category, not different categories.
Regards,
Hi,
1.a & b) The first option is not possible to achieve with our plugin, you might want to use the shipping pro table rates plugin for that.
C) Yes you can use our plugin to calculate rates based on weight and zip.
2. Yes you can use the plugin to print labels and get tracking with the USPS live rates based on the package details and destination address,
But you need to use the premium plugin for this, also you need to contact USPS team if you’re eligible for USPS eVS account for print label and tracking permission.Regards,
Forum: Plugins
In reply to: [Dynamic Pricing and Discounts for WooCommerce] Plugin changes themeThanks, we’ll communicate in the ticket.
Forum: Plugins
In reply to: [Dynamic Pricing and Discounts for WooCommerce] Plugin changes themeHi,
Please raise a ticket here: https://www.xadapter.com/online-support
So that I can check this.
Regards,
Forum: Plugins
In reply to: [Dynamic Pricing and Discounts for WooCommerce] Plugin changes themeHi,
Please try this code snippet, add it to fucntions.php in the theme folder.
add_filter(‘woocommerce_get_price_html’, “xa_only_sale_price”, 99, 2);
function xa_only_sale_price($price, $product)
{
if(!is_cart() && !is_checkout() && !is_ajax()){
if ($product->is_type(‘simple’) || $product->is_type(‘variation’)) {
return regularPriceHTML_for_simple_and_variation_product($price, $product);
}
}
return $price;}
function regularPriceHTML_for_simple_and_variation_product($price, $product){
return wc_price($product->get_price());
}Let me know if that helps.
Forum: Plugins
In reply to: [Dynamic Pricing and Discounts for WooCommerce] Plugin changes themeHi,
we haven’t come accross this issue before, but if you can share the screeshot it would help us understand better.
Regards.
Hi,
Please deactivate other plugins to check if you have any other plugin causing the double discount.
Regards,
Hi,
This is usually caused by other plugins if you have multiple discount plugin installed, please deactivate all other plugins except our plugin and also woocommerce plugin to check.
Regards,
Forum: Plugins
In reply to: [Dynamic Pricing and Discounts for WooCommerce] discounts applied TWICE !!Hi @pagaba,
Usually this is caused when you have multiple discount plugins, if you remove or deactivate other plugins it should work fine.
Regards,