Search found 41 matches
- Sun Feb 07, 2010 7:25 pm
- Forum: Modules/Add-Ons
- Topic: Simple Slider Problem
- Replies: 2
- Views: 1659
Re: Simple Slider Problem
Hi James123 and all having troubles with Simple Slider. Using CMSMS 1.6.6 and SS 0.3 I found solution how to get it work ! I just replaced all php sections starting with <? with <?php and all php starts in all scripts with echo, f.e. <?=$this->Lang with <?php echo $this->Lang and it works for me ...
- Sun Feb 07, 2010 12:19 pm
- Forum: Tips and Tricks
- Topic: poll
- Replies: 16
- Views: 16068
Re: poll
Hi Gregor, thanks for your T&T ! Please correct me if Im wrong, but your Poll is now only icluded into your template, it isnt managed from the CMS MS backend, isnt it? Actually, I played a little bit around with the official CMS MS Polls and I get a very similar result (find the file attached). ...
- Wed Feb 03, 2010 9:19 pm
- Forum: Modules/Add-Ons
- Topic: [FEU] Registration goes on even without required fields
- Replies: 22
- Views: 6217
Re: [FEU] Registration goes on even without required fields
me again, how did you managed to include the license agreement? I added an into the template,jwaldeck wrote: checkbox that has to be checked during the registration process (it's a license agreement)
but it is at the end of the form. Any help appreciated ...
- Wed Feb 03, 2010 9:07 pm
- Forum: Modules/Add-Ons
- Topic: [FEU] Registration goes on even without required fields
- Replies: 22
- Views: 6217
Re: [FEU] Registration goes on even without required fields
Hi all, the same problem, solved by the solution from jwaldeck.
I think this should be included into a new release of the modul ASAP
I think this should be included into a new release of the modul ASAP
- Wed Jan 27, 2010 10:11 pm
- Forum: General Discussion
- Topic: Most popular news
- Replies: 2
- Views: 2185
- Thu Jan 21, 2010 7:16 pm
- Forum: Modules/Add-Ons
- Topic: Search a news specific category, is it possible?
- Replies: 3
- Views: 1796
Re: Search a news specific category, is it possible?
Im trying to do the same. Did you find a solution?
- Sat Aug 29, 2009 9:28 pm
- Forum: [locked] CMSMS MLE fork
- Topic: Multilanguage CMSMS MLE 1.6.3
- Replies: 18
- Views: 11043
Wrong datatype for second argument
Hi all, after upgrading from MLE 1.4.1 to 1.6.3 and followed the upgrade manual, Im still getting error messages in_array() [<a href='function.in-array'>function.in-array</a>]: Wrong datatype for second argument in .. for {lang} and {menu} tags. Any ideas what can be wrong? Thanks a lot, Miro
- Wed Mar 18, 2009 10:42 pm
- Forum: Developers Discussion
- Topic: Create UDT using pretty url from news
- Replies: 1
- Views: 1250
Create UDT using pretty url from news
Hi all, I would like to create an UDT that will generate a link to file, using the pretty url parameter inside. F.e. if the page pretty url is like news/12/6/my-first-article then the UDT will create the link to the file named my-first-article.pdf something like this echo '<a href="../images/'....
- Fri Dec 05, 2008 6:53 pm
- Forum: Modules/Add-Ons
- Topic: News Module Notification Sent for New Items
- Replies: 2
- Views: 2090
Re: News Module Notification Sent for New Items
hi, Im looking for that too...
- Fri Nov 07, 2008 8:41 am
- Forum: Modules/Add-Ons
- Topic: Filelink with image-type icon and file-size?
- Replies: 2
- Views: 2710
Filelink with image-type icon and file-size?
Hi all,
I would like to ask you if it is possible to create a file-link, that will include an image-type before the link and the file-size after the link.
F.e., if I will make a link to a pdf file, I wil get the pdf icon, then the link to a file and at the end the file-size?
Thanks a lot,
Miro
I would like to ask you if it is possible to create a file-link, that will include an image-type before the link and the file-size after the link.
F.e., if I will make a link to a pdf file, I wil get the pdf icon, then the link to a file and at the end the file-size?
Thanks a lot,
Miro
- Wed Oct 29, 2008 2:36 pm
- Forum: Tips and Tricks
- Topic: How to change print anchor in News from text to image
- Replies: 2
- Views: 3295
Re: How to change print anchor in News from text to image
Maybe using CSS ? #NewsPostDetailPrintLink a{ display: block; width: 40px; height: 40px; text-indent: -9999px; background: transparent url('images/icon_print.gif') left top no-repeat; overflow: hidden;} Width and height are the same of the image size, the charecter Print anchor is mad...
- Tue Oct 28, 2008 12:02 pm
- Forum: Developers Discussion
- Topic: [Solved] Display something only if page alias LIKE ?
- Replies: 6
- Views: 2771
Re: Display something only if page alias LIKE ?
Great, thats what Ive been looking for.
Thanks a lot.
M.
Thanks a lot.
M.
- Tue Oct 28, 2008 11:30 am
- Forum: Developers Discussion
- Topic: [Solved] Display something only if page alias LIKE ?
- Replies: 6
- Views: 2771
Re: Display something only if page alias LIKE ?
Im not sure what you are talking about...
Where should I change it?
M.
Where should I change it?
M.
- Tue Oct 28, 2008 8:27 am
- Forum: Developers Discussion
- Topic: [Solved] Display something only if page alias LIKE ?
- Replies: 6
- Views: 2771
Re: Display something only if page alias LIKE ?
Yes, of course, but what if I would like show other components (static text, banners etc.) only on selected pages having some predefined text in page-alias? Hmm?
M.
M.
- Tue Oct 28, 2008 5:30 am
- Forum: Developers Discussion
- Topic: [Solved] Display something only if page alias LIKE ?
- Replies: 6
- Views: 2771
[Solved] Display something only if page alias LIKE ?
Hi all, Im trying to write a condition, that shows something (menu, text) only if page-alias contains some text/preffix. Something similar as you can use in sqls LIKE '%bob%' . Is it possible to do it with smarty? I tryied {if $page_alias == "text%"} in my page template but doesnt work. A...