| 开发者 | elvinhaci |
|---|---|
| 更新时间 | 2026年7月6日 15:19 |
| PHP版本: | 7.0 及以上 |
| WordPress版本: | 7.0.1 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
cartlink-generator plugin folder./wp-content/plugins/ on your server (or install the ZIP from Plugins → Add New → Upload Plugin).By default, the CartLink Generator menu is added as a top-level menu. To move it under the WooCommerce submenu, add the following code to your theme's functions.php file:
define( 'GUAVEN_CARTLINK_GENERATOR_SHOW_IN_SUBMENU', true );
Yes! To redirect customers to the Cart page after using a generated link, add this code to your theme's functions.php file:
define( 'CARTGENERATOR_REDIRECT_TO_CART_INSTEAD_OF_CHECKOUT', true );
By default, the plugin stores cart data in date-based folders using a file-based pseudo-transient system. If you prefer to use WordPress native transients, define the following constant in your theme's functions.php file:
define( 'GUAVEN_CARTLINK_GENERATOR_USE_REAL_TRANSIENTS', true );
By default, coupons are restricted for carts generated by the plugin. To enable coupon usage for these carts, define the following constant in your theme's functions.php file:
define( 'GUAVEN_CARTLINK_GENERATOR_ALLOW_COUPONS', true );
The plugin automatically deletes expired carts' data created by the plugin itself. This keeps storage lean and uncluttered.
Yes! To lock quantities for generated carts, add this code to your theme's functions.php file:
define( 'CARTGENERATOR_FORBID_QUANTITY_UPDATE', true );
Yes. Links are looked up by their stored identifier, so any link you have already shared continues to work after updating.
Yes — variable products and their variations can be added to a generated cart.
manage_woocommerce capability.define( X, false )).