PluginProbe
WANotifier for Forms and Actions / trunk
WANotifier for Forms and Actions vtrunk
3.1.0 3.0.4 2.7.10 2.7.11 2.7.12 2.7.13 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 3.0.0 3.0.1 3.0.2 3.0.3 trunk 0.1.0 0.1.1 1.0.0 1.0.1 1.0.2 1.0.3 All 66 releases
notifier / templates / buttons / btn-custom-image.php

btn-custom-image.php in WANotifier for Forms and Actions trunk, at templates/buttons/btn-custom-image.php

23 lines 731 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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