• Since the latest update (2.4), if I re-index via the plugin in the wp admin, I get zero results with my query.
    This used to give results (with previous version).

    The indices show the same amount of results but it looks like the mapping may have changed or something?
    I did a rollback to the previous version, re-indexed again, and it works.

    Any idea what’s going on?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi, same problem here too. I suspect removing post_meta, so I did rename it to meta only, but it didn’t show any results either. So I downgraded plugin and it’s working again.

    Thread Starter roelheerspink

    (@roelheerspink)

    Any news?

    Thread Starter roelheerspink

    (@roelheerspink)

    From what I understand is that the post_meta key has been removed from mapping.
    So instead of post_meta.field you should use meta.field.value (or raw etc.)

    I had to change a lot in my scripts. So not too nice but fixable.

    Hi,
    I finally found out why it’s not working for me.
    Aside of the post_meta was renamed to meta, I had to change code with array_merge of previous metas to have new metas to use EP_API::factory()->prepare_meta_types( $new_metas ). (This is what roelheersping was saying, changing post_meta.field to meta.field.value, the prepare_meta_types does that). Also I was using assignment of new values as $new_metas[‘meta_key’] = array($value); but according to code existing in plugin it should be $new_metas[‘meta_key’][] = $value; It shouldn’t matter I think, but it did for some reason. Also I used filter ep_post_sync_args_post_prepare_meta instead of ep_post_sync_args_post. All that and it’s working for me again.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘No query results since 2.4’ is closed to new replies.