drupal 首先订阅或在 paypal 中购买,然后成为网站此类模块的会员!
我的客户有一个我无法理解的要求,不知道如何实现它。他有一个页面,其中有两个订阅和一个立即购买产品。两项订阅中,一项是定期订阅,另一项不是定期订阅。他希望用户先付款,然后自动成为该网站的会员。这怎么可能?有什么想法吗?
My client has a requirement which I am not able to understand as to how to fulfill it. He has a page where there are two subscriptions and one buy now product. Out of two subscriptions one is recurring and other one is not. He wants the users to pay first and then automatically become member of the site. How is that possible? Any Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 drupal commerce 启用特定操作的行为:drupal.org/project/commerce
然后使用角色订阅模块进行扩展,该模块使您能够授予结账等行为的角色:http://drupal.org/项目/role_subscription
对于重复付款,我将在其他两个模块之上使用商业订阅模块: http://drupal.org/project /commerce_subscription
电子商务的设置可能有点棘手,因此还要查看 drupalcommerce.org/ 上的文档以及我上面列出的项目页面。
You can enable behavior on specific actions using drupal commerce: drupal.org/project/commerce
Then extend that with the role subscription module that enables you to grant roles on behaviors like checkout: http://drupal.org/project/role_subscription
For the reoccurring payments I would use the commerce subscription module on top of the other two: http://drupal.org/project/commerce_subscription
E-commerce can be a bit tricky to set up so also check out the documentation on drupalcommerce.org/ and the project pages I listed above.