•  » Themes
  •  » [Theme] stripped (last version: 2.3.1)

#181 2011-08-31 14:31:06

mol
Piwigo Team Germany
germany
2010-05-26
108

Re: [Theme] stripped (last version: 2.3.1)

Joergen wrote:

I like the theme"stripped" very much, Pictures are in focus. But I want to change the lowercase setting (in German we use much more uppercases).

i like "stripped" too ;-}

Theme Configuration : Interface Options : checkbox "Text in Kleinbuchstaben konvertieren"

don´t edit in original css files , after the next update there are gone!

Last edited by mol (2011-08-31 14:32:07)

Offline

 

#182 2011-09-01 23:32:16

Joergen
Guest

Re: [Theme] stripped (last version: 2.3.1)

OK done, thanks.

 

#183 2011-09-07 19:59:18

reyn
Member
2011-09-04
2

Re: [Theme] stripped (last version: 2.3.1)

I am just getting used to Piwigo and would like to use this fine theme. Can I make a couple of changes to it for my own use? I have added an additional Home page using info from the blog.

First change: I have the menu set to not show by default on the album page. After I have selected to show the menu I would like it to hide again on leaving the album page so that each time I re-visit the album page the menu is hidden.

Second change: I have my logo set up in configuration and it works fine except that it is not shown on the picture page, I would like to keep it consistent across the site.

If someone could point me in the right direction I will have a go at making the changes.

I should point out that I have copied the theme and renamed it so I don't mess up the original.

Thank you
Frank

Offline

 

#184 2011-09-08 00:13:33

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped (last version: 2.3.1)

reyn wrote:

First change: I have the menu set to not show by default on the album page. After I have selected to show the menu I would like it to hide again on leaving the album page so that each time I re-visit the album page the menu is hidden.

This is esay, even you have to make a modification of the file :
scripts-tcp.js in the folder "js".

You've got to remove this part :

Code:

  // if cookie says the menu is hiding, keep it hidden!
  if (sidemenu == 'hiding') {
    jQuery("#menubar").hide();
  }
  if (sidemenu == 'showing') {
    jQuery("#menubar").show();
  }

If done on the stripped theme, this modification will be erased at every update.

I didn't test it, but it should work...

reyn wrote:

Second change: I have my logo set up in configuration and it works fine except that it is not shown on the picture page, I would like to keep it consistent across the site.

The header has been removed because it will make the picture smaller... on small screens like on netbooks, it could be quite difficult to see the pictures with a header.

Anyway, that's very easy to modify.

There's two ways to do that.

1) go in the theme.css and erase the following lines (687 to 689):

Code:

#thePicturePage #theHeader {
  display: none;
}

This will last only to the next update (but as you made a copy, this can work well for you)

2) with Local Files Editor, create a local CSS rule:

Code:

#thePicturePage #theHeader {
  display: block;
}

This will last even after an update.

Last edited by Zaphod (2011-09-08 00:14:03)

Offline

 

#185 2011-09-08 16:16:34

reyn
Member
2011-09-04
2

Re: [Theme] stripped (last version: 2.3.1)

Thank you, the second problem is solved, I think for the First problem I would have to use something like the onunload event to get the menu to close when I leave the page to close the menu. Have to investigate further. I want the menu to only be manually selected and then if I forget to close it when I move off the page it closes itself so next time I visit it's closed. Probably only makes sense to me.
Frank

Offline

 

#186 2011-09-08 19:53:29

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped (last version: 2.3.1)

reyn wrote:

Thank you, the second problem is solved, I think for the First problem I would have to use something like the onunload event to get the menu to close when I leave the page to close the menu.

By default, the menu is closed.

The only reason it stays open when you move from one page to another is that there's a cookie to remember the last menu state.

That's why I proposed to delete the cookie reading part.

This proposal didn't work?

Offline

 

#187 2011-09-08 22:08:16

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped (last version: 2.3.1)

I saw that in local_head.tpl, there is this line:

Code:

    {combine_script id='scripts-tcp' load='header' require='jquery.effects.blind' path='themes/stripped/js/scripts-tcp.js'}

So your modified scripts-tcp.js will not be read, as the local_head will go into stripped folder.

You've got to replace it by this line:

Code:

    {combine_script id='scripts-tcp' load='header' require='jquery.effects.blind' path='themes/`$theme.id`/js/scripts-tcp.js'}

Tell me if it's working like this...

Offline

 

#188 2011-09-09 10:23:28

plg
Piwigo Team
Nantes, France, Europe
2002-04-05
14087

Re: [Theme] stripped (last version: 2.3.1)

Hi Zaphod,

Can you backport the correction made for [Bugtracker] ticket 2436 on Stripped please?

Offline

 

#189 2011-10-04 10:03:13

puschpull
Member
2011-04-04
32

Re: [Theme] stripped (last version: 2.3.1)

Zaphod: Hi
I make translation to Czech Language
http://puschpull.org/root/p/cs_CZ.rar
(for new version Stripped Revision 1.5.0)
:)

Offline

 

#190 2011-10-04 23:28:35

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped (last version: 2.3.1)

Thanks, it's included in version 1.5.2.

Offline

 

#191 2011-10-08 15:16:05

Ofboir
Guest

Re: [Theme] stripped (last version: 2.3.1)

Hi !

Thank you for this great theme ! I searched a while for the perfect theme, and now I think I found it.

Just one thing, is it possible to display text (categories names, photos titles, etc) with letter case ? I am not a big fan of this "lower case only" display ...

Thank you !

 

#192 2011-10-08 16:10:54

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped (last version: 2.3.1)

There is a configuration page (admin / themes / then look at the links below the stripped theme) with an option (force text to lowercase) to uncheck.

Offline

 

#193 2011-10-13 09:42:36

puschpull
Member
2011-04-04
32

Re: [Theme] stripped (last version: 2.3.1)

Zaphod: Hi
I make little correction for translation to Czech Language
http://puschpull.org/root/p/cs_CZ.rar
(for new version Stripped Revision 1.5.6)
:)

Offline

 

#194 2011-10-15 12:18:31

coolboy
Guest

Re: [Theme] stripped (last version: 2.3.1)

Hi Zaphod,

Really Nice theme you have created but I want to lit change in menu where Menu > Home> Galleries Name, Here I want to change home link and added my root directory link after that i am add my piwigo galleries link, i hope you getting my point, in short i juz add one more link in this section.

Regards

 

#195 2011-10-25 16:20:09

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped (last version: 2.3.1)

Hi,

What you want to do is not really linked to the theme. It's more a general piwigo question.
And I've absolutely no idea how to do this.
So... I think you'd better ask the question here:
http://piwigo.org/forum/viewforum.php?id=5

You'd get more answers, I think.

Offline

 
  •  » Themes
  •  » [Theme] stripped (last version: 2.3.1)

Board footer

Powered by FluxBB