我使用Caldera Forms插件创建了一个表单。
提交后,我希望它重定向到另一个页面。
我已经设置了重定向处理器,如下面的屏幕截图所示:
但是,当我提交表单时,我会重定向到当前页面,并在最后添加一个参数。
即。 $order = $pf->post('orders',
[
'items' => [
[
'variant_id' => $item_data['variation_id'],// Small poster
'name' => $item_data['name'], // Display name
'retail_price' => $order_details['_order_total'][0], // Retail price for packing slip
'quantity' => $item_data['qty'],
'files' => [
[
'url' => 'http://example.com/files/posters/poster_1.jpg',
],
],
],
],
]
);
如何重定向到其他页面?
答案 0 :(得分:-1)
I was facing same issue, but just use absolution URL like /?page_id=16
mean don't use http://example.com (dont use domain name, just use the Page with "/")
so it could be /thank-you or /page_id=16