DEV Community

Cover image for How to: Create Shopify customer segment template extensions
Gadget for Gadget

Posted on • Originally published at gadget.dev

How to: Create Shopify customer segment template extensions

Shopify customer segments serve as a powerful tool to organize your large pool of customer data into smaller, more manageable groups. These segments can be helpful for conducting targeted marketing activities, understanding customer behavior, and looking for trends to help you figure out what the next best step for your store is.

Customer segment template extensions provide a structured way to define queries that merchants can use to create new customer segments based on their specific criteria. Shopify provides some pre-defined templates for you, but many merchants will want their own custom segments for organizing their customer data.

In this step-by-step guide, we'll walk you through what these extensions are, how they seamlessly integrate with Shopify's admin action extensions, and how you can leverage them to build unique apps from scratch, or enhance the functionality of your existing Shopify apps.

Now, let's roll up our sleeves and create a custom customer segment template extension.

Create your extension

To get started, create a new app using the Shopify CLI. Run yarn create @shopify/app in your terminal. Make sure to select the extension-only app template (not the Remix template) since we're focusing on customer segment templates and admin action extensions.

Next, generate the customer segment template extension by navigating to your new app directory and using yarn generate extension. Choose the customer segment template extension type and opt for JavaScript React as your preferred language.

Install the app

To make sure everything is working as it should, you’ll want to install the app on your development store. Run your app using yarn run dev and you should be prompted to open the Shopify Developer Console. Copy the “App home” preview link, open the preview URL in a browser, and follow Shopify’s prompts to install your app. Now, you should be able to find your customer segment template in your dev store, under the Customers page.

‍Customize your customer segment template

In the generated code, you’ll find an extensions folder. You should have a shopify.extension.toml file, which you can use to change your extension settings, a package.json file, and in the source folder, you’ll find your CustomerSegmentTemplate.jsx file.

import {
  reactExtension,
  CustomerSegmentTemplate,
  useApi,
} from "@shopify/ui-extensions-react/admin";

// The target used here must match the target used in the extension's toml file (./shopify.extension.toml)
const TARGET = "admin.customers.segmentation-templates.render";

export default reactExtension(TARGET, () => <App />);

function App() {
  // The useApi hook provides access to several useful APIs like i18n, close, and data.
  const { i18n } = useApi(TARGET);

  const query = `customer_tags CONTAINS 'upsell_accept'`;

  return (
    // The CustomerSegmentTemplate component provides an API for setting the title, description, date, query, and query to insert of the segmentation template.
    <>
      <CustomerSegmentTemplate
        title={i18n.translate("title")}
        description={i18n.translate("description")}
        createdOn={new Date("2023-08-15").toISOString()}
        query={query}
        queryToInsert={query}
      />
    </>
  );
}
Enter fullscreen mode Exit fullscreen mode

Note the query and queryToInsert properties on the CustomerSegmentTemplate component. The query field is the preview query that is shown in the templates drawer. The queryToInsert field, however, is what is actually added to the filter box on the customer page. You’ll want to customize queryToInsert with the details your merchant will need, for example Product ID, to create your segment.

Create and apply a segment

Once you’ve added the necessary fields for your segment, go back to the Customers page in your dev store and use your custom template to filter customers based on specific criteria, for example, products purchased. Save this filter as a segment for future use.


An example of what your customer segment template extension will look like
Here is what your customer segment template extension should look like

Adding admin action extensions for custom actions

Now that we have our customer segments set up, let's enhance our app by adding admin action extensions for custom actions.

Stop running your app and generate a new extension using yarn generate extension. Choose the admin action extension type, and once again, opt for JavaScript React as the language.

Modify the generated TOML file to set the target to admin.customer-segment-details.action.render. Adjust the action extension code to suit your custom logic for running actions on customers within a segment.

Test the admin action extension

Restart your app and refresh your page. Select your customer segment and observe the presence of your admin action extension. Use the extension to fetch customer data and run custom actions, such as sending emails or applying discounts.

A preview of your customer segment in the Shopify admin portal
Action is available to run against the segment, simply click the “Use Segment” button

Set up a discount for your customer segment
...and then run your custom action against customers in that segment!

Using multiple templates in one extension
You can always experiment with adding multiple customer segment templates to a single extension for better flexibility. Let's explore a real-world example where we extend an existing app for post-purchase upselling

  • Tag customers who accept an upsell offer with a unique tag.

  • Create a customer segment template based on this tag.

  • Use an admin action extension to offer discounts to customers within this segment.

And you’re done! You can now build Shopify customer segment template extensions and admin action extensions. For further details and troubleshooting, you can read through Shopify's documentation and tutorials.

If you have questions, you can join the Gadget Discord. We’re always happy to discuss Shopify extensions and Gadget. Until next time, keep building more and coding less with Gadget!

Top comments (0)