Thumbnails always displayed
11 posts • Page 1 of 2 • 1, 2
Thumbnails always displayed
Is it possible for the thumbnails to be permanently displayed over the main image?
- NickyP
- Posts: 2
- Joined: Mon Mar 09, 2009 10:34 am
Re: Thumbnails always displayed
yes it is possible, you have to change file jd.gallery.js.php in 4 places:
1) find:
replace with:
2) find:
replace with:
3)find:
replace with
4) last, if you want to remove Featured Content button, since with these changes this button lost its functionality, find:
replace with:
1) find:
- Code: Select all
toggleCarousel: function() {
if (this.carouselActive)
this.hideCarousel();
else
this.showCarousel();
replace with:
- Code: Select all
toggleCarousel: function() {
if (this.carouselActive)
this.showCarousel();
else
this.showCarousel();
2) find:
- Code: Select all
'click': function (myself) {
this.goTo(myself.relatedImage.number);
if (this.options.thumbCloseCarousel)
this.hideCarousel();
}.pass(currentImg, this)
replace with:
- Code: Select all
'click': function (myself) {
this.goTo(myself.relatedImage.number);
if (this.options.thumbCloseCarousel)
this.showCarousel();
}.pass(currentImg, this)
3)find:
- Code: Select all
initCarousel: function () {
this.createCarousel();
this.fillCarousel();
if (this.options.carouselPreloader)
this.preloadThumbnails();
},
replace with
- Code: Select all
initCarousel: function () {
this.createCarousel();
this.fillCarousel();
if (this.options.carouselPreloader)
this.preloadThumbnails();
this.showCarousel();
},
4) last, if you want to remove Featured Content button, since with these changes this button lost its functionality, find:
- Code: Select all
textShowCarousel: 'Featured Content',
replace with:
- Code: Select all
textShowCarousel: '',
Yelena Khamidullina
Web Applications Developer, iePlexus
1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
Web Applications Developer, iePlexus
1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
-

admin - Site Admin
- Posts: 4735
- Joined: Fri Jan 16, 2009 9:29 am
- Location: Seattle, WA
Re: Thumbnails always displayed
Many thanks for your quick reply - much appreciated. That has worked brilliantly. Can I change their position i.e. if I want them to appear under the main picture and text?
- NickyP
- Posts: 2
- Joined: Mon Mar 09, 2009 10:34 am
Re: Thumbnails always displayed
you are welcome. It is probably possible...I just do not have time to get into it..
Yelena Khamidullina
Web Applications Developer, iePlexus
1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
Web Applications Developer, iePlexus
1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
-

admin - Site Admin
- Posts: 4735
- Joined: Fri Jan 16, 2009 9:29 am
- Location: Seattle, WA
Re: Thumbnails always displayed
Does this all still apply for v3.2.0?
I have not been able to find
textShowCarousel: 'Featured Content',
I can only find
textShowCarousel: '<?=$fcg_button ?>',
In addition to this, even once I've changed the other three pieces of code, it doesn't work for me.
Any advice?
I have not been able to find
textShowCarousel: 'Featured Content',
I can only find
textShowCarousel: '<?=$fcg_button ?>',
In addition to this, even once I've changed the other three pieces of code, it doesn't work for me.
Any advice?
- samovarious
- Posts: 1
- Joined: Tue Jul 21, 2009 12:55 pm
Re: Thumbnails always displayed
it is the same for latest version,
but small change
replace with
but small change
- Code: Select all
textShowCarousel: '<?=$fcg_button ?>',
replace with
- Code: Select all
textShowCarousel: '',
Yelena Khamidullina
Web Applications Developer, iePlexus
1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
Web Applications Developer, iePlexus
1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
-

admin - Site Admin
- Posts: 4735
- Joined: Fri Jan 16, 2009 9:29 am
- Location: Seattle, WA
Re: Thumbnails always displayed
I actually just got this setup to work for myself this weekend. Thumbnails are always on and are at the bottom of the gallery. Works really well. Can't honestly recall what I changes, but I was using firebug and narrowed down the css call that way. Simply a matter of margins if memory serves me. Here is how it looking in action: http://stlinvestmentrealty.com
- mkastner
- Posts: 2
- Joined: Wed Mar 03, 2010 4:04 pm
Re: Thumbnails always displayed
Great looking website, good job. Do you by any chance know the line of code you edited to have the thumbnails appear on the bottom of the gallery. This would be very helpful. Thanks
- golf4lefties
- Posts: 4
- Joined: Wed Mar 17, 2010 9:34 am
Re: Thumbnails always displayed on the bottom of the page
this fix will work only if you already followed the instructions in previous posts
1) in fcg options page set the text overlay height to 0;
2) jd.gallery.css.php find style
and set the height property from
3) jd.gallery.css.php find style
and play with property
1) in fcg options page set the text overlay height to 0;
2) jd.gallery.css.php find style
- Code: Select all
.jdGallery a.carouselBtn, .jdGallery a.carouselBtn:hover, .jdGallery a.carouselBtn:active
and set the height property from
- Code: Select all
height: 20px;
- Code: Select all
height: 0px;
3) jd.gallery.css.php find style
- Code: Select all
.jdGallery .carousel
and play with property
- Code: Select all
top: 0;
- Code: Select all
top: XXXpx;
Yelena Khamidullina
Web Applications Developer, iePlexus
1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
Web Applications Developer, iePlexus
1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
-

admin - Site Admin
- Posts: 4735
- Joined: Fri Jan 16, 2009 9:29 am
- Location: Seattle, WA
Re: Thumbnails always displayed
I would also like to echo my thanks for the Featured Content Gallery plug-in. As a relatively new WordPress user, I have been very impressed by the quality of this and other plug-ins.
I really like the effect of the http://thresholdstl.com/st-louis-investment-realty web site with the gallery always displayed at the bottom. The modifications suggested do not seem to give this same effect as the featured content does not appear. What modifications do I need to make to get the same effect?
Also, as a suggestion for development, I would suggest having a Carousel section in Settings in which the user can set the following:
Thanks again!
I really like the effect of the http://thresholdstl.com/st-louis-investment-realty web site with the gallery always displayed at the bottom. The modifications suggested do not seem to give this same effect as the featured content does not appear. What modifications do I need to make to get the same effect?
Also, as a suggestion for development, I would suggest having a Carousel section in Settings in which the user can set the following:
- If the carousel is always displayed
If the carousel text is shown
If the carousel overlays the image
If the carousel is on top or bottom.
Thanks again!
- james.mcgill
- Posts: 2
- Joined: Thu Feb 24, 2011 7:04 am
11 posts • Page 1 of 2 • 1, 2
Who is online
Users browsing this forum: No registered users and 1 guest









