thisisirene
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Shipping issues@mszaitsev could you, please, create a new ticket to our help desk with the next information:
- Our JSON system report (submit it on the Pricing rules>Tools>System report tab);
- The screenshot of the WooCommerce > Settings > Shipping page.
We will continue our conversation in the ticket.
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Bulk rule: buy 3 for price of X?Good day, @miikkamakela!
Please, repeat the rule from the screenshot: https://snipboard.io/p4mALb.jpg
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Time Rules not WorkingCould you, please, attach the screenshot of your rule?
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Time Rules not WorkingGood day, @tjpod!
Could you, please, visit Settings>General tab and check your timezone?
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] PHP warnings with v4.9.2Good day, @embercide!
Could you, please, clarify, what PHP version is installed on your hosting server?
Forum: Reviews
In reply to: [Advanced Dynamic Pricing for WooCommerce] Lots of BugsGood day, @taufrisch88!
Thank you for reaching us! We sincerely apologize for any inconvenience and understand your disappointment. Our aim is always to provide the best customer experience and ensure our products meet your expectations.
Could you, please, share with us the screenshot of the rule? We can help you to adjust the rule and if you provide us more information about the problem via our help desk, we can fix the issue with the coupon.
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Error displaying price with v4.9.1Good day, @tlozano!
Unfortunately, can’t repeat the issue locally. Could you, please, submit a new ticket to our help desk with the next information:
- Our JSON system report (Pricing rules>Tools>System report);
- Your theme as zip archive;
- Video of how to repeat the bug.
Thank you!
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Missing sales badgetGood day, @webreneszansz!
Could you, please, try to insert this code into the functions.php of your theme and if it doesn’t help, then send us our JSON system report to the help desk?
add_filter( 'woocommerce_variation_prices', function($prices_array, $product, $for_display ){
global $post;
if(!is_shop() AND !is_product_category() AND !is_product() AND !is_product_taxonomy() AND
!(isset($post) && $post->post_type === 'product') )
return $prices_array;
$processedProduct = adp_functions()->calculateProduct($product, 1);
if(! $processedProduct instanceof \ADP\BaseVersion\Includes\PriceDisplay\ProcessedVariableProduct )
return $prices_array;
$new_prices_array = array("price"=>[],"regular_price"=>[],"sale_price"=>[]);
foreach($processedProduct->getChildren() as $variation){
$idx = $variation->getProduct()->get_id();
$new_prices_array['price'][$idx] = $variation->getPrice();
$new_prices_array['sale_price'][$idx] = $variation->getPrice();
$new_prices_array['regular_price'][$idx] = $variation->getOriginalPrice();
}
return $new_prices_array;
},10,3);Hi, @marioski!
What version of the plugin do you use? Could you, please, provide the screenshot of the rule?
The end date is included the filled in date and the discount will end at 23:59:59. Could you, please, also check your date and time settings in the WooCommerce?
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Wrong variable product badge valueHi, @defix!
Could you, please, send us our JSON system report (Pricing rules>Tools>System report>Get system report) via our help desk?
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Wrong variable product badge valueGood day, @defix!
Are you using any page builders plugin (Elementor, e.g.)? Because there’s no problem in variable badges with the custom sale badge settings and the compatibility code on the page with your shortcode.
Good day, @realpower!
We have fixed the bug, please, submit a new ticket to our help desk and we will provide you the fixed version of our plugin.
Good day, @marusche!
Do you mean the “Amount saved” option of our plugin? Please, look at the “Pricing rules>Settings>Cart>Amount saved” and click Customize. Inside the customizer, go to the Cart submenu and change the “Before the order totals” position to the “After order totals” (https://snipboard.io/wHkSTI.jpg)
Is that what you need?
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Blank when plugin activeThe problem was in the compatibility with the German Market plugin.
The solution is that code:
add_filter('adp_replace_variation_data_store', "__return_false");
Mark this issue as resolved, feel free to create another one topic on the forum or write us directly to the helpdesk.
Good day, @beccabadger!
Could you, please, add the product from the screenshot to the cart, choose the shipping method and then visit Pricing rules > Tools > System report, submit our JSON system report and then send it to our helpdesk?