Dear eddierio,
To get the Logout sending to the logout link which you set in the module back-end please just try as follow
Open the file of templatesja_community_plushtmlmod_jalogindefault.php,you would see this snap of code
[PHP] <?php if ($params->get(‘greeting’)) : ?>
<li><?php echo JText::sprintf( ‘HINAME’, $user->get(‘name’) ); ?><a href=”<?php echo JRoute::_(“index.php?option=com_users&task=user.logout&return=”.base64_encode(‘index.php’));?>” class=”logout-switch”>
<?php endif; ?>[/PHP]
Just change it to
[PHP] <?php if ($params->get(‘greeting’)) : ?>
<li><?php echo JText::sprintf( ‘HINAME’, $user->get(‘name’) ); ?><a href=”<?php echo JRoute::_(“index.php?option=com_users&task=user.logout&return=”.$return);?>” class=”logout-switch”>
<?php endif; ?>[/PHP]
That would help !