algol.plus
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Order date second & Line breakIt requires a bit of programming.
Please, visit https://docs.algolplus.com/algol_order_export/sample-addons/
Download and install CSV plugin ( via >Plugins>Add New>Upload)
Go back to export – you should mark checkbox at bottom (just above buttons)
Use FileZilla to edit file /wp-content/plugins/woe-custom-csv/woe-custom-csv.php
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Refundshello
- please, submit sample Excel file as new ticket to https://algolplus.freshdesk.com/
- use >Setup Fields>Common>Add FIeld and open dropdown to see all order fields
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Order date second & Line breakhello
please, go to section “Format”,
set Date = Custom, enter Y_m_d
set Time = Custom, enter H:i:sopen “CSV” and set “Product rows start at new line”
thanks, Alex
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Tax rate (TVA) by productok, thank you
hi
Could you submit last version of “WooCommerce TM extra product options ” plugin (zip file) as new ticket to https://algolplus.freshdesk.com/ ?
We’ll provide fixed version asap.
thanks, Alex
@hometowntrailers thank you! we’ll reply tomorrow
As temporary workaround , you can visit https://ww.wp.xz.cn/plugins/advanced-dynamic-pricing-for-woocommerce/advanced/ and get version 4.5.4 , use dropwon at bottom of the page
hi
Could you submit last version of “WooCommerce Bundles” plugin (zip file) as new ticket to https://algolplus.freshdesk.com/ ?
We’ll provide fixed version asap.
thanks, Alex
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Refundshello
- What format do you use ? csv/xls?
- please, use field “Order ID” , as each refund is child order.
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Cannot export PayPal feeshi
it confuses me too.On another website — please, run phpmyAdmin, open table “wp_postmeta” and review records for the order ( set filter post_id = Order id) .
Will you see record having non-empty meta_key =”_ppcp_paypal_fees” ?
You’re very welcome
hi
please replace field “Item Name “ with “Product Name “ ( section >Setup Fields>Products).
thanks, Alex
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Cannot export PayPal feesWe just can’t get this amount if you don’t see fee in database(key _ppcp_paypal_fees) or inside order notes
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] SKU with QTY ( error)You’re very welcome
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] SKU with QTY ( error)hello
It seems you exports deleted product.
try replace line
$lines[] = $product->get_sku(). "-" .$item["qty"];with
$lines[] = ($product ? $product->get_sku() : $item['name']). "-" .$item["qty"];