Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • hoknight Friend
    #208030

    Hi,

    Can you help to check why the Create Date & Timestamp didn’t show when the function has been enabled?
    Module ID: 147

    Thanks,
    Johnny


    1. ScreenShot736
    2. ScreenShot735
    jooservices Friend
    #575882

    Hi there
    Please update your access information. I can’t login for inspecting.
    You can check into layout file if there is any create date field around.

    Thank you,
    Viet Vu

    hoknight Friend
    #575883

    Sorry,Please try again

    jooservices Friend
    #575885

    Hi there
    Please check-out at your side.
    <blockquote>Check-out failed with the following error: The user checking out does not match the user who checked out the item.
    You are not permitted to use that link to directly access that page (#147).</blockquote>

    Thank you,
    Viet Vu

    hoknight Friend
    #575887

    All links error?
    But I can see all the links working fine.

    jooservices Friend
    #576379

    Hi there
    # No. I mean your backend in checked-out. And your provided account does not have permission to check-in.
    # Please upgrade account Super Administrator for inspecting.

    Thank you,
    Viet Vu

    jooservices Friend
    #642700

    Hi there
    # No. I mean your backend in checked-out. And your provided account does not have permission to check-in.
    # Please upgrade account Super Administrator for inspecting.

    Thank you,
    Viet Vu

    jooservices Friend
    #741357

    Hi there
    # No. I mean your backend in checked-out. And your provided account does not have permission to check-in.
    # Please upgrade account Super Administrator for inspecting.

    Thank you,
    Viet Vu

    hoknight Friend
    #576383

    OK. Checked-in already.Please try again.

    hoknight Friend
    #642704

    OK. Checked-in already.Please try again.

    hoknight Friend
    #741361

    OK. Checked-in already.Please try again.

    jooservices Friend
    #576426

    Hi there
    Please provide CPanel / FTP access. I need your check code.

    Thank you,
    Viet Vu

    jooservices Friend
    #576598

    Hi there
    I have done. Please check it at your side.
    You have wrong configuration.

    <?php
    foreach ($rows as $i=>$row){
    if($i>=$introitems) break;
    ?>

    <div class="ja-zincontent clearfix">
    <h4 class="ja-zintitle">
    <a href="<?php echo $row->link;?>" title="<?php echo strip_tags($row->title);?>"><?php echo $row->title;?></a>
    </h4>

    <?php if ( $showcreator || $showdate ) : ?>
    <div class="ja-zinmeta clearfix">
    <?php if ($showdate) : ?>
    <span class="createdate">
    <?php echo $row->created?>
    <?php if ($showcreator) : ?>  |  <?php endif; ?>
    </span>
    <?php endif; ?>
    <?php if ($showcreator) : ?>
    <span class="createby"><?php if(isset($row->author)) echo $row->author;?></span>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <?php if($showimage) echo $row->image; ?>

    <?php
    if($maxchars > strlen($row->introtext1)) {
    echo $row->introtext;
    } else {
    echo $row->introtext1;
    }
    ?>
    <?php if ($showreadmore) : ?>
    <p class="readmore">
    <a href="<?php echo $row->link; ?>" title="<?php echo JTEXT::_('JANEWSPRO_READ_MORE');?>">
    <span><?php echo JTEXT::_('JANEWSPRO_READ_MORE');?></span>
    </a>
    </p>
    <?php endif; ?>
    </div>
    <?php unset($rows[$i])?>
    <?php }?>

    and

    <?php if($rows){?>
    <div class="ja-zinlinks clearfix">
    <!--<strong><?php echo JTEXT::_('MORE')?></strong> -->
    <ul class="jazin-links">
    <?php foreach ($rows as $row){?>
    <?php
    $introtext = "";
    if(strlen(strip_tags($row->introtext))>300){
    $intro_process = strip_tags($row->introtext);
    $intro_process = substr($intro_process, 0, 300);
    $last_space = strrpos($intro_process, ' ');
    $introtext = substr($intro_process, 0, $last_space).'...';
    }else{
    $introtext = $row->introtext;
    }
    ?>
    <li>
    <span <?php if($showtooltip){?> class="editlinktip jahasTip" title="<?php echo trim(strip_tags($row->title), '"'); ?>::<?php echo htmlspecialchars($row->image.$introtext); ?>"<?php }?>>
    <a href="<?php echo $row->link; ?>">
    <?php echo $row->title; ?>
    </a>
    </span>
    </li>
    <?php }?>
    </ul>
    </div>
    <?php }?>

    are different part. You are using last block

    Thank you,
    Viet Vu

    jooservices Friend
    #642911

    Hi there
    I have done. Please check it at your side.
    You have wrong configuration.

    <?php
    foreach ($rows as $i=>$row){
    if($i>=$introitems) break;
    ?>

    <div class="ja-zincontent clearfix">
    <h4 class="ja-zintitle">
    <a href="<?php echo $row->link;?>" title="<?php echo strip_tags($row->title);?>"><?php echo $row->title;?></a>
    </h4>

    <?php if ( $showcreator || $showdate ) : ?>
    <div class="ja-zinmeta clearfix">
    <?php if ($showdate) : ?>
    <span class="createdate">
    <?php echo $row->created?>
    <?php if ($showcreator) : ?>  |  <?php endif; ?>
    </span>
    <?php endif; ?>
    <?php if ($showcreator) : ?>
    <span class="createby"><?php if(isset($row->author)) echo $row->author;?></span>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <?php if($showimage) echo $row->image; ?>

    <?php
    if($maxchars > strlen($row->introtext1)) {
    echo $row->introtext;
    } else {
    echo $row->introtext1;
    }
    ?>
    <?php if ($showreadmore) : ?>
    <p class="readmore">
    <a href="<?php echo $row->link; ?>" title="<?php echo JTEXT::_('JANEWSPRO_READ_MORE');?>">
    <span><?php echo JTEXT::_('JANEWSPRO_READ_MORE');?></span>
    </a>
    </p>
    <?php endif; ?>
    </div>
    <?php unset($rows[$i])?>
    <?php }?>

    and

    <?php if($rows){?>
    <div class="ja-zinlinks clearfix">
    <!--<strong><?php echo JTEXT::_('MORE')?></strong> -->
    <ul class="jazin-links">
    <?php foreach ($rows as $row){?>
    <?php
    $introtext = "";
    if(strlen(strip_tags($row->introtext))>300){
    $intro_process = strip_tags($row->introtext);
    $intro_process = substr($intro_process, 0, 300);
    $last_space = strrpos($intro_process, ' ');
    $introtext = substr($intro_process, 0, $last_space).'...';
    }else{
    $introtext = $row->introtext;
    }
    ?>
    <li>
    <span <?php if($showtooltip){?> class="editlinktip jahasTip" title="<?php echo trim(strip_tags($row->title), '"'); ?>::<?php echo htmlspecialchars($row->image.$introtext); ?>"<?php }?>>
    <a href="<?php echo $row->link; ?>">
    <?php echo $row->title; ?>
    </a>
    </span>
    </li>
    <?php }?>
    </ul>
    </div>
    <?php }?>

    are different part. You are using last block

    Thank you,
    Viet Vu

    jooservices Friend
    #741568

    Hi there
    I have done. Please check it at your side.
    You have wrong configuration.

    <?php
    foreach ($rows as $i=>$row){
    if($i>=$introitems) break;
    ?>

    <div class="ja-zincontent clearfix">
    <h4 class="ja-zintitle">
    <a href="<?php echo $row->link;?>" title="<?php echo strip_tags($row->title);?>"><?php echo $row->title;?></a>
    </h4>

    <?php if ( $showcreator || $showdate ) : ?>
    <div class="ja-zinmeta clearfix">
    <?php if ($showdate) : ?>
    <span class="createdate">
    <?php echo $row->created?>
    <?php if ($showcreator) : ?>  |  <?php endif; ?>
    </span>
    <?php endif; ?>
    <?php if ($showcreator) : ?>
    <span class="createby"><?php if(isset($row->author)) echo $row->author;?></span>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <?php if($showimage) echo $row->image; ?>

    <?php
    if($maxchars > strlen($row->introtext1)) {
    echo $row->introtext;
    } else {
    echo $row->introtext1;
    }
    ?>
    <?php if ($showreadmore) : ?>
    <p class="readmore">
    <a href="<?php echo $row->link; ?>" title="<?php echo JTEXT::_('JANEWSPRO_READ_MORE');?>">
    <span><?php echo JTEXT::_('JANEWSPRO_READ_MORE');?></span>
    </a>
    </p>
    <?php endif; ?>
    </div>
    <?php unset($rows[$i])?>
    <?php }?>

    and

    <?php if($rows){?>
    <div class="ja-zinlinks clearfix">
    <!--<strong><?php echo JTEXT::_('MORE')?></strong> -->
    <ul class="jazin-links">
    <?php foreach ($rows as $row){?>
    <?php
    $introtext = "";
    if(strlen(strip_tags($row->introtext))>300){
    $intro_process = strip_tags($row->introtext);
    $intro_process = substr($intro_process, 0, 300);
    $last_space = strrpos($intro_process, ' ');
    $introtext = substr($intro_process, 0, $last_space).'...';
    }else{
    $introtext = $row->introtext;
    }
    ?>
    <li>
    <span <?php if($showtooltip){?> class="editlinktip jahasTip" title="<?php echo trim(strip_tags($row->title), '"'); ?>::<?php echo htmlspecialchars($row->image.$introtext); ?>"<?php }?>>
    <a href="<?php echo $row->link; ?>">
    <?php echo $row->title; ?>
    </a>
    </span>
    </li>
    <?php }?>
    </ul>
    </div>
    <?php }?>

    are different part. You are using last block

    Thank you,
    Viet Vu

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

This topic contains 15 replies, has 2 voices, and was last updated by  jooservices 8 years, 9 months ago.

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