How to call the base class function

Ive tried to find out information about how i can call the base class version of a function.

I have a blueprint class that implements an interface with a few important functions in it, i have another blueprint that inherits from that main blueprint and im overriding a function in the inheriting class but i need to be able to call the main classes version of the function and i cant seem to find how to do this.

If this is at all possible can someone point me into the right direction to do this?

Are you trying to call the base class version from within the extended BP or from outside both BPs?

If you want to call the parent function from child (from within the same function) right-click on the function entry node and select “Add Call To Parent Function”.

Thank you kindly, thats exactly what i was looking for.

I wanted to call it from within the extended bp.