Hi jamjodesign
If i correctly understood your question , you want that the sign up button on this page https://www.teamstory.co/en/dashboard/registration should redirect users to the easysocial registration form and not to joomla core registration
If you want this then create an override for your mod_login from backend then edit in /html/mod_login/default.php
find :
[$usersConfig = JComponentHelper::getParams('com_users'); ?>
<ul class="unstyled">
<?php if ($usersConfig->get('allowUserRegistration')) : ?>
<li>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=registration'); ?>">
<?php echo JText::_('MOD_LOGIN_REGISTER'); ?> <span class="icon-arrow-right"></span></a>
</li>
<?php endif; ?>]
and change the url for registration as follow
<?php if ($usersConfig->get('allowUserRegistration')) : ?>
<li>
<a href="<?php echo JRoute::_('/en/dashboard/registration'); ?>">
<?php echo JText::_('MOD_LOGIN_REGISTER'); ?> <span class="icon-arrow-right"></span></a>
</li>
<?php endif; ?>
Hope it helps