Felipe Elia

Results 153 comments of Felipe Elia

Issue opened in Gutenberg: https://github.com/WordPress/gutenberg/issues/39285

@shmaltz are/were you seeing any JS errors in console by any chance?

Thanks @shmaltz. Is this publicly available somewhere we could give a look? The facet widget search does not trigger an ajax request, it simply shows/hides the terms already in the...

Got it, @shmaltz. ElasticPress will need one of [these two classes](https://github.com/10up/ElasticPress/blob/develop/assets/js/facets.js#L31) (`.widget_ep-facet` or `.wp-block-elasticpress-facet`) added to the widget wrapper, so it detects the presence of the input and know which...

Just tested this and `$path = apply_filters( 'ep_bulk_index_request_path', $index . '/_bulk?refresh=wait_for', $body, $type );` really fixes the problem.

@oscarssanchez did you test this if the last sync threw some errors? The following snippet will likely throw errors related to the field limits, if you need: ``` add_filter( 'ep_prepare_meta_data',...

Hey @nickchomey, Unfortunately, I'm unclear what you are trying to achieve with the msearch API. Do you mind explaining it a bit further? If you are trying to send the...

For users having this problem, the solution outlined in [this comment](https://github.com/10up/ElasticPress/issues/2999#issuecomment-1248213058) might help: --- You can stop ElasticPress from indexing on a taxonomy edit: ```php add_filter(` 'ep_skip_action_edited_term', '__return_true' ); ```...