Search found 23 matches

by weaselweasel
Mon Nov 08, 2010 11:00 am
Forum: Dutch - Nederlands
Topic: Calendar module: items over pagina's verdelen
Replies: 1
Views: 641

Calendar module: items over pagina's verdelen

Hallo, ik heb een vraagje: Ik gebruik de Calendar module. Daar heb ik inmiddels aardig wat data in staan. Te veel voor op één pagina. Nu weet ik dat ik 'limit=10' aan de tag kan toevoegen. Maar het probleem is dat 'ie dan alleen 10 items laat zien, en verder niks. Ik wil dat men alles kan zien, maar...
by weaselweasel
Mon Nov 08, 2010 10:55 am
Forum: Modules/Add-Ons
Topic: Calendar: next & previous link?
Replies: 1
Views: 644

Calendar: next & previous link?

Hi there. I use the Calendar module. I put quite a few dates in there, but I don't want all that information on one page. I'd rather split it in like, 10 items a page or something. I know you can set a limit, but then.. It only shows 10, and nothing else. Is it possible to make a previous/next link?...
by weaselweasel
Sat Oct 16, 2010 12:28 pm
Forum: Modules/Add-Ons
Topic: Shop Made Simple: use multiple images
Replies: 3
Views: 3976

Re: Shop Made Simple: use multiple images

That's the thing... If they are shown in the original template... There must be a tag or something that calls for the images to appear, right?
by weaselweasel
Thu Oct 14, 2010 4:37 pm
Forum: Modules/Add-Ons
Topic: Shop Made Simple: use multiple images
Replies: 3
Views: 3976

Shop Made Simple: use multiple images

Hi.

I use Shop Made Simple.
In the shop, you can upload items. For these items, you can upload images.
You can show this image in the template with the tag {$pimage}.

You can also add multiple images to a item. But... How do you use the other images you upload.. Is there a tag for them?
by weaselweasel
Fri Oct 01, 2010 3:14 pm
Forum: Modules/Add-Ons
Topic: unable to delete module (permission denied!?)
Replies: 3
Views: 1138

Re: unable to delete module (permission denied!?)

Ah, thank you!

note to self: don't upload stuff via php system anymore ;)
by weaselweasel
Fri Oct 01, 2010 2:05 pm
Forum: Modules/Add-Ons
Topic: unable to delete module (permission denied!?)
Replies: 3
Views: 1138

unable to delete module (permission denied!?)

I installed a module called Cataloger on my CMSMS, by uploading an XML file. Now I want to clean up, so I'd like to delete the module. But when I try to delete the files, my FTP client says "550: Permission Denied"!! So now there are files stuck on my own webspace which I can't get off. It...
by weaselweasel
Sat Jun 06, 2009 12:46 pm
Forum: CMSMS Core
Topic: strftime doens't work
Replies: 1
Views: 931

Re: strftime doens't work

OK, I found out the comments-module only works with the date() format... But in the modulehelp it literally says that you can also set strftime(). Guess it's a bug? Why am I the only one with this problem??
I want to put the date in my own language, but this seems to be impossible.
by weaselweasel
Sat Jun 06, 2009 12:31 pm
Forum: CMSMS Core
Topic: strftime doens't work
Replies: 1
Views: 931

strftime doens't work

OK, this is a very strange thing. When I try to change the strftime in the Comments-module, it does NOT print the date but some crazy nonsense. I put this tag inside my News-template: {cms_module module='comments' modulename='News' pageid='$entry->id' dateformat='%e %B %Y, %H:%M' lang='nl_NL'} Then,...
by weaselweasel
Tue Mar 10, 2009 12:12 am
Forum: CMSMS Core
Topic: if/else statements seem impossible
Replies: 4
Views: 1346

Re: if/else statements seem impossible

calguy1000 wrote:
weaselweasel wrote: (They should put this somewhere in the manual though)
It is... You just didn't read it:

http://smarty.net/manual/en/
Aha, that link comes in very handy. Thanks again.
by weaselweasel
Mon Mar 09, 2009 11:52 pm
Forum: CMSMS Core
Topic: if/else statements seem impossible
Replies: 4
Views: 1346

Re: if/else statements seem impossible

You're a hero!
Works like a charm! Thanks a bunch.

(They should put this somewhere in the manual though)
by weaselweasel
Mon Mar 09, 2009 11:06 pm
Forum: CMSMS Core
Topic: if/else statements seem impossible
Replies: 4
Views: 1346

if/else statements seem impossible

I've been searching for hours now, but can't find the solution for this simple issue. Searched all forums, but no luck... All I want to do is build this inside a template: {$myname = 'bob'} {if $myname == 'bob'} Hello I'm Bob! {else} I am not Bob {/if} It's as simple as that, and still it's the most...
by weaselweasel
Mon Aug 04, 2008 4:51 pm
Forum: Modules/Add-Ons
Topic: Include Flickr in my website
Replies: 1
Views: 1449

Include Flickr in my website

Is there any way to include your Flickr album into my website? I've tried lots of different tools, but I can't get any of 'em to really work. Now I'm working with [urlhttp://bogong.dk/projects/flickrmodule]this[/url] module. I've installed it into my CMSMS, and it seems to work, but then there is th...
by weaselweasel
Sun Feb 24, 2008 6:06 pm
Forum: CMSMS Core
Topic: [SOLVED] menutext in an array??
Replies: 8
Views: 2652

Re: menutext in an array??

alby wrote:
weaselweasel wrote: Now, if the page_alias is not home... Can I use {else} ?
Yes  ;),
{if $page_alias == 'home'}This is home!
{else}This is not home
{/if}

view smarty doc

Alby
Solved!
Thanks a million!! :D
by weaselweasel
Sun Feb 24, 2008 5:59 pm
Forum: CMSMS Core
Topic: [SOLVED] menutext in an array??
Replies: 8
Views: 2652

Re: menutext in an array??

This is what I use (but doesn't work): {php} $pagetitle ='{menutext}'; {/php} {php}if ( $pagina == "home" ) { echo "This is home!" } {/php} How can I do this with UDT? {if $page_alias == 'home'}This is home!{/if} where home is alias name of your page Alby Ok great!! This works. ...
by weaselweasel
Sun Feb 24, 2008 5:49 pm
Forum: CMSMS Core
Topic: [SOLVED] menutext in an array??
Replies: 8
Views: 2652

Re: menutext in an array??

This is what I use (but doesn't work):
{php} $pagetitle ='{menutext}'; {/php}
{php}if ( $pagina == "home" ) { echo "This is home!" } {/php}




How can I do this with UDT?

Go to advanced search