rate.php
2.58 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php defined( 'ABSPATH' ) || exit; ?>
<div class="notice notice-info shortcodes-ultimate-notice-rate">
<?php echo get_avatar( 'ano.vladimir@gmail.com', 60, '', __( 'Vladimir Anokhin', 'shortcodes-ultimate' ) ); ?>
<div class="shortcodes-ultimate-notice-rate-content">
<div class="shortcodes-ultimate-notice-rate-content-text">
<p><?php esc_html_e( 'Hello', 'shortcodes-ultimate' ); ?>,</p>
<p><?php esc_html_e( 'my name is Vova Anokhin. I am the developer of the Shortcodes Ultimate plugin.<br>If you like this plugin, please write a few words about it at wordpress.org or twitter. Your opinion will help other people.', 'shortcodes-ultimate' ); ?></p>
<p><?php esc_html_e( 'Thank you!', 'shortcodes-ultimate' ); ?></p>
</div>
<p class="shortcodes-ultimate-notice-rate-actions">
<a href="<?php echo esc_attr( $this->get_dismiss_link() ); ?>" class="button button-primary" onclick="window.open('https://wordpress.org/support/plugin/shortcodes-ultimate/reviews/?rate=5&filter=5#new-post');"><?php esc_html_e( 'Rate plugin', 'shortcodes-ultimate' ); ?></a>
<a href="<?php echo esc_attr( $this->get_dismiss_link( true ) ); ?>"><?php esc_html_e( 'Remind me later', 'shortcodes-ultimate' ); ?></a>
<a href="<?php echo esc_attr( $this->get_dismiss_link() ); ?>" class="shortcodes-ultimate-notice-rate-dismiss"><?php esc_html_e( 'Dismiss', 'shortcodes-ultimate' ); ?></a>
</p>
</div>
</div>
<style>
.shortcodes-ultimate-notice-rate {
position: relative;
padding: 15px 20px;
}
.shortcodes-ultimate-notice-rate .avatar {
position: absolute;
left: 20px;
top: 20px;
border-radius: 50%;
}
.shortcodes-ultimate-notice-rate-content {
margin-left: 80px;
}
.shortcodes-ultimate-notice-rate-content-text p {
font-size: 15px;
}
p.shortcodes-ultimate-notice-rate-actions {
margin-top: 15px;
}
p.shortcodes-ultimate-notice-rate-actions a {
vertical-align: middle !important;
}
p.shortcodes-ultimate-notice-rate-actions a + a {
margin-left: 20px;
}
.shortcodes-ultimate-notice-rate-dismiss {
position: absolute;
top: 10px;
right: 10px;
padding: 10px 15px 10px 21px;
font-size: 13px;
line-height: 1.23076923;
text-decoration: none;
}
.shortcodes-ultimate-notice-rate-dismiss:before {
position: absolute;
top: 8px;
left: 0;
margin: 0;
-webkit-transition: all .1s ease-in-out;
transition: all .1s ease-in-out;
background: 0 0;
color: #b4b9be;
content: "\f153";
display: block;
font: 400 16px / 20px dashicons;
height: 20px;
text-align: center;
width: 20px;
}
.shortcodes-ultimate-notice-rate-dismiss:hover:before {
color: #c00;
}
</style>