Page 1 of 1

Navigator Breadcrumbs default template enhancement

Posted: Thu May 19, 2016 1:59 pm
by dlen
Hi there,

currently (2.1.3) you find there the following code, which conditionally puts out a start text:

Code: Select all

{if isset($starttext)}{$starttext}: {/if}
I noticed, that this puts out
- the default start text if no parameter start_text is given
- a colon if it is given, but empty.
So you have no way to switch off the colon without editing the default template.
I suggest to alter the line to

Code: Select all

{if isset($starttext) && $starttext}{$starttext}: {/if}
which gives no output at all when $starttext is empty.
cheers ...

Re: Navigator Breadcrumbs default template enhancement

Posted: Thu May 19, 2016 4:10 pm
by Jeff
Or you could switch it to:

Code: Select all

{if !empty($starttext)}{$starttext}: {/if}

Re: Navigator Breadcrumbs default template enhancement

Posted: Tue May 24, 2016 1:33 pm
by dlen
Is there a bug report / enhancement request page for such things?

Or are they regularly read by the developers here and taken into account?

Re: Navigator Breadcrumbs default template enhancement

Posted: Tue May 24, 2016 9:04 pm
by velden
http://dev.cmsmadesimple.org/bug/list/6
http://dev.cmsmadesimple.org/feature_request/list/6

Not sure if those (incl. your menu template post) are real bugs or matter of preference. So can't promise things will change, but at least the bug/fr-system will bring it to attention of developers.