Okay, I will try to explain this as simply as possible. I have a form that collects data and then has a large amount of logic applied to it. The resulting information needs to be output back to the user so they can copy/paste, download, etc. This is not a problem and works fine...
However, this information is a paid product, so I am using Snipcart and a 'Buy Now' button to allow the user to process their card in hopes of delivering the output for them afterwards (same as above, only with an extra step for the order).
The problem occurs when binding the event for Snipcart's order.complete to a redirect in javascript/jquery. As soon as the event fires, the $POST data is lost and my results will not render. I have tried a number of different ways to get this to work, but end up with the results, minus the data or nothing at all depending on my methodology.
Anyone know how I can store the information from $POST and re-render the form results (which is basically a modified 'forms/data.html.twig' template) AFTER the sale completes?