| 开发者 | reagandev |
|---|---|
| 更新时间 | 2026年2月24日 10:16 |
| PHP版本: | 8.0 及以上 |
| WordPress版本: | 6.9 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
himuon-flex-cart folder to /wp-content/plugins/.No. The plugin is currently configured for hook/filter and template-based customization.
Yes, for WooCommerce All Products for Subscriptions integration points used by this plugin.
Yes, via filter:
add_filter( 'himuon_flex_cart_enable_coupon_list', '__return_false' );
Yes. Use himuon_flex_cart_free_shipping_threshold.
Disable free shipping progress:
add_filter( 'himuon_flex_cart_free_shipping_threshold', function () { return 0; } );
Set a custom minimum (example: 75):
add_filter( 'himuon_flex_cart_free_shipping_threshold', function () { return 75; } );
Use the himuon_flex_cart_header_text filter:
add_filter( 'himuon_flex_cart_header_text', function () { return __( 'My Cart', 'your-text-domain' ); } );
Yes. Add the himuon-side-cart-handler class to any element:
<button type="button" class="himuon-side-cart-handler">Open Cart</button>
Yes. Use this filter:
add_filter( 'himuon_flex_cart_show_mini_cart', '__return_false' );