I forgot to say thanks for this!
Thanks!
Dan
Search found 19 matches
- Thu Apr 17, 2008 12:26 pm
- Forum: CMSMS Core
- Topic: Using get vairiable in url tomake a switch in template - SOLVED
- Replies: 2
- Views: 1218
- Tue Mar 18, 2008 3:57 pm
- Forum: CMSMS Core
- Topic: Using get vairiable in url tomake a switch in template - SOLVED
- Replies: 2
- Views: 1218
Using get vairiable in url tomake a switch in template - SOLVED
Can I have a link like this: www.domain.com?page=thealias&colour=blue then have some code in a template or global content block that does a switch like: {if colour=='blue'} do this {else} do that {/if} I'm not sure how to reference the variable in the template with the {if colour=='blue'} bit? A...
- Thu Feb 28, 2008 10:01 pm
- Forum: Help Wanted (commercial)
- Topic: Simple cart (but low budget)
- Replies: 31
- Views: 21040
Re: Simple cart (but low budget)
I have experience with shopify - recently I designed this site www.jemzonline.co.uk I also have experience with cmsms - recently I designed this site www.richiemuir.com I was responsibile for all the imagery/branding aswell. If you want a competitive quote - contact me. Dan dan@danobrien.net www.dan...
- Sat Jan 05, 2008 9:58 am
- Forum: Modules/Add-Ons
- Topic: NMS 2.0 Ready for Testing
- Replies: 24
- Views: 7866
Re: NMS 2.0 Ready for Testing
I will test fo you - I have significant experience with phplist and sendstudio.
Thanks
Dan
Thanks
Dan
- Thu Jan 03, 2008 11:51 am
- Forum: CMSMS Core
- Topic: Easiest way to upgrade from 1.2.2 to 1.2.3
- Replies: 5
- Views: 1909
Easiest way to upgrade from 1.2.2 to 1.2.3
Is there a way just to replace the updated files?
Sorry if it's a stupid question.
Dan
Sorry if it's a stupid question.
Dan
- Fri Dec 21, 2007 11:30 am
- Forum: CMS Show Off
- Topic: RichieMuir.com made with CMSMS
- Replies: 1
- Views: 1800
RichieMuir.com made with CMSMS
This is hopefully the first of many CMSMS sites I'll design.
www.richiemuir.com
Uses guestbook, calendar, gallery.
I would like any feedback.
Thanks
Dan
www.richiemuir.com
Uses guestbook, calendar, gallery.
I would like any feedback.
Thanks
Dan
- Fri Dec 21, 2007 11:23 am
- Forum: CMSMS Core
- Topic: UDT to get parent not root node
- Replies: 5
- Views: 1680
Re: UDT to get parent not root node
If no one suggests any other code - shall I mark it as solved?
Thanks
Dan
Thanks
Dan
- Thu Dec 20, 2007 11:38 am
- Forum: CMSMS Core
- Topic: UDT to get parent not root node
- Replies: 5
- Views: 1680
Re: UDT to get parent not root node
ok, I have some code - and it works - but I know there must be a better way! global $gCms; $contentops =& $gCms->GetContentOperations(); $smarty =& $gCms->GetSmarty(); $alias = $smarty->get_template_vars('page_alias'); $content =& $contentops->LoadContentFromAlias($alias); $parentid = $c...
- Thu Dec 20, 2007 10:11 am
- Forum: CMSMS Core
- Topic: UDT to get parent not root node
- Replies: 5
- Views: 1680
UDT to get parent not root node
I have this UDT which retreives the root node. global $gCms; global $smarty; $manager =& $gCms->GetHierarchyManager(); $var = 'root_page_alias'; if( isset($params['assign']) && $params['assign'] != '' ) { $var = $params['assign']; } $result = "NO RESULT"; $thisPage = $gCms->v...
- Wed Nov 14, 2007 5:03 pm
- Forum: CMSMS Core
- Topic: change of owner-id when uploading with XML???
- Replies: 5
- Views: 5356
Re: change of owner-id when uploading with XML???
I dont see the change permissions link for the uploaded calendar or guestbook module?
Should I see them?
Thanks
Dan
Should I see them?
Thanks
Dan
- Wed Nov 14, 2007 4:55 pm
- Forum: CMSMS Core
- Topic: can't ftp edit modules cus owner is apache
- Replies: 1
- Views: 751
can't ftp edit modules cus owner is apache
I need to fix a guestbook bug - but I can ftp down the file frmo the module directory because it's owned by apache (I set up the cms by ftping the scripts up to the server - but the module was upload as xml and spat out by the system) What's the simplest way for me to edit the script when it's owed ...
- Thu Oct 25, 2007 4:01 pm
- Forum: Layout and Design (CSS & HTML)
- Topic: Why doesn't this work?
- Replies: 1
- Views: 966
Why doesn't this work?
I call a menu on the same page two ways: {menu template="children" start_page="Design"} {menu template="children" start_page="Build"} The menu temlpate is like this: {assign var="depth" value=$node->depth} {foreach from=$nodelist item=node} {if $nod...
- Thu Oct 25, 2007 3:39 pm
- Forum: Layout and Design (CSS & HTML)
- Topic: Remove breadcerumbs from homepage only [solved]
- Replies: 3
- Views: 1233
Re: Remove breadcerumbs from homepage only
Perfect!
Such a simple piece of code - but I can use it to show different menus on different pages aswell.
Much appreciated
Such a simple piece of code - but I can use it to show different menus on different pages aswell.
Much appreciated
- Thu Oct 25, 2007 1:59 pm
- Forum: Layout and Design (CSS & HTML)
- Topic: Remove breadcerumbs from homepage only [solved]
- Replies: 3
- Views: 1233
Remove breadcerumbs from homepage only [solved]
I'd think it was something like this:
{if page->title != hompage}
{breadcrumbs starttext='You are here' root='Home' delimiter='»'}
{/if}
Any suggestions?
Thanks
Dan
{if page->title != hompage}
{breadcrumbs starttext='You are here' root='Home' delimiter='»'}
{/if}
Any suggestions?
Thanks
Dan
- Wed Oct 24, 2007 6:58 pm
- Forum: Layout and Design (CSS & HTML)
- Topic: Help me create a simple list from the menu.
- Replies: 6
- Views: 2134
Re: Help me create a simple list from the menu.
Actually - this bit:
{repeat string="" times=$node->depth-$node->prevdepth}
makes the style appear for all new ul's when actually I only want it to appear for nodes > 2 - any ideas how to fix?
{repeat string="" times=$node->depth-$node->prevdepth}
makes the style appear for all new ul's when actually I only want it to appear for nodes > 2 - any ideas how to fix?