Updating to the Latest Version
To update to the latest version of the Manifold Merch Bridge, you will need to modify two files.
snippets/manifold-campaign-widget.liquid
Update the <script>
and <link>
tags to reference the latest widget versions of the Connect Widget and Campaign Widget.
If this file contains:
<div data-widget="m-oauth-connect" ...></div>
please replace that with:
<div data-widget="m-connect" data-multi="true" data-detect-app="true"></div>
and modify the #m-connection CSS to read
#m-connection {
display: block !important;
width: 100% !important;
}
snippets/manifold-checkout-widget.liquid
Update the <script>
and <link>
tags to reference the latest widget versions of the Connect Widget and Campaign Widget.
If this file contains:
<div data-widget="m-oauth-connect" ...></div>
please replace that with:
<div data-widget="m-connect" data-multi="true" data-detect-app="true"></div>
and modify the #m-connection CSS to read
#m-connection {
display: block !important;
width: 100% !important;
}
Last updated