Navigator Breadcrumbs default template enhancement
Posted: Thu May 19, 2016 1:59 pm
Hi there,
currently (2.1.3) you find there the following code, which conditionally puts out a start text:
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
which gives no output at all when $starttext is empty.
cheers ...
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}
- 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}
cheers ...