I am trying to remove the "with a XX day free trial" from my product, cart and checkout pages. I need to have the feature still work without having to express it in the product details.
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
It is possible using the filter hook
'woocommerce_subscriptions_product_price_string'
for this hooked function, this way:Code goes in function.php file of your active child theme (or theme).
Tested and works.