kristofferR
Forum Replies Created
-
I fixed it myself 😀
Paste this into the function.php file of the theme:
// Hide the "Expires" and "Downloads Remaining" columns from emails and My Account // My account function custom_remove_wc_account_expires_downloads_column($arr) { $arr = array( 'download-product' => __( 'Product', 'woocommerce' ), 'download-file' => __( 'Download', 'woocommerce' ), 'download-actions' => ' ', ); return $arr; } add_filter('woocommerce_account_downloads_columns', 'custom_remove_wc_account_expires_downloads_column'); // Email function custom_remove_wc_email_expires_downloads_column($arr) { $arr = array( 'download-product' => __( 'Product', 'woocommerce' ), 'download-file' => __( 'Download', 'woocommerce' ), ); return $arr; } add_filter('woocommerce_email_downloads_columns', 'custom_remove_wc_email_expires_downloads_column');Forum: Plugins
In reply to: [W3 Total Cache] Looking ahead to PHP 5.5… Zend Optimizer & the end of APCEh Frederick, seems you are a bit confused.
With the brand new PHP 5.5 branch, just released yesterday, Zend Optimizer+ is directly built in. This is pretty major, the first time an opcache has been a part of the core PHP package.
APC is actually discontinued (it will never support PHP 5.5), and will never be integrated into the PHP core. I think integrating APC was the plan years ago, but they decided to go with Zend Optimizer+ instead since it was open sourced and determined to be a much better choice.
I don’t know what went wrong with your benchmarks, but Zend Optimizer+ has been shown to consistently be a little bit faster than APC. The PHP developer team aren’t stupid, they chose Zend Optimizer+ for a reason.
https://wiki.php.net/rfc/optimizerplus
https://managewp.com/boost-wordpress-performance-zend-optimizer
http://halfelf.org/2013/trading-apc-for-zend/To not support PHP 5.5/Zend Optimizer+ in W3CT would be a really weird and stupid decision. Sure, web hosts are incredibly slow in updating to the newest PHP versions, but deliberately not supporting an official feature of PHP 5.5 that can dramatically boost the performance of those lucky enough to have it, seems weird.
Are you planning to add this now that the plugin has reached 1.0?
Yeah, this is vital for me too. I have no problems with English myself, but I unfortunately can’t install it for my Norwegian clients unless it can be localized into Norwegian. The localization is probably one of the main reasons why AIOSEO is so popular.