如何获取购物车中的所有物品并通过联系表单7发送?

时间:2018-08-13 04:47:59

标签: javascript php wordpress forms simplecart

我正在尝试将SimpleCartJS与Wordpress集成在一起,以列出用户喜欢的帖子列表,并通过“联系表格7”通过电子邮件发送。帖子已正确添加并为空,删除,递增和递减均正常。我不需要结帐到PayPal,google等。我需要通过变量或类似方式通过电子邮件将这些记录发送给联系人表格7 ...

Simplecart可以通过POST或GET方法发送信息(在这种情况下),URL类似于以下内容:

URL

http://example.com/checkout/url?currency=USD&shipping=0&tax=0&taxRate=0&itemCount=3&item_name_1=NAMEPOST1&item_quantity_1=1&item_price_1=5&item_options_1=&item_name_2=NAMEPOST2&item_quantity_2=1&item_price_2=5&item_options_2=&item_name_3=NAMEPOST3&item_quantity_3=1&item_price_3=5&item_options_3=&return=success.html&cancel_return=cancel.html&cartid=12321321 

我了解可以使用“联系表单7-动态文本扩展”将变量发送到表单,但是如果添加40个帖子,则不可能,Simplecart为每个选定的帖子创建一个自动递增变量(请参见url): 例子

变量

item_name_1=
item_name_2=
item_name_3=
item_name_4=
etc

我需要获取所有帖子的标题并通过联系表格7发送。

问题是,如何将购物车的所有元素添加到变量中或发送变量?

有人可以帮我吗?

谢谢!

0 个答案:

没有答案