mrleemon
mrleemon
More info about this feature: https://developer.woocommerce.com/2021/08/12/brace-yourselves-new-product-filtering-by-attributes-is-coming/
In this case you should update the WP requirements in the plugin. The first version to ship jQuery 3.0 was WP 5.5.
Thanks!
Just a question. Why the plugin is looking for global .mo files in `WP_LANG_DIR . '/pmpro/'` or `WP_LANG_DIR . '/paid-memberships-pro/'`? WordPress downloads ALL plugins .mo files in `WP_LANG_DIR . '/plugins/'`...
You should review the function that picks the plugin's language .mo file, as in some instances it picks the shipped .mo file instead of giving precedence to the downloaded GlotPress...
In case anyone is interested I fixed my localization issues with the following code: ``` remove_action( 'init', 'pmpro_load_textdomain', 1 ); function custom_pmpro_load_textdomain() { load_plugin_textdomain( 'paid-memberships-pro' ); } add_action( 'init', 'custom_pmpro_load_textdomain'...
Is this plugin abandoned?
Three years since the last commit... It seems that Automattic never believed in the project from the start. In fact, I think that they don't understand why many people need...
I suppose that there is no talk about this topic here because right now there is no sane way to actually fit the product data metabox into the narrow sidebar...
I've found this very old issue on the Gutenberg repo: https://github.com/WordPress/gutenberg/issues/1684 But the discussion did not result in any significant advances in this area.