diff --git a/website/modules/case-studies-page/views/show.html b/website/modules/case-studies-page/views/show.html
index e48ec5a8..aa011a6f 100644
--- a/website/modules/case-studies-page/views/show.html
+++ b/website/modules/case-studies-page/views/show.html
@@ -168,18 +168,23 @@
{{ data.piece.portfolioTitle }}
{% if data.piece.fullStoryUrl %}
Read The Full StoryRead The Full Story
{% endif %} {% if data.piece.prodLink %}
+ {# Remove path/query/fragment #}
+ {% set urlWithoutProtocol = data.piece.prodLink | replace('https://', '') | replace('http://', '') %}
+ {% set domainWithOrWithoutWww = urlWithoutProtocol.split('/')[0] %}
+ {% set cleanDomain = domainWithOrWithoutWww | trim | replace('www.', '') %}
{{ data.piece.prodLink }}{{ cleanDomain }}
{% endif %}