-
AuthorPosts
-
okkhalid Friend
okkhalid
- Join date:
- November 2012
- Posts:
- 229
- Downloads:
- 2
- Uploads:
- 133
- Thanked:
- 3 times in 1 posts
May 19, 2014 at 2:30 pm #197943Hello,
I’m not able to figure out how to set the the details view as default in the FEATURED PROJECTS.
There is 2 filter in this page, on is image and text. and the other one is just image display
Now it set on the images only so you need to click on each image to view the text.
I would like to set the filter: image, text.
please see this here:
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 21, 2014 at 9:58 am #536038Please have a look at this userguide “How to create the grid layout as “Featured Projects” page in demo?“
okkhalid Friendokkhalid
- Join date:
- November 2012
- Posts:
- 229
- Downloads:
- 2
- Uploads:
- 133
- Thanked:
- 3 times in 1 posts
May 22, 2014 at 5:09 am #536172Hi, I went through the documents but I could not fine any thing to get the view setting.
All I want is to have this link to change the view:
http://www.horizonsolutions.ca/dcl/explore/features-projectsto: like the image above. thanks
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 23, 2014 at 8:09 am #536360I have checked directly on your site, I could not see sub-categories in Features Projects category. You need to add those as in our demo, see the screenshot for reference:
Let me know if it helps.
okkhalid Friendokkhalid
- Join date:
- November 2012
- Posts:
- 229
- Downloads:
- 2
- Uploads:
- 133
- Thanked:
- 3 times in 1 posts
May 23, 2014 at 5:01 pm #536437Hi,
sorry I think I did not explain it well.
Let me explain again
if you visit:
http://ja-decor.demo.joomlart.com/index.php/en/about/featured-projectsyou will find all the projects are listed as images only AS A DEFAULT
then if you need to change the view of the page, you need to click on:
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 26, 2014 at 10:00 am #536665Regarding the default view in Feature project section, you can change as follows:
Open the templates/ja_decor/html/com_content/category/masonry.php file
Change
<div class="display-blog">
<a class="project-grid<?php echo $bloglayout!=1?' active':''?>" href="javascript:void(0)" data-option-value="masonry"><span><i class="fa fa-th-large"></i></span></a>
<a class="project-list<?php echo $bloglayout==1?' active':''?>" href="javascript:void(0)" data-option-value="straightDown"><i class="fa fa fa-th-list"></i></a>
</div>To
<div class="display-blog">
<a class="project-grid<?php echo $bloglayout==1?' active':''?>" href="javascript:void(0)" data-option-value="masonry"><span><i class="fa fa-th-large"></i></span></a>
<a class="project-list<?php echo $bloglayout!=1?' active':''?>" href="javascript:void(0)" data-option-value="straightDown"><i class="fa fa fa-th-list"></i></a>
</div>Let me know if it helps.
okkhalid Friendokkhalid
- Join date:
- November 2012
- Posts:
- 229
- Downloads:
- 2
- Uploads:
- 133
- Thanked:
- 3 times in 1 posts
May 28, 2014 at 2:43 pm #536971Hi, the code did not work, 🙁
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 29, 2014 at 10:10 am #537059<em>@okkhalid 429638 wrote:</em><blockquote>Hi, the code did not work, :(</blockquote>
I would need to take a closer look at your site, you can pm me admin and FTP credentials of your site, I will help you out.
okkhalid Friendokkhalid
- Join date:
- November 2012
- Posts:
- 229
- Downloads:
- 2
- Uploads:
- 133
- Thanked:
- 3 times in 1 posts
July 4, 2014 at 2:38 am #541134Hi,
Going back to the same issue, is there is any way to make the view default to show the image and the text? thanksNinja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 7, 2014 at 8:39 am #541360<em>@okkhalid 435154 wrote:</em><blockquote>Hi,
Going back to the same issue, is there is any way to make the view default to show the image and the text? thanks</blockquote>You can try to do with my solution below
+ Open templates/ja_decor/html/com_content/category/masonry.php file
Change
$bloglayout = isset($_COOKIE['blog-layout'])?$_COOKIE['blog-layout'] : '0';
To
setcookie('blog-layout','1');
$bloglayout = isset($_COOKIE['blog-layout'])?$_COOKIE['blog-layout'] : '1';+ Create templates/ja_decor/css/custom.css file and add new rule
.grid-list .item.isotope-item{
height : 300px;
}
Let me know if it helps
hjalte1983 Friendhjalte1983
- Join date:
- September 2012
- Posts:
- 328
- Downloads:
- 7
- Uploads:
- 105
- Thanks:
- 101
- Thanked:
- 9 times in 1 posts
July 7, 2014 at 1:18 pm #541409You don’t need to change any code, this is an option in Mijoshop.
Go to : Mijoshop > Settings > Press Edit – go to Mijoshop Tab > Default Product Display > change grid/list displayokkhalid Friendokkhalid
- Join date:
- November 2012
- Posts:
- 229
- Downloads:
- 2
- Uploads:
- 133
- Thanked:
- 3 times in 1 posts
July 7, 2014 at 9:19 pm #541448Hi I got a white page. :(, so I have to remove the code to have the page to work again.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
okkhalid Friendokkhalid
- Join date:
- November 2012
- Posts:
- 229
- Downloads:
- 2
- Uploads:
- 133
- Thanked:
- 3 times in 1 posts
July 9, 2014 at 2:44 am #541634I have sent you a message, thank you again
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
July 9, 2014 at 6:45 am #541683<em>@okkhalid 435818 wrote:</em><blockquote>I have sent you a message, thank you again</blockquote>
Yes, I fixed the problem directly on your site as my earlier post. Please clear cache your browser or open Feature Projects with new browser, you will see it loads as in my screenshot
AuthorPostsThis topic contains 20 replies, has 5 voices, and was last updated by Ninja Lead 10 years, 3 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum