Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
试图弄清楚是否有一个扩展允许在Shopp plugin for wordpress中为数字插件选择多个文件。
我们有一份想要按季节销售的 mp3(播客剧集)目录,我们还希望以“大包装”的形式出售这些季节,如果您全部购买,它们会更便宜。我们将上传一个包含所有季节的单个 zip 文件,但这将是大约 30gb。
目前,Shopp 中的附加组件功能非常接近我们想要的,但它需要用户选择选项,而不是默认启用它们。
任何帮助,将不胜感激。
您可以在主题的 functions.php 中添加一个函数,以便在将产品添加到购物车时自动选择附加组件。然后将该函数添加到 add-to-cart 挂钩。
add_action('shopp_cart_add_item', 'my_function'); function my_function ( $Item ) { // do stuff }