Is there any way to remove the userid from the profile URL without enabling the permalink option during signup? Or perhaps enabling but hiding it?
The full profile is not visible publicly, but the mini profile is. Here's an example: https://coinist.co/profile/870-test-user
<?php echo $this->loadTemplate( 'site/profile/mini.header' , array( 'user' => $user ) ); ?>
<?php echo (JFactory::getUser()->guest) ? '' : $this->loadTemplate( 'site/profile/mini.header' , array( 'user' => $user ) ); ?>