Shmood Docs
Docs on how to best use Shmood
8/9/2025 by malvika jain
Create Custom Client Landing pages in Wix
In both cases the webpage will automatically update when you publish new versions of your landing page in Shmood. You will only have to do this once per client.
Option 1: Add redirect URL (recommended)
Pros: The easiest and most simple option
Option 2: Embed a website on a page
Steps:
Create a page for your client
Add an element to embed your site
Copy your page from Shmood
Copy the link to the HTML Settings
Style the page
Publish
8/9/2025 by malvika jain
Create Custom Client Landing Pages in Cargo
In both cases the webpage will automatically update when you publish new versions of your landing page in Shmood. You will only have to do this once per client.
Option 1: Add redirect URL (recommended)
Pros: The easiest and most simple option
Code to copy:
<script>
window.location.href = "https://your-shmood-project-link.io";
</script>
Option 2: Embed a website on a page
Steps:
Create a page for your client
Copy project link from Shmood
Add this code to add an iframe
<iframe src="your-shmood-project-link.io" style="width: 100%; height: 100vh; border: none;" title="Client Project"></iframe>
Publish
Done!
8/9/2025 by malvika jain
Create Custom Client Landing Pages in Framer
In both cases the webpage will automatically update when you publish new versions of your landing page in Shmood. You will only have to do this once per client.
Option 1: Add redirect URL (recommended)
Pros: The easiest and most simple option
Code to copy:
<iframe
src="https://your-shmood-project-link.io"
style="width: 100%; height: 100vh; border: none;"
title="Client Project">
</iframe>