Koen Poelhekke

Results 8 comments of Koen Poelhekke

Would love to see this merged, currently Woocommerce Analytics is partly broken because of this. 👀

I've managed to filter the acf oembed field and return the embed code instead: ```php add_filter('wpgraphql_acf_register_graphql_field', function ($return, $type_name, $field_name, $config) { $acf_field = $config['acf_field'] ?? null; $acf_type = $acf_field['type']...

@marklawlor what can be expected from `expo-router` regarding this issue? Is this really a bug or is this expected behavior? We have a pretty large app, and this behavior easily...

Thanks for your answer! 🙏 I'll start using the beta version and see if the problem(s) still exist. If so I'll see if I can make some time tomorrow or...

@marklawlor I've created an example repo of issues we're facing. I think most of them are related to this issue although I'm not sure if they are intended behavior or...

I've been able to track this down to these lines of code: ```php $model = $this->get_node_by_id( $id ); if ( true === $this->is_valid_model( $model ) ) { $nodes[ $id ]...

@kidunot89 here toggling that setting doesn't have any effect. The query: ```graphql query NewQuery { products(first: 48, where: {typeIn: [GROUPED]}) { edges { node { id name } } pageInfo...

I found the culprit: there seem to be some grouped products in our webshop that don't have simple products attached to them. Because of that they are not a valid...