I've been searching everywhere and I can't find anything, but on the "thanks.php" page, it lists the price of the recurring membership which is different than what the user just paid. Is there any way to display the trial amount paid so that I can say "This is what you just paid, and this is what you'll pay monthly going forward"? I've tried looking at how the data is stored, and it appears to come through the data table as "Amount", but using {$config.currency|default:"$"}{$payment.data.Amount|string_format:"%.2f"} just returns $0.00. If I use $payment.amount then I get the recurring price not the trial price.
I figured out what I needed to do. Inside the foreach loop for the product, I needed to use {$config.currency|default:"$"}{$p.trial1_price} - however, this still doesn't help w/taxes and subtotals. How can I get taxes back from 1ShoppingCart? Is there anyway to integrate the address information from aweber so that my users don't have to type it in twice (again at 1SC?) Is there any way for the total tax to be returned from 1SC and stored appropriately in amember? Right now it just returns that they paid the extra amount in the product total.