PluginProbe
HubSpot All-In-One Marketing – Forms, Popups, Live Chat / 11.3.75
HubSpot All-In-One Marketing – Forms, Popups, Live Chat v11.3.75
11.3.75 11.3.73 11.3.71 11.3.70 11.3.69 11.3.64 11.3.65 11.3.62 11.3.61 11.3.56 11.3.58 11.0.31 11.0.52 11.0.54 11.0.56 11.0.58 11.0.7 11.1.10 11.1.11 11.1.13 11.1.14 11.1.15 11.1.2 11.1.20 11.1.21 All 73 releases
leadin / scripts / elementor / Common / ConnectPluginBanner.tsx

ConnectPluginBanner.tsx in HubSpot All-In-One Marketing – Forms, Popups, Live Chat 11.3.75, at scripts/elementor/Common/ConnectPluginBanner.tsx

23 lines 653 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import React from 'react';
2 import ElementorBanner from './ElementorBanner';
3 import { __ } from '@wordpress/i18n';
4
5 export default function ConnectPluginBanner() {
6 return (
7 <ElementorBanner>
8 <b
9 dangerouslySetInnerHTML={{
10 __html: __(
11 'The HubSpot plugin is not connected right now To use HubSpot tools on your WordPress site, %1$sconnect the plugin now%2$s'
12 )
13 .replace(
14 '%1$s',
15 '<a class="leadin-banner__link" href="admin.php?page=leadin&bannerClick=true">'
16 )
17 .replace('%2$s', '</a>'),
18 }}
19 ></b>
20 </ElementorBanner>
21 );
22 }
23