Код: Выделить всё
$result = $stripe->checkout->sessions->create([
'mode' => 'subscription',
'line_items' => [
[
'price' => 'price_ddd',
'quantity' => 1,
],
[
'price' => 'price_eee',
'quantity' => 1,
],
[
'price' => 'price_fff',
'quantity' => 1,
],
],
'customer_email' => $useremail,
'subscription_data' => ['trial_period_days' => 14, 'trial_settings' => ['end_behavior' => ['missing_payment_method' => 'cancel']],],
'ui_mode' => 'embedded',
'payment_method_collection' => 'if_required',
'return_url' => site_url("billing/callback") . "?session_id={CHECKOUT_SESSION_ID}"
]);
< /p>
Мне нужен клиент, чтобы выбрать продукт из 3 продуктов. Это не предлагает вариант выбирать. Он показывает только 3 продукта.
Как позволить ему выбрать продукт?
Подробнее здесь: https://stackoverflow.com/questions/794 ... with-trial
Мобильная версия