Quick Start Guides
Get up and running quickly with these step-by-step guides for building with Finqu.
Modifying a Theme
- Clone or download your store’s theme from the Finqu admin or Git repository.
- Open the theme folder in your code editor.
- Explore the structure: templates, layouts, sections, assets, and settings.
- Edit templates (e.g.,
product.liquid
,collection.liquid
) to change storefront appearance. - Add or update assets (CSS, JS, images) in the
assets/
folder. - Use the Finqu CLI or admin to preview your changes live.
- Test your theme on different devices and browsers.
- When ready, upload or push your theme to Finqu and publish it.
Creating a Marketing Email
- In the Finqu admin, go to Marketing > Messages.
- Click “Create new message” and select “Write HTML” as the message type.
- Use MJML or HTML and Finqu variables (e.g.,
{{ customer.first_name }}
) for personalization. - Add images, buttons, and dynamic content as needed.
- Preview your email in the admin.
- Send a test email to yourself to check rendering.
- Schedule or send the campaign to your audience.
Modifying an Email
- In the Finqu admin, go to Online Store > Settings > Purchasing.
- Under the “Emails” section, select the transactional email you want to edit (e.g., order confirmation).
- Update the content, branding, and layout as needed using MJML or HTML.
- Use Finqu variables to include order, customer, or store data.
- Preview and send a test email to verify changes.
- Save and activate the updated template.
Modifying a Print
- In the Finqu admin, go to Online Store > Settings > Purchasing.
- Under the “Prints” section, select the print template you want to edit (e.g., invoice, packing slip).
- Edit the layout, branding, and add/remove fields as needed using MJML or HTML.
- Use Finqu variables for order and customer information.
- Preview the printout with sample data.
- Save and use the updated template for your store’s documents.
Modifying a Product Feed
- In the Finqu admin, go to Products > Feeds or open the feed configuration/template.
- Choose the feed type (e.g., Google Shopping, Facebook, custom XML/CSV).
- Adjust which products and fields are included using filters and mapping.
- Add custom fields or logic if needed.
- Preview or download the feed to verify output.
- Connect the feed to your marketing channel or partner platform.
Using the Finqu CLI
- Install the Finqu CLI globally:
npm install -g @finqu/cli
. - Run
finqu login
to authenticate with your developer account. - Use
finqu theme pull
andfinqu theme push
to sync theme files. - Use
finqu serve
to preview themes locally. - Explore other CLI commands for managing apps, feeds, and more.
Last updated on