I have managed to achieve this by doing the following:
pages => checkout:
<a href="<?php echo wp_login_url(pmpro_url("checkout", "?level=" . $pmpro_level->id)); ?>"><?php _e('Log in here', 'paid-memberships-pro' );?></a>
to
<a href="https://trakkpro.it/login"><?php _e('Log in here', 'paid-memberships-pro' );?></a>
shortcode => account:
<div class="pmpro_actionlinks">
<a href="<?php echo admin_url('profile.php')?>" id="pmpro_account-edit-profile"><?php _e("Edit Profile", 'paid-memberships-pro' );?></a>
<a href="<?php echo admin_url('profile.php')?>" id="pmpro_account-change-password"><?php _e('Change Password', 'paid-memberships-pro' );?></a>
</div>
to
<div class="pmpro_actionlinks">
<a href="https://trakkpro.it/edit-account" id="pmpro_account-edit-profile"><?php _e("Edit Profile", 'paid-memberships-pro' );?></a>
</div>
-
This reply was modified 8 years ago by e11i0t23.