You cannot do it this way:
void ACharacter::Jump() {
jumpingDelay = true;
}
You have to override the method in ACharachterMovement
virtual void Jump() override;
Then in cpp:
void ACharachterMovement::Jump() {
Super::Jump();
jumpingDelay = true;
}