Sanesh Acowebs
Forum Replies Created
-
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Disable free when pro is activeHi, We have checked your concern and confirm that our free version is automatically disabled while activating the pro version of our plugin. Please check the screen recording: https://tinyurl.com/2yv9a6h2. If you are following something else, please share the steps to reproduce the issue. Thanks!
Hello, the only step that the Openpay team needs to do is add an additional check in the mentioned file. Thanks!
Hi, we have checked and found the fix required to make both plugins compatible. However, we need help from the payment gateway plugin team to accommodate?the code fix in their?plugin code. Can you reach our Acowebs support forum or come to the live chat support provided on the?Acowebs website so that we can share and instruct the changes required. Thanks!
Hi, thanks for reaching out?to us. Currently, we don’t have any bulk?recalculate deposits for multiple orders option. You have to edit each order individually in our premium version. Thanks!
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Fixed amount in payment planHi, I appreciate your insightful advice. This feature is scheduled for our development queue. I hope this may be included in the upcoming update for the pro version. Thanks!
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Not workAs we haven’t heard back from you further, we assume that this issue has been resolved at your end and are considering this ticket as closed. Please don’t hesitate to get back to us if you require any further assistance or clarifications from our end in the future. Thanks!
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Automated subsequent paymentsThanks for contacting?our support. We will share future updates through the tickets that you created. Thanks!
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Automated subsequent paymentsHi, thanks for showing interest?in our Deposits plugin. We haven’t tested with?FortisPay. But we can help you with this. Can you please reach out to our Acowebs support forum or live chat support?provided on the Acowebs website. We need that plugin file for testing from our end. Thanks!
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Not workHello, we appreciate you taking a look at our Deposit plugin. Can you please provide screenshots of your plugin settings and the URL of your product page.
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Disable payment gatewaysHi, we apologize for the delayed response. You’ll be able to achieve?your requirements?by using a custom code. You can use the “woocommerce_available_payment_gateways” hook to check whether?the cart contains full payment and disable?a particular payment gateway. Hope you can create this from your end. If there is any custom code help, then you can use our Acowebs support forum or live chat support. Thanks!
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Set “Enable Deposit” defaultHi, you can achieve this by following the steps below. First, remove the deposit value from the plugin’s general settings. Then add deposit on the required product edit page tab. This will make the deposit option for only the product that you added and not for all products. Hope you can check.?
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] Need to add extra fixed amoutHi, you can modify and use the code snippet below in your theme functions.php file to add a fixed fee if the cart contains a deposit.?
add_action( 'woocommerce_cart_calculate_fees', 'acowebs_add_deposit_fee', 20, 1 );
function acowebs_add_deposit_fee( $cart ) {
? ?if ( is_admin() && ! defined( 'DOING_AJAX' ) ) return;
? ?$flag = 0;
if ($cart) {
foreach ($cart->get_cart_contents() as $cart_item_key => $cart_item) {
if( isset($cart_item['awcdp_deposit']) ){
$flag = 1;
}
}
}
if( $flag == 1 ) {
$total_fee = 50; ?// fee
$cart->add_fee( 'Deposit Charge', $total_fee ); ?// fee label
}
}
Hope you can change the additional fee and its label on your end. Please check and let us know your?feedback.Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] partial payments presalesI appreciate your endurance. After reviewing your complaint, we discovered that, according to support ticket #24055, our team has already been in contact with you. I hope we can quickly address your concerns with that ticket.
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] partial payments presalesHi, You can see the future payment date settings in our plugin’s advanced settings tab. Since you are a premium version user, we recommend you to use our live chat support provided on the Acowebs website or create a support ticket on our Acowebs support forum. This will give you priority support from our end. Thanks!
Forum: Plugins
In reply to: [Deposits & Partial Payments for WooCommerce] partial payments presalesHi, thanks for explaining in detail. In our plugin, you can set a fixed deposit from the product and checkout page. You can set a fixed date for the balance payment in the?pro version plugin. And have the option to set reminder emails from the pro version plugin. You can test all this in our pro-version demo. Hope you can check this from your?end.?