algol.plus
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom Produc Variable Fieldhi
please, adapt this code , you must use meta key ( not label!)
add_filter( 'woocommerce_hidden_order_itemmeta', function($keys){
$keys[]= "your_key_here";//EDIT
return $keys;
});hello
We don’t have ready functionality.
But you can progam it using hook “woocommerce_available_payment_gateways”.
You can use this page as start point
https://stackoverflow.com/questions/48800176/add-or-remove-payment-gateways-based-on-cart-total-amount-in-woocommercethanks , Alex
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom value with PHPYou’re welcome
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom value with PHPplease, visit ww.wp.xz.cn and copy whole code .
And paste code to https://onlinephp.io/ , probably you added some non-printable chars
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom value with PHPplease read topic
https://docs.algolplus.com/algol_order_export/hooks-filters/
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom value with PHPopen Setup Fields and set “Fill order details” = All rows
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom value with PHPhello
follow to https://docs.algolplus.com/algol_order_export/fields/
add key total_installment
use this code
add_filter('woe_get_order_value_total_installment',function ($value, $order,$fieldname) {
$order = wc_get_order( $order_id );
if ( ! $order ) {
return 0;
}
$payment_id = $order->get_meta( ‘_sumo_pp_payment_id’, true );
if ( ! $payment_id ) {
return 0;
}
$payment = _sumo_pp_get_payment( payment_id );
if ( ! $payment ) {
return 0;
}
return $payment->get_total_installments();
},10,3);ok, see you
Please, clear date range in rule’s header.
Can you share the screenshot of pricing rule (in our plugin) again ?
You’re welcome.
please, use provided plugin until we release new version
Did you setup tab “Pricing Rules” for “Baileys Cheesecake” option?
I refer to this page https://snipboard.io/Lry4fZ.jpg
- This reply was modified 2 years, 1 month ago by algol.plus.
hello
I’m sorry, another question, about “Baileys Cheesecake” addon .
Was it added via >Fields>Product Fields? What type it uses – checkbox or select or ?
I set same options, but I still see correct results in the cart https://snipboard.io/K06w29.jpg
How can I send you fixed version ?
- This reply was modified 2 years, 1 month ago by algol.plus.
please, submit new ticket to https://algolplus.freshdesk.com/ and we’ll provide fixed version for tests