我知道这不是一个正确的问题,但我不知道该去哪里,火箭论坛不会接受客人:| 我已经按照有关如何添加弹出登录的教程进行操作,除了单击登录按钮时一切正常,然后什么也没有发生,它只在 URL 上显示一个“#”,login.php 包含以下语法代码:href= “#”我可能遗漏了一些东西,但我不知道是什么?
代码 login.php
<?php
defined('JPATH_BASE') or die();
gantry_import('core.gantryfeature');
class GantryFeatureLogin extends GantryFeature {
var $_feature_name = 'login';
function render($position="") {
ob_start();
$user =& JFactory::getUser();
?>
<div class="rt-block">
<div class="rt-popupmodule-button">
<?php if ($user->guest) : ?>
<a href="#" class="buttontext button" rel="rokbox[355 385][module=rt-popuplogin]">
<span class="desc"><?php echo $this->get('text'); ?></span>
</a>
<?php else : ?>
<a href="#" class="buttontext button" rel="rokbox[355 385][module=rt-popuplogin]">
<span class="desc"><?php echo $this->get('logouttext'); ?> <?php echo JText::sprintf($user->get('username')); ?></span>
</a>
<?php endif; ?>
</div>
</div>
<?php
return ob_get_clean();
}
}
<?php
文档: http: //gantry-framework.org/documentation/joomla/tutorials/creating_popup_login.md