Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • cosero Friend
    #177497

    Please see this image as a reference http://postimage.org/image/hcquv3n9z/

    I need to remove those links from all images. Any ideas?

    Thanh Nguyen Viet Friend
    #454806

    Please provide your site url.

    cssyeah Moderator
    #454807

    Hi cosero,

    Open the blog_detail.php in the ” templates/ja_wall/html/com_content/category ” folder path and find the following PHP code section.

    [PHP]
    <!– Item Img –>
    <div class=”item-image”>
    <?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
    <?php $imgfloat = (empty($images->float_intro)) ? $params->get(‘float_intro’) : $images->float_intro; ?>
    <div class=”img-intro-<?php echo htmlspecialchars($imgfloat); ?>”>
    <?php if ($params->get(‘link_titles’) && $params->get(‘access-view’)) : ?>
    <a href=”<?php echo $link; ?>” title=”<?php echo $atitle ?>” class=”item-link”>
    <?php endif; ?>
    <img
    <?php if ($images->image_intro_caption):
    echo ‘class=”caption”‘.’ title=”‘ .htmlspecialchars($images->image_intro_caption) .'”‘;
    endif; ?>
    src=”<?php echo htmlspecialchars($images->image_intro); ?>” alt=”<?php echo htmlspecialchars($images->image_intro_alt); ?>”/>
    <?php if ($params->get(‘link_titles’) && $params->get(‘access-view’)) : ?>
    <span> </span>
    </a>
    <?php endif; ?>
    </div>
    <?php endif; ?>
    </div>
    <!– //Item Img –>
    [/PHP]

    Replace by the following code section:

    [PHP]
    <!– Item Img –>
    <div class=”item-image”>
    <?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
    <?php $imgfloat = (empty($images->float_intro)) ? $params->get(‘float_intro’) : $images->float_intro; ?>
    <div class=”img-intro-<?php echo htmlspecialchars($imgfloat); ?>”>
    <img
    <?php if ($images->image_intro_caption):
    echo ‘class=”caption”‘.’ title=”‘ .htmlspecialchars($images->image_intro_caption) .'”‘;
    endif; ?>
    src=”<?php echo htmlspecialchars($images->image_intro); ?>” alt=”<?php echo htmlspecialchars($images->image_intro_alt); ?>”/>
    <?php if ($params->get(‘link_titles’) && $params->get(‘access-view’)) : ?>
    <span> </span>
    <?php endif; ?>
    </div>
    <?php endif; ?>
    </div>
    <!– //Item Img –>
    [/PHP]

    Best regards!

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

This topic contains 3 replies, has 3 voices, and was last updated by  cssyeah 12 years, 6 months ago.

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