Search found 85 matches

by Mangek
Tue Jan 06, 2009 1:24 pm
Forum: Plugins
Topic: Suggestion (more a plea..) for the Lightbox plugin
Replies: 15
Views: 6925

Thanks for the reply Garvin! unfortunately I don't know where to begin, or what to do. :oops: I did a search, and found this function in the above mentioned file: function event_hook($event, &$bag, &$eventData) { and below that if ($regex == null) { if ($type == 'lightbox' || $type == 'light...
by Mangek
Mon Jan 05, 2009 4:45 pm
Forum: Plugins
Topic: Suggestion (more a plea..) for the Lightbox plugin
Replies: 15
Views: 6925

Any suggestions? Before I break something, going in over my head.. :D
by Mangek
Sat Jan 03, 2009 8:27 pm
Forum: Plugins
Topic: Suggestion (more a plea..) for the Lightbox plugin
Replies: 15
Views: 6925

Suggestion (more a plea..) for the Lightbox plugin

Hey guys, I'm using the Lightbox plugin to post some images in a Gallery-like manner and I'm starting to miss the rel='lightbox [groupname] ' feature. I've tried adding that bit by hand, and it's grouping the images, but it still spits out a second rel='lightbox' which probably will break something ...
by Mangek
Thu Dec 25, 2008 12:07 am
Forum: General discussions
Topic: Happy Holidays everyone
Replies: 4
Views: 2379

Happy Holidays from Sweden. :)
by Mangek
Sat Nov 01, 2008 10:39 am
Forum: Themes
Topic: Where to find the HTML code to edit the font size for theme.
Replies: 3
Views: 4498

Hey Jessica,

You need to add this to the css:

Code: Select all

.serendipity_entry_body {
font-size: 14pt; }
(The number can be changed to what size you'd like).

:-]
by Mangek
Fri Sep 05, 2008 11:03 pm
Forum: Bugs
Topic: admin page open public while editing
Replies: 2
Views: 2117

I believe that's because you're 'logged in' (so that you don't have to log in every time you wanna change or add something), and a cookie or session (or both) is the reason. If you view your site in another browser, or if you can view with tabs, open your site but don't put the www. in front if you ...
by Mangek
Wed Sep 03, 2008 11:57 pm
Forum: General discussions
Topic: Posts have passwords by default with Mozilla
Replies: 8
Views: 4943

Yeah, sorry about the menu confusion - I tried asking a friend what they were, but he didn't respond in good time so I took a shot. Guess I missed. ;) You should be able to select the saved password you want to remove (not sure about mac, but can't imagine it's much different from pc??), no need to ...
by Mangek
Wed Sep 03, 2008 10:59 pm
Forum: General discussions
Topic: Posts have passwords by default with Mozilla
Replies: 8
Views: 4943

This may be a longshot, but try this: (I have a Swedish version, so menus may be named different from what I type here). Tools > settings Sequrity tab > saved passwords Locate any saved passwords related to your site and remove them from the list. Write a new entry and make sure no password is fille...
by Mangek
Mon Sep 01, 2008 8:00 pm
Forum: General discussions
Topic: Looking for a way to hyper link to all blog pages
Replies: 9
Views: 3810

I did a bit of browsing on this subject the other day and altered my code to look like this: <div class='serendipity_pageFooter' style="text-align: center"> {if $footer_info} {if $footer_prev_page} <a href="{$footer_prev_page}">« Previous</a>   {else} <span class="grey"...
by Mangek
Sun Aug 24, 2008 1:12 am
Forum: General discussions
Topic: Hiding date for entries not shown on front page?
Replies: 11
Views: 4456

Heh actually, {if $entry.properties.ep_no_frontpage} did just the oposite of what I wanted.. :D (Yeah, I was curious enough to try it -- less code means more fun).

I'll go with the !=, it worked fine. Many thanks Don! :)
by Mangek
Sun Aug 24, 2008 1:00 am
Forum: General discussions
Topic: Hiding date for entries not shown on front page?
Replies: 11
Views: 4456

== hid the date from all instances, both frontpage and entry detail page. != however, did the trick! Thanks! :)
by Mangek
Sun Aug 24, 2008 12:52 am
Forum: General discussions
Topic: Hiding date for entries not shown on front page?
Replies: 11
Views: 4456

Actually, I changed it to

Code: Select all

{if $entry.properties.ep_no_frontpage ='true'}
and now I get a fatal error. :?
by Mangek
Sun Aug 24, 2008 12:48 am
Forum: General discussions
Topic: Hiding date for entries not shown on front page?
Replies: 11
Views: 4456

Hey Garvin - how about {if $entry.properties.ep_no_frontpage ='true'}?? Then the date hiding would correspond exactly to the flag already set for hiding the entry from the frontpage, and an additional custom extended property field would not be necessary.... Yeah, actually I added 'true' to the cod...
by Mangek
Sun Aug 24, 2008 12:46 am
Forum: General discussions
Topic: Hiding date for entries not shown on front page?
Replies: 11
Views: 4456

Awesome, that works like a charm, Garvin! Thank you so much! :)
by Mangek
Fri Aug 22, 2008 9:03 pm
Forum: General discussions
Topic: Hiding date for entries not shown on front page?
Replies: 11
Views: 4456

Hiding date for entries not shown on front page?

Good evening! I have a couple of entries that I've hidden from the front page, containing links and a gallery and such (I don't want to use static pages, I still want the comments). My question is whether it'd be possible to hide the date for these entries? Perhaps in the same way the 'sticky'-text ...