douglasjohnson
Forum Replies Created
-
Forum: Plugins
In reply to: [TaxJar - Sales Tax Automation for WooCommerce] Ready for HPOS?I would also like to use High Performance Order Storage and continue to use TaxJar.
I would also like to use High Performance Order Storage and continue to use Printful.
Forum: Plugins
In reply to: [Printful Integration for WooCommerce] error woocommerce 7.8.1https://github.com/woocommerce/woocommerce/issues/38996
https://github.com/woocommerce/woocommerce/pull/39030According to this issue and pull request, this bug was introduced in WooCommerce 7.8.1 and is resolved in 7.8.2
Yes it does. Thanks!
Unfortunately this did not solve the issue for me. I updated to the
3.7.8-beta.1
release on my development site. The deploy cleared the logs and the warnings started again.I see this line was updated:
cocart_deprecated_filter( 'cocart_cart_schema', $schema['properties'], '3.1.0', 'cocart_cart_items_schema', __( 'Changed for the purpose of not overriding default properties.', 'cart-rest-api-for-woocommerce' ) );
The array index 0 still doesn’t exist in
$schema['properties']
According to the docs,
apply_filters_deprecated
expects to receive an array of arguments that would normally be passed to a filter function. So I thinkarray( $schema['properties'] )
would do the trick.https://developer.www.ads-software.com/reference/functions/apply_filters_deprecated/
Here’s an example from WordPress core:
https://core.trac.www.ads-software.com/browser/tags/6.0.3/src/wp-includes/block-editor.php#L99It’s not happening after a specific user action. Based on the stack trace it seems to be triggered by WooCommerce’s CLI task runner.
So I think this is happenning when the WP_CLI is intialized and
WC_CLI_Runner::after_wp_load
runs.Forum: Alpha/Beta/RC
In reply to: 6.0-RC4: layout for row block is always align-items: centerHere are the screenshots
In the editor, I can select “Align top” and it is reflected in the content.
https://drive.google.com/file/d/1NrBXKAWewlmrPb-zt-A1qYAtYnMcTVKT/viewBut on the front-end, align-items:center is still applied.
https://drive.google.com/file/d/194swMnus5-xOnMkEBmjFW0E2rZ3Xbj8i/viewForum: Alpha/Beta/RC
In reply to: 6.0-RC4: layout for row block is always align-items: centerI’m refering to
"verticalAlignment":"top"
rather than"orientation":"vertical"
<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top"}} --> <div class="wp-block-group"><!-- wp:paragraph --> <p>Row Item One Row Item One Row Item One Row Item One Row Item One Row Item One</p> <!-- /wp:paragraph --> <!-- wp:image {"id":50,"sizeSlug":"full","linkDestination":"none"} --> <figure class="wp-block-image size-full"><img src="https://dev.local/wp-content/uploads/2019/01/beanie-with-logo-1.jpg" alt="" class="wp-image-50"/></figure> <!-- /wp:image --></div> <!-- /wp:group -->
I am not able to include a screenshot in this comment.
Forum: Plugins
In reply to: [Edit Flow] Suggestion : Filter for default User GroupsThank you very much for the response, but maybe I should have given a better explanation of the scenario.
When adding a new post, I would like to set a specific user group to be notified by default. In this situation we have contributors who are submitting drafts and we’d like a specific group of editors to be by default.
Thanks,
Doug