$requirement ) { // Skip item if( ! gamipress_frm_check_if_meets_requirements( $requirement->ID, $trigger, $args ) ) { continue; } // Keep the requirement on the list of requirements to check by the awards engine $new_requirements[] = $requirement; } return $new_requirements; } add_filter( 'gamipress_get_triggered_requirements', 'gamipress_frm_filter_triggered_requirements', 20, 5 ); /** * Checks if an user is allowed to work on a given requirement related to a minimum of score * * @since 1.0.0 * * @param bool $return The default return value * @param int $user_id The given user's ID * @param int $requirement_id The given requirement's post ID * @param string $trigger The trigger triggered * @param int $site_id The site id * @param array $args Arguments of this trigger * * @return bool True if user has access to the requirement, false otherwise */ function gamipress_frm_user_has_access_to_achievement( $return = false, $user_id = 0, $requirement_id = 0, $trigger = '', $site_id = 0, $args = array() ) { // If we're not working with a requirement, bail here if ( ! in_array( get_post_type( $requirement_id ), gamipress_get_requirement_types_slugs() ) ) return $return; // Check if user has access to the achievement ($return will be false if user has exceed the limit or achievement is not published yet) if( ! $return ) return $return; // Send back our eligibility return gamipress_frm_check_if_meets_requirements( $requirement_id, $trigger, $args ); } add_filter( 'user_has_access_to_achievement', 'gamipress_frm_user_has_access_to_achievement', 10, 6 );