algol.plus
Forum Replies Created
-
hi
please, try this solution https://algolplus.freshdesk.com/support/solutions/articles/25000025497-avatax-taxes-are-not-applied-to-the-order
hello
Please submit system report as new ticket to https://algolplus.freshdesk.com/
use >WooCommerce>Pricing Rules>Tools to get this report.
thanks, Alex
Hello
Could you share last version of Flatsome theme (it’s not free) ?
Please submit zip file(or link to it) as new ticket to https://algolplus.freshdesk.com/
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Critical error when exporting XLShello
Please, set “Sort orders by” =Order ID.
Yes, this minor bug was reported, but we won’t update plugin this month.
We can provide fixed version if you need it, just submit ticket to https://algolplus.freshdesk.com/
Thanks, AlexWe meant check local time (and timezone) in main menu>Settings>General
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Access for the Shop ManagerHello
ShopManager has access to our plugin by default.
It seems you removed some capabilities for this role.Please, install https://ww.wp.xz.cn/plugins/user-role-editor/ , edit role and give them capability “woocommerce_view_reports”.
You can use our capability “export_woocommerce_orders”
If you don’t want gve them access to >WooCommerce>Reports.please share your shortcode
hello
Please, try 1st code from page https://docs.algolplus.com/algol_pricing/compatibility-with-themes/
Add it to functions.php or use Code Snippets plugin
Hello
Can you share system report ?
Please visit >WooCommerce>Pricing Rules>Tools to get it.You should repeat problem in the cart at first.
You can submit this report as new ticket to https://algolplus.freshdesk.com/Forum: Plugins
In reply to: [Phone Orders for WooCommerce] Coupons are added every time order is changed.for whom having same problem .
Please add following code to functions.php (or use Code Snippets plugin)
add_filter( "wpo_prepare_item", function($item, $product ){
if($item["item_cost"]==0)
$item["product_id"] = -1;
return $item;
},10,2);Forum: Plugins
In reply to: [Phone Orders for WooCommerce] Coupons are added every time order is changed.hello
- please, share screeshot of your pricing rule
- Can we setup same rule using free version “Discount Rules” plugin ?
If we need pro version — submit it (zip file) as new ticket to https://algolplus.freshdesk.com/
To correctly export all details — we don’t read data directly from database.
We read only order id, create object WC_Order and call only its methods .
You can rewrite SQL used to get merged order ids usingadd_filter("woe_sql_get_order_ids", function($sql,$settings){
return $sql;
},10,2);
BUT if order_id doesn’t belong to current subsite – WC_Order will fail.So you have to switch subsite inside this filter
add_filter( ‘woe_order_export_started’, function ( $order_id ) {
return $order_id;
});Forum: Plugins
In reply to: [Phone Orders for WooCommerce] Woocommerce subscriptionsHello
Most feaures supported.
Please submit ticket to https://algolplus.freshdesk.com/ and we’ll send unlocked version for tests.Please, update export plugin to last version .
You use 3.2.2, but the plugin supports HPOS since 3.4.0 (March 2023)
https://ww.wp.xz.cn/plugins/woo-order-export-lite/#developershello
It’s impossible as WordPress creates own tables for each subsite.