Module Assessment | Yext Hitchhikers Platform

loading
You must include a first name and last name in your profile to create challenge environments.

Background

Now that you have a working experience, you want to make it better! There are a few additional components we need to add so users have more flexibility when interacting with the brand’s search experience:

  1. Facets and Filters - Having facets or filters available makes the end consumer experience so much easier. You’re going to add facets to the Restaurant vertical. Remember, facets and filters are only supported in vertical search!
  2. Sorting - You have already ensured that events are returned in chronological order by default. That said, you still want to allow users to change the sort order by event name, relevance, or event date.
  3. Q&A Component - Adding the Q&A component to Search allows the customer support team to figure out what questions the Search experience isn’t answering so they can improve the search quality. This will help to keep the support costs down long term. They want to add the Q&A component to universal search and FAQ search only.

Your Challenge

Step 1: Add Facets to Restaurants Vertical

  1. Navigate to Pages > Brand Search > Deploys, go to the Code Editor, and click into the master branch. You should expect this to take a couple minutes to load – in the background, it’s starting up a container for your development.

  2. Click “View Live Preview” to open your preview in a new tab.

    • Run a search for “restaurants with live music” in the Restaurants vertical – note what it looks like before any facet or filter options. Remember facets only appear in vertical search, so be sure to click into the Restaurants tab!
  3. In the pages > restaurants.html.hbs file, comment in the partials for the facets component. This includes:

    Scripts - Facets

    {{> templates/vertical-full-page-map/script/facets}}

    Markup - Facets

    {{> templates/vertical-full-page-map/markup/facets}}  

    Scripts - Collapsible Filters

    {{> templates/vertical-full-page-map/collapsible-filters/page-setup }}

    Markup - Collapsible Filters

    {{> templates/vertical-full-page-map/collapsible-filters/markup/filterlink }}
    {{> templates/vertical-full-page-map/collapsible-filters/markup/viewresultsbutton }}    

    You’ll also want to comment in the surrounding <div> that the facets markup is part of.

    <!-- Uncomment the following div if you want to include filters, facets, or sort options  -->
    <div class="Answers-filtersWrapper js-answersFiltersWrapper CollapsibleFilters-inactive">
    </div>

    Pro-tip: You can easily comment-in / comment-out code by using your keyboard commands! Try cmd + / on a Mac or ctrl + / on Windows.

    Comment-in code in Code Editor

  4. Use Live Preview to check to make sure the facets and filter link components are showing up (using the default settings). If not,

    • Double check to make sure the components are present and there are no typos.
    • Double check you’re on vertical search and not universal search.
  5. In the config > restaurants.json file, let’s customize how the facets look and behave. Comment in the Facets object in ComponentSettings (remove the /** before and the **/ after the Facets object).

    • Set the showMore property to “true”
    • Set the expand property to “false” because you always want the facet options displaying by default (instead of collapsed if not being used)
    • Add the showMoreLimit property to 3 (note – you’ll need to add this as an additional property!)
    • Make just the c_restaurantFeatures field searchable by adding this in your Facets object:

      "fields": {
        "c_restaurantFeatures": {
          "searchable": true,
          "searchLabelText": "Search for our features",
          "placeholderText": "Search"       
        }
      }

    Use Live Preview to verify your updates. It should look like this:

    Facets for Restaurant Features and Type fields

  6. In the config > restaurants.json file, let’s customize how the FilterLink component looks. Comment in the FilterLink object in ComponentSettings.

    • Set the changeFiltersText to “filters”

    Use Live Preview to verify your updates.

  7. Commit your code. Click “Back to Code Editor”.

Step 2: Add Sorting to Events Vertical

  1. In Live Preview, run a search for “events” in the Events vertical (not on universal search - remember that frontend sorting is only available on vertical search) – note how it looks without any ability to sort!

  2. Like with facets, go to the pages > events.html.hbs file and comment in the sortoptions component partials, along with the collapsible filters components. You’ll need all of the following:

    Pro-tip: You can easily comment in / comment out code by using your keyboard commands! Try cmd + / on a Mac or ctrl + / on Windows.

    Scripts - Sorting

    {{> templates/vertical-standard/script/sortoptions}}

    Markup - Sorting

    {{> templates/vertical-standard/markup/sortoptions}}  

    You’ll also want to comment in the surrounding <div> that the sortoptions markup is part of.

    <div class="Answers-filtersWrapper js-answersFiltersWrapper CollapsibleFilters-inactive">
    </div>

    Scripts - Collapsible Filters

    {{> templates/vertical-standard/collapsible-filters/page-setup }}

    Markup - Collapsible Filters

    {{> templates/vertical-standard/collapsible-filters/markup/filterlink }}
    {{> templates/vertical-standard/collapsible-filters/markup/viewresultsbutton }}    
  3. If you try to preview your changes here, you won’t see sorting yet because we need to configure what frontend sorting should look like. Go to the config > events.json file and add the SortOptions object to ComponentSettings. You want to allow users to sort by the following (in addition to the default sort):

    • Event name - fill in: type as “FIELD”, field as “name”, direction as ascending (“ASC”), and label as “Event Name”
    • Event start date - fill in: type is “FIELD”, field is “time.start”, direction ascending (“ASC”) and label “Event Date”

    Here’s a template, input the values per above:

    "SortOptions" : {
      "options": [
        {
          "type": "<INSERT HERE>",
          "field": "<INSERT HERE>",
          "direction": "<INSERT HERE>",
          "label": "<INSERT HERE>"
        },
        {
          "type": "<INSERT HERE>",
          "field": "<INSERT HERE>",
          "direction": "<INSERT HERE>",
          "label": "<INSERT HERE>"
        }
      ]
    }
  4. Click out of the code editor to trigger a live preview update. You can open the Code Editor console (Tools > Console) to check when the update is complete. Make sure to look at the console for any errors. Check out what you have so far by refreshing your preview. Try sorting by date and then by event name. How do you think it looks? If you aren’t able to get it working, check your code to make sure you don’t have any syntax errors like missing quotations or commas (you would see red squiggly underlines).

  5. Let’s make some more adjustments to the SortOptions object. Add the following properties to change them from their default values:

    • The legend label to say “Sort Options” instead of “Sorting” (default value)
    • The defaultSortLabel to say “Most Relevant” instead of “Best Match”

    Check the  library documentation to confirm what the property names should be and then add to the SortOptions object. Remember that these should be added on the same level as “options” and not within the options array.

  6. Confirm it looks how you want using Live Preview.

  7. Commit your code. Click “Back to Code Editor”.

  1. Enable the Organization Entity Type in Content. If you need help doing this, follow the Enable Entity Types help article.

  2. Add a new entity of type Organization.

    • Entity Name: Turtlehead Tacos
    • Entity ID: organization-1
  3. Add services to the Organization entity to enable it for Q&A. Navigate to Entity Search, select the new organization entity you created and click More Actions > Add Services. Follow the flow to add the First Party Q&A Feature pack to the Organization entity you created.

    • Select “Feature Packs” (since the First Party Q&A Feature uses our Feature Pack and not Subscription system) and click “Continue”.
    • Select “Add Feature Packs” (default selected) and click “Continue”.
    • Check off “Q&A” and click “Continue”.
    • There are no features to configure for Q&A so click “Continue” on the next screen.
    • Review your changes and click “Process Change”.
    • Click “Return to Content”.
  4. Go back to the Code Editor. Remember you can navigate to Pages > Brand Search > Deploys, go to the Code Editor, and click into the master branch. You should expect this to take a couple minutes to load – in the background, it’s starting up a container for your development.

  5. Click “View Live Preview” to open your preview in a new tab.

  6. You want to add the Q&A Component to the FAQ and universal search pages. Open up the pages > index.html.hbs AND pages > faqs.html.hbs files and comment in the script and markup lines for the QASubmission partials, which are commented out by default. This should include:

    {{> templates/universal-standard/script/qasubmission }}
    {{> templates/universal-standard/markup/qasubmission }}
  7. Now you need to update the settings for these pages. Open up the config > index.json AND config > faqs.json files and comment in the QASubmission object in ComponentSettings.

    • Add the entity ID for the entity you just created (organization-1).
    • Add a privacy policy URL of https://www.turtleheadtacos.com/privacy.

      "QASubmission": {
        "entityId": "organization-1", 
        "privacyPolicyUrl": "https://www.turtleheadtacos.com/privacy"
      },
  8. Use Live Preview to verify your updates. Once you think it is working as expected, commit your changes.

  9. Monitor the deploy.

  10. Open your staging link and run a search and submit a question. Since you’re doing this in our sandbox environment, you won’t receive the emails but you can still see the questions in the platform.

  11. Navigate to Reviews > Q&A in the platform and answer your own question.

Note: if you’re having any issues, make sure that you are completing step 3 and adding the services to the Organization entity.

Module Assessment
+<% util.points %> points
loading
Weekly Challenge Streak Weekly Challenge Streak: <% util.streakWeekly %>
You must include a first name and last name in your profile to create challenge environments.
Challenge account expires in <% util.expirationHours > 24 ? Math.round((util.expirationHours * 1.0) / 24) : util.expirationHours %> <% util.expirationHours > 24 ? (Math.round((util.expirationHours * 1.0) / 24) == 1 ? 'day' : 'days') : (util.expirationHours == 1 ? 'hour' : 'hours') %>.
Challenge account has expired. Please create a new account.
Report Card
Comment in facets in the HBS file for the Restaurants vertical
Update the facets expand property for the Restaurants vertical
Update the facets show more limit for the Restaurants vertical
Make facets searchable for the Restaurants vertical
Update the filter link text for the Restaurants vertical
Comment in sort options in the HBS file for the Events vertical
Update the sort label for the Events vertical
Update default sort label for the Events vertical
Add frontend sorting options for the Events vertical
Enable the Organization entity type
Comment in the QAComponent in the HBS file for the universal search
Comment in the QAComponent in the HBS file for the FAQs vertical
Add the QAComponent in the JSON file for universal search
Add the QAComponent in the JSON file for FAQs search
Common Issues
Having an issue adding Q&A to the config.json file? expand/collapse module

Here are some things to double check:

  • Make sure the Privacy URL is exactly as specified in the challenge
  • Make sure the entity ID matches the entity ID of the organization entity you created
  • Make sure you the right JSON syntax and look out for any red underlines in your code
Having trouble saving the saved filter ID to Search? expand/collapse module

There are two common causes:

  1. The syntax is off – the property is called “savedSearchId” (case sensitive) and the filter ID should be encased in quotations (the filter ID can be an alphanumeric string, it’s just that those created in the UI happen to be numeric)

  2. The filter is invalid. Make sure you’re copying a valid filter ID from account settings.

Previous Submissions
Attempt #<% submission.attemptNumber %>
<% submission.date %>
Score: <% submission.numericScore %>
Pending
Feedback