In LiveWhale 2.15.2, you can set include_separator_text=true in your breadcrumb widget to include
<a href="#">Separator text</a>
in your widget results for each separator in the current page’s navigation ancestry.
For developers, we suggest detecting those “inactive” links using CSS, JS, or XPHP to indicate clearly that they are not clickable, to avoid user confusion.
You can do this in the format argument using a FIELD conditional:
<field content="true">
<if var="href" value="#"/>
<content>
<li><span class="separator">{title}</span></li>
</content>
<else content="true">
<content>
<li><a href="{href}">{title}</a></li>
</content>
</else>
</field>