The who's online link isn't working it takes me to the site index, something in the $this->whosOnlineLink I would suppose, the output for the variable is /
Affecting 1.0.0 RC1 Phobos SVN 45
Oh this is for Joo!BB frontpage
*** FIX ***
Changed link in template from ...
*ROOT*\components\com_joobb\designs\templates\joobb\joobb_whosonlinebox.php (line 5) <div class="jbTextHeader"><a href="<?php echo $this->whosOnlineLink; ?>" class="jbTextHeader"><?php echo JText::_('BB_WHOSONLINE'); ?></a></div>
... to ...
<div class="jbTextHeader jbRight"><a href="<?php echo JoocmHelper::getLink('whosonline'); ?>" class="jbTextHeader"><strong><?php echo JText::_('BB_WHOSONLINE'); ?></strong></a></div>
... and run this sql ...
INSERT INTO `jos_joocm_links` (`id`, `name`, `com`, `url`, `function`, `published`, `checked_out`, `checked_out_time`) VALUES (10, 'Whos Online', 'com_joocm', '&view=whosonline', 'whosonline', 1, 0, '0000-00-00 00:00:00')
... you will need to change the table prefix from jos_ to the prefix you use for your Joomla installation.
Log in to post a comment.
Affecting 1.0.0 RC1 Phobos SVN 45
Oh this is for Joo!BB frontpage
*** FIX ***
Changed link in template from ...
*ROOT*\components\com_joobb\designs\templates\joobb\joobb_whosonlinebox.php (line 5)
<div class="jbTextHeader"><a href="<?php echo $this->whosOnlineLink; ?>" class="jbTextHeader"><?php echo JText::_('BB_WHOSONLINE'); ?></a></div>
... to ...
<div class="jbTextHeader jbRight"><a href="<?php echo JoocmHelper::getLink('whosonline'); ?>" class="jbTextHeader"><strong><?php echo JText::_('BB_WHOSONLINE'); ?></strong></a></div>
... and run this sql ...
INSERT INTO `jos_joocm_links` (`id`, `name`, `com`, `url`, `function`, `published`, `checked_out`, `checked_out_time`) VALUES
(10, 'Whos Online', 'com_joocm', '&view=whosonline', 'whosonline', 1, 0, '0000-00-00 00:00:00')
... you will need to change the table prefix from jos_ to the prefix you use for your Joomla installation.