| 开发者 | prototipo88 |
|---|---|
| 更新时间 | 2026年7月11日 05:34 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 7.0 |
| 版权: | GPL-2.0-or-later |
| 版权网址: | 版权信息 |
riaco-product-addons-for-woocommerce folder to /wp-content/plugins/.Yes. WooCommerce 8.0 or later is required.
Select/Dropdown, Radio Buttons, and Checkbox Group fields each have a price field per option. All other field types support a single fixed price added when the field has any value (or when the True/False checkbox is checked).
Yes. Each Addon Group has three checkboxes: Show in cart & checkout, Show in admin order screen, and Include in order emails. These are set per group and copied to each order item at checkout time.
Yes. Addons apply to the base product and are stored with the cart item alongside the variation.
Not currently. The plugin hooks into woocommerce_before_add_to_cart_button, which is part of the classic single product template. The WooCommerce Blocks AddToCartWithOptions block is not yet supported.
Create a field of type File Upload, set the allowed extensions (e.g. jpg,png,pdf) and max file size. The upload happens before the customer clicks Add to Cart, and the file URL is stored in the cart item.
The plugin blocks direct HTTP access to its upload directories with .htaccess rules, which Apache honours but nginx ignores. On nginx, add a rule like this to your server block:
location ~* /wp-content/uploads/riaco-pa- { deny all; }