PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Plugin Not Allowing Checkout

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

Have used the plugin without issue for a year. Recently updated wordpress and the plugin itself to the latest versions, and now when it is enabled causes checkout to not function. Upon entering card information (along with all required information) when submit is pushed, it notifies that the following is required (and stops checkout from occurring).

Billing first name is a required field
Billing last name is a required field
Billing phone is a required field
Billing email address is a required field
Please use correct phone number

 

Please advise a fix.

Hello

This is a product filter, I doubt it has anything to do with my plugin

please  drop me  exact  link to  the  issue

What plugin version number are you using?

I am using version 2.2.5.4

It was the"in stock" filter I was using that caused this. What is the best way to only display products in stock using your plugin for results that wont break the checkout flow.

 

This is what I was using below:

 

add_filter('woof_get_request_data', 'my_woof_get_request_data');

function my_woof_get_request_data($data){
$data['stock']='instock';
return $data;
}

Hello

Paste your license key here - https://share.pluginus.net/image/i20210618130558.png -> https://share.pluginus.net/image/i20210618130614.png and  FTP+wp-admin access - https://share.pluginus.net/image/i20210618130637.png

 

Added some data requested. Can you point me in the right direction?

Hello

Try to limit the execution of this code. for example using the code:

is_page("your_page") or is _checkout();

An example:

function my_woof_get_request_data($data){

if(!is _checkout()){

$data['stock']='instock';

}
return $data;
}

But before that, just try this code.

add_filter('woof_get_request_data', 'my_woof_get_request_data');

function my_woof_get_request_data($data){
return $data;
}

Will the error appear?