-
AuthorPosts
-
June 26, 2013 at 6:39 pm #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
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 27, 2013 at 7:30 am #497107I 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.
-
June 27, 2013 at 11:46 am #497162
Thanks for your help, but it doesn´t works.
I send you the URL per PM.
Ninja Lead
Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 28, 2013 at 4:27 am #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.
June 28, 2013 at 10:31 am #497287You 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
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 1, 2013 at 3:40 am #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.
July 1, 2013 at 2:37 pm #497510Great…
You have pm.
Thanks
Oliver
Ninja Lead
Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 2, 2013 at 3:31 am #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
July 2, 2013 at 10:05 am #497672It must go…
See my pm
Ninja Lead
Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 3, 2013 at 7:20 am #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 user says Thank You to Ninja Lead for this useful post
July 3, 2013 at 7:22 pm #497876Thank 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
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 4, 2013 at 5:28 am #497920You 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
July 4, 2013 at 4:48 pm #497981Thanks 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
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 5, 2013 at 4:04 am #498031I 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
AuthorPostsViewing 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
Jump to forum
Content slider – no image appears in the content
Viewing 14 posts - 1 through 14 (of 14 total)




