| 1 |
<?php |
| 2 |
/** |
| 3 |
* Button View: Click to Chat Custom image Button. |
| 4 |
* |
| 5 |
* @package Notifier |
| 6 |
*/ |
| 7 |
|
| 8 |
$whatsapp_number = get_option('notifier_ctc_whatsapp_number'); |
| 9 |
$ctc_greeting_text = get_option('notifier_ctc_greeting_text'); |
| 10 |
$ctc_greeting_text = wp_encode_emoji($ctc_greeting_text); |
| 11 |
$url = 'https://wa.me/'.urlencode($whatsapp_number).'?text='.urlencode($ctc_greeting_text); |
| 12 |
|
| 13 |
$ctc_custom_button_image_url = get_option('notifier_ctc_custom_button_image_url'); |
| 14 |
if(!empty($ctc_custom_button_image_url)){ |
| 15 |
?> |
| 16 |
<div class="notifier-click-to-chat-btn notifier-click-to-chat-style-custom"> |
| 17 |
<a href="<?php echo esc_url($url); ?>" target="_blank"> |
| 18 |
<img src="<?php echo $ctc_custom_button_image_url; ?>" alt="Whatsapp"> |
| 19 |
</a> |
| 20 |
</div> |
| 21 |
<?php |
| 22 |
} |
| 23 |
|