Core Features
Learn about Siteglide's essential tools for building and managing digital experiences.
Overview
Siteglide transforms static websites into scalable digital experiences with intuitive tools. You get a visual builder, data management, membership systems, and a marketplace—all integrated seamlessly.
Studio Visual Builder
Drag-and-drop interface for rapid page creation.
Data-driven Content
Manage dynamic content with powerful APIs.
Membership & Portals
Build secure member areas and client portals.
Marketplace
Extend functionality with apps and integrations.
Studio Visual Builder
Build pages visually without coding using Studio. Drag components, customize layouts, and preview changes in real-time.
Access Studio
Log in to your Siteglide dashboard and select a site.
Create Page
Click New Page and choose a template.
Drag Components
<div class="hero-section">
<h1>Welcome to Your Site</h1>
<p>Transform your digital presence.</p>
</div>
Publish
Preview and hit Publish to go live.
Studio supports responsive design out-of-the-box. Use the preview modes for mobile and desktop.
Data-driven Content Management
Power your site with dynamic data. Query items, forms, and files via API for personalized content.
Fetch items from your site.
const siteId = 'YOUR_SITE_ID'; // e.g., 67890
const response = await fetch(
`https://api.siteglide.co.uk/r/${siteId}/v2/items.json?conditions[item_type_id]=blog`
);
const data = await response.json();
console.log(data.items);
curl "https://api.siteglide.co.uk/r/YOUR_SITE_ID/v2/items.json?conditions[item_type_id]=blog" \
-H "Content-Type: application/json"
Membership and Portal Features
Create member logins, client portals, and gated content. Control access with roles and permissions.
<!-- Login Form -->
<form action="/members/login" method="post">
<input type="email" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<button type="submit">Login</button>
</form>
<!-- Protected Content -->
{% if user %}
<h2>Welcome, {{ user.name }}!</h2>
{% your_portal_content %}
{% else %}
<p><a href="/members/login">Login to view</a></p>
{% endif %}
Assign roles like admin, member, or client. Use liquid tags for conditional rendering.
Marketplace Functionalities
Extend Siteglide with the Marketplace. Install apps for e-commerce, SEO tools, or custom integrations like Zapier.
Marketplace apps install in one click. Check compatibility with your plan.
These core features work together for scalable sites. Next, explore quickstart for hands-on setup.