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.
Property | Type | Default Value |
---|---|---|
title_text | string | Select your insurance provider |
search_placeholder_text | string | Search for insurance provider |
carrier_not_found_text | string | Your insurance provider is not listed |


<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>
Updated 7 months ago
What’s Next