Skip to content

Instantly share code, notes, and snippets.

@elias1435
Forked from hasinhayder/qr_code.liquid
Created December 14, 2023 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elias1435/f54bb755c73464b43629721658f2a044 to your computer and use it in GitHub Desktop.
Save elias1435/f54bb755c73464b43629721658f2a044 to your computer and use it in GitHub Desktop.
QR Code Block
{% assign full_url = request.host | append: request.path %}
<div style="position: fixed; bottom: 0; right: 0">
{% comment %} {{ "thumbs-up.png" | asset_url | img_tag }} {% endcomment %}
<img width="150" height="150" src="https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl={{ full_url }}" alt=""/>
</div>
{% schema %}
{
"name": "App Embed",
"target": "body",
"settings": []
}
{% endschema %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment