Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • Phill Moderator
    #141429

    I’m sure I could work it out eventually but it would take some time as my PHP skills are sadly lacking.

    I need to make the _fp images in this site I am working on ( http://windwisedev.net.testing.windsurf.vm.bytemark.co.uk/ very early on the WIP stage) linkable. I’m sure it would be and easy edit to the code below but I am not 100% sure what to do.

    <?php

    // no direct access
    defined('_JEXEC') or die('Restricted access'); ?>
    <?php
    global $mainframe;
    $imageWidth = 120;
    $imageHeight = 70;

    require_once (JPATH_SITE.DS.'templates'.DS.$mainframe->getTemplate().DS.'ja_templatetools_1.5.php');
    $image = JA_Tools::extractImage ($this->item, true, $imageWidth, $imageHeight);
    ?>

    <?php if ($this->user->authorize('com_content', 'edit', 'content', 'all') || $this->user->authorize('com_content', 'edit', 'content', 'own')) : ?>
    <div class="contentpaneopen_edit<?php echo $this->item->params->get( 'pageclass_sfx' ); ?>" style="float: left;">
    <?php echo JHTML::_('icon.edit', $this->item, $this->item->params, $this->access); ?>
    </div>
    <?php endif; ?>
    <div class="contentpaneopen<?php echo $this->item->params->get( 'pageclass_sfx' ); ?> clearfix">

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

    <?php
    if (
    ($this->item->params->get('show_create_date'))
    || (($this->item->params->get('show_author')) && ($this->item->author != ""))
    || (($this->item->params->get('show_section') && $this->item->sectionid) || ($this->item->params->get('show_category') && $this->item->catid))
    || ($this->item->params->get('show_pdf_icon') || $this->item->params->get('show_print_icon') || $this->item->params->get('show_email_icon'))
    || ($this->item->params->get('show_url') && $this->item->urls)
    ) :
    ?>
    <div class="article-toolswrap">
    <div class="article-tools clearfix">

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

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

    <div class="article-content"><div class="ja-innerpad">

    <?php if (isset ($this->item->toc)) : ?>
    <?php echo $this->item->toc; ?>
    <?php endif; ?>
    <div class="img-desc">
    <?php echo $image; ?>
    </div>

    <div class="content-desc">
    <?php if ($this->item->params->get('show_title')) : ?>
    <h2 class="contentheading<?php echo $this->item->params->get( 'pageclass_sfx' ); ?>">
    <?php if ($this->item->params->get('link_titles') && $this->item->readmore_link != '') : ?>
    <a href="<?php echo $this->item->readmore_link; ?>" class="contentpagetitle<?php echo $this->item->params->get( 'pageclass_sfx' ); ?>">
    <?php echo $this->item->title; ?>
    </a>
    <?php else : ?>
    <?php echo $this->item->title; ?>
    <?php endif; ?>
    </h2>
    <?php endif; ?>
    <?php echo $this->item->text; ?>
    </div>

    <?php if ($this->item->params->get('show_readmore') && $this->item->readmore) : ?>
    <a href="<?php echo $this->item->readmore_link; ?>" title="<?php echo $this->item->title; ?>" class="readon<?php echo $this->item->params->get('pageclass_sfx'); ?>">
    <?php if ($this->item->readmore_register) : ?>
    <?php echo JText::_('Register to read more...'); ?>
    <?php else : ?>
    <?php echo JText::_('Read more...'); ?>
    <?php endif; ?>
    </a>
    <?php endif; ?>

    </div></div>

    </div>

    <span class="article_separator"> </span>
    <?php echo $this->item->event->afterDisplayContent; ?>

    scotty Friend
    #305773

    Change this bit….

    <div class=”img-desc”>
    <?php echo $image; ?>
    </div>
    to……………….
    <div class=”img-desc”>
    <a href=”<?php echo $this->item->readmore_link; ?>”><?php echo $image; ?></a>
    </div>

    Phill Moderator
    #305775

    Cheers Scotty, you always come up trumps.

    blickfeld Friend
    #308566

    hope it works. i will try it right know.

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

This topic contains 4 replies, has 3 voices, and was last updated by  blickfeld 15 years, 5 months ago.

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