Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • hellekim Friend
    #139330

    Hi all,

    it seems that the support can’t solve this so perhaps some of you have had a similar issue and know how to sort it out.

    My frontpage shows this strange piece of code, when I got menu type set as front page blog layout:

    <div id="ja-current-content">
    <table class="blog" cellpadding="0" cellspacing="0">

    </table>

    My site is at http://www.gponline.fi

    My parameters are set to 0,0,0,0

    I really want to get rid of that piece of code!

    Thanks!

    Anonymous Moderator
    #297413

    Dear hellekim,

    This cause is from componentscom_contentviewsfrontpagetmpldefault.php file.
    To hide this code, you must change this file.
    Please try to change default.php with my code:

    <?php // no direct access
    defined('_JEXEC') or die('Restricted access'); ?>
    <?php if ($this->params->get('show_page_title', 1)) : ?>
    <div class="componentheading<?php echo $this->params->get('pageclass_sfx') ?>">
    <?php echo $this->escape($this->params->get('page_title')); ?>
    </div>
    <?php endif; ?>
    <?php if ($this->params->def('num_leading_articles', 1) || $this->params->get('num_intro_articles', 4)) { ?>
    <table class="blog<?php echo $this->params->get('pageclass_sfx') ?>" cellpadding="0" cellspacing="0">
    <?php if ($this->params->def('num_leading_articles', 1)) : ?>
    <tr>
    <td valign="top">
    <?php for ($i = $this->pagination->limitstart; $i < ($this->pagination->limitstart + $this->params->get('num_leading_articles')); $i++) : ?>
    <?php if ($i >= $this->total) : break; endif; ?>
    <div>
    <?php
    $this->item =& $this->getItem($i, $this->params);
    echo $this->loadTemplate('item');
    ?>
    </div>
    <?php endfor; ?>
    </td>
    </tr>
    <?php else : $i = $this->pagination->limitstart; endif; ?>

    <?php
    $startIntroArticles = $this->pagination->limitstart + $this->params->get('num_leading_articles');
    $numIntroArticles = $startIntroArticles + $this->params->get('num_intro_articles', 4);
    if (($numIntroArticles != $startIntroArticles) && ($i < $this->total)) : ?>
    <tr>
    <td valign="top">
    <table width="100%" cellpadding="0" cellspacing="0">
    <tr>
    <?php
    $divider = '';
    if ($this->params->def('multi_column_order',1)) : // order across as before
    for ($z = 0; $z < $this->params->def('num_columns', 2); $z ++) :
    if ($z > 0) : $divider = " column_separator"; endif; ?>
    <?php
    $rows = (int) ($this->params->get('num_intro_articles', 4) / $this->params->get('num_columns'));
    $cols = ($this->params->get('num_intro_articles', 4) % $this->params->get('num_columns'));
    ?>
    <td valign="top" width="<?php echo intval(100 / $this->params->get('num_columns')) ?>%" class="article_column<?php echo $divider ?>">
    <?php
    $loop = (($z < $cols)?1:0) + $rows;

    for ($y = 0; $y < $loop; $y ++) :
    $target = $i + ($y * $this->params->get('num_columns')) + $z;
    if ($target < $this->total && $target < ($numIntroArticles)) :
    $this->item =& $this->getItem($target, $this->params);
    echo $this->loadTemplate('item');
    endif;
    endfor;
    ?></td>
    <?php endfor;
    $i = $i + $this->params->get('num_intro_articles') ;
    else : // otherwise, order down columns, like old category blog
    for ($z = 0; $z < $this->params->get('num_columns'); $z ++) :
    if ($z > 0) : $divider = " column_separator"; endif; ?>
    <td valign="top" width="<?php echo intval(100 / $this->params->get('num_columns')) ?>%" class="article_column<?php echo $divider ?>">
    <?php for ($y = 0; $y < ($this->params->get('num_intro_articles') / $this->params->get('num_columns')); $y ++) :
    if ($i < $this->total && $i < ($numIntroArticles)) :
    $this->item =& $this->getItem($i, $this->params);
    echo $this->loadTemplate('item');
    $i ++;
    endif;
    endfor; ?>
    </td>
    <?php endfor;
    endif;?>
    </tr>
    </table>
    </td>
    </tr>
    <?php endif; ?>
    <?php if ($this->params->def('num_links', 4) && ($i < $this->total)) : ?>
    <tr>
    <td valign="top">
    <div class="blog_more<?php echo $this->params->get('pageclass_sfx') ?>">
    <?php
    $this->links = array_splice($this->items, $i - $this->pagination->limitstart);
    echo $this->loadTemplate('links');
    ?>
    </div>
    </td>
    </tr>
    <?php endif; ?>

    <?php if ($this->params->def('show_pagination', 2) == 1 || ($this->params->get('show_pagination') == 2 && $this->pagination->get('pages.total') > 1)) : ?>
    <tr>
    <td valign="top" align="center">
    <?php echo $this->pagination->getPagesLinks(); ?>
    <br /><br />
    </td>
    </tr>
    <?php if ($this->params->def('show_pagination_results', 1)) : ?>
    <tr>
    <td valign="top" align="center">
    <?php echo $this->pagination->getPagesCounter(); ?>
    </td>
    </tr>
    <?php endif; ?>
    <?php endif; ?>
    </table>

    <?php
    }
    ?>

    Hope it helps.

    hellekim Friend
    #300508

    This sorted it out – thanks!

Viewing 3 posts - 1 through 3 (of 3 total)

This topic contains 3 replies, has 2 voices, and was last updated by  hellekim 15 years, 7 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum