PluginProbe
Hostinger Tools / 2.1.7
Hostinger Tools v2.1.7
3.0.77 3.0.76 3.0.75 3.0.74 3.0.73 3.0.72 3.0.71 3.0.70 3.0.69 3.0.68 3.0.67 3.0.66 1.8.1 1.8.2 1.8.3 1.9.1 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.4 All 108 releases
hostinger / includes / Admin / Views / Partials / PromotionalBanner.php

PromotionalBanner.php in Hostinger Tools 2.1.7, at includes/Admin/Views/Partials/PromotionalBanner.php

40 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="hostinger hsr-banner-container">
2 <div class="hsr-promotional-banner">
3 <div class="hsr-promotional-banner-content">
4 <div>
5 <div class="hsr-onboarding__title"><?php echo esc_html__( 'Invite a Friend, Earn Up to $100', 'hostinger' ); ?></div>
6 <p class="hsr-promotional-banner-description">
7 <?php
8 echo wp_kses(
9 __(
10 'Share your referral link with friends and family and <b>receive 20% commission</b> for every successful referral.',
11 'hostinger'
12 ),
13 array(
14 'b' => array(), // Allowing only <b> tags
15 )
16 );
17 ?>
18 </p>
19 </div>
20 <div class="hsr-buttons">
21 <a class="hsr-btn hsr-purple-btn"
22 href="<?php echo esc_url( $helper->get_promotional_link_url( get_locale() ) ); ?>"
23 target="_blank"
24 rel="noopener noreferrer"><?php echo esc_html__( 'Start earning', 'hostinger' ); ?></a>
25 <svg class="close-btn"
26 width="25"
27 height="24"
28 viewBox="0 0 25 24"
29 fill="none"
30 xmlns="http://www.w3.org/2000/svg">
31 <path fill-rule="evenodd"
32 clip-rule="evenodd"
33 d="M19.5 6.41L18.09 5L12.5 10.59L6.91 5L5.5 6.41L11.09 12L5.5 17.59L6.91 19L12.5 13.41L18.09 19L19.5 17.59L13.91 12L19.5 6.41Z"
34 fill="#2F1C6A"/>
35 </svg>
36 </div>
37 </div>
38 </div>
39 </div>
40