Support

Account

Home Forums ACF PRO ACF Pro & wpdatatables Reply To: ACF Pro & wpdatatables

  • You would need to talk to support for the other plugin and see if they provide any way to filter what is shown. It appears that they do provide filters and action hooks https://wpdatatables.com/documentation/information-for-developers/filters/

    If they do not then you need to store the data differently for what the other plugin needs. This can be done by adding an acf/save_post action. In this action you get the ACF field values and store them in a standard WP custom meta field, using a different field name, so that they other plugin can use it. I explain the basics of doing this here https://acfextras.com/dont-query-repeaters/. This specifically references repeaters, but the same thing can be done with any ACF field type that does not store values in the standard WP way.

    The first option would likely be easier.