algol.plus
Forum Replies Created
-
Hello
usually theme adds % to sale badge.
please, try 1st code from page https://docs.algolplus.com/algol_pricing/compatibility-with-themes/
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] how to add which tax slab appliedhi Niraj
please use >Setup Fields>Other Items>Add Tax
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Issue updatingWe need to know exact error message.
please visit >WoiCommerce>Status>Logs and review “fatal-errors” for today.
Hello
Open “Setup Fields” and
- please, set “Add products as ” = Rows
- set “Fill order columns for” = 1st row only
- add field “Checked” (set [ ] as value ) via >Setup Fields>Products>Add Static Field.
as shown at https://snipboard.io/WECK4w.jpg
- This reply was modified 1 year, 4 months ago by algol.plus.
- This reply was modified 1 year, 4 months ago by algol.plus.
Hello
Please open section “Setup Fields” and set “Add products as” = “One row”.
Hello
Can you share system report ? Please visit >WooCommerce>Pricing Rules>Tools to get.
You can submit ticket to https://algolplus.freshdesk.com/
it’s paid plugin.
please share this plugin as zip file.
You can submit new ticket to our helpdesk.
Hello
What plugin do you use to build XML for Skroutz ?Can you share screenshot of the rule too ?
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Add summary rowHello
Please open seciton “Setup Fields” , scroll to necessary field and click on icon “Σ” .
Separate column for payment method – will require some programming.
Follow to https://docs.algolplus.com/algol_order_export/fields/
Add key paypal_amount (set Format = Money)
Use this code to fill columnadd_filter('woe_get_order_value_paypal_amount',function( $value,$order, $fieldname ) {
if($order->get_payment_method() == "paypal")
$value = $order->get_total();
return $value;
}, 10, 3 );Fixed in version 4.9.1
https://ww.wp.xz.cn/plugins/advanced-dynamic-pricing-for-woocommerce/#developersFinal code for whom having same problem
add_filter('woocommerce_variation_prices', function ($prices_array, $product, $for_display) {
global $post;
if (
!is_shop() &&
!is_product_category() &&
!is_product() &&
!is_product_taxonomy() &&
!(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);Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Critical error when trying to exportHi
Your settings are ok.
Please, try button “Export w/o progress bar” (at bottom of the page).if it won’t help — open >WooCommerce>Status>Logs and review “fatal-errors’ file.
We need to know exact error message.thanks , Alex