RAXO All-mode PRO

  • rodriqo
  • Avatar de rodriqo Autor do Tópico
  • Offline
  • JCB! Master
  • JCB! Master
Mais
11 anos 6 meses atrás #82500 por rodriqo
rodriqo created the topic: RAXO All-mode PRO
Boa noite,

Alguém aqui utiliza o RAXO All-mode PRO com a template "All Mode Portal"?

Estou tendo um problema com os links que abrem na "Home" e não em uma página "limpa"

Já tiveram esse problema? Solução?

allmode-portal.php
<?php
/*
 * ================================================================
   RAXO All-mode PRO J2.5 - Template
 * ----------------------------------------------------------------
 * @package		RAXO All-mode PRO
 * @subpackage	All-mode Portal Template
 * @copyright	Copyright (C) 2009-2012 RAXO Group
 * @license		Copyrighted Commercial Software
 * 				This file is forbidden for redistribution
 * @link		http://raxo.org
 * ================================================================
*/

// no direct access
defined('_JEXEC') or die;

// add CSS
JHtml::stylesheet('modules/mod_raxo_allmode/tmpl/allmode-portal/allmode-portal.css');

// add JS
JHtml::script('http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js');
JHtml::script('modules/mod_raxo_allmode/tmpl/allmode-portal/allmode-portal.js');
?>


<?php if ($toplist) { ?>
<div class="allmode_topbox">
<?php										// ALL-mode TOP Items Output
foreach ($toplist as $item) {
?>
	<?php if ($item->image) { ?>
	<div class="allmode_img"><?php echo $item->image; ?></div>
	<?php } ?>

	<div class="allmode_topitem">

		<?php if ($item->title) { ?>
		<h3 class="allmode_title"><a href="<?php echo $item->link; ?>"><?php echo $item->title; ?></a></h3>
		<?php } ?>

		<?php if ($item->date || $item->category || $item->author || $item->hits) { ?>
		<div class="allmode_details">
			<?php if ($item->date) { ?>
			<span class="allmode_date"><?php echo $item->date; ?></span>
			<?php } ?>
			<?php if ($item->category) { ?>
			<span class="allmode_category"><?php echo $item->category; ?></span>
			<?php } ?>
			<?php if ($item->author) { ?>
			<span class="allmode_author"><?php echo $item->author; ?></span>
			<?php } ?>
			<?php if ($item->hits) { ?>
			<span class="allmode_hits"><?php echo $item->hits; ?>&nbsp;Hits</span>
			<?php } ?>
		</div>
		<?php } ?>

		<?php if ($item->text) { ?>
		<div class="allmode_text">
			<?php echo $item->text; ?>
		</div>
			<?php if ($item->readmore) { ?>
			<div class="allmode_readmore"><?php echo $item->readmore; ?></div>
			<?php } ?>
		<?php } ?>

	</div>
	<div class="allmode_clear"></div>
<?php } ?>
</div>
<?php } ?>


<div id="allmode<?php echo $module->id; ?>" class="allmode_itemsbox">
<ul class="allmode_items">
<?php										// ALL-mode Items Output
foreach ($list as $item) {
?>
	<li class="allmode_item">
		<?php if ($item->image) { ?>
		<div class="allmode_img"><?php echo $item->image; ?></div>
		<?php } ?>

		<div class="allmode_right" <?php echo @$img_space; ?>>
			<?php if ($item->title) { ?>
			<h4 class="allmode_title"><a href="<?php echo $item->link; ?>"><?php echo $item->title; ?></a></h4>
			<?php } ?>

			<?php if ($item->date || $item->category || $item->author || $item->hits) { ?>
			<div class="allmode_details">
				<?php if ($item->date) { ?>
				<span class="allmode_date"><?php echo $item->date; ?></span>
				<?php } ?>
				<?php if ($item->category) { ?>
				<span class="allmode_category"><?php echo $item->category; ?></span>
				<?php } ?>
				<?php if ($item->author) { ?>
				<span class="allmode_author"><?php echo $item->author; ?></span>
				<?php } ?>
				<?php if ($item->hits) { ?>
				<span class="allmode_hits"><?php echo $item->hits; ?>&nbsp;Hits</span>
				<?php } ?>
			</div>
			<?php } ?>
		</div>
	</li>
<?php } ?>
</ul>
<?php if (count($list) > 5) { ?>
<div class="allmode_pagenav"></div>
<?php } ?>
</div>

<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($){
	$('#allmode<?php echo $module->id; ?>').pajinate({
		items_per_page : 5,
		nav_label_prev : 'PREV',
		nav_label_next : 'NEXT'
	});
});
</script>

O problema só ocorre nessa template.

Desde já, grato.

[b:2w54y43z]http://www.[color=#0000FF:2w54y43z]RODRIGOFARIASTS[/color:2w54y43z].com.br[/b:2w54y43z]

Please Entrar ou Registrar to join the conversation.