algol.plus
Forum Replies Created
-
hello
I set shipping method , reloaded cart and I see “Flat rate” selected.
Please, submit ticket to https://algolplus.freshdesk.com/ and remove test user now.
It’s public forum.here is my results for block-based https://snipboard.io/PXQapl.jpg
I need your settings
Do you use StoreFront theme ?
Could you share your settings ? or better – submit them as new ticket to https://algolplus.freshdesk.com/
Visit >Pricing Rules>Tools>Backup, select “options” in dropdown and copy this text.
Could you share your settings ?
Visit >Pricing Rules>Tools>Backup, select “options” in dropdown and copy this text.Hi
I used https://stackoverflow.com/questions/73509770/custom-woocommerce-shipping-method (code from 1st answer) to create new shipping method.
I added this line to calculate_shipping(), as shown at https://snipboard.io/sRvSmg.jpg
var_dump( WC()->cart->get_subtotal() + WC()->cart->get_subtotal_tax() );I got correct results (I set discount 50%),
another screenshot https://snipboard.io/BjgVaJ.jpg made in cartPlease, try to disable all other plugins and check if you still see the problem.
- This reply was modified 1 year, 8 months ago by algol.plus.
hi
Can you share your code(only hook which call get_displayed_subtotal() ) and screeshot of the rule?
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] add all export data into one rowyou’re welcome
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] add all export data into one rowplease open section Setup Fields and switch mode “Add Products as”.
Could you send us your rules and settings ? It should not show fatal errors.
Visit >Pricing Rules>Tools>Backup and copy text (All rules).
Select “options” in dropdown and copy this text too.hello
can you submit system report to our helpdesk too ? Visit >Pricing Rules>Tools to get it.
actually we need more detailed error message to detect infinite loop. If you can- please install xdebug (module for PHP).
You’re welcome
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Add column for VAT percentageYou’re welcome
Hello
Refunds are not orders, so they don’t have “Paid Date”.
please, set “Filter Orders By” = Order Date.
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Add column for VAT percentageplease, add this code to seciton “Misc Settings”
add_filter('woe_get_order_product_value_tax_rate', function ($value, $order, $item, $product,$item_meta) {
$taxes = $item->get_taxes();
if(isset($taxes['total'])) {
$rates = array();
foreach($taxes['total'] as $tax_rate_id =>$amount)
$rates[] = WC_Tax::get_rate_percent( $tax_rate_id );
$value = join("", $rates);
}
return $value;
}, 10, 5);please, share your settings. visit tab “Tools” to get them