Theme: GreyDragon - v.4.0.2

Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Wed, 2012-06-06 16:03
dwdallam wrote:
Hey guys, I'll be bowing out now because I have G3 as good as I am going to get it.
...
Good luck with GD and G3 all!

Good luck to you too

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Wed, 2012-06-06 16:07
Serge D wrote:
I could, what is the logic to determine if item is the g-movie?

https://github.com/gallery/gallery3/commit/68437993b90bb9cc02ca1134e73c754e1f0d8273

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Wed, 2012-06-06 19:55

Thank you for the reference
Added in 4.0

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Thu, 2012-06-07 00:03

Thanks Serge.

I'm also wondering about the placement of the
$this->thumb_bottom($item); and $this->thumb_top($item);
in MY_Theme_View.php
Is there a reason why you the thumb_bottom() function so low after the thumbnail image? You have a lot of markup between the thumbnail image and the thumb_bottom() function.
My interpretation of the function would be right before the thumbnail image and right after. Perhaps you have a different interpretation?

Personally I would like to see it closer the thumbnail image, but if you have a good reason I'm all ears.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Thu, 2012-06-07 00:55
floridave wrote:
I'm also wondering about the placement of the
$this->thumb_bottom($item); and $this->thumb_top($item);
in MY_Theme_View.php
Is there a reason why you the thumb_bottom() function so low after the thumbnail image? You have a lot of markup between the thumbnail image and the thumb_bottom() function.
My interpretation of the function would be right before the thumbnail image and right after. Perhaps you have a different interpretation?

Personally I would like to see it closer the thumbnail image, but if you have a good reason I'm all ears.

if I remember correctly I am doing it to achieve proper crop and overlay positioning
why do you worry about it? what do you need to insert there?

Edit: I could move thumb_top()/thumb_bottom() inside div.g-thumbslide before/after p.g-thumbcrop

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
Shemo725

Joined: 2008-04-18
Posts: 424
Posted: Sun, 2012-06-10 21:11

I'm using the latest version of firefox.

where should that css go? in the layout.css file?

Serge D wrote:
Shemo725 wrote:
not sure if this has been pointed out before (haven't browsed the last few pages), but this is how my window looks when adding a new album and photos, as seen by the provided attachment.

As I switched to a HTML 5 there may be some issues with dialogs
What browser do you see it with?

Edit: Try fix above

.ui-dialog .ui-dialog-content {clear:both; }

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
bryan145

Joined: 2010-10-24
Posts: 83
Posted: Sun, 2012-06-10 21:24

I just noticed this problem. I recently upgraded my personal photo gallery to 3.0.3 and 3.2.2 and noticed the colorpacks "Green" and "Blue" are not showing up in the dropdown menu list in theme options. When I went to Guy Verschuere's website (http://www.cindyenguy.be/) to see if he had an updated version of these two color packs, his website was down. First, how can these two packs be modified to work, if possible, and second, is there another source for third party colorpacks?

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Mon, 2012-06-11 01:12
Shemo725 wrote:
I'm using the latest version of firefox.

where should that css go? in the layout.css file?

Serge D wrote:
Shemo725 wrote:
not sure if this has been pointed out before (haven't browsed the last few pages), but this is how my window looks when adding a new album and photos, as seen by the provided attachment.

As I switched to a HTML 5 there may be some issues with dialogs
What browser do you see it with?

Edit: Try fix above

.ui-dialog .ui-dialog-content {clear:both; }

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

Custom.css should do

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Mon, 2012-06-11 01:15
bryan145 wrote:
I just noticed this problem. I recently upgraded my personal photo gallery to 3.0.3 and 3.2.2 and noticed the colorpacks "Green" and "Blue" are not showing up in the dropdown menu list in theme options. When I went to Guy Verschuere's website (http://www.cindyenguy.be/) to see if he had an updated version of these two color packs, his website was down. First, how can these two packs be modified to work, if possible, and second, is there another source for third party colorpacks?

Cannot help with the source
You need to adjust file structure - look at default color packs and compare with one you have
Then you would need to compare content as some rules changed

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
Shemo725

Joined: 2008-04-18
Posts: 424
Posted: Mon, 2012-06-11 05:12

thanks!

Serge D wrote:
Shemo725 wrote:
I'm using the latest version of firefox.

where should that css go? in the layout.css file?

Serge D wrote:
Shemo725 wrote:
not sure if this has been pointed out before (haven't browsed the last few pages), but this is how my window looks when adding a new album and photos, as seen by the provided attachment.

As I switched to a HTML 5 there may be some issues with dialogs
What browser do you see it with?

Edit: Try fix above

.ui-dialog .ui-dialog-content {clear:both; }

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

Custom.css should do

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Mon, 2012-06-11 16:19
floridave wrote:
Thanks Serge.

I'm also wondering about the placement of the
$this->thumb_bottom($item); and $this->thumb_top($item);
in MY_Theme_View.php
Is there a reason why you the thumb_bottom() function so low after the thumbnail image? You have a lot of markup between the thumbnail image and the thumb_bottom() function.
My interpretation of the function would be right before the thumbnail image and right after. Perhaps you have a different interpretation?

Personally I would like to see it closer the thumbnail image, but if you have a good reason I'm all ears.

this was changed in latest 4.0 beta drop, if you could test and let me know

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Mon, 2012-06-11 17:58
bryan145 wrote:
I just noticed this problem. I recently upgraded my personal photo gallery to 3.0.3 and 3.2.2 and noticed the colorpacks "Green" and "Blue" are not showing up in the dropdown menu list in theme options. When I went to Guy Verschuere's website (http://www.cindyenguy.be/) to see if he had an updated version of these two color packs, his website was down. First, how can these two packs be modified to work, if possible, and second, is there another source for third party colorpacks?

If it is of the same origin, then he moved some of it into WordPress - http://www.egregius.be/, while there is still http://gallery.egregius.be/

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
Feliz

Joined: 2009-01-08
Posts: 30
Posted: Tue, 2012-06-12 10:20

Finally my gallery is up and running!

You can check the results here: http://www.nunofeliz.com/gallery3/Mascaras-e-Cencerros

I tried to keep it simple so all comments and suggestions are welcome.

Once again Serge, my congratulations for your fabulous Grey Dragon theme, and many thanks for your’s and Floridave’s huge help to pointing me the right direction, to customize it my way. If it wasn’t both of you, I would still be grinding my brain and without results.

Keep up the good work.

Nuno Feliz

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Tue, 2012-06-12 16:33
Feliz wrote:
Finally my gallery is up and running!
...
Once again Serge, my congratulations for your fabulous Grey Dragon theme, and many thanks for your’s and Floridave’s huge help to pointing me the right direction, to customize it my way. If it wasn’t both of you, I would still be grinding my brain and without results.

Great! Looks neat

Perhaps you would like to contribute to my testimonials page http://blog.dragonsoft.us/gallery-3/#theme-quotes

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
Feliz

Joined: 2009-01-08
Posts: 30
Posted: Wed, 2012-06-13 14:18
Serge D wrote:
Great! Looks neat

Perhaps you would like to contribute to my testimonials page http://blog.dragonsoft.us/gallery-3/#theme-quotes

Serge

Done! :-)

 
creationsings

Joined: 2008-02-07
Posts: 57
Posted: Thu, 2012-06-14 13:25

I got a little behind with the updates on this great theme, so this morning, I tried to update from 3.1.2 to 3.2.2. In the past this has been beautifully painless. This time, however, it didn't work. It's as if the correct css files aren't being picked up or something. I had the carbon theme selected. But the background on the new version went all white. Only the area surrounding the thumbnails is the carbon theme.

My usual update procedure is as follows: Rename greydragon folder, then unpack new greydragon folder. That's usually all it takes. When I've verified that it works properly, I delete the old greydragon folder. When it failed this time...I went in and changed the name of the new theme so that I could distinguish between the two in the Gallery3 admin panels and thus flip back and forth. I do have some custom css in a separate folder (themes/custom/css), but my changes aren't major...at least I don't think so.

Do you have any pointers as to what my problem might be? The image below shows the old vs new so you can see what I'm talking about.

Thanks!

[img]http://dl.dropbox.com/u/28681533/compare.jpg[/img]

 
bryan145

Joined: 2010-10-24
Posts: 83
Posted: Thu, 2012-06-14 13:40

Creationsings, you need to install and activate the Greydragon shared module. Once you do that, all will be right again in Greydragon land. You can download it by clicking here: http://codex.gallery2.org/Gallery3:Modules:greydragon

 
creationsings

Joined: 2008-02-07
Posts: 57
Posted: Thu, 2012-06-14 13:47

Thanks! I had (obviously) missed that very important detail. Looks like I'm back in business. :)

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Thu, 2012-06-14 17:24

@creationsings: did install of greydragon module really helped you?

I have disabled/deleted the module and theme still worked fine. I more concerned that you may have need to visit admin section at least once.
For that indeed you need to have greydragon module of what you would be informed when attempting to visit theme's admin section.

Could you check your error log around the time you have seen an error?

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
grantiago

Joined: 2002-08-23
Posts: 78
Posted: Wed, 2012-06-20 20:41

Anyone else having problems with the server_add module and greydragon? the text in the modal box is all out of line and I can't click on the directories.

If I change back to Wind I can use the server upload. with greydragon nothing. firefox, chrome and ie.

g3 latest,
greyd latest.
unix server.

if this has been covered please point me to the topic. the search engine here is a bit overwhelming.
thanks.

 
windracer

Joined: 2007-03-05
Posts: 113
Posted: Wed, 2012-06-20 20:51
grantiago wrote:
Anyone else having problems with the server_add module and greydragon? the text in the modal box is all out of line and I can't click on the directories.

Yeah, I have the same formatting issue. I am able to click on the files I need to upload though, not sure I've tried directories.

 
grantiago

Joined: 2002-08-23
Posts: 78
Posted: Wed, 2012-06-20 21:38
Quote:
I am able to click on the files

I can't see the individual files. Just some directories layered under some text.

 
grantiago

Joined: 2002-08-23
Posts: 78
Posted: Fri, 2012-06-22 15:45

If I use the htaccess file to remove index.php from the url, the album root page in greydragon has no photo. Only the topbar with logo and search, the gallery description and a click to enter box. No photo.
root page is enabled in the greydragon settings. I like that feature.
greydragon 3.2.2
gallery 3.0.4

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Fri, 2012-06-22 17:59
grantiago wrote:
If I use the htaccess file to remove index.php from the url, the album root page in greydragon has no photo. Only the topbar with logo and search, the gallery description and a click to enter box. No photo.
root page is enabled in the greydragon settings. I like that feature.
greydragon 3.2.2
gallery 3.0.4

if you modified htaccess to remove index.php, you need to make sure URL used to populate root page does not include index.php either

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
grantiago

Joined: 2002-08-23
Posts: 78
Posted: Mon, 2012-06-25 15:35
Quote:
URL used to populate root page does not include index.php either

thanks for the quick response. could you give a quick example just to get me started.

 
bigu_c
bigu_c's picture

Joined: 2007-10-28
Posts: 421
Posted: Mon, 2012-06-25 16:30

Hi,

Could you please tell me how to remove this?

[img]http://gallery.menalto.com/files/1_23.jpg[/img]

Thanks.

 
eeldivad

Joined: 2005-09-19
Posts: 42
Posted: Mon, 2012-06-25 20:42

hi serge,

could you please add an auto pager/auto scroller in the next version of this theme? i want to be able to auto load next set of thumbs simply by scrolling down to the bottom, just like how facebook news feed works. this would eliminate the need for pagination and a much better user experience in my opinion. make this an option for those who don't want to use it. floridave helped me find the following scripts and i was wondering if you could build it into your theme. please let me know, thanks!

http://lagoscript.org/jquery/autopager/demo

[url=http://www.webresourcesdepot.com/load-content-while-scrolling-with-jquery/
]http://www.webresourcesdepot.com/load-content-while-scrolling-with-jquery/[/url]

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Tue, 2012-06-26 00:17
grantiago wrote:
Quote:
URL used to populate root page does not include index.php either

thanks for the quick response. could you give a quick example just to get me started.

This is what I have with RSS Feed Extra module enabled

Slideshow RSS Feed URL : /rss/feed/rss_extra/random/landscape

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Tue, 2012-06-26 00:24
bigu_c wrote:
Could you please tell me how to remove this?

there are few options, but one need to see actual page to suggest

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Tue, 2012-06-26 00:26
eeldivad wrote:
could you please add an auto pager/auto scroller in the next version of this theme? i want to be able to auto load next set of thumbs simply by scrolling down to the bottom, just like how facebook news feed works. this would eliminate the need for pagination and a much better user experience in my opinion. make this an option for those who don't want to use it. floridave helped me find the following scripts and i was wondering if you could build it into your theme. please let me know, thanks!

yes, I have seen this kind of implementation. if I am to look at it, it need to wait until GD 4.0 is released. just do not have time to do too many things

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
eeldivad

Joined: 2005-09-19
Posts: 42
Posted: Tue, 2012-06-26 00:31

cool, can't wait! thanks again for an awesome theme!!

 
bigu_c
bigu_c's picture

Joined: 2007-10-28
Posts: 421
Posted: Tue, 2012-06-26 07:33
Serge D wrote:
bigu_c wrote:
Could you please tell me how to remove this?

there are few options, but one need to see actual page to suggest

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

More details please.

Thanks.

 
bigu_c
bigu_c's picture

Joined: 2007-10-28
Posts: 421
Posted: Tue, 2012-06-26 09:12

In "Meta Data Display Mode", how to display "Views:" only (hide "By:...").

Thank you.

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Tue, 2012-06-26 16:50
bigu_c wrote:
In "Meta Data Display Mode", how to display "Views:" only (hide "By:...").

http://codex.gallery2.org/Gallery3:Themes:greydragon#Various_quick_CSS_tweaks

How to hide Owner's name in thumb's metadata?

.g-metadata li { display: none; }
.g-metadata li:first-child { display: inline; }

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
bigu_c
bigu_c's picture

Joined: 2007-10-28
Posts: 421
Posted: Tue, 2012-06-26 17:45
Serge D wrote:
bigu_c wrote:
In "Meta Data Display Mode", how to display "Views:" only (hide "By:...").

http://codex.gallery2.org/Gallery3:Themes:greydragon#Various_quick_CSS_tweaks

How to hide Owner's name in thumb's metadata?

.g-metadata li { display: none; }
.g-metadata li:first-child { display: inline; }

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

I tried but failed,

Here is my custom.css : http://wall-paper.co/themes/custom.css

My site: http://wall-paper.co/

Please tell me how to remove as I posted above too.

Thank you.

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Tue, 2012-06-26 19:15
bigu_c wrote:
I tried but failed,

Here is my custom.css : http://wall-paper.co/themes/custom.css

My site: http://wall-paper.co/

Please tell me how to remove as I posted above too.

oh, yes, sorry. this way it would not work as there are 3 items

First, different target need to be used
Second, perhaps :nth-child(3) or :last-child would work for you. it is not supported by all browsers though as it is CSS3

http://www.quirksmode.org/css/contents.html

.g-description li:last-child { display: none; }

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
bigu_c
bigu_c's picture

Joined: 2007-10-28
Posts: 421
Posted: Fri, 2012-06-29 04:29

That's nice, I did. Thanks :)

And.... again, how to display resized images in fixed width?

 
Shemo725

Joined: 2008-04-18
Posts: 424
Posted: Sun, 2012-07-01 07:11

hi Serge,

when trying to add an album, without typing anything in the box itself and hitting create, it'll show a bunch of code.

see the attachments.

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Mon, 2012-07-02 17:54

ups... deleted... wrong thread

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
ilkevinli
ilkevinli's picture

Joined: 2012-04-11
Posts: 7
Posted: Tue, 2012-07-03 16:07

Hi. Does anyone have any idea why I get a red X for the avatar.jpg image ? I see that picture file is in the images folder. Sorry if this has been asked already. I did try searching. Thanks.

[img]http://ilkevinli.ipage.com/Pics/Gallery.png[/img]

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Tue, 2012-07-03 17:19

hard to say from SS
most likely path is not correct

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
ilkevinli
ilkevinli's picture

Joined: 2012-04-11
Posts: 7
Posted: Tue, 2012-07-03 18:38

It is from the comment box. When I click on a picture and add a comment, that's what it shows. I have not changed anything so I'm not sure why the path wouldn't be correct. How would I go about checking the path for that ? Thanks.

[img]http://ilkevinli.ipage.com/Pics/Gallery3.png[/img]

Quote:
hard to say from SS
most likely path is not correct

Serge

 
GuWeHa
GuWeHa's picture

Joined: 2008-01-20
Posts: 28
Posted: Thu, 2012-07-12 08:46

Hi folks,

after testing for several days now, reading many postings in this thread and getting confused more and more I thought it would be a good idea to ask for some assistance here now.

I'm running Gallery 3.0.4 in this environment:

Operating system: Linux 2.6.32-5-openvz-amd64
Apache: Apache
PHP: 5.3.3-7+squeeze13
MySQL: 5.1.63-0+squeeze1
Graphics toolkit: imagemagick
Version: 3.0.4 (Ricochet)
Albums: 6
Photos: 81

The following modules are installed and activated:

GreyDragon admin module
shadowbox
kbd_nav
thumbnav
imageblock_ex
lanuguageflags
multilang3_0
slideshow_ex

I built a "custom" structure below the "themes" folder, containing /css, /images and /views without any contents (files) so far.

My problem is:

I'm looking for a way to get the slideshow up and running on the rootpage. In the theme's settings I enabled "Allow rootpage", disabled "Show Gallery Description", choose "fade" and "3 s", and hooked "hide sidebar".

Anyway what I put in the "Slideshow RSS Feed URL" field, e.g. "/gallery3/index.php/rss/feed/gallery/latest" I don't see anything on the root page (http://xxx.yyy.com/index.php/?root=yes), weather an image nor a slideshow. And although I tried a RSS feed which works in firefox, the same link doesn't work in the "Slideshow RSS Feed URL" field. I'm baffled.

No idea what's going wrong, no idea where to start further searching, no more ideas, to less experience with this theme (and RSS feeds).

Any hint, tip or suggestion would be greatly appreciated - many thanks in advance!

Greetinx

GuWeHa

 
jeremy wood
jeremy wood's picture

Joined: 2012-07-10
Posts: 1
Posted: Tue, 2012-07-10 18:08

I installed the greydragon theme ok, but I can't work out where to upload the greydragon admin section so it appears in the theme choice. can anyone help me with this please.

http://natsukidoll.drdos.id.au/portfolio

kind regards :)

 
GuWeHa
GuWeHa's picture

Joined: 2008-01-20
Posts: 28
Posted: Wed, 2012-07-11 06:06

Hi Jeremy,

jeremy wood wrote:
... but I can't work out where to upload the greydragon admin section so it appears in the theme choice ...

Just copy the content of greydragon.zip to /Gallery3/modules/greydragon. Having done so you'll see the GreyDragon theme admin page when choosing "Appearance => Theme Options". Well, of course you have to select the GreyDragon theme as current theme before ;-)

Not having installed the GreyDragon admin module before you won't see the GreyDragon theme's admin page. Anyway, there's no need and no choice to select GreyDragon admin module from "Appearance => Theme Choice." It's loaded implicitly ;-)

Hope this helps.

Greetinx

GuWeHa

www.pix-bavaria.com

 
GuWeHa
GuWeHa's picture

Joined: 2008-01-20
Posts: 28
Posted: Thu, 2012-07-12 08:46

Hi folks,

nobody here who is able/willing to help me getting the slide show up and running on my rootpage?

For details see my posting from Fri, 2012-07-06 06:19 in this thread, please.

Greetinx

GuWeHa

 
activebiz
activebiz's picture

Joined: 2007-02-27
Posts: 30
Posted: Wed, 2012-07-11 10:01

Hi,
just did a brand new installation using the greydragon theme, uploaded also the greydragon_shared - it is there, showing up in the modules, activated it - but now it lists itself twice!
one upgraded version [13] and one version [3].
On the server there is only one module in the directory - how can it be that it lists it 2 times?
I wonder if somewhere there was a glitch - which should not really be, since it is a clean install of the gallery [new website].
Appreciate your feedback on this.
I deactivated the second listing - but it still shows in the modules list. Does not seem to hurt any - it's just strange.

Thanks,
Michele

where is it written that all our dreams have to be small ones....

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Wed, 2012-07-11 17:00
activebiz wrote:
Hi,
just did a brand new installation using the greydragon theme, uploaded also the greydragon_shared - it is there, showing up in the modules, activated it - but now it lists itself twice!
one upgraded version [13] and one version [3].
On the server there is only one module in the directory - how can it be that it lists it 2 times?
I wonder if somewhere there was a glitch - which should not really be, since it is a clean install of the gallery [new website].
Appreciate your feedback on this.
I deactivated the second listing - but it still shows in the modules list. Does not seem to hurt any - it's just strange.

you should have had the following file structures:

themes\greydragon

and

modules\greydragon

you do not rename either. otherwise you may see what you see

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter

 
GuWeHa
GuWeHa's picture

Joined: 2008-01-20
Posts: 28
Posted: Thu, 2012-07-12 08:45

Hi folks,

a few days ago I posted:

GuWeHa wrote:
Any hint, tip or suggestion would be greatly appreciated - many thanks in advance!

Having spent a further couple of hours on searching for errors without result
I found the reason for the strange behavior by myself and fixed the problem.

Now it works!

The slideshow is running fine and no more help is needed!

Anyway, thanks for reading!

Greetinx

GuWeHa

 
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2466
Posted: Thu, 2012-07-12 16:42
GuWeHa wrote:
Now it works! The slideshow is running fine and no more help is needed!

What was the issue?

Serge
_____________________________________________
Photo Gallery | GreyDragon Theme | Follow on Twitter