Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • munders Friend
    #166488

    Hi all

    I have built a JA Rave based site need to now remove the details that show under article headings in the main body of the home page, in ‘Welocme to JA Rave’ section. I have attached a graphic to explain better. I want these details highlighted removing altogether, I dont use them at all.

    Where and how do I fix this please? I can’t find this as a module or component.

    Please help ASAP!

    Thanks


    1. main-details
    chavan Friend
    #401967

    GO to this File templatesja_ravehtmlcom_contentfrontpagedefault_item.php

    Replace the following code


    <div class="article-tools clearfix">

    <div class="article-meta">

    <?php if (($this->item->params->get('show_author')) && ($this->item->author != "")) : ?>
    <span class="createby">
    <?php JText::printf(($this->item->created_by_alias ? $this->escape($this->item->created_by_alias) : $this->escape($this->item->author)) ); ?>,
    </span>
    <?php endif; ?>

    <?php if ($this->item->params->get('show_create_date')) : ?>
    <span class="createdate">
    on <?php echo JHTML::_('date', $this->item->created, JText::_('DATE_FORMAT_LC3')); ?>
    </span>
    <?php endif; ?>

    <?php if (($this->item->params->get('show_section') && $this->item->sectionid) || ($this->item->params->get('show_category') && $this->item->catid)) : ?>
    <?php if ($this->item->params->get('show_section') && $this->item->sectionid && isset($this->item->section)) : ?>
    <span class="article-section">
    <?php if ($this->item->params->get('link_section')) : ?>
    <?php echo '<a href="'.JRoute::_(ContentHelperRoute::getSectionRoute($this->item->sectionid)).'">'; ?>
    <?php endif; ?>
    <?php echo $this->escape($this->item->section); ?>
    <?php if ($this->item->params->get('link_section')) : ?>
    <?php echo '</a>'; ?>
    <?php endif; ?>
    <?php if ($this->item->params->get('show_category')) : ?>
    <?php echo ' - '; ?>
    <?php endif; ?>
    </span>
    <?php endif; ?>
    <?php if ($this->item->params->get('show_category') && $this->item->catid) : ?>
    <span class="article-section">
    <?php if ($this->item->params->get('link_category')) : ?>
    <?php echo '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug, $this->item->sectionid)).'">'; ?>
    <?php endif; ?>
    <?php echo $this->escape($this->item->category); ?>
    <?php if ($this->item->params->get('link_category')) : ?>
    <?php echo '</a>'; ?>
    <?php endif; ?>
    </span>
    <?php endif; ?>
    <?php endif; ?>
    </div>

    <?php if ($this->item->params->get('show_pdf_icon') || $this->item->params->get('show_print_icon') || $this->item->params->get('show_email_icon')) : ?>
    <div class="buttonheading">
    <?php if ($this->item->params->get('show_email_icon')) : ?>
    <span class="ja-button-email">
    <?php echo JHTML::_('icon.email', $this->item, $this->item->params, $this->access); ?>
    </span>
    <?php endif; ?>

    <?php if ( $this->item->params->get( 'show_print_icon' )) : ?>
    <span class="ja-button-print">
    <?php echo JHTML::_('icon.print_popup', $this->item, $this->item->params, $this->access); ?>
    </span>
    <?php endif; ?>

    <?php if ($this->item->params->get('show_pdf_icon')) : ?>
    <span class="ja-button-pdf">
    <?php echo JHTML::_('icon.pdf', $this->item, $this->item->params, $this->access); ?>
    </span>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <?php if ($this->item->params->get('show_url') && $this->item->urls) : ?>
    <span class="article-url">
    <a href="http://<?php echo $this->escape($this->item->urls) ; ?>" target="_blank"><?php echo $this->escape($this->item->urls); ?></a>
    </span>
    <?php endif; ?>

    </div>

    With


    <?php /*?><div class="article-tools clearfix">

    <div class="article-meta">

    <?php if (($this->item->params->get('show_author')) && ($this->item->author != "")) : ?>
    <span class="createby">
    <?php JText::printf(($this->item->created_by_alias ? $this->escape($this->item->created_by_alias) : $this->escape($this->item->author)) ); ?>,
    </span>
    <?php endif; ?>

    <?php if ($this->item->params->get('show_create_date')) : ?>
    <span class="createdate">
    on <?php echo JHTML::_('date', $this->item->created, JText::_('DATE_FORMAT_LC3')); ?>
    </span>
    <?php endif; ?>

    <?php if (($this->item->params->get('show_section') && $this->item->sectionid) || ($this->item->params->get('show_category') && $this->item->catid)) : ?>
    <?php if ($this->item->params->get('show_section') && $this->item->sectionid && isset($this->item->section)) : ?>
    <span class="article-section">
    <?php if ($this->item->params->get('link_section')) : ?>
    <?php echo '<a href="'.JRoute::_(ContentHelperRoute::getSectionRoute($this->item->sectionid)).'">'; ?>
    <?php endif; ?>
    <?php echo $this->escape($this->item->section); ?>
    <?php if ($this->item->params->get('link_section')) : ?>
    <?php echo '</a>'; ?>
    <?php endif; ?>
    <?php if ($this->item->params->get('show_category')) : ?>
    <?php echo ' - '; ?>
    <?php endif; ?>
    </span>
    <?php endif; ?>
    <?php if ($this->item->params->get('show_category') && $this->item->catid) : ?>
    <span class="article-section">
    <?php if ($this->item->params->get('link_category')) : ?>
    <?php echo '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug, $this->item->sectionid)).'">'; ?>
    <?php endif; ?>
    <?php echo $this->escape($this->item->category); ?>
    <?php if ($this->item->params->get('link_category')) : ?>
    <?php echo '</a>'; ?>
    <?php endif; ?>
    </span>
    <?php endif; ?>
    <?php endif; ?>
    </div>

    <?php if ($this->item->params->get('show_pdf_icon') || $this->item->params->get('show_print_icon') || $this->item->params->get('show_email_icon')) : ?>
    <div class="buttonheading">
    <?php if ($this->item->params->get('show_email_icon')) : ?>
    <span class="ja-button-email">
    <?php echo JHTML::_('icon.email', $this->item, $this->item->params, $this->access); ?>
    </span>
    <?php endif; ?>

    <?php if ( $this->item->params->get( 'show_print_icon' )) : ?>
    <span class="ja-button-print">
    <?php echo JHTML::_('icon.print_popup', $this->item, $this->item->params, $this->access); ?>
    </span>
    <?php endif; ?>

    <?php if ($this->item->params->get('show_pdf_icon')) : ?>
    <span class="ja-button-pdf">
    <?php echo JHTML::_('icon.pdf', $this->item, $this->item->params, $this->access); ?>
    </span>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <?php if ($this->item->params->get('show_url') && $this->item->urls) : ?>
    <span class="article-url">
    <a href="http://<?php echo $this->escape($this->item->urls) ; ?>" target="_blank"><?php echo $this->escape($this->item->urls); ?></a>
    </span>
    <?php endif; ?>

    </div><?php */?>

    Note: If you Find my Post useful please click on the Thanks Icon

    munders Friend
    #402053

    Thankd for the quick reply Chavan, but there is not a ‘frontpage’ folder in this location in JA Rave. There is a ‘featured’ folder and there is a default_item.php file, but it does not contain the same code. This is the code I have:

    <?php
    /**
    * @version $Id: default_item.php 18052 2010-07-08 04:56:08Z infograf768 $
    * @package Joomla.Site
    * @subpackage com_content
    * @copyright Copyright (C) 2005 – 2010 Open Source Matters, Inc. All rights reserved.
    * @license GNU General Public License version 2 or later; see LICENSE.txt
    */

    // no direct access
    defined(‘_JEXEC’) or die;

    // Create a shortcut for params.
    $params = &$this->item->params;
    $canEdit = $this->item->params->get(‘access-edit’);
    ?>

    <?php
    //Get out all images
    $regex = “/<img[^>]*>/”;
    $images = ”;
    //print_r($this->item);die();
    if (preg_match_all($regex,$this->item->introtext, $matches)) {
    $this->item->introtext = preg_replace ($regex, ”, $this->item->introtext);
    $images = implode (“n”, $matches[0]);
    }

    ?>
    <div class=”contentpaneopen<?php echo $this->escape($this->item->params->get( ‘pageclass_sfx’ )); ?> <?php if ($images): ?>haveimage<?php endif; ?> clearfix”>
    <?php if ($images): ?>
    <div class=”article-image”>
    <div class=”img_caption”><?php echo $images ?></div>
    </div>
    <?php endif; ?>

    <?php if ($this->item->state == 0) : ?>
    <div class=”system-unpublished”>
    <?php endif; ?>

    <?php if ($params->get(‘show_title’)) : ?>
    <h2 class=”contentheading”>
    <?php if ($params->get(‘link_titles’) && $params->get(‘access-view’)) : ?>
    <a href=”<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>”>
    <?php echo $this->escape($this->item->title); ?></a>
    <?php else : ?>
    <?php echo $this->escape($this->item->title); ?>
    <?php endif; ?>
    </h2>
    <?php endif; ?>

    <?php if (!$params->get(‘show_intro’)) : ?>
    <?php echo $this->item->event->afterDisplayTitle; ?>
    <?php endif; ?>

    <?php echo $this->item->event->beforeDisplayContent; ?>

    <?php // to do not that elegant would be nice to group the params ?>

    <div class=”article-tools clearfix”>
    <?php if (($params->get(‘show_author’)) or ($params->get(‘show_category’)) or ($params->get(‘show_create_date’)) or ($params->get(‘show_modify_date’)) or ($params->get(‘show_publish_date’)) or ($params->get(‘show_parent_category’)) or ($params->get(‘show_hits’))) : ?>
    <dl class=”article-info”>
    <dt class=”article-info-term”><?php echo JText::_(‘COM_CONTENT_ARTICLE_INFO’); ?></dt>
    <?php endif; ?>
    <?php if ($params->get(‘show_parent_category’)) : ?>
    <dd class=”parent-category-name”>
    <?php $title = $this->escape($this->item->parent_title);
    $url = ‘<a href=”‘ . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_slug)) . ‘”>’ . $title . ‘</a>’; ?>
    <?php if ($params->get(‘link_parent_category’) AND $this->item->parent_slug) : ?>
    <?php echo JText::sprintf(‘COM_CONTENT_PARENT’, $url); ?>
    <?php else : ?>
    <?php echo JText::sprintf(‘COM_CONTENT_PARENT’, $title); ?>
    <?php endif; ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_category’)) : ?>
    <dd class=”category-name”>
    <?php $title = $this->escape($this->item->category_title);
    $url = ‘<a href=”‘.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug)).'”>’.$title.'</a>’;?>
    <?php if ($params->get(‘link_category’) AND $this->item->catslug) : ?>
    <?php echo JText::sprintf(‘COM_CONTENT_CATEGORY’, $url); ?>
    <?php else : ?>
    <?php echo JText::sprintf(‘COM_CONTENT_CATEGORY’, $title); ?>
    <?php endif; ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_create_date’)) : ?>
    <dd class=”create”>
    <?php echo JText::sprintf(‘COM_CONTENT_CREATED_DATE_ON’, JHTML::_(‘date’,$this->item->created, JText::_(‘DATE_FORMAT_LC2’))); ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_modify_date’)) : ?>
    <dd class=”modified”>
    <?php echo JText::sprintf(‘COM_CONTENT_LAST_UPDATED’, JHTML::_(‘date’,$this->item->modified, JText::_(‘DATE_FORMAT_LC2’))); ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_publish_date’)) : ?>
    <dd class=”published”>
    <?php echo JText::sprintf(‘COM_CONTENT_PUBLISHED_DATE’, JHTML::_(‘date’,$this->item->publish_up, JText::_(‘DATE_FORMAT_LC2’))); ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_author’) && !empty($this->item->author)) : ?>
    <dd class=”createdby”>
    <?php $author = $this->item->author; ?>
    <?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>

    <?php if (!empty($this->item->contactid ) && $params->get(‘link_author’) == true):?>
    <?php echo JText::sprintf(‘COM_CONTENT_WRITTEN_BY’ ,
    JHTML::_(‘link’,JRoute::_(‘index.php?option=com_contact&view=contact&id=’.$this->item->contactid),$author)); ?>

    <?php else :?>
    <?php echo JText::sprintf(‘COM_CONTENT_WRITTEN_BY’, $author); ?>
    <?php endif; ?>
    </dd>
    <?php endif; ?>
    <?php if ($params->get(‘show_hits’)) : ?>
    <dd class=”hits”>
    <?php echo JText::sprintf(‘COM_CONTENT_ARTICLE_HITS’, $this->item->hits); ?>
    </dd>
    <?php endif; ?>
    <?php if (($params->get(‘show_author’)) or ($params->get(‘show_category’)) or ($params->get(‘show_create_date’)) or ($params->get(‘show_modify_date’)) or ($params->get(‘show_publish_date’)) or ($params->get(‘show_parent_category’)) or ($params->get(‘show_hits’))) : ?>
    </dl>
    <?php endif; ?>

    <?php if ($params->get(‘show_print_icon’) || $params->get(‘show_email_icon’) || $canEdit) : ?>
    <div class=”actions”>
    <?php if ($params->get(‘show_print_icon’)) : ?>
    <span class=”print-icon”>
    <?php echo JHtml::_(‘icon.print_popup’, $this->item, $params); ?>
    </span>
    <?php endif; ?>
    <?php if ($params->get(‘show_email_icon’)) : ?>
    <span class=”email-icon”>
    <?php echo JHtml::_(‘icon.email’, $this->item, $params); ?>
    </span>
    <?php endif; ?>

    <?php if ($canEdit) : ?>
    <span class=”edit-icon”>
    <?php echo JHtml::_(‘icon.edit’, $this->item, $params); ?>
    </span>
    <?php endif; ?>
    </div>
    <?php endif; ?>
    </div>

    <?php echo $this->item->introtext; ?>

    <?php if ($params->get(‘show_readmore’) && $this->item->readmore) :
    if ($params->get(‘access-view’)) :
    $link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
    else :
    $menu = JFactory::getApplication()->getMenu();
    $active = $menu->getActive();
    $itemId = $active->id;
    $link1 = JRoute::_(‘index.php?option=com_users&view=login&&Itemid=’ . $itemId);
    $returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
    $link = new JURI($link1);
    $link->setVar(‘return’, base64_encode($returnURL));
    endif;
    ?>
    <p class=”readmore”>
    <a href=”<?php echo $link; ?>”>
    <?php if (!$params->get(‘access-view’)) :
    echo JText::_(‘COM_CONTENT_REGISTER_TO_READ_MORE’);
    elseif ($readmore = $this->item->alternative_readmore) :
    echo $readmore;
    if ($params->get(‘show_readmore_title’, 0) != 0) :
    echo JHtml::_(‘string.truncate’, ($this->item->title), $params->get(‘readmore_limit’));
    endif;
    elseif ($params->get(‘show_readmore_title’, 0) == 0) :
    echo JText::sprintf(‘COM_CONTENT_READ_MORE_TITLE’);
    else :
    echo JText::_(‘COM_CONTENT_READ_MORE’);
    echo JHtml::_(‘string.truncate’, ($this->item->title), $params->get(‘readmore_limit’));
    endif; ?></a>
    </p>
    <?php endif; ?>

    <?php if ($this->item->state == 0) : ?>
    </div>
    <?php endif; ?>

    </div>
    <div class=”item-separator”></div>
    <?php echo $this->item->event->afterDisplayContent; ?>

    chavan Friend
    #402096

    Please post your Ftp details via PM

    munders Friend
    #402648

    I don’t give any site details now since one of you Support Members deleted content from my site by, 2 days before I was going to launch it.

    chavan Friend
    #402650

    Oh ok. Please post the details in PM. since your file and my file have difference in code. I don’t want your admin details. Just ftp details.

    I will tell you which file i modified.

    Note: If you Find my Post useful please click on the Thanks Icon

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

This topic contains 6 replies, has 2 voices, and was last updated by  chavan 12 years, 9 months ago.

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