See the bottom of https://bedford.io/team/jover-lee/.
This looks like the code that's responsible for doing the lastname + first initial matching that's causing the problem:
|
{% assign lastname = member.title | split: ' ' | last %} |
|
{% assign firstinitial = member.title | split: ' ' | first | slice: 0 %} |
|
{% assign searchstring = lastname | append: ' ' | append: firstinitial %} |
|
|
|
{% for paper in site.categories.papers %} |
|
{% if paper.authors contains searchstring %} |
|
{% assign papersq = true %} |
|
{% endif %} |
|
{% endfor %} |
|
|
|
{% if papersq == true %} |
|
<div class="bigspacer"></div> |
|
<div class="head">Papers</div> |
|
<div class="spacer"></div> |
|
{% for paper in site.categories.papers %} |
|
{% if paper.authors contains searchstring %} |
|
<p><a href="{{ paper.url }}" class="off">{{ paper.title }}</a> |
|
{% endif %} |
|
{% endfor %} |
|
{% endif %} |
See the bottom of https://bedford.io/team/jover-lee/.
This looks like the code that's responsible for doing the lastname + first initial matching that's causing the problem:
blotter/_layouts/member.html
Lines 103 to 122 in 81d0c17