Hello , The bank slip we are uploading during checkout through ‘Advance bank transfer offline method’ is not showing to admin on the orders page, why???
]]>when my client tries to upload a PDF file (Transfer invoice)
we have this error: Invalid File, please upload the correct file
not I can upload pdf files from media and from contact us
Hi
Once the file is uploaded after the order in admin under order details file doesn’t open
]]>Hello Ramesh, Great Work.. I have just noticed that if you uplaod an image with “spaces” in its title, it doesn’t upload them properly and they can’t be viewed on backend.
For example if user has uploaded an image titled “Bank Receipt”, it won’t be visible on backend. Whereas image titled “Bank-Receipt” will work just fine.
My suggestion is to either disallow images with spaces in their titles or make them work somehow.
Thank You
Hi, i’m getting deprecated errors & a few functions were called directly error in the log. I modified some parts of the code to the following in order to fix the error and deprecation issues. Maybe you could review & make some updates.
//fix error: access order properties directly
public function process_payment($order_id)
{
$order = wc_get_order($order_id);
// Mark as on-hold (we're awaiting the payment)
$order->set_status('on-hold');
$order->save();
$order->add_order_note(__('Awaiting offline payment', $this->domain));
// Reduce stock levels
wc_reduce_stock_levels($order_id);
// Remove cart
WC()->cart->empty_cart();
// Return thankyou redirect
return array(
'result' => 'success',
'redirect' => $this->get_return_url($order)
);
}
//fix error: payment_method called incorrectly
/**
* Add content to the WC emails.
*
*/
public function email_instructions($order, $sent_to_admin, $plain_text = false)
{
if ($this->instructions && !$sent_to_admin && $this->id === $order->get_payment_method() && 'on-hold' === $order->get_status()) {
echo wpautop(wptexturize($this->instructions)) . PHP_EOL;
}
}
thanks
]]>Dear developer, I like your plugin but it is not working in mobile app, ‘choose file’ button has no function. Also, it will be great to make it mobile responsive. Hope you can fix it soon.
Thanks & regards.
]]>El plugin contiene un error en el archivo common.js, que generar un llamado de API pagina 404.
Este problema pone a la pagina excesivamente lenta. de un rendimiento de 100% baja al 70%.
No se porque el plugin llama por API cuando el usuario esta fuera de la tienda, esto deberia resolverse inmediatamente.
jQuery(document).ready( function($) {
$(".bank_payment_receipt").change( function() {
var fd = new FormData();
fd.append('file', $('.bank_payment_receipt')[0].files[0]);
fd.append('action', 'invoice_response');
$.ajax({
type: 'POST',
url: the_ajax_script.ajaxurl,
data: fd,
contentType: false,
processData: false,
success: function(response){
console.log(response);
}
});
});
});
]]>
There are some errors showing in common.js javascript file URL. Appreciate if you can update the plugin and clear those small issues. Other than that everything is fine.
If you can add a option to show which type of file user can upload in frontend.
]]>Hi,
I like how the bank info is displayed on the checkout page, but for me the upload feature makes no sense, since the user needs to complete the checkout and receive the order number, and then use it for reference. So is there an easy way to remove the file upload from the checkout page?
]]>when image name has a space, url is encoding to %20 and shows 404 error. How to fix this?
]]>Hi there ,
I really like this plugin’s feature. But public user always meet issue: “Bank Payment Receipt is a required field.” warning and cannot continue to next step.
Please help…
]]>Hi, please check the screenshot. The plugin loading the javascript file using wrong url, returning 404 not found. Tested on checkout page, inspect using firefox.
https://snipboard.io/7grPjD.jpg
Thanks.
]]>Hi,
The idea of this plugin is cool. But whenever I clik “place order” button after selecting some image, I get “Bank Payment Receipt is a required field.” warning and cannot continue to next step.
Please help
note:
I am using plugin called cartflows and I think somehow it affect the checkout process