There are multiple ways to present offers or information to your customers.
Hyperlink: Modal or Pop-Up Window
Use a hyperlink to present apps or modules in a modal or pop-up window in the center of the screen.
If appending a URL containing UTMs with the following, replace the question mark (?) with an ampersand (&). For example, https://www.yoururl.com/?modalWidget=bpn would become https://www.yoururl.com/?utm_source=mycompany&modalWidget=bpn.
Best Price Now
Append the URL with ?modalWidget=bpn.
For example, https://www.yoururl.com/?modalWidget=bpn. When a customer clicks on the link, the Best Price Now module will automatically display as a pop-up in the center of the screen.
Income Calculator
Append the URL with ?modalWidget=ic.
For example, https://www.yoururl.com/?modalWidget=ic. When a customer clicks on the link, the Income Calculator module will automatically display as a pop-up in the center of the screen.
Spotlight
Append the URL with ?modalWidget=sl.
For example, https://www.yoururl.com/?modalWidget=sl. When a customer clicks on the link, the Spotlight module will automatically display as a pop-up in the center of the screen.
Open a specific offer
Append the URL with ?modalWidget=sl&offerId=XXXX and replace XXXX with the Offer ID. The Offer ID is located within the Spotlight page beneath the offer title. See the Spotlight Overview article for further assistance locating the Offer ID. When a customer clicks on the link, the spotlight module will automatically display the specific offer as a pop-up in the center of the screen.
Schedule Genie
Append the URL with ?modalWidget=sg.
For example, https://www.yoururl.com/?modalWidget=sg. When a customer clicks on the link, the Schedule Genieā¢ module will automatically display as a pop-up in the center of the screen.
Hyperlinks may cause the website to refresh. This may negatively impact analytics and UTMs may be lost.
JavaScript: Pop-Up Window or Expanded Module
Use JavaScript to present apps or modules in a modal, pop-up window, in the center of the screen or in an expanded view from its primary position on the screen.
Best Price Now
Insert the following script to open the module in a modal or pop-up in the center of the screen.
- javascript:TheConversionCloud.openWidget('bpn', true)
Insert the following script to expand the module from its current position on the screen.
- javascript:TheConversionCloud.openWidget('bpn')
Live Chat
Insert the following script to expand the module from its current position on the screen.
- javascript:TheConversionCloud.openWidget('ch')
Income Calculator
Insert the following script to open the module in a modal or pop-up in the center of the screen.
- javascript:TheConversionCloud.openWidget('ic', true)
Insert the following script to expand the module from its current position on the screen.
- javascript:TheConversionCloud.openWidget('ic')
Spotlight
Display Modal
Insert the following script to open the module in a modal or pop-up in the center of the screen.
- javascript:TheConversionCloud.openWidget('sl', true)
Insert the following script to open a specific offer in a modal or pop-up in the center of the screen.
- javascript:TheConversionCloud.openWidget('sl', true, {offerId:####})
- javascript:TheConversionCloud.openWidget('sl', {offerId:####})
See the Spotlight Overview article for further assistance locating the Offer ID. When a customer clicks on the link, the Spotlight module will automatically display the specific offer as a pop-up in the center of the screen.
Display Expanded
Insert the following script to expand the module from its current position on the screen.
- javascript:TheConversionCloud.openWidget('cm')
Schedule Genie
Insert the following script to open the module in a modal or pop-up in the center of the screen.
- javascript:TheConversionCloud.openWidget('sg', true)
Insert the following script to expand the module from its current position on the screen.
- javascript:TheConversionCloud.openWidget('sg')