-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Woocommerce Module Deprecated Function #686
Comments
Thanks! But... this change is very, very old!! They deprecated it in WC 3.0.0 if the version is correct in class-wc-deprecated-filter-hooks. According to their CHANGELOG this sends us back to... 2017! This surprises me since many people have used this meanwhile. Could this explain some of the current issues? Maybe! I'd need some WC users to help me find the related issues, for example looking through: https://github.com/qtranslate/qtranslate-xt/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+woocommerce I also found that I'm also pretty sure there are many filters that can be added to the module for better support but i can't really say what matters. Would be good to have more developers using WC involved. |
Deprecated in WC 3.0.0 (2017-04-04!) - woocommerce_get_product_attributes - woocommerce_order_tax_totals
Fixed in master. |
I found another deprecated filter: These 3 fixes are included in the last release of qT-XT version 3.6.1. |
Notice: Το woocommerce_get_product_attributes is deprecated.
You have to change line 69 in qwc-front.php
add_filter( 'woocommerce_get_product_attributes', 'qwc_get_product_attributes', 5 );
with
add_filter( 'woocommerce_product_get_attributes', 'qwc_get_product_attributes', 5 );
The text was updated successfully, but these errors were encountered: