Creating a Code Resource for Cloud Pages in SFMC

                  Creating a Code Resource for Cloud Pages in Salesforce Marketing Cloud (SFMC) allows you to store and manage reusable code components, such as JavaScript, CSS, or HTML. Code Resources help maintain a clean and modular structure for your Cloud Pages.

Steps to Create a Code Resource in SFMC Cloud Pages:

Step 1: Navigate to Cloud Pages

  1. Log in to Salesforce Marketing Cloud.
  2. Go to the Content Builder tab.
  3. Select Cloud Pages from the left navigation.

Step 2: Access the Code Resource Section

  1. Inside Cloud Pages, click on the Code Resources tab.
  2. Click on Create Code Resource.

Step 3: Configure Code Resource

  1. Enter a Name
    • Provide a meaningful name that describes the purpose of the resource.
    • Example: custom-styles.css or api-helper.js.
  2. Choose File Type
    • SFMC supports CSS, JavaScript (JS), JSON, and other static files.
  3. Upload or Write Code
    • You can either:
      • Upload a file from your computer.
      • Directly write the code inside the editor.

Step 4: Save and Publish the Code Resource

  1. Click Save to store the code resource.
  2. Click Publish to make it available for use.

How to Use Code Resources in Cloud Pages

Once a Code Resource is published, it can be referenced inside a Cloud Page.

  1. Referencing a CSS File

To include a CSS file in your Cloud Page:

<link rel=”stylesheet” href=”https://cloud.example.com/code-resource/custom-styles.css”>

  1. Referencing a JavaScript File

To include a JavaScript file:

<script src=”https://cloud.example.com/code-resource/api-helper.js”></script>

  1. Fetching a JSON File

If you have stored a JSON file, you can retrieve it using JavaScript:

fetch(‘https://cloud.example.com/code-resource/data.json’)

  .then(response => response.json())

  .then(data => console.log(data));

Benefits of Using Code Resources

  • Reusable Code – Store common JS, CSS, and JSON files for multiple pages.
  • Faster Load Times – Cloud Pages can load more efficiently with externally stored resources.
  • Improved Code Organization – Separating logic and styling keeps your Cloud Page cleaner.
  • Easier Maintenance – Update a single resource instead of modifying multiple pages.