Experro Base-theme supports Shopify stores, but for a seamless experience, configure two aspects in the Shopify admin panel:
  1. Implement checkout-related changes by adding the provided script to the “Additional Scripts” section within the checkout settings.
  2. Customize email templates to maintain a consistent brand experience.

Checkout Changes

To make checkout-related changes, follow the steps provided below. Step 1: The initial step is to log in to your Shopify store using the provided credentials. Step 2: Next, navigate to the store settings section. image.png Step 3: Proceed by clicking on the checkout link to make the necessary changes for the checkout process. image.png Step 4: Within the checkout settings, find the section called “Additional Scripts.” image.png Step 5: You need to add the provided script to the “Additional Scripts” section and Save it.
<script>
try {
  const redirect = 'https://excore-shopify-demo.experro.com/thank-you/';
  const requiredFields = [
    'customer',
    'id',
    'item_count',
    'line_items',
    'line_items_subtotal_price',
    'name',
    'order_id',
    'order_name',
    'order_number',
    'total_price',
  ];
  const modifiedCheckout = {};
  for (const field of requiredFields) {
    const checkoutFieldValue = Shopify.checkout[field];
    if (checkoutFieldValue) {
      modifiedCheckout[field] = checkoutFieldValue;
    }
  }
 window.top.location.href = `${redirect}?c=${JSON.stringify(modifiedCheckout)}`;
} catch (e) {
  console.error(e);
}

</script>

Email Template Changes

To make Email-tempalte changes, follow the steps provided below. Step 1: In the Shopify admin panel, find the “Settings” section, and then click on “Notifications.” And add you Business email to Sender email. image.png Step 2: To allow users to redirect to your Experro store from email templates in your Shopify store, you need to make changes to the email templates. To modify the order confirmation template in your Shopify store, simply click on the “Order confirmation” template listed under the “Orders” tab in your Shopify admin panel. image.png Click on Edit Code image.png To enable redirection in the email template, you need to add the URL for the Experro store domain where the redirection should be pointed. This allows customers to seamlessly navigate to your Experro store from the email template. image.png Exactly! Once you’ve made the necessary changes for one template, you can replicate the same process for other templates in a similar manner. By customizing the URLs to redirect users to your Experro store, you can ensure a cohesive experience across all email templates in your Shopify store.