test melih
 melih
Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • crisu986 Friend
    #188508

    If I start the content slider all pictures are appearing. One click of a picture – the next site (content) folks, but no image can be seen.

    The joomla version is 2.5 and I use com_content.

    Thanks for your help…

    Ninja Lead Moderator
    #497107

    I have checked JA Contentslider module, it supports image included in content, see the screenshot

    + Back-end

    + Front-end

    Kindly check it again

    And if possible, post url of page where problem can be seen here, it’s better with a closer look.


    1. Back-End
    2. front-end
    crisu986 Friend
    #497162

    Thanks for your help, but it doesn´t works.

    I send you the URL per PM.

    Ninja Lead Moderator
    #497251

    <em>@crisu986 378389 wrote:</em><blockquote>Thanks for your help, but it doesn´t works.

    I send you the URL per PM.</blockquote>

    I have checked and could see that the images of JA ContentSlider module are showing on your site, see this screenshot

    You can try to clear cache from Admin area and re-check your site again.


    1. image_content_slide
    crisu986 Friend
    #497287

    You are right, but take a click on the image and on the next site there isn´t the same image.

    Is this a problem of the entries in the content. You can I solve this?

    Ninja Lead Moderator
    #497429

    <em>@crisu986 378535 wrote:</em><blockquote>You are right, but take a click on the image and on the next site there isn´t the same image.

    Is this a problem of the entries in the content. You can I solve this?</blockquote>

    In this case, I would need to take a closer look at your site. Please pm me admin access and ftp account of your site. I shall check it for you.

    crisu986 Friend
    #497510

    Great…

    You have pm.

    Thanks
    Oliver

    Ninja Lead Moderator
    #497619

    <em>@crisu986 378824 wrote:</em><blockquote>Great…

    You have pm.

    Thanks
    Oliver</blockquote>

    I tried to use admin access of your pm me but this account didn’t have permission to edit JA SlideNews module, see the screenshot

    Please check and pm me again admin access with full control. I will try to help you fix this problem


    1. error_edit
    crisu986 Friend
    #497672

    It must go…

    See my pm

    Ninja Lead Moderator
    #497780

    <em>@crisu986 379024 wrote:</em><blockquote>It must go…

    See my pm</blockquote>

    I spent a lot my time to check and debug the problem on your site. This is not bug our product because you are disabled an important plugin JOOMLA default

    I have enabled it and the problem on your site’s been fixed, see the screenshot

    Please check it on your site again, let me know if it helps


    1. System_SEF
    crisu986 Friend
    #497876

    Thank you for your great work and for the nuch time you have spend.

    I have one question: how can I realize that the article opens in a new window.

    Ninja Lead Moderator
    #497920

    You need to customize a bit here

    Open modules/mod_jacontentslider/helper.php file

    From


    function renderImage($title, $link, $image, $params, $width = 0, $height = 0, $attrs = '', $returnURL = false)
    {
    global $database, $_MAMBOTS, $current_charset;
    if ($image) {
    $title = strip_tags($title);
    $thumbnailMode = $params->get('source-articles-images-thumbnail_mode', 'crop');
    $aspect = $params->get('source-articles-images-thumbnail_mode-resize-use_ratio', '1');
    $crop = $thumbnailMode == 'crop' ? true : false;
    $jaimage = JAImage::getInstance();

    if ($thumbnailMode != 'none' && $jaimage->sourceExited($image)) {
    $imageURL = $jaimage->resize($image, $width, $height, $crop, $aspect);
    if ($returnURL) {
    return $imageURL;
    }
    if ($imageURL != $image && $imageURL) {
    $width = $width ? "width="$width"" : "";
    $height = $height ? "height="$height"" : "";
    $image = "<img src="{$imageURL}" alt="{$title}" title="{$title}" {$width} {$height} {$attrs} />";
    } else {
    $image = "<img $attrs src="{$image}" $attrs alt="{$title}" title="{$title}" />";
    }
    } else {
    if ($returnURL) {
    return $image;
    }
    $width = $width ? "width="$width"" : "";
    $height = $height ? "height="$height"" : "";
    $image = "<img $attrs src="$image" alt="{$title}" title="{$title}" {$width} {$height} />";
    }
    } else {
    $image = '';
    }
    $image = '<a href="' . $link . '" title="" class="ja-image">' . $image . '</a>';
    // clean up globals
    return $image;
    }

    change to


    function renderImage($title, $link, $image, $params, $width = 0, $height = 0, $attrs = '', $returnURL = false)
    {
    global $database, $_MAMBOTS, $current_charset;
    if ($image) {
    $title = strip_tags($title);
    $thumbnailMode = $params->get('source-articles-images-thumbnail_mode', 'crop');
    $aspect = $params->get('source-articles-images-thumbnail_mode-resize-use_ratio', '1');
    $crop = $thumbnailMode == 'crop' ? true : false;
    $jaimage = JAImage::getInstance();

    if ($thumbnailMode != 'none' && $jaimage->sourceExited($image)) {
    $imageURL = $jaimage->resize($image, $width, $height, $crop, $aspect);
    if ($returnURL) {
    return $imageURL;
    }
    if ($imageURL != $image && $imageURL) {
    $width = $width ? "width="$width"" : "";
    $height = $height ? "height="$height"" : "";
    $image = "<img src="{$imageURL}" alt="{$title}" title="{$title}" {$width} {$height} {$attrs} />";
    } else {
    $image = "<img $attrs src="{$image}" $attrs alt="{$title}" title="{$title}" />";
    }
    } else {
    if ($returnURL) {
    return $image;
    }
    $width = $width ? "width="$width"" : "";
    $height = $height ? "height="$height"" : "";
    $image = "<img $attrs src="$image" alt="{$title}" title="{$title}" {$width} {$height} />";
    }
    } else {
    $image = '';
    }
    $image = '<a href="' . $link . '" title="" class="ja-image" target="_blank">' . $image . '</a>';
    // clean up globals
    return $image;
    }

    Remember to clear cache from Admin area

    crisu986 Friend
    #497981

    Thanks for your help. I have insert “target=”_blank” in the code, but with no result. The appearing is the same as before…

    Ninja Lead Moderator
    #498031

    I checked it directly on your site from JA ContenSlider module when you click item on the module it’s showing new window now.

    Maybe you are not yet clear cache after changing. I helped you do that, please check it again

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

This topic contains 14 replies, has 2 voices, and was last updated by  Ninja Lead 11 years, 7 months ago.

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