Customize link for logo at top left
回答済みIs it possible for the logo at the top left of the Gather community page to take users back to my Shopify store. I'd have to customize the link to point to the store page rather than the community home page.
Bluprint does it rather nicely, https://help.mybluprint.com/hc/en-us.
Thanks in advance.
Neil
-
Yes, but you would have to modify your theme to do it. In the theming center, locate the file `header.hbs`. In there you have a snippet like this:
{{#link 'help_center'}}
<img src="{{settings.logo}}" alt="{{t 'home_page' name=help_center.name}}">
{{/link}}You will want to replace the link element with a regular HTML anchor, kinda like:
<a href="https://zendesk.com">
<img src="{{settings.logo}}" alt="">
</a>
サインインしてコメントを残してください。
1 コメント