{% if store.branding or store.plan < 3 %}
{{ __("Powered by") }} Buycraft.net
{% endif %} ">
{% if store.branding or store.plan < 3 %}
{{ __("Powered by") }} Buycraft.net
{% endif %} ">
{% if store.branding or store.plan < 3 %}
{{ __("Powered by") }} Buycraft.net
{% endif %} ">

The footer too has some additional features. Such as credits, the store logo and legal links. You can find the footer element at the bottom of layout.html.

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9b536f5c-1cbc-4ab8-8c9c-6fd01a097bdd/Untitled.png

<div class="footer">
    <div class="container">
        <div class="gdp-footer-left">
            <p class="gdp-credits">&copy; {{store.name}} <script>document.write(new Date().getFullYear());</script></p>
            <p class="gdp-affiliate">We are not affiliated with Mojang AB.</p>
        </div>
        <div class="logo">
            {% if store.logo %}
                <a href="/"><img src="{{ store.logo }}" /></a>
            {% endif %}
        </div>
        <div>
            <ul>
                <li><a href="#">Privacy Policy</a></li>
                <li><a href="#">Terms</a></li>
            </ul>
        </div>
    </div>
    {% if store.branding or store.plan < 3 %}
        <div class="branding"> 
          <!-- Do not remove the Buycraft branding if you are not on the Ultimate Plan. Your account will be deleted. -->
          {{ __("Powered by") }} <a href="<http://buycraft.net>" target="_blank">Buycraft.net</a>
        </div>
    {% endif %}
</div>

<aside> 📖 Note that you don't really have to change anything besides the paths of the legal links.

</aside>