Carrier Listing Page

Overview

The client has the option to change the text in carrier listing page of Fize modal by using carrier_listing_page property.

PropertyTypeDefault Value
title_textstringSelect your insurance provider
search_placeholder_textstringSearch for insurance provider
carrier_not_found_textstringYour insurance provider is not listed
1542 1542
<html lang="en">
<head>
<script src="https://cdn.getfize.com/sdk/v1.0/getfize.js"></script>
</head>
<body>
  <div id="inline-container"></div>
<script>
       let handler = FIZE.configure({
         client_id: "FIZE_PROVIDED_CLIENT_ID",
         content_config:{
          	 carrier_listing_page: {
                  title_text: "custom title",
                  search_placeholder_text: "custom search bar placeholder text",
                  carrier_not_found_text: "custom search carrier not found text",
                },
           },
         display_mode: "inline",
         element_id: "inline-container"
       });   
   </script>
</body>
</html>

What’s Next