aprokaev
Forum Replies Created
-
hello
Is it new new bug?
did it work ok for previous version?or have you just installed the plugin?
- This reply was modified 4 months ago by aprokaev.
hello
Please open section “Misc Settngs” (at bottom) and turn off “Enable debug output”.
If it won’t work — please share full error message. Review webserver logs to see it.
please visit helpdesk and put correct email.
you didn’t get my reply, I see
”Reason: “Email dropped; the recipient’s email address doesn’t exist. Please verify the address and contact support..”
please submit your settings as new ticket to helpdesk.
visit tab Tools to get them
hello Albena
was the order made by registered customer or by guest?
We group orders(made by guests) by billing email.
Forum: Plugins
In reply to: [Phone Orders for WooCommerce] Tax Exemption BoxCheckbox ” Tax exempt” (in our plugin) modifies WooCommerce session/cart only.
But plugin “Stripe Tax for WooCommerce” reads “tax exemption” status directly from customer’s profile.
Whom having same problem – please add following code to functions.php or use Code Snippets plugin
//Phone Orders - code for "Stripe Tax for WooCommerce"
add_filter('wpo_after_update_customer', function($customer, $request){
if($customer['id']) {
$tax_exemption_value = get_the_author_meta( 'tax_exemption', $customer['id'] );
if($tax_exemption_value == 'customer_exempt')
$customer['is_vat_exempt'] = true;
else
$customer['is_vat_exempt'] = false;
}
return $customer;
},10,2);
add_action("wpo_before_update_cart", function($cart_data){
$customer = $cart_data['customer'];
if($customer['id']) {
$value = $customer['is_vat_exempt'] ? 'customer_exempt' : 'none';
update_user_meta( $customer['id'], 'tax_exemption', $value);
}
});Forum: Plugins
In reply to: [Phone Orders for WooCommerce] Tax Exemption Boxok, thank you
Forum: Plugins
In reply to: [Phone Orders for WooCommerce] Tax Exemption BoxHello
>open the order in the woocommerce plugin
Will you see tax column in section “Items”? tax amounts in section “Totals” ?if you use PRO version — please resubmit ticket https://algolplus.freshdesk.com/
- This reply was modified 4 months, 1 week ago by aprokaev.
Ok, got it.
if you will have same problem – please try to check JS errors .
Yes, exactly.
We’ll add inactive buttons with neccessary tooltips.
Thanks for the advice. I hate banners and, frankly, I don’t like inactive buttons either 🙂
we try to make them less annoying.- This reply was modified 4 months, 2 weeks ago by aprokaev.
hi
It’s possible only using section https://docs.algolplus.com/algol_pricing/settings-algol_pricing/advertising-pro-2/ available in pro version.
You can try http://demo.algolplus.com/wp-admin
Hi
- Please, visit >WooCommerce>Status>Logs and review “fatal-errors” for today.
- Please, use browser to check JS errors.
Short guide – https://wordpress.org/support/article/using-your-browser-to-diagnose-javascript-errors/#step-3-diagnosis
Hello
We can’t use order (or item) meta, as many rules can be applied to same product/order.
So our plugin stores details in separate tables – wp_wdp_orders and wp_wdp_order_items.
Pro version adds tab Statistics , https://docs.algolplus.com/algol_pricing/exclusively-in-pro/statistics-pro/It’s possible to export data using our free plugin plugin too , I refer to https://wordpress.org/plugins/woo-order-export-lite/
Please share sample Excel file which you want to get and I’ll provide necessary code.thanks, Alex
Hello
If you want to export data from user’s profile — please open >Setup Fields>Customer>Add Field and seek for necessary key in the dropdown.
For order meta — please use >Setup Fields>Common>Add Field.
hi Sahith
“item-wise sales reports ” — what section do you refer to ? >Analitycs>Products ?
I see columns Product title,SKU,Items sold,Net sales,Orders,Category,Variations,Status,Stock .
It won’t give Total/Gross sales.Can you share report which you want to get ?
You can submit sample Excel as new ticket to https://algolplus.freshdesk.com/