aprokaev
Forum Replies Created
-
Hello
We don’t get similiar bug reports yet.
Could you submit CSV file as new ticket to https://algolplus.freshdesk.com/ ?
thanks, Alex
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Sale! MessageHello
Should you use >Appearence>Customize to adjust this message ?
I see “Sale Bubble Options” at https://demos.flatsome.com/features/woocommerce/Hello
Have you tried rule like https://snipboard.io/EQ4zLV.jpg ?
More examples https://docs.algolplus.com/category/algol_pricingnew/rules/frequently-created-rules/thanks, Alex
Pro version can export only Subscriptions.
Look at 2nd screensot at page https://docs.algolplus.com/algol_order_exportnew/pro-version-algol_order_exportnew/profiles/In your case – please update you code and add this line
if( !wcs_user_has_subscription(($order->get_user_id()) ) return false;
Below
$order = new WC_Order($order_id);
hello
Please, add this code to funcitons.php (or as Code Snippet) and you will see Subscription fields
https://docs.algolplus.com/algol_order_exportnew/developers-algol_order_exportnew/codes-for-plugins-developers-algol_order_exportnew/woocommerce-subscriptions/You can filter orders by user ids using php code.
Add following code to section “Misc Settings” and tweak $skip_user_idsadd_filter( 'woe_order_export_started', function ( $order_id ) {
$skip_user_ids = [2,5];
$order = new WC_Order($order_id);
return !in_array($order->get_user_id(), $skip_user_ids) ? $order_id: false;
});Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] customer user email is not exportedYou’re very welcome
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] customer user email is not exportedHello
This field is empty for orders made by guests.
please, use >Setup Fields>Billing Address>Email (Billing)
Hello
https://woocommerce.com/products/composite-products/ is not free plugin.Please submit this plugin (zip file) as ticket to https://algolplus.freshdesk.com/
+ share video which shows the bug (or screenshot at least).
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Export preview causes critical errorError text has all necessary information ??