1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<?php ! defined( 'ABSPATH' ) && exit(); ?><div class="totalpoll-integration-steps"> <div class="totalpoll-integration-steps-item"> <div class="totalpoll-integration-steps-item-number"> <div class="totalpoll-integration-steps-item-number-circle">1</div> </div> <div class="totalpoll-integration-steps-item-content"> <h3 class="totalpoll-h3"> <?php _e('Copy the link', 'totalpoll'); ?> </h3> <p> <?php _e('Start by copying the following link:', 'totalpoll'); ?> </p> <div class="totalpoll-integration-steps-item-copy"> <?php $permalink = esc_attr( get_permalink() ); ?> <input name="" type="text" readonly onfocus="this.setSelectionRange(0, this.value.length)" value="<?php echo $permalink; ?>"> <button type="button" class="button button-primary button-large" copy-to-clipboard="<?php echo $permalink; ?>"> <?php _e('Copy', 'totalpoll'); ?> </button> </div> </div> </div> <div class="totalpoll-integration-steps-item"> <div class="totalpoll-integration-steps-item-number"> <div class="totalpoll-integration-steps-item-number-circle">2</div> </div> <div class="totalpoll-integration-steps-item-content"> <h3 class="totalpoll-h3"> <?php _e('Paste the link', 'totalpoll'); ?> </h3> <p> <?php _e('Paste the copied link anywhere like pages and posts.', 'totalpoll'); ?> </p> </div> </div> <div class="totalpoll-integration-steps-item"> <div class="totalpoll-integration-steps-item-number"> <div class="totalpoll-integration-steps-item-number-circle">3</div> </div> <div class="totalpoll-integration-steps-item-content"> <h3 class="totalpoll-h3"> <?php _e('Preview', 'totalpoll'); ?> </h3> <p> <?php _e('Open the page which you have pasted the link in and test poll functionality.', 'totalpoll'); ?> </p> </div> </div> </div>
|