tychesoftwares
Forum Replies Created
-
Forum: Plugins
In reply to: [Order Delivery Date for WooCommerce] Advanced rulesHi @marekkaczanowicz1231,
Using Free and paid versions, you can achieve your requirement by selecting delivery days as per your requirement and set holidays too. [ no delivery on Mondays and Tuesdays, Christmas exclusions ]
For the requirement “addd one day if order after 1pm”, can you give me one example so that I can assist you in a better way?Forum: Plugins
In reply to: [Order Delivery Date for WooCommerce] Error multisiteHi @filipeos,
I apologize for the inconvenience caused to you.
Could you please create the ticket on our support tool and let us know what is the exact issue you are facing so that we can work on it and provide you the fix for the same as soon as possible?Forum: Plugins
In reply to: [Custom Order Numbers for WooCommerce] PHP Warning: Killed QueryHi @nickiova,
Yes, it seems the error you’re encountering appears to be related to a long-running database query to fetch a large number of orders. We will be working on this and will provide you the fix for the same.
In the meantime, can you tell me how many orders do you have on your site?Forum: Plugins
In reply to: [Payment Gateway Based Fees and Discounts for WooCommerce] After update!Great. Glad to know you found a solution.
I’m working on this with our team and will let you know if I will find something related to this.
Forum: Plugins
In reply to: [Payment Gateway Based Fees and Discounts for WooCommerce] After update!Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] WooCommerce HPOS SupportHi @mnkhalid,
Yes, we have made our plugin compatible with HPOS.@jgramp and @reniersky,
Could you kindly confirm whether the fees has been removed from WooCommerce Order page when the order is updated? As we are not able to replicate the issue you mentioned.Forum: Plugins
In reply to: [Payment Gateway Based Fees and Discounts for WooCommerce] After update!Hi @sofiart,
Sorry for the delay in response and for the inconvenience caused to you.Do you mean that you are having the incorrect order total when the customer try to repay the order?
Would you be able to share a screenshot or two that depict the current issue you’ve mentioned? This would greatly assist me in understanding the problem and finding a suitable solution. If you could capture both the payment interface and the plugin setup, it would give me a clearer picture of what’s happening.Hi @ocarela,
Did you check whether the issue still persists when our “Payment Gateway Based Fees and Discounts for WooCommerce” plugin is deactivated?Hi @jgramp, we are are trying to replicate the issue. In the meantime, can you provide some screenshots of the setup of the plugin and the issue you are having? Also, I want to know whether the fees is missing from Order page itself when you change the status from On hold to Completed?
@rjnl, thank you for your help. I asked our developer to have a look at the code as well.Forum: Plugins
In reply to: [Custom Order Numbers for WooCommerce] Order numbers changed after updateHi @saiso,
Sorry for the delay in response.
Do you mean that all the orders has been reverted back to WooCommerce Order number after our plugin update? And do you have “Reset Counter” set to 1 year?However, it’s not possible to reset renumbered order numbers.
Additionally, I suggest you submit a ticket on our support tool directly (maybe with a link to this thread) so that we can more communicate on this.“
Hi @jorismathijssen,
We have added the hook in the plugin to show the fees on the initial shopping cart page even before selecting the payment method on checkout page & I am sending you a patch file to address this.- You can download the code patch from this link – https://www.dropbox.com/scl/fi/8my69ezmkd2yzdsqsmwqr/class-alg-wc-checkout-fees.php?rlkey=na2zgpr8g05jdq9nfzni8f503&dl=0
- After downloading the file, you can replace with the original file at /wp-content/plugins/checkout-fees-for-woocommerce/includes/ folder.
- Add the below code to functions.php file of your current active theme of your site.
add_filter( ‘alg_wc_add_default_gateway_on_cart’, ‘add_default_gateway_on_shoping_cart’, 10, 1 );
/** * Add default gatway to the shopping cart */
*/
function add_default_gateway_on_shoping_cart( $current_gateway ) {
if ( ” != $current_gateway ) {
return $current_gateway;
}
$gateways = WC()->payment_gateways->get_available_payment_gateways();
if ( ! empty( $gateways ) ) {
foreach ( $gateways as $gateway ) {
if ( $gateway->enabled == ‘yes’ ) {
$current_gateway = $gateway->id;
break;
}
}
}
return $current_gateway;
} - The patch makes the necessary changes to fix the bug and has been tested thoroughly. But please make sure you take a backup before replacing the file
Please let me know if you have any questions or issues with the patch.
We are communicating on our Ticket support tool. So, we will mark this thread as resolve once this is solved there.