Support

Account

Home Forums Front-end Issues acf value from cpt not showing on category.php Reply To: acf value from cpt not showing on category.php

  • The problem is that you are filtering queries with that filter that you do not want to query.

    
    if (!$query->is_main_query()) {
      return;
    }
    

    you may also need to test for other things.