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
49
50
51
52
53
54
55
|
<?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 shortcode', 'totalpoll'); ?> </h3> <p> <?php _e('Start by copying the following shortcode:', 'totalpoll'); ?> </p> <?php $shortcode = esc_attr( sprintf( '[totalpoll id="%d"]', get_the_ID() ) ); ?> <?php $resultsShortcode = esc_attr( sprintf( '[totalpoll id="%d" screen="results"]', get_the_ID() ) ); ?> <div class="totalpoll-integration-steps-item-copy"> <input name="" type="text" readonly onfocus="this.setSelectionRange(0, this.value.length)" value="<?php echo $shortcode; ?>"> <button type="button" class="button button-primary" copy-to-clipboard="<?php echo $shortcode; ?>"> <?php _e('Copy', 'totalpoll'); ?> </button> </div> <div class="totalpoll-integration-steps-item-copy"> <input name="" type="text" readonly onfocus="this.setSelectionRange(0, this.value.length)" value="<?php echo $resultsShortcode; ?>"> <button type="button" class="button button-primary" copy-to-clipboard="<?php echo $resultsShortcode; ?>"> <?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 shortcode', 'totalpoll'); ?> </h3> <p> <?php _e('Paste the copied shortcode into an area that support shortcodes 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 shortcode in and test poll functionality.', 'totalpoll'); ?> </p> </div> </div> </div>
|