Hey @tboy123 thanks for the message!
We do have a shortcode [acfw_customer_store_credit_balance] which will show the balance of the user’s store credit.
Are you creating your own page or wanting to load the store credit my account endpoint page we normally add?
It might be possible to just point your custom page there at the endpoint file. We call it in Models/Store_Credits/My_Account.php via this hook:
add_action('woocommerce_account_' . $this->_get_store_credits_endpoint() . '_endpoint', array($this, 'display_store_credits_my_account_markup'));
This then calls:
Not sure if you are a dev or have access to a dev but they could write a custom function to call the same function we do to display the content of this page.
That said, I’ll raise up a ticket to create a shortcode for displaying this content to make it easier for folks like yourself ??
I hope this helps give you a few ideas to follow up on!