Jason Judge
Jason Judge
Should it be `custom_meta` rather than `meta`? I left `meta` free for core WC use.
Sorry, I'm getting the dreaded "Consumer Secret is invalid" message on my instance, after some server upgrades, and run out of time trying to work around that problem. Can you...
Give me a day or two to get it working at my end. I do need a working system if I'm going to be able to do anything useful here.
Use the new v2 REST API (WC 3.x) instead of this plugin. It now does everything this plugin does out of the box. The README gives some examples of how...
Core Laravel flash messages can be kept alive for another page using this method: ``` $request->session()->reflash(); // or $request->session()->keep(['username', 'email']); ``` So something like `Notification::reflash()` would be the kind of...
So if I understand how this package works, the notifications are put into the `notifications` (by default) session key. The middleware pulls these notifications out of this session key, and...
On a kind of very similar vein, I am finding the notification messages are getting lost on a browser redirect. In an iframe, I am handling 3D Secure. On success...
Maybe it shouldn't extend `AbstractRequest` to fix that confusion? It is only there to provide the ability to set parameters (security key to check the signature, which is a bit...
You would think that, wouldn't you :-) However, the notification request is a *Server* request, it's an incoming request, a notification or a webhook from the gateway, the opposite way...
Referencing an earlier discussion on this: https://github.com/thephpleague/omnipay-common/issues/149 I would like to keep it open until there is a common way forward.