Nic
Nic
Seems to be fixed by PR https://github.com/woocommerce/woocommerce/pull/34054 See also this issue: https://github.com/woocommerce/woocommerce/issues/34048
Hi @jorgemd24 > Are you getting this error when creating new products with variations? This is not clear. We have a screenshot from the merchant showing a test product with...
Hi @jorgemd24 I've confirmed the presence of the scheduled action. The product variation SKUs contained backslashes, probably introduced by a spreadsheet. This is the only noticeable difference between successful and...
@barryhughes p1669233141903949-slack-C7U3Y3VMY
8392230-zd-a8c
@marcperel There is a filter that can be used in this circumstance. Not ideal, but `woocommerce_gateway_payfast_is_valid_ip` can be used to return true if the originating IP is being obscured. While...
Hi @shady786 I'm not sure that it can be regarded as a true bug, although the developers might want to chime in here. Update calls from PayFast are checked against...
The filter is used as follows and can be deployed in your functions.php or using Code Snippets. ``` add_filter( 'woocommerce_gateway_payfast_is_valid_ip', '__return_true' ); ```