-
AuthorPosts
-
Aratype Friend
Aratype
- Join date:
- August 2007
- Posts:
- 797
- Downloads:
- 41
- Uploads:
- 60
- Thanks:
- 194
- Thanked:
- 98 times in 6 posts
August 6, 2015 at 3:12 pm #658566In the article’s main image:
I can click on the image but the only effect I have is to reload the article.
I believe it should open the image in a light box with its full size, this feature is forgotten, I am right?
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 7, 2015 at 2:36 am #658643Hi there
No. It’s full image in article view.
In Joomla! layout default, click on it will link to article view ( same with current ).Thank you,
Viet Vujooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
August 7, 2015 at 2:36 am #744738Hi there
No. It’s full image in article view.
In Joomla! layout default, click on it will link to article view ( same with current ).Thank you,
Viet VuSaguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
August 7, 2015 at 4:18 am #658659That link should not be there, we will update in the upcoming version.
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
August 7, 2015 at 4:18 am #744754That link should not be there, we will update in the upcoming version.
Aratype FriendAratype
- Join date:
- August 2007
- Posts:
- 797
- Downloads:
- 41
- Uploads:
- 60
- Thanks:
- 194
- Thanked:
- 98 times in 6 posts
August 7, 2015 at 8:28 am #658882Thanks Saguaros, this is what I meant, I noticed that this feature is forgotten by JA.
Aratype FriendAratype
- Join date:
- August 2007
- Posts:
- 797
- Downloads:
- 41
- Uploads:
- 60
- Thanks:
- 194
- Thanked:
- 98 times in 6 posts
August 7, 2015 at 8:28 am #744771Thanks Saguaros, this is what I meant, I noticed that this feature is forgotten by JA.
Aratype FriendAratype
- Join date:
- August 2007
- Posts:
- 797
- Downloads:
- 41
- Uploads:
- 60
- Thanks:
- 194
- Thanked:
- 98 times in 6 posts
October 8, 2015 at 1:48 pm #751018My friends, you published the version 1.0.6 of the template and the issue is not resolved yet…
I believe it will be excellent if we can open the top image in full in a light box upon clicking on the image on the text…
timtecsa Friendtimtecsa
- Join date:
- October 2009
- Posts:
- 1382
- Downloads:
- 86
- Uploads:
- 327
- Thanks:
- 197
- Thanked:
- 132 times in 34 posts
October 8, 2015 at 6:16 pm #751031Maybe of use for popup full image. http://extensions.joomla.org/extensions/extension/style-a-design/popups-a-iframes/modals
Otherwise edit css to get 100% image size in article ?
e.g, add to custom.css
.article-intro-media .item-image {
max-height: 100%;
overflow: hidden;}
1 user says Thank You to timtecsa for this useful post
Aratype FriendAratype
- Join date:
- August 2007
- Posts:
- 797
- Downloads:
- 41
- Uploads:
- 60
- Thanks:
- 194
- Thanked:
- 98 times in 6 posts
October 17, 2015 at 7:31 pm #705612Hello every one,
I updated article layout to add light box or popup that view article cover image, and I’ll share this with you :
go to : templates/telinev/html/layouts/joomla/content/item/default.phpat line 66 remove this line :
<?php echo JLayoutHelper::render('joomla.content.image.intro', $displayData); ?>
add these instead:
<div itemprop="image" class="pull-left item-image">
<a href="#" data-toggle="modal" data-target="#thumbModal<?php echo $item->id; ?>" >
<img src="<?php echo $img_info->image_intro ?>" title="<?php echo $img_info->image_intro_caption ?>" alt="<?php echo $img_info->image_intro_caption ?>" />
</a>
</div>
<div id="thumbModal<?php echo $item->id; ?>" class="modal fade" >
<div class="modal-fullscreen"><!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title"><?php echo $img_info->image_fulltext_caption ?></h4>
</div>
<div class="modal-body">
<p> <img src="<?php echo $img_info->image_intro ?>" alt="<?php echo $img_info->image_intro_caption ?>" itemprop="thumbnailUrl"/>
</p>
</div></div>
</div>
</div>also add this to you css files – optional- to set popup almost full screen
.modal-fullscreen {
margin: 27px auto;
opacity: 0.9;
text-align: center;
width: 80%;
}and save file, that’s set :).
don’t forget to take backup before starting edit.
Aratype FriendAratype
- Join date:
- August 2007
- Posts:
- 797
- Downloads:
- 41
- Uploads:
- 60
- Thanks:
- 194
- Thanked:
- 98 times in 6 posts
October 17, 2015 at 7:31 pm #752011Hello every one,
I updated article layout to add light box or popup that view article cover image, and I’ll share this with you :
go to : templates/telinev/html/layouts/joomla/content/item/default.phpat line 66 remove this line :
<?php echo JLayoutHelper::render('joomla.content.image.intro', $displayData); ?>
add these instead:
<div itemprop="image" class="pull-left item-image">
<a href="#" data-toggle="modal" data-target="#thumbModal<?php echo $item->id; ?>" >
<img src="<?php echo $img_info->image_intro ?>" title="<?php echo $img_info->image_intro_caption ?>" alt="<?php echo $img_info->image_intro_caption ?>" />
</a>
</div>
<div id="thumbModal<?php echo $item->id; ?>" class="modal fade" >
<div class="modal-fullscreen"><!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title"><?php echo $img_info->image_fulltext_caption ?></h4>
</div>
<div class="modal-body">
<p> <img src="<?php echo $img_info->image_intro ?>" alt="<?php echo $img_info->image_intro_caption ?>" itemprop="thumbnailUrl"/>
</p>
</div></div>
</div>
</div>also add this to you css files – optional- to set popup almost full screen
.modal-fullscreen {
margin: 27px auto;
opacity: 0.9;
text-align: center;
width: 80%;
}and save file, that’s set :).
don’t forget to take backup before starting edit.
-
AuthorPosts
This topic contains 11 replies, has 4 voices, and was last updated by Aratype 9 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum