Version Description
- Fixed: Some js and css conflicts with other plugins and builders.
- Fixed: Install Demo slides.
- Changed: Overview page.
Download this release
Release Info
Developer | webdorado |
Plugin | Slider by WD – Responsive Slider |
Version | 1.2.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.2 to 1.2.3
- admin/controllers/WDSControllerUninstall_wds.php +3 -3
- admin/models/WDSModelSliders_wds.php +4 -4
- admin/views/WDSViewUninstall_wds.php +2 -2
- css/notices.css +1 -1
- css/wds_tables.css +309 -0
- demo_sliders/demo_sliders.php +1 -1
- framework/WDW_S_Library.php +5 -5
- frontend/views/WDSViewSlider.php +2 -6
- images/banner/backup.svg +20 -0
- images/banner/dashboard.svg +26 -0
- images/banner/header.svg +1 -0
- images/banner/pro-plugins.svg +18 -0
- images/banner/slider-logo-white.svg +70 -0
- images/banner/themes.svg +30 -0
- images/overview/SLD1.svg +24 -0
- images/overview/SLD2.svg +33 -0
- images/overview/SLD3.svg +16 -0
- images/overview/SLD4.svg +31 -0
- images/overview/SLD5.svg +15 -0
- images/overview/SLD6.svg +77 -0
- images/transparent.png +0 -0
- images/wd_logo.png +0 -0
- js/wds.js +1 -1
- js/wds_frontend.js +62 -61
- licensing/images/Plus.png +0 -0
- licensing/images/arrow3.png +0 -0
- licensing/images/minus.png +0 -0
- licensing/licensing.php +0 -90
- licensing/style.css +0 -158
- readme.txt +30 -25
- slider-wd.php +83 -98
- sliders-insert.php +3 -4
- wd/.gitignore +2 -0
- wd/README.md +3 -36
- wd/assets/css/overview.css +414 -404
- wd/assets/css/subscribe.css +186 -90
- wd/assets/img/allow-and-continue.png +0 -0
- wd/assets/img/bwg_main_plugin.png +0 -0
- wd/assets/img/cfm_main_plugin.png +0 -0
- wd/assets/img/ecwd_main_plugin.png +0 -0
- wd/assets/img/faqwd_main_plugin.png +0 -0
- wd/assets/img/ffwd_main_plugin.png +0 -0
- wd/assets/img/fm_main_plugin.png +0 -0
- wd/assets/img/fmc_main_plugin.png +0 -0
- wd/assets/img/gawd_main_plugin.png +0 -0
- wd/assets/img/gmwd_main_plugin.png +0 -0
- wd/assets/img/header.svg +1 -0
- wd/assets/img/how_it_works.png +0 -0
- wd/assets/img/mwd_main_plugin.png +0 -0
- wd/assets/img/plugins/business_elite.png +0 -0
- wd/assets/img/plugins/business_world.png +0 -0
- wd/assets/img/plugins/event-calendar-wd.png +0 -0
- wd/assets/img/plugins/form-maker.png +0 -0
- wd/assets/img/plugins/photo-gallery.png +0 -0
- wd/assets/img/plugins/portfolio_gallery.png +0 -0
- wd/assets/img/plugins/sauron.png +0 -0
- wd/assets/img/plugins/slider-wd.png +0 -0
- wd/assets/img/plugins/spider-event-calendar.png +0 -0
- wd/assets/img/plugins/wd-google-maps.png +0 -0
- wd/assets/img/plugins/wd-instagram-feed.png +0 -0
- wd/assets/img/slide-1366.jpg +0 -0
- wd/assets/img/sub_1.png +0 -0
- wd/assets/img/sub_2.png +0 -0
- wd/assets/img/sub_4.png +0 -0
- wd/assets/img/twd_main_plugin.png +0 -0
- wd/assets/img/wd_ads_main_plugin.png +0 -0
- wd/assets/img/wde_main_plugin.png +0 -0
- wd/assets/img/wdi_main_plugin.png +0 -0
- wd/assets/img/wdps_main_plugin.png +0 -0
- wd/assets/img/wds_main_plugin.png +0 -0
- wd/assets/img/wp_logo.png +0 -0
- wd/assets/img/ytwd_main_plugin.png +0 -0
- wd/assets/js/overview.js +13 -53
- wd/assets/js/subsribe.js +3 -2
- wd/config.php +11 -13
- wd/includes/api.php +2 -2
- wd/includes/deactivate.php +4 -3
- wd/includes/notices.php +1 -1
- wd/includes/overview.php +3 -231
- wd/includes/subscribe.php +120 -134
- wd/start.php +5 -4
- wd/templates/display_overview.php +116 -40
- wd/templates/display_overview_deals.php +0 -81
- wd/templates/display_overview_support.php +0 -43
- wd/templates/display_overview_user_guide.php +0 -46
- wd/templates/display_overview_welcome.php +0 -31
- wd/templates/display_subscribe.php +31 -28
- wd/wd.php +13 -10
admin/controllers/WDSControllerUninstall_wds.php
CHANGED
@@ -4,12 +4,12 @@ class WDSControllerUninstall_wds {
|
|
4 |
public function __construct() {
|
5 |
if ( WD_S_FREE ) {
|
6 |
global $wds_options;
|
7 |
-
if ( !class_exists("
|
8 |
include_once(WD_S_DIR . "/wd/config.php");
|
9 |
}
|
10 |
-
$config = new
|
11 |
$config->set_options($wds_options);
|
12 |
-
$deactivate_reasons = new
|
13 |
$deactivate_reasons->submit_and_deactivate();
|
14 |
}
|
15 |
}
|
4 |
public function __construct() {
|
5 |
if ( WD_S_FREE ) {
|
6 |
global $wds_options;
|
7 |
+
if ( !class_exists("TenWebConfig") ) {
|
8 |
include_once(WD_S_DIR . "/wd/config.php");
|
9 |
}
|
10 |
+
$config = new TenWebConfig();
|
11 |
$config->set_options($wds_options);
|
12 |
+
$deactivate_reasons = new TenWebDeactivate($config);
|
13 |
$deactivate_reasons->submit_and_deactivate();
|
14 |
}
|
15 |
}
|
admin/models/WDSModelSliders_wds.php
CHANGED
@@ -278,12 +278,12 @@ class WDSModelSliders_wds {
|
|
278 |
'menu_order' => 0,
|
279 |
'import_id' => 0,
|
280 |
);
|
281 |
-
// Create new post by
|
282 |
-
|
|
|
283 |
flush_rewrite_rules();
|
284 |
-
global $wpdb;
|
285 |
|
286 |
-
return get_post_permalink($
|
287 |
}
|
288 |
else {
|
289 |
return "";
|
278 |
'menu_order' => 0,
|
279 |
'import_id' => 0,
|
280 |
);
|
281 |
+
// Create new post by type.
|
282 |
+
$insert_id = wp_insert_post($post_params);
|
283 |
+
if ( !is_wp_error($insert_id) ) {
|
284 |
flush_rewrite_rules();
|
|
|
285 |
|
286 |
+
return get_post_permalink($insert_id);
|
287 |
}
|
288 |
else {
|
289 |
return "";
|
admin/views/WDSViewUninstall_wds.php
CHANGED
@@ -33,8 +33,8 @@ class WDSViewUninstall_wds {
|
|
33 |
<h2><?php _e('Uninstall Slider WD', 'wds');?></h2>
|
34 |
<div class="goodbye-text">
|
35 |
<?php
|
36 |
-
$support_team = '<a href="https://
|
37 |
-
$contact_us = '<a href="https://
|
38 |
echo sprintf(__("Before uninstalling the plugin, please Contact our %s. We'll do our best to help you out with your issue. We value each and every user and value what's right for our users in everything we do.<br />
|
39 |
However, if anyway you have made a decision to uninstall the plugin, please take a minute to %s and tell what you didn't like for our plugins further improvement and development. Thank you !!!", "wds"), $support_team, $contact_us); ?>
|
40 |
</div>
|
33 |
<h2><?php _e('Uninstall Slider WD', 'wds');?></h2>
|
34 |
<div class="goodbye-text">
|
35 |
<?php
|
36 |
+
$support_team = '<a href="https://10web.io/contact-us/" target="_blank">' . __('support team', 'wds') . '</a>';
|
37 |
+
$contact_us = '<a href="https://10web.io/contact-us/" target="_blank">' . __('Contact us', 'wds') . '</a>';
|
38 |
echo sprintf(__("Before uninstalling the plugin, please Contact our %s. We'll do our best to help you out with your issue. We value each and every user and value what's right for our users in everything we do.<br />
|
39 |
However, if anyway you have made a decision to uninstall the plugin, please take a minute to %s and tell what you didn't like for our plugins further improvement and development. Thank you !!!", "wds"), $support_team, $contact_us); ?>
|
40 |
</div>
|
css/notices.css
CHANGED
@@ -114,4 +114,4 @@ a.wds_pro_text:visited, a.wds_pro_text:hover {
|
|
114 |
border: none;
|
115 |
display: inline-block;
|
116 |
vertical-align: middle;
|
117 |
-
}
|
114 |
border: none;
|
115 |
display: inline-block;
|
116 |
vertical-align: middle;
|
117 |
+
}
|
css/wds_tables.css
CHANGED
@@ -1,3 +1,312 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.wds_form .titles {
|
2 |
font-size: 23px;
|
3 |
font-weight: normal;
|
1 |
+
/*10web banner*/
|
2 |
+
.tenweb_banner{
|
3 |
+
padding: 12px 30px 11px;
|
4 |
+
background:#323a45;
|
5 |
+
width: calc(100% - 20px);
|
6 |
+
box-sizing: border-box;
|
7 |
+
-webkit-box-sizing: border-box;
|
8 |
+
-moz-box-sizing: border-box;
|
9 |
+
display:table;
|
10 |
+
}
|
11 |
+
.tenweb_banner > div{
|
12 |
+
display:table-cell;
|
13 |
+
vertical-align:middle;
|
14 |
+
}
|
15 |
+
.tenweb_banner *{
|
16 |
+
color:#ffffff;
|
17 |
+
}
|
18 |
+
|
19 |
+
.tenweb_banner > div{
|
20 |
+
text-align:center;
|
21 |
+
}
|
22 |
+
|
23 |
+
.tenweb_banner .tenweb_banner-center > div{
|
24 |
+
text-align:center;
|
25 |
+
}
|
26 |
+
.tenweb_and {
|
27 |
+
font-size: 26px;
|
28 |
+
font-weight: lighter;
|
29 |
+
text-align:center;
|
30 |
+
width:130px;
|
31 |
+
line-height: 2.7;
|
32 |
+
}
|
33 |
+
.tenweb_desc_h3 {
|
34 |
+
font-weight: normal;
|
35 |
+
font-size: 19px;
|
36 |
+
margin: 0 0 8px;
|
37 |
+
}
|
38 |
+
.tenweb_services {
|
39 |
+
line-height: 1.8;
|
40 |
+
}
|
41 |
+
.tenweb_services span {
|
42 |
+
position: relative;
|
43 |
+
display: inline-block;
|
44 |
+
margin: 0 16px;
|
45 |
+
font-size: 14px;
|
46 |
+
padding-left: 37px;
|
47 |
+
}
|
48 |
+
.tenweb_services span:before {
|
49 |
+
content: "";
|
50 |
+
position: absolute;
|
51 |
+
left: 0;
|
52 |
+
top: 0;
|
53 |
+
width: 28px;
|
54 |
+
height: 24px;
|
55 |
+
background-repeat: no-repeat;
|
56 |
+
background-position: 0 top;
|
57 |
+
}
|
58 |
+
.tenweb_banner-right a.button {
|
59 |
+
background: #367bf2;
|
60 |
+
color: #ffffff;
|
61 |
+
text-transform: uppercase;
|
62 |
+
letter-spacing: 1px;
|
63 |
+
font-size: 14px;
|
64 |
+
padding: 10px 12px;
|
65 |
+
line-height: 1;
|
66 |
+
border-radius: 2px;
|
67 |
+
display: inline-block;
|
68 |
+
border: 0 !important;
|
69 |
+
box-shadow: none;
|
70 |
+
height: auto;
|
71 |
+
}
|
72 |
+
.tenweb_banner-right a.button:visited,
|
73 |
+
.tenweb_banner-right a.button:active,
|
74 |
+
.tenweb_banner-right a.button:hover {
|
75 |
+
background: #367bf2;
|
76 |
+
color: #ffffff;
|
77 |
+
box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
|
78 |
+
}
|
79 |
+
|
80 |
+
.tenweb_services span.pro-plugins:before {
|
81 |
+
content: "";
|
82 |
+
background-image: url(../images/banner/pro-plugins.svg);
|
83 |
+
}
|
84 |
+
.tenweb_services span.themes:before {
|
85 |
+
content: "";
|
86 |
+
background-image: url(../images/banner/header.svg);
|
87 |
+
background-position: 0px -111px;
|
88 |
+
background-size: 82px;
|
89 |
+
}
|
90 |
+
.tenweb_services span.backup:before {
|
91 |
+
content: "";
|
92 |
+
background-image: url(../images/banner/header.svg);
|
93 |
+
background-position: 0 -180px;
|
94 |
+
background-size: 76px;
|
95 |
+
}
|
96 |
+
.tenweb_services span.optimizer:before {
|
97 |
+
content: "";
|
98 |
+
background-image: url(../images/banner/header.svg);
|
99 |
+
background-position: 0 -24px;
|
100 |
+
background-size: 81px;
|
101 |
+
}
|
102 |
+
.tenweb_services span.dashboard:before {
|
103 |
+
content: "";
|
104 |
+
background-image: url(../images/banner/header.svg);
|
105 |
+
background-position: 0 -81px;
|
106 |
+
background-size: 81px;
|
107 |
+
}
|
108 |
+
.tenweb_services span.seo:before {
|
109 |
+
content: "";
|
110 |
+
background-image: url(../images/banner/header.svg);
|
111 |
+
background-position: 0 -133px;
|
112 |
+
background-size: 79px;
|
113 |
+
}
|
114 |
+
/*.tenweb_banner .tenweb_banner-center,
|
115 |
+
.tenweb_banner .tenweb_services{
|
116 |
+
flex-grow: 1;
|
117 |
+
}*/
|
118 |
+
.tenweb_plugin_logo{
|
119 |
+
width:69px;
|
120 |
+
height:49px;
|
121 |
+
background:url(../images/banner/slider-logo-white.svg);
|
122 |
+
margin:0 auto 10px;
|
123 |
+
background-size:cover;
|
124 |
+
}
|
125 |
+
.tenweb_plugin_name {
|
126 |
+
text-transform: uppercase;
|
127 |
+
font-size: 16px;
|
128 |
+
font-weight: 500;
|
129 |
+
}
|
130 |
+
|
131 |
+
.tenweb_banner_logo{
|
132 |
+
width: 93px;
|
133 |
+
height: 25px;
|
134 |
+
margin: 0 auto 9px;
|
135 |
+
background-image: url(../images/banner/header.svg);
|
136 |
+
background-size: 93px;
|
137 |
+
background-position: 0px 0px;
|
138 |
+
}
|
139 |
+
.tenweb_banner .mobile{
|
140 |
+
display:none;
|
141 |
+
}
|
142 |
+
|
143 |
+
.tenweb_desc {
|
144 |
+
line-height: 1.6;
|
145 |
+
}
|
146 |
+
.tenweb_services .tenweb_desc_h3{
|
147 |
+
display:none;
|
148 |
+
}
|
149 |
+
@media only screen and (min-width: 1620px) {
|
150 |
+
.tenweb_desc {
|
151 |
+
width: 415px;
|
152 |
+
}
|
153 |
+
.tenweb_banner .tenweb_banner-center .wd-clear div{
|
154 |
+
text-align:center;
|
155 |
+
float:left;
|
156 |
+
}
|
157 |
+
.tenweb_and {
|
158 |
+
font-size: 34px;
|
159 |
+
font-weight: lighter;
|
160 |
+
line-height: 2;
|
161 |
+
|
162 |
+
}
|
163 |
+
.tenweb_banner .tenweb_banner-center .wd-clear {
|
164 |
+
padding-top: 11px;
|
165 |
+
}
|
166 |
+
.tenweb_services {
|
167 |
+
max-width: 100%;
|
168 |
+
}
|
169 |
+
.tenweb_services span {
|
170 |
+
font-size: 15px;
|
171 |
+
}
|
172 |
+
.tenweb_services {
|
173 |
+
line-height: 2;
|
174 |
+
}
|
175 |
+
|
176 |
+
|
177 |
+
}
|
178 |
+
@media only screen and (max-width: 1620px){
|
179 |
+
.tenweb_and {
|
180 |
+
width: 100px;
|
181 |
+
}
|
182 |
+
}
|
183 |
+
@media only screen and (max-width: 1400px){
|
184 |
+
.tenweb_banner .tenweb_desc {
|
185 |
+
display:none !important;
|
186 |
+
}
|
187 |
+
.tenweb_services .tenweb_desc_h3.screen{
|
188 |
+
display:block;
|
189 |
+
line-height: 1.4;
|
190 |
+
}
|
191 |
+
}
|
192 |
+
@media only screen and (max-width: 1270px){
|
193 |
+
.tenweb_and,
|
194 |
+
.tenweb_services .tenweb_desc_h3.screen {
|
195 |
+
display:none !important;
|
196 |
+
}
|
197 |
+
.tenweb_banner-left {
|
198 |
+
min-width: 110px;
|
199 |
+
}
|
200 |
+
.tenweb_services .tenweb_desc_h3.mobile{
|
201 |
+
display:block;
|
202 |
+
}
|
203 |
+
|
204 |
+
.tenweb_banner .tenweb_banner-center .wd-clear {
|
205 |
+
width: 100%;
|
206 |
+
}
|
207 |
+
|
208 |
+
.tenweb_plugin_logo {
|
209 |
+
width: 52px;
|
210 |
+
height: 37px;
|
211 |
+
}
|
212 |
+
.tenweb_plugin_name {
|
213 |
+
text-transform: none;
|
214 |
+
font-size: 14px;
|
215 |
+
}
|
216 |
+
.tenweb_banner {
|
217 |
+
padding: 12px 21px 11px;
|
218 |
+
}
|
219 |
+
.tenweb_banner-left {
|
220 |
+
max-width: 140px;
|
221 |
+
}
|
222 |
+
}
|
223 |
+
@media only screen and (max-width: 1120px){
|
224 |
+
.tenweb_services {
|
225 |
+
padding: 0 10px;
|
226 |
+
}
|
227 |
+
.tenweb_banner {
|
228 |
+
padding: 12px 21px 11px;
|
229 |
+
text-align: center;
|
230 |
+
}
|
231 |
+
.tenweb_banner-right a.button {
|
232 |
+
letter-spacing: 0px;
|
233 |
+
font-size: 11px;
|
234 |
+
padding: 9px 7px;
|
235 |
+
}
|
236 |
+
|
237 |
+
}
|
238 |
+
@media only screen and (max-width: 1024px){
|
239 |
+
.tenweb_desc_h3 {
|
240 |
+
font-size: 17px;
|
241 |
+
}
|
242 |
+
|
243 |
+
}
|
244 |
+
@media only screen and (max-width:910px){
|
245 |
+
.tenweb_banner {
|
246 |
+
padding: 12px 10px 11px;
|
247 |
+
text-align: center;
|
248 |
+
}
|
249 |
+
body:not(.auto-fold) .tenweb_banner > div {
|
250 |
+
display: block;
|
251 |
+
}
|
252 |
+
body:not(.auto-fold) .tenweb_banner-left {
|
253 |
+
margin: 0 auto;
|
254 |
+
max-width: 214px;
|
255 |
+
}
|
256 |
+
body:not(.auto-fold) .tenweb_services {
|
257 |
+
margin: 10px 0 20px;
|
258 |
+
}
|
259 |
+
|
260 |
+
body:not(.auto-fold) .tenweb_services span:before {
|
261 |
+
content: "";
|
262 |
+
top: 6px;
|
263 |
+
width: 20px;
|
264 |
+
height: 16px;
|
265 |
+
}
|
266 |
+
body:not(.auto-fold) .tenweb_services span.pro-plugins:before {
|
267 |
+
content: "";
|
268 |
+
background-size: contain;
|
269 |
+
}
|
270 |
+
body:not(.auto-fold) .tenweb_services span.themes:before {
|
271 |
+
content: "";
|
272 |
+
background-position: 0 -77px;
|
273 |
+
background-size: 57px;
|
274 |
+
}
|
275 |
+
body:not(.auto-fold) .tenweb_services span.backup:before {
|
276 |
+
content: "";
|
277 |
+
background-position: 0 -130px;
|
278 |
+
background-size: 55px;
|
279 |
+
}
|
280 |
+
body:not(.auto-fold) .tenweb_services span.optimizer:before {
|
281 |
+
content: "";
|
282 |
+
background-position: 0 -15px;
|
283 |
+
background-size: 55px;
|
284 |
+
}
|
285 |
+
body:not(.auto-fold) .tenweb_services span.dashboard:before {
|
286 |
+
content: "";
|
287 |
+
background-position: 0 -55px;
|
288 |
+
background-size: 55px;
|
289 |
+
}
|
290 |
+
body:not(.auto-fold) .tenweb_services span.seo:before {
|
291 |
+
content: "";
|
292 |
+
background-position: 0 -84px;
|
293 |
+
background-size: 50px;
|
294 |
+
}
|
295 |
+
}
|
296 |
+
@media only screen and (max-width:768px){
|
297 |
+
.tenweb_banner > div {
|
298 |
+
display: block;
|
299 |
+
}
|
300 |
+
.tenweb_banner-left {
|
301 |
+
margin: 0 auto;
|
302 |
+
max-width: 214px;
|
303 |
+
}
|
304 |
+
.tenweb_services {
|
305 |
+
margin: 10px 0 20px;
|
306 |
+
}
|
307 |
+
}
|
308 |
+
/* 10web banner */
|
309 |
+
|
310 |
.wds_form .titles {
|
311 |
font-size: 23px;
|
312 |
font-weight: normal;
|
demo_sliders/demo_sliders.php
CHANGED
@@ -231,7 +231,7 @@ function spider_demo_sliders() {
|
|
231 |
?>
|
232 |
<li class="<?php echo $key; ?>">
|
233 |
<div class="product"></div>
|
234 |
-
<a target="_blank" href="
|
235 |
</li>
|
236 |
<?php
|
237 |
}
|
231 |
?>
|
232 |
<li class="<?php echo $key; ?>">
|
233 |
<div class="product"></div>
|
234 |
+
<a target="_blank" href="https://demo.10web.io/<?php echo $key; ?>" class="download"><span><?php _e('DOWNLOAD', 'wds');?> <?php echo $demo_slider; ?></span></a>
|
235 |
</li>
|
236 |
<?php
|
237 |
}
|
framework/WDW_S_Library.php
CHANGED
@@ -1235,13 +1235,13 @@ class WDW_S_Library {
|
|
1235 |
navigation : <?php echo $navigation; ?>,
|
1236 |
bull_hover : <?php echo $bull_hover; ?>,
|
1237 |
current_image_url : '<?php echo $current_image_url; ?>',
|
|
|
|
|
|
|
1238 |
}
|
1239 |
-
wds_params
|
1240 |
-
|
1241 |
-
|
1242 |
<?php
|
1243 |
$js_content = ob_get_clean();
|
1244 |
-
clearstatcache();
|
1245 |
|
1246 |
return $js_content;
|
1247 |
}
|
@@ -2243,7 +2243,7 @@ class WDW_S_Library {
|
|
2243 |
}
|
2244 |
}
|
2245 |
$css_content = ob_get_clean();
|
2246 |
-
|
2247 |
return $css_content;
|
2248 |
}
|
2249 |
}
|
1235 |
navigation : <?php echo $navigation; ?>,
|
1236 |
bull_hover : <?php echo $bull_hover; ?>,
|
1237 |
current_image_url : '<?php echo $current_image_url; ?>',
|
1238 |
+
};
|
1239 |
+
if ( typeof wds_params == "undefined" ) {
|
1240 |
+
var wds_params = [];
|
1241 |
}
|
1242 |
+
wds_params[<?php echo $wds; ?>] = wds_param;
|
|
|
|
|
1243 |
<?php
|
1244 |
$js_content = ob_get_clean();
|
|
|
1245 |
|
1246 |
return $js_content;
|
1247 |
}
|
2243 |
}
|
2244 |
}
|
2245 |
$css_content = ob_get_clean();
|
2246 |
+
|
2247 |
return $css_content;
|
2248 |
}
|
2249 |
}
|
frontend/views/WDSViewSlider.php
CHANGED
@@ -99,12 +99,8 @@ class WDSViewSlider {
|
|
99 |
}
|
100 |
// Add incline scripts.
|
101 |
$style = WDW_S_Library::create_css( $id, $slider_row, $slide_rows, $layers_rows, $wds );
|
102 |
-
|
103 |
-
|
104 |
-
}
|
105 |
-
else {
|
106 |
-
echo '<style id="wd-slider-' . $wds .'">' . $style . '</style>';
|
107 |
-
}
|
108 |
?>
|
109 |
<div id="wds_container1_<?php echo $wds; ?>" class="wds_slider_cont" data-wds="<?php echo $wds; ?>">
|
110 |
<div class="wds_loading">
|
99 |
}
|
100 |
// Add incline scripts.
|
101 |
$style = WDW_S_Library::create_css( $id, $slider_row, $slide_rows, $layers_rows, $wds );
|
102 |
+
/*wp_add_inline_style('wds_frontend', $style);*/
|
103 |
+
echo '<style id="wd-slider-' . $wds .'">' . $style . '</style>';
|
|
|
|
|
|
|
|
|
104 |
?>
|
105 |
<div id="wds_container1_<?php echo $wds; ?>" class="wds_slider_cont" data-wds="<?php echo $wds; ?>">
|
106 |
<div class="wds_loading">
|
images/banner/backup.svg
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
width="28px" height="19px" viewBox="0 0 28 19" style="enable-background:new 0 0 28 19;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#FFFFFF;}
|
7 |
+
</style>
|
8 |
+
<g>
|
9 |
+
<path class="st0" d="M23.9,7.1L23.9,7.1c-0.1,0-0.2-0.1-0.2-0.2c-1.2-2.6-3.8-3.9-6.6-3.3c-0.1,0-0.2,0-0.3-0.1
|
10 |
+
C15.2,1.2,13,0,10.4,0C10,0,9.6,0,9.2,0.1C5.6,0.5,2.8,3.5,2.6,7.3c0,0.2-0.1,0.3-0.3,0.4c-2.2,1.5-3,4.3-1.8,6.6
|
11 |
+
C1.5,16.1,3,17,5,17.1c0.2,0,0.4,0,0.6,0c0.2,0,0.3,0,0.5,0h0.5l-0.6-1.8l-0.5,0c-0.3,0-0.6,0-0.8,0c-1.3-0.2-2.3-0.9-2.8-2.1
|
12 |
+
C1.6,12,1.8,10.8,2.6,9.8C3,9.3,3.5,9,4.1,8.8l0.3-0.1l0-0.3c-0.1-1.4,0.2-2.7,1-3.9c0.9-1.3,2-2.1,3.5-2.5
|
13 |
+
c1.2-0.3,2.5-0.2,3.6,0.2c1.6,0.6,2.7,1.8,3.4,3.4L16,6l0.4-0.2C17.5,5.1,18.8,5,20,5.5C21.1,6,22,7,22.2,8.3l0.1,0.3l0.3,0
|
14 |
+
c0.1,0,0.2,0,0.3,0c1.6,0.3,2.8,1.7,2.8,3.2c0,1.7-1.1,3.1-2.7,3.5c-0.2,0-0.5,0.1-0.9,0.1c-0.4,0-0.8,0-1.1,0l-0.5,0L20,17.1
|
15 |
+
l0.9,0c0.6,0,1.2,0,1.9,0c2.5-0.2,4.5-2.3,4.7-4.8C27.6,9.9,26.2,7.8,23.9,7.1z"/>
|
16 |
+
<path class="st0" d="M16.7,13.6l0,0.4c0,0.4-0.1,0.8-0.2,1.1c-0.2,0.5-0.5,0.9-0.8,1.3c-0.4,0.4-0.8,0.6-1.3,0.8
|
17 |
+
c-0.5,0.2-0.9,0.2-1.5,0.2c-1.7-0.2-3.1-1.8-2.9-3.5c0.1-1.6,1.6-3.1,2.9-3.1l0,1.5l3.2-2.4l-3.2-2.4V9c-1.4,0.1-2.7,0.9-3.6,2
|
18 |
+
c-0.9,1.2-1.2,2.7-0.9,4.1c0.3,1.3,1,2.4,2.2,3.1c0.8,0.5,1.8,0.8,2.7,0.8c0.4,0,0.7,0,1.1-0.1c2.7-0.6,4-3,3.9-4.9l0-0.4H16.7z"/>
|
19 |
+
</g>
|
20 |
+
</svg>
|
images/banner/dashboard.svg
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
width="26px" height="22px" viewBox="0 0 26 22" style="enable-background:new 0 0 26 22;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#FFFFFF;}
|
7 |
+
</style>
|
8 |
+
<g>
|
9 |
+
<path class="st0" d="M13,21.7c-3.1,0-6.1,0-9.2,0c-0.4,0-0.7-0.1-0.9-0.4c-2.1-2.6-3.1-5.6-2.9-9c0.3-5.9,4.6-10.8,10.4-12
|
10 |
+
C16-0.9,21.9,1.9,24.5,7c1.1,2.2,1.6,4.5,1.4,7c-0.2,2.7-1.2,5.2-2.9,7.3c-0.2,0.3-0.5,0.4-0.9,0.4C19.1,21.7,16,21.7,13,21.7
|
11 |
+
C13,21.7,13,21.7,13,21.7z M13,19.9c2.9,0,5.7,0,8.6,0c0.2,0,0.3-0.1,0.5-0.2c1.9-2.7,2.6-5.8,1.9-9c-1.3-6-7.2-9.8-13.2-8.6
|
12 |
+
c-4.9,1-8.5,5-9,10c-0.3,2.8,0.5,5.3,2.1,7.6c0.1,0.2,0.3,0.3,0.5,0.3C7.3,19.9,10.1,19.9,13,19.9z"/>
|
13 |
+
<path class="st0" d="M13,17.6c-0.7,0-1.3-0.4-1.6-1.1c-0.2-0.6-0.1-1.4,0.5-1.8c2-1.7,4-3.3,6-5c0.4-0.3,1-0.3,1.3,0
|
14 |
+
c0.4,0.4,0.4,0.9,0,1.3c-1.5,1.9-3.1,3.7-4.6,5.5c-0.1,0.1-0.2,0.2-0.3,0.3C14,17.4,13.5,17.6,13,17.6z"/>
|
15 |
+
<path class="st0" d="M7.3,7.2C7.2,7.3,7.1,7.5,7,7.6c-0.2,0.1-0.4,0-0.5-0.1C6.1,7.3,5.9,7,5.6,6.8c-0.2-0.2-0.2-0.5,0-0.7
|
16 |
+
C5.8,5.9,6.1,5.8,6.3,6c0.3,0.3,0.6,0.6,0.9,0.9C7.3,7,7.3,7.1,7.3,7.2z"/>
|
17 |
+
<path class="st0" d="M20.7,6.4c0,0.4-0.9,1.3-1.3,1.3c-0.2,0-0.4-0.1-0.4-0.3c-0.1-0.1-0.1-0.4,0-0.5c0.2-0.3,0.5-0.6,0.8-0.8
|
18 |
+
c0.1-0.1,0.4-0.1,0.5,0C20.5,6.1,20.6,6.3,20.7,6.4z"/>
|
19 |
+
<path class="st0" d="M22,13.7c-0.2,0-0.3,0-0.5,0c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c0.4,0,0.7,0,1.1,0
|
20 |
+
c0.3,0,0.5,0.3,0.4,0.5c0,0.3-0.2,0.5-0.5,0.5C22.3,13.7,22.2,13.7,22,13.7z"/>
|
21 |
+
<path class="st0" d="M3.9,13.7c-0.2,0-0.3,0-0.5,0c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.7,0,1,0
|
22 |
+
c0.3,0,0.5,0.3,0.5,0.5c0,0.3-0.2,0.5-0.5,0.5C4.3,13.7,4.1,13.7,3.9,13.7z"/>
|
23 |
+
<path class="st0" d="M13.6,3.9c0,0.2,0,0.3,0,0.5c0,0.3-0.3,0.5-0.5,0.5c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0-0.6,0-0.9
|
24 |
+
c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5C13.7,3.6,13.6,3.8,13.6,3.9C13.6,3.9,13.6,3.9,13.6,3.9z"/>
|
25 |
+
</g>
|
26 |
+
</svg>
|
images/banner/header.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="190.51" height="655.4" viewBox="0 0 190.51 655.4"><defs><style>.cls-1{fill:#fff;}</style></defs><title>ICONS SPRITE</title><path class="cls-1" d="M35.4,147.3a20.82,20.82,0,0,1,9,2c-1-1-2-1.9-3.1-2.9.2-.2.4-.3.5-.4l10.3-10.3a2.85,2.85,0,0,0,.8-1.4,2.35,2.35,0,0,0-1.2-2.6,2.31,2.31,0,0,0-2.9.5l-9.9,9.9a7,7,0,0,0-.8,1c-3.8-3.8-7.4-7.4-11.2-11.1.1-.1.3-.2.4-.3l10.5-10.5a2.41,2.41,0,1,0-3.4-3.4l-6.3,6.3c-1.5,1.5-3,3.1-4.7,4.7-1.3-1.3-2.5-2.6-3.8-3.9l-.4.4c-2,2-4.1,4-6.1,6.1a17.89,17.89,0,0,0-4.9,17.8,47.31,47.31,0,0,0,2,5L0,164.4l5.3,5.4,10.3-10.3A22.47,22.47,0,0,1,35.4,147.3Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M34.5,149.8A16.5,16.5,0,1,0,51,166.3,16.52,16.52,0,0,0,34.5,149.8Zm0,31.6a15.1,15.1,0,1,1,15.1-15.1A15.15,15.15,0,0,1,34.5,181.4Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M29.6,165.9a2.65,2.65,0,0,0-1.9-.9,2.47,2.47,0,0,0-2.1.7,4.42,4.42,0,0,0-.8.9v-.7a5.39,5.39,0,0,1,.5-2.1,3,3,0,0,1,1.3-1.2,5.57,5.57,0,0,1,3-.3v-1h-1a4.67,4.67,0,0,0-3.7,1.4,7.11,7.11,0,0,0-1.2,4.5,6.05,6.05,0,0,0,.4,2.4,3.33,3.33,0,0,0,1.2,1.4,3.45,3.45,0,0,0,1.8.5,3.1,3.1,0,0,0,3.3-3.3A4,4,0,0,0,29.6,165.9Zm-1.1,3.9a1.68,1.68,0,0,1-1.4.6,1.9,1.9,0,0,1-1.5-.8,2.62,2.62,0,0,1-.5-1.7,1.61,1.61,0,0,1,.6-1.3,2,2,0,0,1,1.5-.6,1.68,1.68,0,0,1,1.4.6,2.46,2.46,0,0,1,.5,1.5A4.71,4.71,0,0,1,28.5,169.8Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M33,170.2a2.91,2.91,0,0,0,2.5,1.2,2.79,2.79,0,0,0,2.5-1.2,6.68,6.68,0,0,0,.8-3.9,7,7,0,0,0-.9-3.9,3.2,3.2,0,0,0-5,0,6.68,6.68,0,0,0-.8,3.9A6.59,6.59,0,0,0,33,170.2Zm.9-6.8a1.57,1.57,0,0,1,3,0,7.39,7.39,0,0,1,.4,3,7.7,7.7,0,0,1-.4,3,1.58,1.58,0,0,1-1.5,1.1,1.5,1.5,0,0,1-1.5-1.1,11.45,11.45,0,0,1,0-6Z" transform="translate(0 -0.7)"/><polygon class="cls-1" points="47.2 165.4 44.4 165.4 44.4 162.5 43.6 162.5 43.6 165.4 40.8 165.4 40.8 166.1 43.6 166.1 43.6 168.9 44.4 168.9 44.4 166.1 47.2 166.1 47.2 165.4"/><path class="cls-1" d="M33.3,247.9H10a2.89,2.89,0,0,1-2.4-1.1A32.6,32.6,0,0,1,.3,224a33.05,33.05,0,0,1,62.3-13.3A33.07,33.07,0,0,1,58.7,247a2.74,2.74,0,0,1-2.2.9Zm0-4.5H55.2a1.43,1.43,0,0,0,1.2-.6A28.53,28.53,0,0,0,27.8,198,28.58,28.58,0,0,0,5,223.4a27.78,27.78,0,0,0,5.3,19.3,1.51,1.51,0,0,0,1.4.7C18.8,243.3,26.1,243.4,33.3,243.4Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M29,233.2a3.14,3.14,0,0,0,2.9,2h0a3.17,3.17,0,0,0,2.5-1.2l.2-.3c.1-.1.2-.3.3-.4l3.1-3.8c2.1-2.5,4.2-5.1,6.3-7.6a1.57,1.57,0,0,0,0-2.2,1.61,1.61,0,0,0-1.1-.5,1.5,1.5,0,0,0-1.1.4L29.8,229.8A3.07,3.07,0,0,0,29,233.2Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M18.8,211.2a2.84,2.84,0,0,1-.9,1,1.72,1.72,0,0,1-1.4-.1,19.86,19.86,0,0,1-2.1-2,1.24,1.24,0,0,1,.1-1.7c.5-.5,1.1-.7,1.6-.3.8.7,1.6,1.5,2.4,2.3C18.7,210.6,18.7,210.8,18.8,211.2Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M52.8,209.1c-.1,1-2.4,3.3-3.3,3.2a2.1,2.1,0,0,1-1.1-.7,1.72,1.72,0,0,1,.1-1.4,9.47,9.47,0,0,1,2-2,1.69,1.69,0,0,1,1.4-.1C52.3,208.3,52.5,208.8,52.8,209.1Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M56.2,227.6H54.9a1.24,1.24,0,0,1-1.3-1.2,1.4,1.4,0,0,1,1.2-1.4,13.1,13.1,0,0,1,2.8,0,1.19,1.19,0,0,1,1.1,1.4,1.16,1.16,0,0,1-1.2,1.2Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M10.3,227.6H9.1a1.26,1.26,0,0,1-1.3-1.3A1.24,1.24,0,0,1,9,225h2.5a1.34,1.34,0,0,1,1.3,1.4,1.4,1.4,0,0,1-1.3,1.3A4.48,4.48,0,0,0,10.3,227.6Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M35,202.8V204a1.21,1.21,0,0,1-1.4,1.2,1.32,1.32,0,0,1-1.3-1.3v-2.4a1.3,1.3,0,1,1,2.6,0,6.15,6.15,0,0,1,.1,1.3Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M44.2,298.1a5.51,5.51,0,0,0-2-2.7c-.3-.3-.4-.5,0-.9a45.34,45.34,0,0,0,5-5.7,11.88,11.88,0,0,0,1.3-2.5,1.7,1.7,0,0,0-1.8-2.3,5.63,5.63,0,0,0-3,1.2l-1.2.9c-.1.1-.3.3-.5.1s0-.3.1-.4a8.23,8.23,0,0,0,1.2-2.5,3,3,0,0,0-.2-2.6,1.8,1.8,0,0,0-1.6-.9,8.09,8.09,0,0,0-3.7,1.2,13.25,13.25,0,0,0-2.5,1.6c-.2.1-.4.4-.6.1s0-.4.2-.6a10.53,10.53,0,0,0,1.7-2.9c1.2-2.9-.6-5.1-3.7-4.7a4.33,4.33,0,0,0-.5.1c-.2,0-.4.2-.5-.1s.1-.4.2-.5a5.37,5.37,0,0,0,1-1.6,2.5,2.5,0,0,0-.3-2.5,1.9,1.9,0,0,0-2.2-.8,8.79,8.79,0,0,0-3.4,1.9c-.1.1-.2.2-.3.2s-.3.3-.5.1,0-.3.1-.4c.2-.4.5-.7.7-1.1a1.2,1.2,0,0,0,0-1.5,1.1,1.1,0,0,0-1.4-.3,10.31,10.31,0,0,0-2.8,1.8,35.83,35.83,0,0,0-2.9,2.6c-.3.3-.4.2-.7,0a6.69,6.69,0,0,0-2.8-2.1l.5-.5L27.9,259a2,2,0,0,1,3.2,0l24.6,24.6a2,2,0,0,1,0,3.2L44.9,297.6A1.16,1.16,0,0,0,44.2,298.1Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M26.5,288c-4.5-4.5-9-9-13.5-13.4-.4-.4-.4-.6,0-.9a9.43,9.43,0,0,0,1-1,2,2,0,0,1,2.7,0l.3.3,24.4,24.4c1.2,1.2,1.2,2.2,0,3.3-.4.4-.7,1-1.1,1s-.8-.6-1.2-1C35,296.5,30.8,292.2,26.5,288Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M9.8,276.9a3.92,3.92,0,0,0,0,5.5c.6.7,1.3,1.3,1.9,2a12.28,12.28,0,0,1,2.3,4,4.7,4.7,0,0,1-1.3,5,18.51,18.51,0,0,1-4.8,3.5,15.92,15.92,0,0,0-6.1,4.8,6.64,6.64,0,0,0-.6,7.6,10.49,10.49,0,0,0,3,3.3,6.61,6.61,0,0,0,8.1.3,14.14,14.14,0,0,0,4.9-5.7,22.64,22.64,0,0,1,2.6-4.2c2.5-3.1,5.1-3.6,8.5-1.4a18.46,18.46,0,0,1,3.7,3.1,3.92,3.92,0,0,0,4.9.5,11.37,11.37,0,0,0,1.6-1.5c.4-.3.4-.5,0-.9L25.1,289.4,12.6,276.9c-.5-.5-.9-1.3-1.4-1.2S10.3,276.4,9.8,276.9Zm1.5,26.3a4,4,0,0,1,0,5.6,3.92,3.92,0,1,1,0-5.6Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M42,361.9a23.36,23.36,0,1,0-18.3,8.9,22.77,22.77,0,0,0,12.9-3.9L54,384.2l5.2-5.2Zm.3-14.4a18.6,18.6,0,1,1-18.6-18.6A18.69,18.69,0,0,1,42.3,347.5Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M1,403.6l-.7.1v.7C.3,417.3,3,428,8.7,437.2a46.22,46.22,0,0,0,16.2,16.1,4,4,0,0,0,2.1.7,3.68,3.68,0,0,0,2.1-.8c.6-.5,1.4-1,2-1.5.8-.6,1.6-1.1,2.4-1.8a53.31,53.31,0,0,0,17.7-27.4,62.88,62.88,0,0,0,2.3-18.2v-.7l-.7-.1c-7.8-1.4-14.9-4.9-21.8-8.4l-.1-.1c-2.7-1.4-5.8-1.2-8.9.4C14.6,399.4,8.1,402.3,1,403.6Zm29.4-4.3a80.16,80.16,0,0,0,18.4,7.5c.2.1.6.5.6.6h0c-.4,13.4-4.2,24.1-11.6,32.8a51.71,51.71,0,0,1-6.4,6c-1.1.9-2.2,1.9-3.3,2.8a1.76,1.76,0,0,1-1.3.6,2.69,2.69,0,0,1-1.6-.7A46.11,46.11,0,0,1,6.5,422.2a94.78,94.78,0,0,1-2.3-14.3c0-1.1.2-1.2.9-1.4a71.15,71.15,0,0,0,18.2-7.4A7.45,7.45,0,0,1,30.4,399.3Z" transform="translate(0 -0.7)"/><polygon class="cls-1" points="35.7 410.4 25.6 426 18.6 419.8 15.9 422.6 26.4 432.1 39 412.6 35.7 410.4"/><path class="cls-1" d="M48.5,501.7H15.1a11.9,11.9,0,1,1,0-23.8,12.22,12.22,0,0,1,5.6,1.4l1.4.8.5-1.5A17.49,17.49,0,0,1,39,467.1a17.3,17.3,0,0,1,17,13.6,24.58,24.58,0,0,1,2.8-.2A20.52,20.52,0,0,0,53.1,470,20.06,20.06,0,0,0,39,464.3a20.46,20.46,0,0,0-18.5,12A14.69,14.69,0,1,0,15,504.6H51.3C49.6,503.7,48.5,502.8,48.5,501.7Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M51.7,504.5H15.1a14.8,14.8,0,1,1,0-29.6,14,14,0,0,1,5.4,1,20.3,20.3,0,0,1,18.5-12,20.06,20.06,0,0,1,14.1,5.7,19.74,19.74,0,0,1,5.7,10.6v.1h-.1a24.58,24.58,0,0,0-2.8.2h-.1v-.1a17.3,17.3,0,0,0-33.2-2.1l-.6,1.6-1.5-.8A11.88,11.88,0,1,0,15,501.5H48.5v.1c0,1,1,2,2.7,2.7ZM15.1,475.1a14.6,14.6,0,0,0,0,29.2H50.9c-1.6-.7-2.5-1.7-2.5-2.6H15.1a12,12,0,1,1,5.6-22.6l1.3.7.5-1.4A17.61,17.61,0,0,1,39,466.8a17.18,17.18,0,0,1,17,13.6,24.52,24.52,0,0,1,2.7-.2A20.22,20.22,0,0,0,53,469.8a20,20,0,0,0-14-5.7A20.23,20.23,0,0,0,20.6,476v.1h-.1A16.16,16.16,0,0,0,15.1,475.1Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M69.7,485.9a2.84,2.84,0,0,0-.7-1.7c-1.6-1.7-5.5-2.6-9.4-2.6h-.7a24.52,24.52,0,0,0-2.7.2c-3.7.5-6.7,1.9-6.7,4v13.8a2.2,2.2,0,0,0,.6,1.5c1.3,1.6,4.6,2.5,8.1,2.7h1.5c3.9,0,7.9-.9,9.4-2.6a2.19,2.19,0,0,0,.7-1.7V486.1C69.7,486.2,69.7,486,69.7,485.9ZM59.5,497.4a19.3,19.3,0,0,1-6.2-.9c-1.5-.5-2.1-1.1-2.1-1.4v-2a17.82,17.82,0,0,0,8.2,1.7,23.1,23.1,0,0,0,6.1-.8,6.67,6.67,0,0,0,2.1-.9v2c0,.3-.5.9-2.1,1.4l-.9.3A18.28,18.28,0,0,1,59.5,497.4Zm8.3-7.9v1c0,.3-.5.9-2.1,1.4h-.1a18.25,18.25,0,0,1-6.1.9,19.3,19.3,0,0,1-6.2-.9c-1.5-.5-2.1-1.1-2.1-1.4v-2a17.82,17.82,0,0,0,8.2,1.7,22.65,22.65,0,0,0,5.3-.6,10,10,0,0,0,2.6-.9c.1-.1.2-.1.3-.2v1Zm-14.5-5a17.65,17.65,0,0,1,2.9-.7,32.51,32.51,0,0,1,3.3-.2,19.83,19.83,0,0,1,3.5.3,17.63,17.63,0,0,1,2.7.7c1.5.5,2.1,1.1,2.1,1.4s-.4.7-1.3,1.1a6.88,6.88,0,0,1-.8.3,11.7,11.7,0,0,1-2,.5,27.22,27.22,0,0,1-4.2.4,19.3,19.3,0,0,1-6.2-.9c-1.5-.5-2.1-1.1-2.1-1.4S51.8,485,53.3,484.5Zm14.5,15.2c0,.3-.5.9-2.1,1.4-.4.1-.8.3-1.3.4a23.84,23.84,0,0,1-4.9.5,21.79,21.79,0,0,1-6-.8c-.1,0-.2,0-.2-.1-1.5-.5-2.1-1.1-2.1-1.4v-2a17.82,17.82,0,0,0,8.2,1.7c1.2,0,2.4-.1,3.5-.2a12.23,12.23,0,0,0,4.2-1.2c.2-.1.3-.2.5-.3v2Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M59.5,504.1H58c-3.9-.2-7-1.3-8.2-2.8a2.45,2.45,0,0,1-.6-1.6V485.9c0-2,2.6-3.6,6.9-4.2a24.52,24.52,0,0,1,2.7-.2h.7c4.3,0,8.1,1,9.5,2.6a2.5,2.5,0,0,1,.8,1.8v13.8a2.9,2.9,0,0,1-.8,1.8C67.6,503.1,63.8,504.1,59.5,504.1Zm0-22.3h-.7a24.52,24.52,0,0,0-2.7.2c-4.1.6-6.6,2-6.6,3.9v.4h0v4.5h0v4.5h0v4.1a2.39,2.39,0,0,0,.5,1.4c1.1,1.4,4.2,2.4,8,2.6h1.5c4.2,0,7.9-1,9.3-2.5a2.57,2.57,0,0,0,.7-1.6v-4.1h0v-4.5h0v-4.5h0v-.4a2.13,2.13,0,0,0-.7-1.6C67.4,482.8,63.8,481.8,59.5,481.8Zm0,20.4a21.26,21.26,0,0,1-6-.8.35.35,0,0,1-.2-.1c-1.5-.5-2.2-1.2-2.2-1.6v-2.3l.2.1a18.34,18.34,0,0,0,8.2,1.6c1.2,0,2.4-.1,3.5-.2a15.08,15.08,0,0,0,4.2-1.1c.2-.1.3-.2.5-.2l.2-.1v2.3c0,.4-.7,1-2.2,1.6-.4.1-.8.3-1.3.4A34.67,34.67,0,0,1,59.5,502.2Zm-8.1-4.3v1.8c0,.2.5.8,2,1.3.1,0,.1,0,.2.1a20.53,20.53,0,0,0,5.9.8,24.61,24.61,0,0,0,4.9-.5,5,5,0,0,0,1.3-.4c1.5-.5,2-1.1,2-1.3v-1.8c-.1,0-.2.1-.3.1a18.69,18.69,0,0,1-4.3,1.2,20,20,0,0,1-3.5.2A17.42,17.42,0,0,1,51.4,497.9Zm8.1-.3a18.46,18.46,0,0,1-6.2-.9c-1.5-.5-2.2-1.2-2.2-1.6v-2.3l.2.1a18.34,18.34,0,0,0,8.2,1.6,22.54,22.54,0,0,0,6.1-.8,6.67,6.67,0,0,0,2.1-.9l.2-.1V495c0,.4-.7,1-2.2,1.6l-.9.3A17,17,0,0,1,59.5,497.6Zm-8.1-4.3v1.8c0,.2.5.8,2,1.3a18.25,18.25,0,0,0,6.1.9,20.64,20.64,0,0,0,5.2-.6l.9-.3c1.5-.5,2-1.1,2-1.3v-1.8a18.19,18.19,0,0,1-1.9.8,22.76,22.76,0,0,1-6.2.8A18.49,18.49,0,0,1,51.4,493.3Zm8.1-.3a18.46,18.46,0,0,1-6.2-.9c-1.5-.5-2.2-1.2-2.2-1.6v-2.3l.2.1a18.34,18.34,0,0,0,8.2,1.6,22,22,0,0,0,5.3-.6,8.15,8.15,0,0,0,2.5-.9c.1-.1.2-.1.3-.2l.2-.1v2.3c0,.4-.7,1-2.2,1.6h-.1A15.06,15.06,0,0,1,59.5,493Zm-8.1-4.3v1.8c0,.2.5.8,2,1.3a18.25,18.25,0,0,0,6.1.9,17.63,17.63,0,0,0,6-.9h.1c1.5-.5,2-1.1,2-1.3v-1.8a.1.1,0,0,0-.1.1,8.81,8.81,0,0,1-2.6.9,22.65,22.65,0,0,1-5.3.6A18.65,18.65,0,0,1,51.4,488.7Zm8.1-.3a18.46,18.46,0,0,1-6.2-.9c-1.5-.5-2.2-1.2-2.2-1.6s.7-1,2.2-1.6h0a19.06,19.06,0,0,1,3-.7,32.51,32.51,0,0,1,3.3-.2,19.83,19.83,0,0,1,3.5.3,15,15,0,0,1,2.7.7c1.5.5,2.2,1.2,2.2,1.6s-.5.8-1.4,1.2a6.88,6.88,0,0,1-.8.3,11.7,11.7,0,0,1-2,.5A20.24,20.24,0,0,1,59.5,488.4Zm-6.1-3.8c-1.5.5-2,1.1-2,1.3s.5.8,2,1.3a18.25,18.25,0,0,0,6.1.9,17.28,17.28,0,0,0,4.1-.4,11.7,11.7,0,0,0,2-.5,4.88,4.88,0,0,0,.7-.3c.9-.4,1.2-.8,1.2-1s-.5-.8-2-1.3a10.71,10.71,0,0,0-2.7-.6,18.84,18.84,0,0,0-3.4-.2c-1.1,0-2.2.1-3.2.2a11.54,11.54,0,0,0-2.8.6Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M56.4,560.1H51.3a5.42,5.42,0,0,0-5.5,5.5v.8H39.2a5.78,5.78,0,0,0-1.6-4.6,6.19,6.19,0,0,0-4.7-1.7v-6.6H45c1.6,0,3.5,0,5.3-.1a13.08,13.08,0,0,0,11.3-15.8c-1.3-5.9-5.8-9.7-12-10.1-.3,0-.3,0-.4-.3a18.89,18.89,0,0,0-20.5-12.3,18.8,18.8,0,0,0-15.6,12.4c-.1.3-.1.3-.3.3a11,11,0,0,0-1.8.2,12.55,12.55,0,0,0-8.2,5.1,13.16,13.16,0,0,0,11,20.7H29.4v6.6a5.79,5.79,0,0,0-4.7,1.6,5.57,5.57,0,0,0-1.6,4.6H16.5v-.7a5.48,5.48,0,0,0-5.5-5.5H5.9a5.48,5.48,0,0,0-5.5,5.5v5.1a5.42,5.42,0,0,0,5.5,5.5h5a5.4,5.4,0,0,0,5.4-4.5,8.08,8.08,0,0,0,.1-1.6V570H23v.8a5.6,5.6,0,0,0,5.5,5.4h5.2a5.47,5.47,0,0,0,5.4-4.5,7.57,7.57,0,0,0,.1-1.5V570h6.6v.8a5.48,5.48,0,0,0,5.5,5.5h5a5.42,5.42,0,0,0,5.5-5.5h0v-5.1A5.42,5.42,0,0,0,56.4,560.1Zm2,7.2v3.2a2.1,2.1,0,0,1-2.2,2.2h-5a2,2,0,0,1-2.1-2v-5.1a2.11,2.11,0,0,1,2.1-2.1h5.1a2,2,0,0,1,2.1,2.1Zm-29.8,5.4a2,2,0,0,1-2.1-2.2v-5a1.94,1.94,0,0,1,2.1-2.1h5a1.94,1.94,0,0,1,2.1,2.1v5.1a2,2,0,0,1-2.1,2C31.9,572.7,30.2,572.7,28.6,572.7ZM31,550H13.5a9.6,9.6,0,0,1-8.1-4.1,9.35,9.35,0,0,1-.9-9.4,9.43,9.43,0,0,1,7.7-5.6,5.74,5.74,0,0,1,1.2-.1h.2c1.3,0,1.8-.3,2.2-1.5a15.17,15.17,0,0,1,6.7-8.6,15.58,15.58,0,0,1,13.9-1.5,16.11,16.11,0,0,1,9.8,10.1c.4,1.3.8,1.6,2.2,1.6a9.73,9.73,0,0,1,10,9.5,9.19,9.19,0,0,1-2.7,6.8,9.76,9.76,0,0,1-7,3H36.2ZM9.4,572.7H6a2.1,2.1,0,0,1-2.2-2.2v-4.8a2.07,2.07,0,0,1,2.1-2.2h4.9a2,2,0,0,1,2.1,2.2v4.8a2,2,0,0,1-2.2,2.2Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M27.4,42.8l-3.9,3.9L.3,23.6l2.9-2.9a1.52,1.52,0,0,1,2,0Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M33.5,23.9l-3.9,3.9-9.4-9.4a1.52,1.52,0,0,1,0-2l1.9-1.9a1.52,1.52,0,0,1,2,0Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M21,23.5l-2.9,2.9a1.52,1.52,0,0,1-2,0l-1.9-1.9a1.52,1.52,0,0,1,0-2l1.9-1.9a1.52,1.52,0,0,1,2,0Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M46.3,23.9l-2.9,2.9a1.52,1.52,0,0,1-2,0L19.2,4.6,23.1.7Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M23.5,46.7l-3.9-3.9L35,27.4a1.52,1.52,0,0,1,2,0l2.9,2.9Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M22.5,32.9l-2-1.9a1.52,1.52,0,0,1,0-2l9-9,3.9,3.9-9,9A1.23,1.23,0,0,1,22.5,32.9Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M9.6,20.1,6.7,17.2,23.1.7,27,4.6,11.6,20.1A1.52,1.52,0,0,1,9.6,20.1Z" transform="translate(0 -0.7)"/><polygon class="cls-1" points="60.8 12.7 62 15.8 66.6 14.5 66.6 35.4 70.4 35.4 70.4 10.5 67.8 10.5 60.8 12.7"/><path class="cls-1" d="M86.5,10.9c-6.7,0-11.7,5.5-11.7,12.8v.1c0,7.4,4.9,12.7,11.7,12.7S98.2,31,98.2,23.7v-.1C98.2,16.3,93.3,10.9,86.5,10.9ZM78.7,23.6c0-4.5,2.7-9.3,7.7-9.3s7.8,4.8,7.8,9.3v.1c0,4.5-2.7,9.3-7.7,9.3s-7.8-4.7-7.8-9.4Z" transform="translate(0 -0.7)"/><polygon class="cls-1" points="128.4 29.3 121.5 10.6 121.5 10.6 118.7 10.6 111.7 29.3 104.3 10.7 104.3 10.6 100 10.6 110.2 35.5 110.2 35.6 113.1 35.6 120 17.4 126.9 35.5 126.9 35.6 129.8 35.6 140 10.6 135.9 10.6 128.4 29.3"/><polygon class="cls-1" points="147.1 24.6 162 24.6 162 21.2 147.1 21.2 147.1 14.1 163.7 14.1 163.7 10.6 143.3 10.6 143.3 35.4 163.8 35.4 163.8 31.9 147.1 31.9 147.1 24.6"/><path class="cls-1" d="M186.3,23.2a6,6,0,0,0,2.8-5.2v-.1a5.5,5.5,0,0,0-2-4.3,11.1,11.1,0,0,0-7.4-2.3H168V36.1h12.3c6.2,0,10.2-2.8,10.2-7.2v-.1C190.6,27.1,189.8,24.7,186.3,23.2Zm.4,5.6h0c0,2.4-2.4,3.8-6.3,3.8h-8.5V25.3h7.8C182.4,25.3,186.7,25.8,186.7,28.8Zm-1.4-10.7c0,2.8-3,3.8-5.7,3.8H172V14.8h7.8c3.4,0,5.5,1.2,5.5,3.3Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M63.3,622.2a6.9,6.9,0,0,0-3.5-5.9,10.79,10.79,0,0,0-6.5-8.2h.6a21.5,21.5,0,1,0-43-.3c-3.5,1.5-6.5,4.7-7.1,8.5a6.58,6.58,0,0,0-3.5,5.9,6.77,6.77,0,0,0,3.5,5.9,11,11,0,0,0,10.9,9.1,2.58,2.58,0,0,0,2.6-2.6v-25a2.58,2.58,0,0,0-2.6-2.6h-.3a18,18,0,0,1,36,.3H48.9a2.58,2.58,0,0,0-2.6,2.6v24.7a2.58,2.58,0,0,0,2.6,2.6,6.61,6.61,0,0,0,2.4-.3v5.9a6.38,6.38,0,0,1-5.9,6.2H39.2a5.55,5.55,0,0,0-10.9,1.5,5.79,5.79,0,0,0,5.6,5.6,5.49,5.49,0,0,0,5.3-4.1h6.1a9.6,9.6,0,0,0,9.1-9.4v-7.4a12.13,12.13,0,0,0,5.3-7.7C62.1,626.9,63.3,624.5,63.3,622.2Z" transform="translate(0 -0.7)"/><circle class="cls-1" cx="23.59" cy="70.7" r="4.24"/><path class="cls-1" d="M34.32,101.8H3.56v-8l7.1-6.53,4.32-4,1.34,1.08,1.84,1.49c.83.67,3.06,2.51,8.8,7.3L29.2,95,31.45,93,36,89.1l3-2.57,9.39-8.12.17.14,1.75,1.51,1.07.92,1,.85.91.78,4.35,3.75L61,89.28h0a25.74,25.74,0,0,1,4.58,5.28q0-1.73.07-3.47.27-15.35,0-30.3a4.72,4.72,0,0,0-1.53-3,4.66,4.66,0,0,0-2.57-1.13H4.1A4.1,4.1,0,0,0,0,60.8v41a4.1,4.1,0,0,0,4.1,4.1H34.79a15.3,15.3,0,0,1-.48-3.8C34.31,102,34.32,101.9,34.32,101.8ZM3.56,60.8H61q0,12.34,0,24.68l-3.37-2.9-4.35-3.75-4.71-4.06-.17-.14L39,82.73l-9.77,8.45h0L18.26,82.09,15,79.44,8.59,85.36,3.56,90Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M66.25,102.8H62.58a11.83,11.83,0,0,1-.63,3.11h3.87a14.93,14.93,0,0,0,.49-3.11Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M49.73,100a2.45,2.45,0,0,0-1.24,1.84,2.42,2.42,0,0,0,0,.29,2.45,2.45,0,0,0,4.63,1.12h0l.78-1.41,3.7-6.67L49.72,100Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M51.34,86.61v3.73A10.57,10.57,0,0,1,58.08,93l2.73-2.63A15.59,15.59,0,0,0,51.34,86.61Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M49.48,90.33V86.61a15.44,15.44,0,0,0-14.4,15.21c0,.1,0,.19,0,.29a15.3,15.3,0,0,0,.48,3.8h3.89a11.42,11.42,0,0,1-.66-3.82c0-.09,0-.18,0-.27A12.05,12.05,0,0,1,49.48,90.33Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M66.29,100.94a15,15,0,0,0-4-9.26l-.6.6-2,2a11.91,11.91,0,0,1,2,3.31,11.71,11.71,0,0,1,.83,3.33Z" transform="translate(0 -0.7)"/></svg>
|
images/banner/pro-plugins.svg
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
width="18px" height="18px" viewBox="0 0 18 18" style="enable-background:new 0 0 18 18;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#FFFFFF;}
|
7 |
+
</style>
|
8 |
+
<g>
|
9 |
+
<path class="st0" d="M7.1,16c-0.8,0-1.6,0-2.4,0c-0.1,0-0.3,0.1-0.4,0.2c-0.4,0.4-0.8,0.8-1.2,1.2c-0.7,0.7-1.8,0.7-2.6,0
|
10 |
+
c-0.7-0.7-0.7-1.8,0-2.5c0.4-0.4,0.8-0.8,1.2-1.2C1.9,13.6,2,13.4,2,13.2c0-1.3,0-2.6,0-4c0-1.3,0.2-2.6,0.7-3.8
|
11 |
+
C2.8,5.2,3,4.9,3.2,4.6c0.3-0.4,0.6-0.8,0.9-1.1c0.2-0.3,0.2-0.3,0.5,0c1.1,1.1,2.2,2.2,3.3,3.3c2.2,2.2,4.4,4.4,6.6,6.6
|
12 |
+
c0.3,0.3,0.3,0.3,0,0.6c-0.5,0.3-0.9,0.7-1.4,1c-0.7,0.5-1.5,0.7-2.3,0.9c-0.7,0.1-1.4,0.2-2,0.2C8.3,16.1,7.7,16,7.1,16z"/>
|
13 |
+
<path class="st0" d="M11,0c0.9,0.1,1.9,1,1.9,1.9c0,0.2-0.1,0.5-0.3,0.7C11.4,3.8,10.2,5,9,6.1c-0.1,0.1-0.2,0.1-0.3,0
|
14 |
+
C8,5.5,7.4,4.9,6.7,4.2C6.6,4.1,6.6,4,6.7,3.9c1.2-1.2,2.4-2.4,3.7-3.6C10.5,0.1,10.8,0.1,11,0z"/>
|
15 |
+
<path class="st0" d="M18,7c-0.1,0.2-0.2,0.4-0.3,0.6c-1.2,1.2-2.4,2.4-3.5,3.6c-0.2,0.2-0.3,0.2-0.5,0c-0.6-0.6-1.2-1.2-1.8-1.8
|
16 |
+
c-0.2-0.2-0.2-0.3,0-0.4c1.1-1.1,2.2-2.2,3.3-3.3C15.8,5,16.3,5,17,5.4C17.5,5.8,17.9,6.3,18,7z"/>
|
17 |
+
</g>
|
18 |
+
</svg>
|
images/banner/slider-logo-white.svg
ADDED
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 64 45" style="enable-background:new 0 0 64 45;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#FFFFFF;}
|
7 |
+
.st1{clip-path:url(#XMLID_2_);}
|
8 |
+
.st2{clip-path:url(#XMLID_4_);}
|
9 |
+
</style>
|
10 |
+
<g>
|
11 |
+
<g>
|
12 |
+
<path class="st0" d="M32.8,19.6c-0.3-0.4-0.7-0.7-1.2-1c-0.5-0.3-1-0.4-1.5-0.5v8.8c0.5-0.1,1-0.3,1.5-0.5c0.5-0.3,0.9-0.6,1.2-1
|
13 |
+
c0.3-0.4,0.6-0.8,0.8-1.3c0.2-0.5,0.3-1,0.3-1.6c0-0.5-0.1-1.1-0.3-1.6C33.4,20.4,33.1,20,32.8,19.6z"/>
|
14 |
+
<path class="st0" d="M32,0C19.5,0,9.3,10.1,9.3,22.5S19.5,45,32,45s22.7-10.1,22.7-22.5S44.6,0,32,0z M20.1,26
|
15 |
+
c-0.2,0.4-0.5,0.8-0.8,1.2c-0.3,0.3-0.7,0.6-1.2,0.8c-0.4,0.2-0.9,0.3-1.4,0.3V27c0.3,0,0.6-0.1,0.9-0.2c0.3-0.1,0.5-0.3,0.8-0.5
|
16 |
+
c0.2-0.2,0.4-0.5,0.5-0.8c0.1-0.3,0.2-0.6,0.2-0.9c0-0.3-0.1-0.6-0.2-0.9c-0.1-0.3-0.3-0.5-0.5-0.8c-0.3-0.2-0.6-0.5-0.9-0.7
|
17 |
+
c-0.3-0.2-0.6-0.5-0.8-0.7c-0.2-0.3-0.4-0.5-0.6-0.9c-0.2-0.3-0.2-0.7-0.2-1.1c0-0.4,0.1-0.7,0.2-1.1c0.1-0.3,0.4-0.6,0.6-0.9
|
18 |
+
c0.3-0.2,0.6-0.4,0.9-0.6c0.3-0.1,0.7-0.2,1.1-0.2V18c-0.4,0-0.8,0.1-1.1,0.4c-0.3,0.3-0.4,0.6-0.4,1.1c0,0.2,0,0.4,0.1,0.6
|
19 |
+
c0.1,0.2,0.2,0.3,0.3,0.5l1.7,1.4c0.4,0.3,0.6,0.7,0.8,1.2c0.2,0.5,0.3,0.9,0.3,1.5C20.4,25.1,20.3,25.5,20.1,26z M26.1,28.2h-5
|
20 |
+
V16.8h1.3V27h3.7V28.2z M28.1,28.2h-1.3V16.8h1.3V28.2z M34.7,24.7c-0.3,0.7-0.7,1.3-1.2,1.8c-0.5,0.5-1.1,0.9-1.8,1.2
|
21 |
+
c-0.7,0.3-1.4,0.5-2.2,0.5h-0.6V16.8h0.6c0.8,0,1.5,0.2,2.2,0.5c0.7,0.3,1.3,0.7,1.8,1.2c0.5,0.5,0.9,1.1,1.2,1.8
|
22 |
+
c0.3,0.7,0.5,1.4,0.5,2.2C35.2,23.3,35,24,34.7,24.7z M41.9,28.2c-0.8,0-1.5-0.2-2.2-0.5c-0.7-0.3-1.3-0.7-1.8-1.2
|
23 |
+
c-0.5-0.5-0.9-1.1-1.2-1.8c-0.3-0.7-0.5-1.4-0.5-2.2v-1.8h-0.7v-1.3h0.7v-2.7h5.6V18h-4.3v1.4h4.4v1.3h-4.4v1.8
|
24 |
+
c0,0.6,0.1,1.2,0.3,1.7c0.2,0.5,0.5,1,1,1.4c0.4,0.4,0.9,0.7,1.4,1c0.5,0.2,1.1,0.4,1.7,0.4V28.2z M45.8,27.7
|
25 |
+
c-0.7-0.3-1.4-0.8-1.9-1.4v1.9h-1.3V16.8h0.9c0.6,0,1.2,0.1,1.7,0.3c0.5,0.2,1,0.5,1.4,0.9c0.4,0.4,0.7,0.9,1,1.4
|
26 |
+
c0.2,0.5,0.4,1.1,0.4,1.7c0,0.5-0.1,1-0.2,1.4c-0.2,0.5-0.4,0.9-0.7,1.2c-0.3,0.4-0.6,0.7-1,1c-0.4,0.3-0.8,0.5-1.3,0.6
|
27 |
+
c0.4,0.5,0.9,0.9,1.5,1.2c0.6,0.3,1.2,0.4,1.9,0.4v1.3C47.3,28.2,46.5,28.1,45.8,27.7z"/>
|
28 |
+
<path class="st0" d="M45.9,23.2c0.3-0.3,0.5-0.6,0.6-1c0.1-0.4,0.2-0.7,0.2-1.1c0-0.4-0.1-0.8-0.2-1.1c-0.1-0.4-0.3-0.7-0.6-1
|
29 |
+
c-0.3-0.3-0.6-0.5-0.9-0.7c-0.3-0.2-0.7-0.3-1.1-0.3v6.2c0.4,0,0.8-0.1,1.1-0.3C45.3,23.8,45.6,23.5,45.9,23.2z"/>
|
30 |
+
</g>
|
31 |
+
<g id="XMLID_13_">
|
32 |
+
<defs>
|
33 |
+
<path id="XMLID_14_" d="M52.8,9C59.2,10.2,64,15.8,64,22.5c0,6.7-4.8,12.2-11.2,13.4c2.7-3.8,4.3-8.4,4.3-13.4
|
34 |
+
C57.1,17.5,55.5,12.8,52.8,9z"/>
|
35 |
+
</defs>
|
36 |
+
<clipPath id="XMLID_2_">
|
37 |
+
<use xlink:href="#XMLID_14_" style="overflow:visible;"/>
|
38 |
+
</clipPath>
|
39 |
+
<g id="XMLID_15_" class="st1">
|
40 |
+
<defs>
|
41 |
+
<path id="XMLID_16_" d="M64.9,22.4c0-7.8-6.4-14.1-14.2-14.1c-1.1,0-2.2,0.1-3.2,0.4c4.7,3.8,7.7,9.6,7.7,16
|
42 |
+
c0,4.4-1.4,8.4-3.7,11.7C59,36,64.9,29.9,64.9,22.4z M61.4,22.3l-2.5,3.2l0.8-3.1l-0.8-3.2L61.4,22.3z"/>
|
43 |
+
</defs>
|
44 |
+
<use xlink:href="#XMLID_16_" style="overflow:visible;fill:#FFFFFF;"/>
|
45 |
+
<clipPath id="XMLID_3_">
|
46 |
+
<use xlink:href="#XMLID_16_" style="overflow:visible;"/>
|
47 |
+
</clipPath>
|
48 |
+
</g>
|
49 |
+
</g>
|
50 |
+
<g id="XMLID_7_">
|
51 |
+
<defs>
|
52 |
+
<path id="XMLID_8_" d="M11.2,35.9C4.8,34.7,0,29.1,0,22.5C0,15.8,4.8,10.2,11.2,9c-2.7,3.8-4.3,8.4-4.3,13.4
|
53 |
+
C6.9,27.5,8.5,32.1,11.2,35.9z"/>
|
54 |
+
</defs>
|
55 |
+
<clipPath id="XMLID_4_">
|
56 |
+
<use xlink:href="#XMLID_8_" style="overflow:visible;"/>
|
57 |
+
</clipPath>
|
58 |
+
<g id="XMLID_9_" class="st2">
|
59 |
+
<defs>
|
60 |
+
<path id="XMLID_10_" d="M-0.9,22.6c0,7.8,6.4,14.1,14.2,14.1c1.1,0,2.2-0.1,3.2-0.4c-4.7-3.8-7.7-9.6-7.7-16
|
61 |
+
c0-4.4,1.4-8.4,3.7-11.7C5,9-0.9,15.1-0.9,22.6z M2.6,22.6l2.5-3.2l-0.8,3.1l0.8,3.2L2.6,22.6z"/>
|
62 |
+
</defs>
|
63 |
+
<use xlink:href="#XMLID_10_" style="overflow:visible;fill:#FFFFFF;"/>
|
64 |
+
<clipPath id="XMLID_5_">
|
65 |
+
<use xlink:href="#XMLID_10_" style="overflow:visible;"/>
|
66 |
+
</clipPath>
|
67 |
+
</g>
|
68 |
+
</g>
|
69 |
+
</g>
|
70 |
+
</svg>
|
images/banner/themes.svg
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
width="22px" height="22px" viewBox="0 0 22 22" style="enable-background:new 0 0 22 22;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#FFFFFF;}
|
7 |
+
</style>
|
8 |
+
<g>
|
9 |
+
<g>
|
10 |
+
<path class="st0" d="M17.3,15.7c-0.1-0.5-0.5-0.8-0.8-1.1c-0.1-0.1-0.1-0.2,0-0.3c0.7-0.7,1.4-1.4,2-2.2c0.2-0.3,0.4-0.6,0.5-1
|
11 |
+
c0.1-0.5-0.2-0.9-0.7-0.9c-0.4,0-0.8,0.2-1.2,0.5c-0.2,0.1-0.3,0.2-0.5,0.4c-0.1,0-0.1,0.1-0.2,0c-0.1-0.1,0-0.1,0-0.2
|
12 |
+
c0.2-0.3,0.4-0.6,0.5-1c0.1-0.4,0.1-0.7-0.1-1c-0.1-0.2-0.3-0.4-0.6-0.4c-0.5,0-1,0.2-1.5,0.5c-0.3,0.2-0.7,0.4-1,0.6
|
13 |
+
c-0.1,0-0.1,0.2-0.2,0.1c-0.1-0.1,0-0.2,0.1-0.2c0.3-0.4,0.5-0.7,0.7-1.1c0.5-1.1-0.2-2-1.4-1.8c-0.1,0-0.1,0-0.2,0
|
14 |
+
c-0.1,0-0.1,0.1-0.2,0c0-0.1,0-0.1,0.1-0.2c0.2-0.2,0.3-0.4,0.4-0.6c0.1-0.3,0.1-0.7-0.1-1c-0.2-0.3-0.5-0.4-0.9-0.3
|
15 |
+
C11.4,4.4,11,4.7,10.5,5c0,0-0.1,0.1-0.1,0.1c-0.1,0-0.1,0.1-0.2,0c-0.1-0.1,0-0.1,0-0.2c0.1-0.1,0.2-0.3,0.3-0.4
|
16 |
+
c0.1-0.2,0.2-0.4,0-0.6c-0.2-0.2-0.4-0.2-0.6-0.1C9.5,4,9.2,4.3,8.9,4.5c-0.4,0.3-0.8,0.7-1.2,1c-0.1,0.1-0.2,0.1-0.3,0
|
17 |
+
C7.1,5.2,6.8,4.9,6.3,4.7c0.1-0.1,0.1-0.1,0.2-0.2C8,3.1,9.4,1.7,10.8,0.3c0.4-0.4,0.8-0.4,1.3,0c3.2,3.2,6.4,6.4,9.7,9.7
|
18 |
+
c0.4,0.4,0.4,0.8,0,1.3c-1.4,1.4-2.8,2.8-4.2,4.2C17.4,15.5,17.3,15.6,17.3,15.7z"/>
|
19 |
+
<path class="st0" d="M10.3,11.7C8.5,9.9,6.8,8.2,5,6.4C4.9,6.3,4.9,6.2,5,6.1c0.1-0.1,0.3-0.3,0.4-0.4c0.3-0.3,0.7-0.3,1,0
|
20 |
+
c0,0,0.1,0.1,0.1,0.1c3.2,3.2,6.4,6.4,9.6,9.6c0.5,0.5,0.5,0.9,0,1.3c-0.1,0.1-0.3,0.4-0.4,0.4c-0.2,0-0.3-0.2-0.5-0.4
|
21 |
+
C13.6,15,12,13.4,10.3,11.7z"/>
|
22 |
+
<path class="st0" d="M3.7,7.3c-0.6,0.6-0.6,1.6,0,2.2C4,9.8,4.2,10,4.5,10.3c0.4,0.5,0.7,1,0.9,1.6c0.2,0.8,0,1.4-0.5,2
|
23 |
+
c-0.5,0.6-1.2,1-1.9,1.4c-0.9,0.4-1.8,1.1-2.4,1.9c-0.7,0.9-0.8,2-0.2,3c0.3,0.5,0.7,0.9,1.2,1.3c1,0.8,2.2,0.8,3.2,0.1
|
24 |
+
c0.9-0.6,1.5-1.3,1.9-2.3c0.3-0.6,0.6-1.1,1-1.6c1-1.2,2-1.4,3.3-0.6c0.5,0.3,1,0.8,1.5,1.2c0.5,0.5,1.3,0.6,1.9,0.2
|
25 |
+
c0.2-0.2,0.4-0.4,0.6-0.6c0.2-0.1,0.1-0.2,0-0.3c-1.8-1.8-3.5-3.5-5.3-5.3C8.1,10.6,6.5,9,4.8,7.3C4.7,7.1,4.5,6.8,4.3,6.8
|
26 |
+
C4.1,6.9,3.9,7.2,3.7,7.3z M4.3,17.7c0.6,0.6,0.6,1.6,0,2.2c-0.6,0.6-1.6,0.6-2.2,0c-0.6-0.6-0.6-1.6,0-2.2
|
27 |
+
C2.7,17.1,3.7,17.1,4.3,17.7z"/>
|
28 |
+
</g>
|
29 |
+
</g>
|
30 |
+
</svg>
|
images/overview/SLD1.svg
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 54 23.6" style="enable-background:new 0 0 54 23.6;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#2D3142;}
|
7 |
+
.st1{fill:#2D3142;stroke:#2D3142;stroke-width:0.25;stroke-miterlimit:10;}
|
8 |
+
</style>
|
9 |
+
<g>
|
10 |
+
<path class="st0" d="M53.8,11.3l-4.6-4.6c-0.2-0.2-0.6-0.2-0.9,0c-0.2,0.2-0.2,0.6,0,0.9l4.1,4.1l-4.1,4.1
|
11 |
+
c-0.1,0.1-0.2,0.3-0.2,0.4c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.4,0.2c0.2,0,0.3-0.1,0.4-0.2l4.6-4.6c0.1-0.1,0.2-0.3,0.2-0.4
|
12 |
+
C54,11.5,53.9,11.4,53.8,11.3z"/>
|
13 |
+
<path class="st0" d="M0.2,12.1l4.6,4.6c0.2,0.2,0.6,0.2,0.9,0c0.2-0.2,0.2-0.6,0-0.9l-4.1-4.1l4.1-4.1c0.1-0.1,0.2-0.3,0.2-0.4
|
14 |
+
c0-0.2-0.1-0.3-0.2-0.4C5.5,6.6,5.3,6.5,5.2,6.5C5,6.5,4.8,6.6,4.7,6.7l-4.6,4.6C0.1,11.4,0,11.5,0,11.7C0,11.9,0.1,12,0.2,12.1z"
|
15 |
+
/>
|
16 |
+
<g>
|
17 |
+
<path class="st0" d="M32.9,10.1l-8.1-5.3c-1.4-0.9-2.5-0.3-2.5,1.4v11.2c0,1.7,1.1,2.3,2.5,1.4l8.1-5.3
|
18 |
+
C34.3,12.6,34.3,11.1,32.9,10.1z M31.8,12.4l-7.2,4.7c-0.5,0.3-0.8,0.1-0.8-0.5V7c0-0.6,0.4-0.8,0.8-0.5l7.2,4.7
|
19 |
+
C32.3,11.6,32.3,12.1,31.8,12.4z"/>
|
20 |
+
<path class="st1" d="M44.5,23.5H10.2c-0.4,0-0.8-0.3-0.8-0.8V0.9c0-0.4,0.3-0.8,0.8-0.8h34.2c0.4,0,0.8,0.3,0.8,0.8v21.8
|
21 |
+
C45.2,23.1,44.9,23.5,44.5,23.5z M43.7,1.7H11v20.2h32.7V1.7z"/>
|
22 |
+
</g>
|
23 |
+
</g>
|
24 |
+
</svg>
|
images/overview/SLD2.svg
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 54 43.5" style="enable-background:new 0 0 54 43.5;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#2D3142;}
|
7 |
+
</style>
|
8 |
+
<path class="st0" d="M0.8,37.7c1.3-1.3,3.2-3.2,5.5-5.5c2.1-2.1,3.7-3.7,9.8-9.8c2.9-2.9,5.7-5.7,8.6-8.6c2.6-2.6,5.2-5.2,7.9-7.9
|
9 |
+
c0.1-0.1,0.1-0.1,0.2-0.2c0.6-0.6,1.3-0.6,1.9,0c0.5,0.5,1.1,1.1,1.6,1.6c0.7,0.7,1.4,1.4,2.1,2.1c0.7,0.7,0.7,1.3,0,2
|
10 |
+
c-2.4,2.4-4.7,4.7-7.1,7.1c-2.4,2.4-4.7,4.7-7.1,7.1c-2.4,2.4-4.7,4.7-7.1,7.1c-2.5,2.5-5,5-7.5,7.4c-0.9,0.9-1.9,1.9-2.8,2.8
|
11 |
+
c-0.3,0.3-0.7,0.4-1.1,0.4c-0.4,0-0.6-0.3-0.7-0.4c-0.6-0.5-2-1.9-3.9-3.9c-0.1,0-0.4-0.3-0.5-0.7C0.6,38.1,0.8,37.8,0.8,37.7z
|
12 |
+
M33.7,8.3c-10,10-20,20-30,30c0,0,0,0,0,0c0.7,0.7,1.4,1.4,2.1,2.1c0,0,0.2,0,0.3-0.1c1-1,1.9-1.9,2.9-2.9c2-2,3.9-3.9,5.9-5.9
|
13 |
+
c2.1-2.1,4.2-4.2,6.3-6.3c2.2-2.2,4.5-4.4,6.7-6.7c2.3-2.3,4.5-4.5,6.8-6.8c0.4-0.4,0.9-0.8,1.3-1.2C35.1,9.8,34.4,9.1,33.7,8.3z"/>
|
14 |
+
<path class="st0" d="M50.3,16.8c-0.3,0.7-0.8,0.9-1.5,0.9c-0.3,0-0.7,0-1,0c-0.3,0-0.4,0.1-0.4,0.3c0,0.3,0,0.6,0,0.9
|
15 |
+
c0,0.7-0.5,1.2-1.1,1.2c-0.7,0-1.1-0.5-1.2-1.2c0-0.3,0-0.6,0-0.9c0-0.3-0.1-0.4-0.4-0.4c-0.5,0-1,0-1.5,0c-0.7,0-1.2-0.5-1.1-1.2
|
16 |
+
c0-0.5,0.4-1,0.9-1.1c0.5-0.1,1,0,1.5-0.1c0.6,0,0.5,0.1,0.5-0.5c0-0.4,0-0.8,0-1.1c0-0.7,0.5-1.2,1.2-1.2c0.7,0,1.1,0.5,1.1,1.2
|
17 |
+
c0,0.5,0,1.1,0,1.7c0.5,0,1,0,1.5,0c0.6,0,1.1,0.2,1.3,0.8c0,0,0,0.1,0.1,0.1C50.3,16.5,50.3,16.7,50.3,16.8z"/>
|
18 |
+
<path class="st0" d="M17.3,9.2c0.2,0,0.3,0,0.4,0c1.7,0,3.5,0,5.2,0c0.7,0,1.2,0.4,1.3,1c0.1,0.7-0.3,1.2-1,1.3c-0.2,0-0.3,0-0.5,0
|
19 |
+
c-1.7,0-3.3,0-5,0c-0.1,0-0.3,0-0.5,0c0,0.2,0,0.3,0,0.4c0,1.4,0,2.9,0,4.3c0,0.8-0.5,1.3-1.3,1.3c-0.5,0-0.9-0.5-1-0.9
|
20 |
+
c0-0.2,0-0.3,0-0.5c0-1.4,0-2.8,0-4.2c0-0.3-0.1-0.4-0.4-0.4c-1.5,0-2.9,0-4.4,0c-0.3,0-0.7-0.1-0.9-0.3c-0.7-0.5-0.6-1.6,0.3-1.9
|
21 |
+
c0.2-0.1,0.5-0.1,0.7-0.1c1.4,0,2.8,0,4.2,0c0.1,0,0.3,0,0.5,0c0-0.2,0-0.3,0-0.4c0-1.4,0-2.8,0-4.3c0-0.5,0.1-0.9,0.6-1.2
|
22 |
+
c0.7-0.4,1.5-0.1,1.7,0.7c0,0.2,0,0.4,0,0.6c0,1.4,0,2.8,0,4.2C17.3,8.9,17.3,9,17.3,9.2z"/>
|
23 |
+
<path class="st0" d="M34.6,25.5c0.2,0,0.3,0,0.5,0c1.7,0,3.3,0,5,0c0.2,0,0.4,0,0.6,0.1c0.5,0.1,0.9,0.6,0.9,1.1
|
24 |
+
c0,0.5-0.3,1-0.9,1.1c-0.2,0-0.4,0.1-0.6,0.1c-1.7,0-3.4,0-5.1,0c-0.3,0-0.4,0.1-0.4,0.4c0,1.5,0,3,0,4.6c0,0.4-0.1,0.7-0.4,1
|
25 |
+
c-0.4,0.4-0.8,0.4-1.2,0.3c-0.4-0.2-0.7-0.5-0.7-1c0-0.6,0-1.1,0-1.7c0-1.1,0-2.2,0-3.2c0-0.3-0.1-0.4-0.4-0.4c-1.5,0-3,0-4.5,0
|
26 |
+
c-0.7,0-1.1-0.3-1.3-0.9c-0.2-0.6,0.2-1.2,0.8-1.4c0.2,0,0.4-0.1,0.6-0.1c1.4,0,2.9,0,4.3,0c0.3,0,0.4-0.1,0.4-0.4
|
27 |
+
c0-1.4,0-2.8,0-4.2c0-0.9,0.9-1.4,1.7-1.1c0.5,0.2,0.6,0.7,0.6,1.2c0,1.3,0,2.6,0,4C34.6,25.1,34.6,25.3,34.6,25.5z"/>
|
28 |
+
<path class="st0" d="M28.7,5.4c0,0.4,0,0.7,0,1.1c0,0.7-0.5,1.2-1.1,1.2c-0.7,0-1.2-0.5-1.2-1.2c0-0.4,0-0.8,0-1.2
|
29 |
+
c-0.4,0-0.8,0-1.2,0c-1,0.1-1.5-0.6-1.5-1.2c0-0.7,0.5-1.1,1.4-1.1c0.4,0,0.8,0,1.2,0c0-0.4,0-0.8,0-1.3c0-0.4,0-0.7,0.2-1.1
|
30 |
+
c0.2-0.5,0.7-0.7,1.2-0.6c0.5,0.1,0.9,0.4,0.9,0.9c0.1,0.5,0.1,1.1,0,1.6c0,0.3,0.1,0.4,0.4,0.4c0.5,0,1,0,1.6,0
|
31 |
+
c0.7,0,1.2,0.5,1.2,1.2c0,0.6-0.5,1.1-1.2,1.1c-0.6,0-1.2,0-1.8,0C28.8,5.4,28.7,5.4,28.7,5.4z"/>
|
32 |
+
<path class="st0" d="M0.7,38.1"/>
|
33 |
+
</svg>
|
images/overview/SLD3.svg
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 50.9 54" style="enable-background:new 0 0 50.9 54;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#2D3142;}
|
7 |
+
</style>
|
8 |
+
<g>
|
9 |
+
<path class="st0" d="M41.2,34.7c-3.1,0-5.9,1.5-7.6,3.8l-14.8-8.3c0.3-1,0.5-2.1,0.5-3.2c0-1.1-0.2-2.2-0.5-3.2l14.8-8.3
|
10 |
+
c1.8,2.3,4.5,3.8,7.7,3.8c5.3,0,9.7-4.3,9.7-9.7S46.6,0,41.2,0s-9.7,4.3-9.7,9.7c0,1.1,0.2,2.2,0.5,3.2l-14.8,8.3
|
11 |
+
c-1.8-2.3-4.5-3.8-7.7-3.8C4.3,17.3,0,21.7,0,27s4.3,9.7,9.7,9.7c3.1,0,5.9-1.5,7.7-3.8l14.8,8.3c-0.4,1-0.6,2.1-0.6,3.2
|
12 |
+
c0,5.3,4.3,9.7,9.7,9.7s9.7-4.3,9.7-9.7S46.6,34.7,41.2,34.7z M41.2,3c3.7,0,6.6,3,6.6,6.6s-3,6.6-6.6,6.6s-6.6-3-6.6-6.6
|
13 |
+
S37.6,3,41.2,3z M9.7,33.6C6,33.6,3,30.6,3,27s3-6.6,6.6-6.6s6.6,3,6.6,6.6S13.3,33.6,9.7,33.6z M41.2,51c-3.7,0-6.6-3-6.6-6.6
|
14 |
+
s3-6.6,6.6-6.6s6.6,3,6.6,6.6S44.9,51,41.2,51z"/>
|
15 |
+
</g>
|
16 |
+
</svg>
|
images/overview/SLD4.svg
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 54 45.7" style="enable-background:new 0 0 54 45.7;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#2D3142;}
|
7 |
+
</style>
|
8 |
+
<g>
|
9 |
+
<g>
|
10 |
+
<path class="st0" d="M52.8,12.6L28,0.2c-0.6-0.3-1.3-0.3-2,0L1.2,12.6C0.5,13,0,13.8,0,14.6s0.5,1.6,1.2,2L26,29
|
11 |
+
c0.3,0.2,0.6,0.2,1,0.2c0.3,0,0.7-0.1,1-0.2l24.8-12.4c0.7-0.4,1.2-1.1,1.2-2C54,13.8,53.5,13,52.8,12.6z M27,24.6l-19.9-10
|
12 |
+
L27,4.6l19.9,10L27,24.6z"/>
|
13 |
+
</g>
|
14 |
+
<g>
|
15 |
+
<g>
|
16 |
+
<g>
|
17 |
+
<path class="st0" d="M53.8,30.1c-0.5-1.1-1.8-1.5-2.9-1L27,41.1L3.2,29.2c-1.1-0.5-2.4-0.1-2.9,1c-0.5,1.1-0.1,2.4,1,2.9
|
18 |
+
L26,45.5c0.3,0.2,0.6,0.2,1,0.2c0.3,0,0.7-0.1,1-0.2l24.8-12.4C53.9,32.5,54.3,31.2,53.8,30.1z"/>
|
19 |
+
</g>
|
20 |
+
</g>
|
21 |
+
</g>
|
22 |
+
<g>
|
23 |
+
<g>
|
24 |
+
<g>
|
25 |
+
<path class="st0" d="M53.8,21.9c-0.5-1.1-1.8-1.5-2.9-1L27,32.8L3.2,20.9c-1.1-0.5-2.4-0.1-2.9,1c-0.5,1.1-0.1,2.4,1,2.9
|
26 |
+
L26,37.2c0.3,0.2,0.6,0.2,1,0.2c0.3,0,0.7-0.1,1-0.2l24.8-12.4C53.9,24.3,54.3,23,53.8,21.9z"/>
|
27 |
+
</g>
|
28 |
+
</g>
|
29 |
+
</g>
|
30 |
+
</g>
|
31 |
+
</svg>
|
images/overview/SLD5.svg
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 53.9 53.9" style="enable-background:new 0 0 53.9 53.9;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#2E3243;}
|
7 |
+
</style>
|
8 |
+
<g>
|
9 |
+
<path class="st0" d="M26.9,0.1c-14.8,0-26.8,12-26.8,26.8s12,26.8,26.8,26.8s26.8-12,26.8-26.8S41.7,0.1,26.9,0.1z M26.9,50.5
|
10 |
+
c-13,0-23.6-10.6-23.6-23.6S13.9,3.4,26.9,3.4s23.6,10.6,23.6,23.6S39.9,50.5,26.9,50.5z"/>
|
11 |
+
<path class="st0" d="M35.5,25.6L23.2,13.3c-0.6-0.6-1.7-0.6-2.3,0c-0.6,0.6-0.6,1.7,0,2.3L32,26.8L20.9,37.9
|
12 |
+
c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.4,0.2,0.9,0.5,1.2c0.3,0.3,0.7,0.5,1.2,0.5c0.4,0,0.9-0.2,1.2-0.5L35.5,28c0.3-0.3,0.5-0.7,0.5-1.2
|
13 |
+
S35.8,25.9,35.5,25.6z"/>
|
14 |
+
</g>
|
15 |
+
</svg>
|
images/overview/SLD6.svg
ADDED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<!-- Generator: Adobe Illustrator 21.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 54 36.5" style="enable-background:new 0 0 54 36.5;" xml:space="preserve">
|
5 |
+
<style type="text/css">
|
6 |
+
.st0{fill:#2D3142;}
|
7 |
+
.st1{clip-path:url(#SVGID_2_);fill:none;}
|
8 |
+
.st2{clip-path:url(#SVGID_2_);fill:#2D3142;}
|
9 |
+
.st3{clip-path:url(#SVGID_2_);fill:#FFFFFF;}
|
10 |
+
.st4{opacity:0.3;}
|
11 |
+
.st5{clip-path:url(#SVGID_4_);fill:none;}
|
12 |
+
.st6{clip-path:url(#SVGID_4_);fill:#2D3142;}
|
13 |
+
.st7{clip-path:url(#SVGID_4_);fill:#FFFFFF;}
|
14 |
+
</style>
|
15 |
+
<g>
|
16 |
+
<path class="st0" d="M53.8,19.2l-4.4-4.4c-0.2-0.2-0.6-0.2-0.8,0c-0.2,0.2-0.2,0.6,0,0.8l4,4l-4,4c-0.1,0.1-0.2,0.3-0.2,0.4
|
17 |
+
c0,0.2,0.1,0.3,0.2,0.4c0.1,0.1,0.3,0.2,0.4,0.2c0.2,0,0.3-0.1,0.4-0.2l4.4-4.4c0.1-0.1,0.2-0.3,0.2-0.4S53.9,19.3,53.8,19.2z"/>
|
18 |
+
<path class="st0" d="M0.2,20.1l4.4,4.4c0.2,0.2,0.6,0.2,0.8,0c0.2-0.2,0.2-0.6,0-0.8l-4-4l4-4c0.1-0.1,0.2-0.3,0.2-0.4
|
19 |
+
S5.5,15,5.4,14.9c-0.1-0.1-0.3-0.2-0.4-0.2c-0.2,0-0.3,0.1-0.4,0.2l-4.4,4.4C0.1,19.3,0,19.5,0,19.6S0.1,19.9,0.2,20.1z"/>
|
20 |
+
<path class="st0" d="M43.9,36.5h-36V2.8h36V36.5z M8.9,35.5h33.9V3.8H8.9V35.5z"/>
|
21 |
+
<g>
|
22 |
+
<defs>
|
23 |
+
<rect id="SVGID_1_" x="10.5" y="13.3" width="30.7" height="20.7"/>
|
24 |
+
</defs>
|
25 |
+
<clipPath id="SVGID_2_">
|
26 |
+
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
27 |
+
</clipPath>
|
28 |
+
<path class="st1" d="M43.3,34h0.6c0.1-0.1,0.2-0.3,0.2-0.5L44,10c0-0.3-0.3-0.6-0.6-0.6H13.6C13.3,9.4,13,9.7,13,10v0.6h28.5
|
29 |
+
c0.7,0,1.3,0.6,1.3,1.3v5.8h0.5V34z"/>
|
30 |
+
<path class="st1" d="M46.6,7.5c0-0.3-0.3-0.6-0.6-0.6H16.2c-0.4,0-0.6,0.3-0.6,0.6v0.6H44c0.7,0,1.3,0.6,1.3,1.3v22.2H46
|
31 |
+
c0.4,0,0.6-0.3,0.6-0.6h0V7.5z"/>
|
32 |
+
<path class="st1" d="M41.5,17.8v-5.2c0-0.3-0.3-0.6-0.6-0.6H11c-0.4,0-0.6,0.3-0.6,0.6v13.8L21,17.2c0.2-0.2,0.6-0.2,0.9,0
|
33 |
+
L33,26.9l4.1-4.6c0.3-0.3,0.7-0.3,1,0l3.4,3.8L41.5,17.8L41.5,17.8z M32.4,20.8c-1.4,0-2.6-1.1-2.6-2.5c0-1.4,1.2-2.5,2.6-2.5
|
34 |
+
s2.6,1.1,2.6,2.5C35,19.7,33.8,20.8,32.4,20.8z"/>
|
35 |
+
<path class="st2" d="M46.6,5.6H15.6c-0.7,0-1.3,0.6-1.3,1.3v1.3H13c-0.7,0-1.3,0.6-1.3,1.3v1.3h-1.3c-0.7,0-1.3,0.6-1.3,1.3v22h1
|
36 |
+
V22.3h0.3V34h31.1v-7.9l-3.4-3.8c-0.3-0.3-0.7-0.3-1,0L33,26.9l-11.2-9.7c-0.2-0.2-0.6-0.2-0.9,0l-10.6,9.2V12.6
|
37 |
+
c0-0.3,0.3-0.6,0.6-0.6h29.8c0.4,0,0.6,0.3,0.6,0.6v5.2h1.3v-5.8c0-0.7-0.6-1.3-1.3-1.3H13V10c0-0.3,0.3-0.6,0.6-0.6h29.8
|
38 |
+
c0.4,0,0.6,0.3,0.6,0.6l0,23.5c0,0.2-0.1,0.3-0.2,0.5H45v0.1h-1.3c-0.1,0-0.2,0.1-0.3,0.1h-0.1v1.3H44c0.7,0,1.3-0.6,1.3-1.3v-1.3
|
39 |
+
h1.3c0.7,0,1.3-0.6,1.3-1.3V6.9C47.9,6.1,47.4,5.6,46.6,5.6z M46,31.6h-0.6V9.4c0-0.7-0.6-1.3-1.3-1.3H15.6V7.5
|
40 |
+
c0-0.3,0.3-0.6,0.6-0.6H46c0.4,0,0.6,0.3,0.6,0.6V31h0C46.6,31.3,46.3,31.6,46,31.6z"/>
|
41 |
+
<ellipse class="st2" cx="32.4" cy="18.3" rx="2.6" ry="2.5"/>
|
42 |
+
<rect x="10.1" y="22.3" class="st3" width="0.3" height="11.7"/>
|
43 |
+
<polygon class="st3" points="41.5,17.8 41.4,17.8 41.4,26.1 41.5,26.1 "/>
|
44 |
+
<rect x="42.8" y="17.8" class="st3" width="0.5" height="16.2"/>
|
45 |
+
<polygon class="st3" points="42.8,17.8 41.5,17.8 41.5,26.1 41.4,26.1 41.4,34 42.8,34 "/>
|
46 |
+
</g>
|
47 |
+
<g class="st4">
|
48 |
+
<path class="st0" d="M47.5,33.8h-36V0h36V33.8z M12.5,32.8h33.9V1H12.5V32.8z"/>
|
49 |
+
<g>
|
50 |
+
<defs>
|
51 |
+
<rect id="SVGID_3_" x="14.1" y="10.5" width="30.7" height="20.7"/>
|
52 |
+
</defs>
|
53 |
+
<clipPath id="SVGID_4_">
|
54 |
+
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
55 |
+
</clipPath>
|
56 |
+
<path class="st5" d="M46.9,31.2h0.6c0.1-0.1,0.2-0.3,0.2-0.5l0-23.5c0-0.3-0.3-0.6-0.6-0.6H17.2c-0.4,0-0.6,0.3-0.6,0.6v0.6h28.5
|
57 |
+
c0.7,0,1.3,0.6,1.3,1.3V15h0.5V31.2z"/>
|
58 |
+
<path class="st5" d="M50.2,4.7c0-0.3-0.3-0.6-0.6-0.6H19.8c-0.4,0-0.6,0.3-0.6,0.6v0.6h28.5c0.7,0,1.3,0.6,1.3,1.3v22.2h0.6
|
59 |
+
c0.4,0,0.6-0.3,0.6-0.6h0V4.7z"/>
|
60 |
+
<path class="st5" d="M45.1,15V9.8c0-0.3-0.3-0.6-0.6-0.6H14.7c-0.4,0-0.6,0.3-0.6,0.6v13.8l10.6-9.2c0.2-0.2,0.6-0.2,0.9,0
|
61 |
+
l11.2,9.7l4.1-4.6c0.3-0.3,0.7-0.3,1,0l3.4,3.8L45.1,15L45.1,15z M36,18c-1.4,0-2.6-1.1-2.6-2.5S34.6,13,36,13s2.6,1.1,2.6,2.5
|
62 |
+
S37.4,18,36,18z"/>
|
63 |
+
<path class="st6" d="M50.3,2.8H19.2c-0.7,0-1.3,0.6-1.3,1.3v1.3h-1.3c-0.7,0-1.3,0.6-1.3,1.3v1.3H14c-0.7,0-1.3,0.6-1.3,1.3v22h1
|
64 |
+
V19.5H14v11.7H45v-7.9l-3.4-3.8c-0.3-0.3-0.7-0.3-1,0l-4.1,4.6l-11.2-9.7c-0.2-0.2-0.6-0.2-0.9,0L14,23.6V9.8
|
65 |
+
c0-0.3,0.3-0.6,0.6-0.6h29.8c0.4,0,0.6,0.3,0.6,0.6V15h1.3V9.1c0-0.7-0.6-1.3-1.3-1.3H16.6V7.2c0-0.3,0.3-0.6,0.6-0.6H47
|
66 |
+
c0.4,0,0.6,0.3,0.6,0.6l0,23.5c0,0.2-0.1,0.3-0.2,0.5h1.2v0.1h-1.3c-0.1,0-0.2,0.1-0.3,0.1h-0.1v1.3h0.8c0.7,0,1.3-0.6,1.3-1.3
|
67 |
+
v-1.3h1.3c0.7,0,1.3-0.6,1.3-1.3V4.1C51.5,3.4,51,2.8,50.3,2.8z M49.6,28.8H49V6.6c0-0.7-0.6-1.3-1.3-1.3H19.2V4.7
|
68 |
+
c0-0.3,0.3-0.6,0.6-0.6h29.8c0.4,0,0.6,0.3,0.6,0.6v23.5h0C50.3,28.5,50,28.8,49.6,28.8z"/>
|
69 |
+
<ellipse class="st6" cx="36" cy="15.5" rx="2.6" ry="2.5"/>
|
70 |
+
<rect x="13.7" y="19.5" class="st7" width="0.3" height="11.7"/>
|
71 |
+
<polygon class="st7" points="45.1,15 45,15 45,23.3 45.1,23.3 "/>
|
72 |
+
<rect x="46.4" y="15" class="st7" width="0.5" height="16.2"/>
|
73 |
+
<polygon class="st7" points="46.4,15 45.1,15 45.1,23.3 45,23.3 45,31.2 46.4,31.2 "/>
|
74 |
+
</g>
|
75 |
+
</g>
|
76 |
+
</g>
|
77 |
+
</svg>
|
images/transparent.png
ADDED
Binary file
|
images/wd_logo.png
DELETED
Binary file
|
js/wds.js
CHANGED
@@ -4272,4 +4272,4 @@ function showHowToTabBlock(){
|
|
4272 |
var phpcode = '<?php wd_slider('+ id +'); ?>';
|
4273 |
jQuery(".wds_howto_content .wds_howto_shortcode").val(shortcode);
|
4274 |
jQuery(".wds_howto_content .wds_howto_phpcode").val(phpcode);
|
4275 |
-
}
|
4272 |
var phpcode = '<?php wd_slider('+ id +'); ?>';
|
4273 |
jQuery(".wds_howto_content .wds_howto_shortcode").val(shortcode);
|
4274 |
jQuery(".wds_howto_content .wds_howto_phpcode").val(phpcode);
|
4275 |
+
}
|
js/wds_frontend.js
CHANGED
@@ -3,74 +3,76 @@ var wds_currentlyMoving = [];
|
|
3 |
var wds_currentCenterNum = [];
|
4 |
var wds;
|
5 |
|
6 |
-
jQuery(
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
jQuery(
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
if (jQuery
|
31 |
-
if (
|
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 |
-
wds_circle_timer(wds, wds_params[wds].curent_time_deggree);
|
60 |
}
|
61 |
}
|
62 |
}
|
63 |
}
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
}
|
73 |
-
}
|
74 |
});
|
75 |
});
|
76 |
|
@@ -2142,8 +2144,7 @@ function wds_full_width( wds ) {
|
|
2142 |
});
|
2143 |
}
|
2144 |
|
2145 |
-
function
|
2146 |
-
|
2147 |
if (typeof wds_params[wds].callback_items["onSliderI"] !== 'undefined' && wds_params[wds].callback_items["onSliderI"] !== null) {
|
2148 |
wds_params[wds].callback_items["onSliderI"];
|
2149 |
}
|
3 |
var wds_currentCenterNum = [];
|
4 |
var wds;
|
5 |
|
6 |
+
jQuery(document).ready(function () {
|
7 |
+
jQuery(".wds_slider_cont").each(function () {
|
8 |
+
wds = jQuery(this).attr("data-wds");
|
9 |
+
if (wds_params[wds].current_image_url != '') {
|
10 |
+
jQuery('<img />').attr("src", wds_params[wds].current_image_url).on('load', function () {
|
11 |
+
jQuery(this).remove();
|
12 |
+
wds_ready_func(wds);
|
13 |
+
});
|
14 |
+
}
|
15 |
+
else {
|
16 |
+
wds_ready_func(wds);
|
17 |
+
}
|
18 |
+
if (wds_params[wds].fixed_bg == 1) {
|
19 |
+
jQuery(window).scroll(function () {
|
20 |
+
wds_window_fixed_pos(wds);
|
21 |
+
});
|
22 |
+
}
|
23 |
+
wds_params[wds].wds_play_pause_state = 0;
|
24 |
+
if (wds_params[wds].carousel == 1) {
|
25 |
+
wds_carousel_params(wds);
|
26 |
+
}
|
27 |
+
jQuery(window).blur(function () {
|
28 |
+
wds_event_stack_wds = [];
|
29 |
+
//window.clearInterval(wds_params[wds].wds_playInterval);
|
30 |
+
if (typeof jQuery().stop !== 'undefined') {
|
31 |
+
if (jQuery.isFunction(jQuery().stop)) {
|
32 |
+
if (wds_params[wds].timer_bar_type == 'top' || wds_params[wds].timer_bar_type == 'bottom') {
|
33 |
+
jQuery(".wds_line_timer_" + wds).stop();
|
34 |
+
if (wds_params[wds].carousel) {
|
35 |
+
wds_carousel[wds].pause();
|
36 |
+
}
|
37 |
}
|
38 |
+
else if (wds_params[wds].timer_bar_type != 'none') {
|
39 |
+
wds_params[wds].circle_timer_animate.stop();
|
40 |
+
if (wds_params[wds].carousel) {
|
41 |
+
wds_carousel[wds].pause();
|
42 |
+
}
|
43 |
}
|
44 |
}
|
45 |
}
|
46 |
+
});
|
47 |
+
jQuery(window).focus(function () {
|
48 |
+
if (!jQuery(".wds_ctrl_btn_" + wds).hasClass("fa-play")) {
|
49 |
+
if (wds_params[wds].enable_slideshow_autoplay) {
|
50 |
+
play_wds(wds);
|
51 |
+
if (wds_params[wds].carousel == 1) {
|
52 |
+
wds_carousel[wds].start();
|
53 |
+
}
|
54 |
+
if (wds_params[wds].timer_bar_type != 'none') {
|
55 |
+
if (wds_params[wds].timer_bar_type != 'top') {
|
56 |
+
if (wds_params[wds].timer_bar_type != 'bottom') {
|
57 |
+
if (typeof wds_params[wds].circle_timer_animate !== 'undefined') {
|
58 |
+
wds_params[wds].circle_timer_animate.stop();
|
59 |
+
}
|
60 |
+
wds_circle_timer(wds, wds_params[wds].curent_time_deggree);
|
61 |
}
|
|
|
62 |
}
|
63 |
}
|
64 |
}
|
65 |
}
|
66 |
+
if (wds_params[wds].carousel != 1) {
|
67 |
+
var i_wds = 0;
|
68 |
+
jQuery(".wds_slider_" + wds).children("span").each(function () {
|
69 |
+
if (jQuery(this).css('opacity') == 1) {
|
70 |
+
jQuery("#wds_current_image_key_" + wds).val(i_wds);
|
71 |
+
}
|
72 |
+
i_wds++;
|
73 |
+
});
|
74 |
+
}
|
75 |
+
});
|
76 |
});
|
77 |
});
|
78 |
|
2144 |
});
|
2145 |
}
|
2146 |
|
2147 |
+
function wds_ready_func( wds ) {
|
|
|
2148 |
if (typeof wds_params[wds].callback_items["onSliderI"] !== 'undefined' && wds_params[wds].callback_items["onSliderI"] !== null) {
|
2149 |
wds_params[wds].callback_items["onSliderI"];
|
2150 |
}
|
licensing/images/Plus.png
DELETED
Binary file
|
licensing/images/arrow3.png
DELETED
Binary file
|
licensing/images/minus.png
DELETED
Binary file
|
licensing/licensing.php
DELETED
@@ -1,90 +0,0 @@
|
|
1 |
-
<div id="featurs_tables">
|
2 |
-
<div id="featurs_table1">
|
3 |
-
<span><?php _e('Responsive Design and Layout', 'wds');?></span>
|
4 |
-
<span><?php _e('Unlimited amount of sliders and layers', 'wds');?></span>
|
5 |
-
<span><?php _e('Full Width slider support', 'wds');?></span>
|
6 |
-
<span><?php _e('Possibility of linking slides to specific URLs', 'wds');?></span>
|
7 |
-
<span><?php _e('Autoplay', 'wds');?></span>
|
8 |
-
<span><?php _e('Shuffle', 'wds');?></span>
|
9 |
-
<span><?php _e('Timer Bar', 'wds');?></span>
|
10 |
-
<span><?php _e('Navigation bullets', 'wds');?></span>
|
11 |
-
<span><?php _e('Right-click protection for slides', 'wds');?></span>
|
12 |
-
<span><?php _e('Music playback', 'wds');?></span>
|
13 |
-
<span><?php _e('Custom CSS', 'wds');?></span>
|
14 |
-
<span><?php _e('Watermark support', 'wds');?></span>
|
15 |
-
<span><?php _e('Transition effects', 'wds');?></span>
|
16 |
-
<span><?php _e('Layer effects', 'wds');?></span>
|
17 |
-
<span><?php _e('Post Slides', 'wds');?></span>
|
18 |
-
<span><?php _e('Video Slide support (YouTube and Vimeo)', 'wds');?></span>
|
19 |
-
<span><?php _e('Dailymotion, Instagram and Flickr embed', 'wds');?></span>
|
20 |
-
<span><?php _e('Layers (text, image and media embed)', 'wds');?></span>
|
21 |
-
<span><?php _e('Social sharing buttons layer', 'wds');?></span>
|
22 |
-
<span><?php _e('Hotspot layer', 'wds');?></span>
|
23 |
-
<span><?php _e('Navigation buttons and bullet styles', 'wds');?></span>
|
24 |
-
<span><?php _e('Filmstrip support', 'wds');?></span>
|
25 |
-
<span><?php _e('Parallax effect', 'wds');?></span>
|
26 |
-
<span><?php _e('Carousel effect', 'wds');?></span>
|
27 |
-
</div>
|
28 |
-
<div id="featurs_table2">
|
29 |
-
<span><?php _e('Free', 'wds');?></span>
|
30 |
-
<span class="yes"></span>
|
31 |
-
<span class="yes"></span>
|
32 |
-
<span class="yes"></span>
|
33 |
-
<span class="yes"></span>
|
34 |
-
<span class="yes"></span>
|
35 |
-
<span class="yes"></span>
|
36 |
-
<span class="yes"></span>
|
37 |
-
<span class="yes"></span>
|
38 |
-
<span class="yes"></span>
|
39 |
-
<span class="yes"></span>
|
40 |
-
<span class="yes"></span>
|
41 |
-
<span class="yes"></span>
|
42 |
-
<span>5</span>
|
43 |
-
<span class="no"></span>
|
44 |
-
<span class="no"></span>
|
45 |
-
<span class="no"></span>
|
46 |
-
<span class="no"></span>
|
47 |
-
<span class="no"></span>
|
48 |
-
<span class="no"></span>
|
49 |
-
<span class="no"></span>
|
50 |
-
<span class="no"></span>
|
51 |
-
<span class="no"></span>
|
52 |
-
<span class="no"></span>
|
53 |
-
<span class="no"></span>
|
54 |
-
</div>
|
55 |
-
<div id="featurs_table3">
|
56 |
-
<span><?php _e('Pro Version', 'wds');?></span>
|
57 |
-
<span class="yes"></span>
|
58 |
-
<span class="yes"></span>
|
59 |
-
<span class="yes"></span>
|
60 |
-
<span class="yes"></span>
|
61 |
-
<span class="yes"></span>
|
62 |
-
<span class="yes"></span>
|
63 |
-
<span class="yes"></span>
|
64 |
-
<span class="yes"></span>
|
65 |
-
<span class="yes"></span>
|
66 |
-
<span class="yes"></span>
|
67 |
-
<span class="yes"></span>
|
68 |
-
<span class="yes"></span>
|
69 |
-
<span>26</span>
|
70 |
-
<span>38</span>
|
71 |
-
<span class="yes"></span>
|
72 |
-
<span class="yes"></span>
|
73 |
-
<span class="yes"></span>
|
74 |
-
<span class="yes"></span>
|
75 |
-
<span class="yes"></span>
|
76 |
-
<span class="yes"></span>
|
77 |
-
<span class="yes"></span>
|
78 |
-
<span class="yes"></span>
|
79 |
-
<span class="yes"></span>
|
80 |
-
<span class="yes"></span>
|
81 |
-
</div>
|
82 |
-
</div>
|
83 |
-
<div style="float: left; clear: both;">
|
84 |
-
<p><?php _e('After purchasing the commercial version follow these steps:', 'wds');?></p>
|
85 |
-
<ol>
|
86 |
-
<li><?php _e('Deactivate Slider WD plugin.', 'wds');?></li>
|
87 |
-
<li><?php _e('Delete Slider WD plugin.', 'wds');?></li>
|
88 |
-
<li><?php _e('Install the downloaded commercial version of the plugin.', 'wds');?></li>
|
89 |
-
</ol>
|
90 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
licensing/style.css
DELETED
@@ -1,158 +0,0 @@
|
|
1 |
-
div#featurs_tables {
|
2 |
-
display: inline-block;
|
3 |
-
font-size: 13px;
|
4 |
-
padding-top: 95px;
|
5 |
-
text-align: left;
|
6 |
-
float: left;
|
7 |
-
}
|
8 |
-
|
9 |
-
div#featurs_tables div {
|
10 |
-
vertical-align: top;
|
11 |
-
}
|
12 |
-
|
13 |
-
div#featurs_table1 {
|
14 |
-
background-color: rgb(254, 254, 254);
|
15 |
-
display: inline-block;
|
16 |
-
position: relative;
|
17 |
-
vertical-align: top;
|
18 |
-
width: 330px;
|
19 |
-
height: 920px;
|
20 |
-
z-index: 10;
|
21 |
-
}
|
22 |
-
|
23 |
-
div#featurs_table1 span::after {
|
24 |
-
background-image: url("images/arrow3.png");
|
25 |
-
background-position: center center;
|
26 |
-
background-repeat: no-repeat;
|
27 |
-
content: "";
|
28 |
-
display: inline-block;
|
29 |
-
float: right;
|
30 |
-
height: 37px;
|
31 |
-
position: relative;
|
32 |
-
right: -21px;
|
33 |
-
top: -8px;
|
34 |
-
width: 26px;
|
35 |
-
}
|
36 |
-
|
37 |
-
div#featurs_table1 span {
|
38 |
-
border-left: 1px solid #e5e5e5;
|
39 |
-
border-right: 1px solid #e5e5e5;
|
40 |
-
border-top: 1px solid #e5e5e5;
|
41 |
-
color: #545454;
|
42 |
-
display: block;
|
43 |
-
height: 21px;
|
44 |
-
padding: 8px;
|
45 |
-
text-align: left;
|
46 |
-
}
|
47 |
-
|
48 |
-
div#featurs_table1 span:last-child,
|
49 |
-
div#featurs_table2 span:last-child,
|
50 |
-
div#featurs_table3 span:last-child {
|
51 |
-
border-bottom: 1px solid #e5e5e5;
|
52 |
-
}
|
53 |
-
|
54 |
-
div#featurs_table2 {
|
55 |
-
background-color: rgba(255, 255, 255, 0.9);
|
56 |
-
display: inline-block;
|
57 |
-
position: relative;
|
58 |
-
top: -72px;
|
59 |
-
width: 180px;
|
60 |
-
}
|
61 |
-
|
62 |
-
div#featurs_table2 span:first-child,
|
63 |
-
div#featurs_table3 span:first-child {
|
64 |
-
color: #000;
|
65 |
-
font-size: 22px;
|
66 |
-
font-weight: bold;
|
67 |
-
padding-bottom: 14px;
|
68 |
-
padding-top: 2px;
|
69 |
-
border-top: 1px solid #e5e5e5;
|
70 |
-
border-left: 1px solid #e5e5e5;
|
71 |
-
border-right: 1px solid #e5e5e5;
|
72 |
-
height: 39px;
|
73 |
-
padding-top: 18px;
|
74 |
-
}
|
75 |
-
|
76 |
-
div#featurs_table2 span:first-child {
|
77 |
-
border-left: 1px solid #e5e5e5 !important;
|
78 |
-
}
|
79 |
-
|
80 |
-
div#featurs_table2 span {
|
81 |
-
border-left: none !important;
|
82 |
-
}
|
83 |
-
|
84 |
-
div#featurs_table2 span,
|
85 |
-
div#featurs_table3 span {
|
86 |
-
border-top: 1px solid #e5e5e5;
|
87 |
-
border-right: 1px solid #e5e5e5;
|
88 |
-
border-left: 1px solid #e5e5e5;
|
89 |
-
color: #545454;
|
90 |
-
display: block;
|
91 |
-
height: 21px;
|
92 |
-
padding: 8px;
|
93 |
-
text-align: center;
|
94 |
-
}
|
95 |
-
|
96 |
-
.download a {
|
97 |
-
background-color: #fff;
|
98 |
-
border: 6px solid #dddddd;
|
99 |
-
border-radius: 50%;
|
100 |
-
box-shadow: 0 0 0 7px #eeeeee;
|
101 |
-
color: #21439c;
|
102 |
-
cursor: pointer;
|
103 |
-
display: inline-block;
|
104 |
-
font-size: 14px;
|
105 |
-
font-style: italic;
|
106 |
-
font-weight: bold;
|
107 |
-
margin-top: -4px;
|
108 |
-
outline: 0 none;
|
109 |
-
padding: 32px 9px 32px 2px;
|
110 |
-
text-align: center;
|
111 |
-
text-decoration: none;
|
112 |
-
transition-duration: 0.6s;
|
113 |
-
transition-property: border-color;
|
114 |
-
transition-timing-function: linear;
|
115 |
-
width: 72px;
|
116 |
-
}
|
117 |
-
|
118 |
-
div#featurs_table3 {
|
119 |
-
background-color: rgba(255, 255, 255, 0.6);
|
120 |
-
display: inline-block;
|
121 |
-
position: relative;
|
122 |
-
top: -72px;
|
123 |
-
width: 180px;
|
124 |
-
}
|
125 |
-
|
126 |
-
div#featurs_table2 span.yes,
|
127 |
-
div#featurs_table3 span.yes {
|
128 |
-
background-image: url("images/plus.png");
|
129 |
-
background-position: center center;
|
130 |
-
background-repeat: no-repeat;
|
131 |
-
}
|
132 |
-
|
133 |
-
span.no {
|
134 |
-
background-image: url("images/minus.png");
|
135 |
-
background-position: center center;
|
136 |
-
background-repeat: no-repeat;
|
137 |
-
}
|
138 |
-
|
139 |
-
.download input[type="submit"]:hover,
|
140 |
-
.download a:hover {
|
141 |
-
border-color: #F4762A;
|
142 |
-
}
|
143 |
-
|
144 |
-
#featurs_tables span.download {
|
145 |
-
height: 40px !important;
|
146 |
-
border-bottom: 1px solid #e5e5e5 !important;
|
147 |
-
border-left: 1px solid #e5e5e5 !important;
|
148 |
-
}
|
149 |
-
|
150 |
-
.price_big {
|
151 |
-
color: #F47629;
|
152 |
-
font-size: 22px;
|
153 |
-
}
|
154 |
-
|
155 |
-
.price {
|
156 |
-
display: block;
|
157 |
-
color: #F47629;
|
158 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: responsive slider, slider, slideshow, wordpress slider, image slider, gall
|
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.2
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -20,11 +20,11 @@ Slider WD WordPress Plugin
|
|
20 |
|
21 |
Create responsive, highly configurable wordpress sliders with various effects for your WordPress site. Download for FREE!
|
22 |
|
23 |
-
[Special Offer for all Premium Plugins](https://
|
24 |
-
[WordPress Slider Plugin](https://
|
25 |
-
[Demo](
|
26 |
-
[User Manual](
|
27 |
-
[Support Forum](https://
|
28 |
[How to change and modify Slider WD Settings](https://www.youtube.com/watch?v=Peny_dkHaMo&list=PLnxWPiY5tLFWQf5XaEYYPZj0gdggUrVxP&index=3)
|
29 |
|
30 |
Slider WD is an effective tool for adding responsive slider to your website. The WordPress slider plugin can be added both as a widget and plugin, as well as be included in the theme for displaying the slider within the theme using PHP function. Slider WD allows adding both images and videos (currently supporting YouTube and Vimeo to be displayed as slider slides). The numerous transition effects and layer support enhance the functionality of the WordPress slider plugin.
|
@@ -58,7 +58,7 @@ The number of the slides for each slider is not limited. Various layers can be a
|
|
58 |
* Fixed background slider
|
59 |
* Slider widget
|
60 |
|
61 |
-
Upgrade to [WordPress Slider Pro](https://
|
62 |
|
63 |
* 26 transition effects for Slider
|
64 |
* 38 layer effects
|
@@ -90,7 +90,7 @@ If you don’t want to limit yourself with one of these types of sliders, then y
|
|
90 |
|
91 |
|
92 |
###IMPORTANT:
|
93 |
-
If you think you found a bug in Slider WD or have any problem/question concerning the plugin, please check out [WordPress Slider Support Forum](https://wordpress.org/support/plugin/slider-wd) in our website. If you do not find a solution here, do not hesitate to [click here to contact us](https://
|
94 |
|
95 |
*If you need language of Slider WD which is not included in this list, please contact us and we will do the translation of Slider WD within 3 days. If you find any mistakes in the translation, please contact us and we will make relevant corrections within 3 days. *
|
96 |
|
@@ -115,7 +115,7 @@ After downloading the ZIP file of the slider plugin,
|
|
115 |
*Go to your Downloads folder and locate the folder with the Slider WD. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.*
|
116 |
4. Click "Install Now" button.
|
117 |
5. Click "Activate Plugin" button for activating the Slider WD.
|
118 |
-
6. If the installation does not succeed, please [click here to contact us](https://
|
119 |
|
120 |
|
121 |
== Screenshots ==
|
@@ -127,7 +127,12 @@ After downloading the ZIP file of the slider plugin,
|
|
127 |
6. Slider WD - Settings
|
128 |
|
129 |
|
130 |
-
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
= 1.2.2 =
|
133 |
* Added: Background fill mode for slide.
|
@@ -801,7 +806,7 @@ For Mac Users
|
|
801 |
Go to your Downloads folder and locate the folder with the Slider WD. Right-click on the folder and select Compress. This will create a .zip file which can be installed as described below:
|
802 |
Click "Upload & Install" button.
|
803 |
Click "Activate Plugin" button for activating the plugin.
|
804 |
-
If any problem occurs with installation of Slider WD, please let us know using ["Contact Us"](https://
|
805 |
|
806 |
= Step 2: Adding images to Sliders. =
|
807 |
Go to Slider WD > select Sliders > click Add New
|
@@ -1039,17 +1044,17 @@ Importing Slider
|
|
1039 |
Select the file of the content slider/image slider to import and press Import button. The slider will be added automatically.
|
1040 |
|
1041 |
Try demo sliders
|
1042 |
-
[DOWNLOAD LAYER SLIDER](
|
1043 |
-
[DOWNLOAD LAYER SLIDER 2](
|
1044 |
-
[DOWNLOAD MULTY LAYER SLIDER](
|
1045 |
-
[DOWNLOAD NEWS SITE OR BLOG SLIDER](
|
1046 |
-
[DOWNLOAD POST FEED DEMO SLIDER](
|
1047 |
-
[DOWNLOAD ONLINE STORE SLIDER](
|
1048 |
-
[DOWNLOAD PORTFOLIO SLIDER](
|
1049 |
-
[DOWNLOAD 3D FULL-WIDTH SLIDER](
|
1050 |
-
[DOWNLOAD FILMSTRIP SLIDER](
|
1051 |
-
[DOWNLOAD ZOOM EFFECT SLIDER](
|
1052 |
-
[DOWNLOAD CAROUSEL SLIDER](
|
1053 |
-
[DOWNLOAD PARALLAX SLIDER](
|
1054 |
-
[DOWNLOAD HOTSPOT SLIDER](
|
1055 |
-
[DOWNLOAD VIDEO SLIDER SLIDER](
|
4 |
Requires at least: 3.4
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.2
|
7 |
+
Stable tag: 1.2.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
20 |
|
21 |
Create responsive, highly configurable wordpress sliders with various effects for your WordPress site. Download for FREE!
|
22 |
|
23 |
+
[Special Offer for all Premium Plugins](https://10web.io/pricing/)
|
24 |
+
[WordPress Slider Plugin](https://10web.io/plugins/wordpress-slider/)
|
25 |
+
[Demo](https://demo.10web.io/slider/)
|
26 |
+
[User Manual](http://docs.10web.io/docs/slider-wd/adding-images.html)
|
27 |
+
[Support Forum](https://wordpress.org/support/plugin/slider-wd)
|
28 |
[How to change and modify Slider WD Settings](https://www.youtube.com/watch?v=Peny_dkHaMo&list=PLnxWPiY5tLFWQf5XaEYYPZj0gdggUrVxP&index=3)
|
29 |
|
30 |
Slider WD is an effective tool for adding responsive slider to your website. The WordPress slider plugin can be added both as a widget and plugin, as well as be included in the theme for displaying the slider within the theme using PHP function. Slider WD allows adding both images and videos (currently supporting YouTube and Vimeo to be displayed as slider slides). The numerous transition effects and layer support enhance the functionality of the WordPress slider plugin.
|
58 |
* Fixed background slider
|
59 |
* Slider widget
|
60 |
|
61 |
+
Upgrade to [WordPress Slider Pro](https://10web.io/plugins/wordpress-slider/) to add features:
|
62 |
|
63 |
* 26 transition effects for Slider
|
64 |
* 38 layer effects
|
90 |
|
91 |
|
92 |
###IMPORTANT:
|
93 |
+
If you think you found a bug in Slider WD or have any problem/question concerning the plugin, please check out [WordPress Slider Support Forum](https://wordpress.org/support/plugin/slider-wd) in our website. If you do not find a solution here, do not hesitate to [click here to contact us](https://10web.io/contact-us/).
|
94 |
|
95 |
*If you need language of Slider WD which is not included in this list, please contact us and we will do the translation of Slider WD within 3 days. If you find any mistakes in the translation, please contact us and we will make relevant corrections within 3 days. *
|
96 |
|
115 |
*Go to your Downloads folder and locate the folder with the Slider WD. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.*
|
116 |
4. Click "Install Now" button.
|
117 |
5. Click "Activate Plugin" button for activating the Slider WD.
|
118 |
+
6. If the installation does not succeed, please [click here to contact us](https://10web.io/contact-us/).
|
119 |
|
120 |
|
121 |
== Screenshots ==
|
127 |
6. Slider WD - Settings
|
128 |
|
129 |
|
130 |
+
== Changelog ==
|
131 |
+
|
132 |
+
= 1.2.3 =
|
133 |
+
* Fixed: Some js and css conflicts with other plugins and builders.
|
134 |
+
* Fixed: Install Demo slides.
|
135 |
+
* Changed: Overview page.
|
136 |
|
137 |
= 1.2.2 =
|
138 |
* Added: Background fill mode for slide.
|
806 |
Go to your Downloads folder and locate the folder with the Slider WD. Right-click on the folder and select Compress. This will create a .zip file which can be installed as described below:
|
807 |
Click "Upload & Install" button.
|
808 |
Click "Activate Plugin" button for activating the plugin.
|
809 |
+
If any problem occurs with installation of Slider WD, please let us know using ["Contact Us"](https://10web.io/contact-us/) form.
|
810 |
|
811 |
= Step 2: Adding images to Sliders. =
|
812 |
Go to Slider WD > select Sliders > click Add New
|
1044 |
Select the file of the content slider/image slider to import and press Import button. The slider will be added automatically.
|
1045 |
|
1046 |
Try demo sliders
|
1047 |
+
[DOWNLOAD LAYER SLIDER](https://demo.10web.io/layer-slider)
|
1048 |
+
[DOWNLOAD LAYER SLIDER 2](https://demo.10web.io/slider-pro-2)
|
1049 |
+
[DOWNLOAD MULTY LAYER SLIDER](https://demo.10web.io/slide1)
|
1050 |
+
[DOWNLOAD NEWS SITE OR BLOG SLIDER](https://demo.10web.io/news-site-or-blog)
|
1051 |
+
[DOWNLOAD POST FEED DEMO SLIDER](https://demo.10web.io/post-feed-demo)
|
1052 |
+
[DOWNLOAD ONLINE STORE SLIDER](https://demo.10web.io/online-store)
|
1053 |
+
[DOWNLOAD PORTFOLIO SLIDER](https://demo.10web.io/portfolio)
|
1054 |
+
[DOWNLOAD 3D FULL-WIDTH SLIDER](https://demo.10web.io/slide2)
|
1055 |
+
[DOWNLOAD FILMSTRIP SLIDER](https://demo.10web.io/slide3)
|
1056 |
+
[DOWNLOAD ZOOM EFFECT SLIDER](https://demo.10web.io/slide4)
|
1057 |
+
[DOWNLOAD CAROUSEL SLIDER](https://demo.10web.io/wordpress-slider-wd-carusel)
|
1058 |
+
[DOWNLOAD PARALLAX SLIDER](https://demo.10web.io/parallax)
|
1059 |
+
[DOWNLOAD HOTSPOT SLIDER](https://demo.10web.io/hotspot)
|
1060 |
+
[DOWNLOAD VIDEO SLIDER SLIDER](https://demo.10web.io/video-slider)
|
slider-wd.php
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
|
3 |
/**
|
4 |
* Plugin Name: Slider WD
|
5 |
-
* Plugin URI: https://
|
6 |
* Description: This is a responsive plugin, which allows adding sliders to your posts/pages and to custom location. It uses large number of transition effects and supports various types of layers.
|
7 |
-
* Version: 1.2.
|
8 |
-
* Author:
|
9 |
-
* Author URI: https://
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
*/
|
12 |
|
@@ -19,8 +19,8 @@ define('WD_S_PREFIX', 'wds');
|
|
19 |
define('WD_S_NICENAME', __( 'Slider WD', WD_S_PREFIX ));
|
20 |
define('WD_S_NONCE', 'nonce_wd');
|
21 |
|
22 |
-
define('WD_S_DB_VERSION', '1.2.
|
23 |
-
define('WD_S_VERSION', '1.2.
|
24 |
|
25 |
define('WD_S_FREE', TRUE);
|
26 |
|
@@ -54,7 +54,11 @@ $WD_S_UPLOAD_DIR = str_replace(ABSPATH, '', $upload_dir['basedir']) . '/slider-w
|
|
54 |
function wds_options_panel() {
|
55 |
$parent_slug = WD_S_FREE ? null : 'sliders_wds';
|
56 |
if( !WD_S_FREE || get_option( "wds_subscribe_done" ) == 1 ) {
|
57 |
-
|
|
|
|
|
|
|
|
|
58 |
$parent_slug = "sliders_wds";
|
59 |
}
|
60 |
|
@@ -66,10 +70,6 @@ function wds_options_panel() {
|
|
66 |
add_action('admin_print_styles-' . $global_options_page, 'wds_styles');
|
67 |
add_action('admin_print_scripts-' . $global_options_page, 'wds_scripts');
|
68 |
|
69 |
-
if ( WD_S_FREE ) {
|
70 |
-
add_submenu_page($parent_slug, __('Get Pro', 'wds'), __('Get Pro', 'wds'), 'manage_options', 'licensing_wds', 'wds_licensing');
|
71 |
-
}
|
72 |
-
|
73 |
$demo_slider = add_submenu_page($parent_slug, __('Import', 'wds'), __('Import', 'wds'), 'manage_options', 'demo_sliders_wds', 'wds_demo_sliders');
|
74 |
add_action('admin_print_scripts-' . $demo_slider, 'wds_scripts');
|
75 |
add_action('admin_print_styles-' . $demo_slider, 'wds_styles');
|
@@ -80,20 +80,6 @@ function wds_options_panel() {
|
|
80 |
}
|
81 |
add_action('admin_menu', 'wds_options_panel');
|
82 |
|
83 |
-
function wds_licensing() {
|
84 |
-
if (function_exists('current_user_can')) {
|
85 |
-
if (!current_user_can('manage_options')) {
|
86 |
-
die('Access Denied');
|
87 |
-
}
|
88 |
-
}
|
89 |
-
else {
|
90 |
-
die('Access Denied');
|
91 |
-
}
|
92 |
-
wp_register_style('wds_licensing', WD_S_URL . '/licensing/style.css', array(), WD_S_VERSION);
|
93 |
-
wp_print_styles('wds_licensing');
|
94 |
-
require_once(WD_S_DIR . '/licensing/licensing.php');
|
95 |
-
}
|
96 |
-
|
97 |
function wd_sliders() {
|
98 |
if (function_exists('current_user_can')) {
|
99 |
if (!current_user_can('manage_options')) {
|
@@ -310,6 +296,7 @@ function wds_install() {
|
|
310 |
if ( WD_S_FREE ) {
|
311 |
add_option("wds_theme_version", '1.0.0', '', 'no');
|
312 |
}
|
|
|
313 |
}
|
314 |
}
|
315 |
if ((!isset($_GET['action']) || $_GET['action'] != 'deactivate')
|
@@ -590,7 +577,7 @@ function wds_scripts() {
|
|
590 |
"prefix" => "wds" ,
|
591 |
"deactivate_class" => 'wds_deactivate_link',
|
592 |
"email" => $admin_data->data->user_email,
|
593 |
-
"plugin_wd_url" => "https://
|
594 |
));
|
595 |
}
|
596 |
|
@@ -607,18 +594,14 @@ function wds_front_end_scripts() {
|
|
607 |
if ($query != '') {
|
608 |
$url = 'https://fonts.googleapis.com/css?family=' . $query . '&subset=greek,latin,greek-ext,vietnamese,cyrillic-ext,latin-ext,cyrillic';
|
609 |
}
|
610 |
-
?>
|
611 |
-
<script>var wds_params = [];</script>
|
612 |
-
<?php
|
613 |
wp_register_style('wds_frontend', WD_S_FRONT_URL . '/css/wds_frontend.css', array(), WD_S_VERSION);
|
614 |
wp_register_style('wds_effects', WD_S_FRONT_URL . '/css/wds_effects.css', array(), WD_S_VERSION);
|
615 |
wp_register_style('wds_font-awesome', WD_S_FRONT_URL . '/css/font-awesome/font-awesome.css', array(), '4.6.3');
|
616 |
if ($query != '') {
|
617 |
wp_register_style('wds_googlefonts', $url, null, null);
|
618 |
}
|
619 |
-
|
620 |
wp_register_script('wds_jquery_mobile', WD_S_FRONT_URL . '/js/jquery.mobile.js', array('jquery'), WD_S_VERSION);
|
621 |
-
|
622 |
wp_localize_script( WD_S_PREFIX . '_frontend', 'wds_object', array(
|
623 |
"is_free" => WD_S_FREE,
|
624 |
'pause' => __('Pause', WD_S_PREFIX),
|
@@ -678,79 +661,57 @@ function wds_get_sliders() {
|
|
678 |
|
679 |
function wds_overview() {
|
680 |
if (is_admin() && !isset($_REQUEST['ajax'])) {
|
681 |
-
if (!class_exists("
|
682 |
require_once(WD_S_DIR . '/wd/start.php');
|
683 |
}
|
684 |
global $wds_options;
|
685 |
$wds_options = array(
|
686 |
"prefix" => "wds",
|
687 |
-
"wd_plugin_id" =>
|
688 |
"plugin_title" => "Slider WD",
|
689 |
"plugin_wordpress_slug" => "slider-wd",
|
690 |
"plugin_dir" => WD_S_DIR,
|
691 |
"plugin_main_file" => __FILE__,
|
692 |
-
"description" => __('
|
693 |
// from web-dorado.com
|
694 |
"plugin_features" => array(
|
695 |
0 => array(
|
696 |
-
"title" => __("
|
697 |
-
"description" => __("
|
|
|
698 |
),
|
699 |
1 => array(
|
700 |
-
"title" => __("
|
701 |
-
"description" => __("
|
|
|
702 |
),
|
703 |
2 => array(
|
704 |
-
"title" => __("
|
705 |
-
"description" => __("
|
|
|
706 |
),
|
707 |
3 => array(
|
708 |
-
"title" => __("
|
709 |
-
"description" => __("
|
|
|
710 |
),
|
711 |
4 => array(
|
712 |
-
"title" => __("Navigation
|
713 |
"description" => __("You can choose among variety of navigation button designs included in the plugin or upload and use your custom ones, based on preferences.", "wds"),
|
714 |
-
|
715 |
-
),
|
716 |
-
// user guide from web-dorado.com
|
717 |
-
"user_guide" => array(
|
718 |
-
0 => array(
|
719 |
-
"main_title" => __("Installing the Slider WD", "wds"),
|
720 |
-
"url" => "https://web-dorado.com/wordpress-slider-wd/installing.html",
|
721 |
-
"titles" => array()
|
722 |
-
),
|
723 |
-
1 => array(
|
724 |
-
"main_title" => __("Adding Images to Sliders", "wds"),
|
725 |
-
"url" => "https://web-dorado.com/wordpress-slider-wd/adding-images.html",
|
726 |
-
"titles" => array()
|
727 |
-
),
|
728 |
-
2 => array(
|
729 |
-
"main_title" => __("Adding Layers to The Slide", "wds"),
|
730 |
-
"url" => "https://web-dorado.com/wordpress-slider-wd/adding-layers.html",
|
731 |
-
"titles" => array()
|
732 |
-
),
|
733 |
-
3 => array(
|
734 |
-
"main_title" => __("Changing/Modifying Slider Settings", "wds"),
|
735 |
-
"url" => "https://web-dorado.com/wordpress-slider-wd/changing-settings.html",
|
736 |
-
"titles" => array()
|
737 |
-
),
|
738 |
-
4 => array(
|
739 |
-
"main_title" => __("Publishing the Created Slider", "wds"),
|
740 |
-
"url" => "https://web-dorado.com/wordpress-slider-wd/publishing-slider.html",
|
741 |
-
"titles" => array()
|
742 |
),
|
743 |
5 => array(
|
744 |
-
"
|
745 |
-
"
|
746 |
-
"
|
747 |
),
|
748 |
),
|
749 |
"video_youtube_id" => "xebpM_-GwG0", // e.g. https://www.youtube.com/watch?v=acaexefeP7o youtube id is the acaexefeP7o
|
750 |
-
"plugin_wd_url" => "https://
|
751 |
-
"plugin_wd_demo_link" => "
|
|
|
752 |
"plugin_wd_addons_link" => "",
|
753 |
-
"after_subscribe" => admin_url('admin.php?page=
|
754 |
"plugin_wizard_link" => '',
|
755 |
"plugin_menu_title" => "Slider WD",
|
756 |
"plugin_menu_icon" => WD_S_URL . '/images/wd_slider.png',
|
@@ -760,17 +721,21 @@ function wds_overview() {
|
|
760 |
"menu_position" => null,
|
761 |
);
|
762 |
|
763 |
-
|
|
|
|
|
|
|
|
|
764 |
}
|
765 |
}
|
766 |
-
|
|
|
|
|
767 |
|
768 |
function wds_topic() {
|
769 |
$page = isset($_GET['page']) ? $_GET['page'] : '';
|
770 |
-
$user_guide_link = '
|
771 |
$support_forum_link = 'https://wordpress.org/support/plugin/slider-wd';
|
772 |
-
$pro_link = 'https://web-dorado.com/files/fromslider.php';
|
773 |
-
$pro_icon = WD_S_URL . '/images/wd_logo.png';
|
774 |
$support_icon = WD_S_URL . '/images/support.png';
|
775 |
$prefix = 'wds';
|
776 |
switch ($page) {
|
@@ -784,17 +749,15 @@ function wds_topic() {
|
|
784 |
$user_guide_link .= 'adding-images.html';
|
785 |
break;
|
786 |
}
|
787 |
-
case 'licensing_wds': {
|
788 |
-
$help_text = '';
|
789 |
-
$user_guide_link .= 'adding-images.html';
|
790 |
-
break;
|
791 |
-
}
|
792 |
default: {
|
793 |
return '';
|
794 |
break;
|
795 |
}
|
796 |
}
|
797 |
ob_start();
|
|
|
|
|
|
|
798 |
?>
|
799 |
<style>
|
800 |
.wd_topic {
|
@@ -870,17 +833,6 @@ function wds_topic() {
|
|
870 |
<?php
|
871 |
}
|
872 |
if ( WD_S_FREE ) {
|
873 |
-
$text = strtoupper(__('Upgrade to paid version', $prefix));
|
874 |
-
?>
|
875 |
-
<div class="wd_pro">
|
876 |
-
<a target="_blank" href="<?php echo $pro_link; ?>">
|
877 |
-
<img alt="web-dorado.com" title="<?php echo $text; ?>" src="<?php echo $pro_icon; ?>" />
|
878 |
-
<span><?php echo $text; ?></span>
|
879 |
-
</a>
|
880 |
-
</div>
|
881 |
-
<?php
|
882 |
-
}
|
883 |
-
if (FALSE) {
|
884 |
?>
|
885 |
<span class="wd_support">
|
886 |
<a target="_blank" href="<?php echo $support_forum_link; ?>">
|
@@ -897,6 +849,39 @@ function wds_topic() {
|
|
897 |
}
|
898 |
add_action('admin_notices', 'wds_topic', 11);
|
899 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
900 |
/**
|
901 |
* Show notice to install Image Optimization plugin
|
902 |
*/
|
2 |
|
3 |
/**
|
4 |
* Plugin Name: Slider WD
|
5 |
+
* Plugin URI: https://10web.io/plugins/wordpress-slider/
|
6 |
* Description: This is a responsive plugin, which allows adding sliders to your posts/pages and to custom location. It uses large number of transition effects and supports various types of layers.
|
7 |
+
* Version: 1.2.3
|
8 |
+
* Author: 10Web
|
9 |
+
* Author URI: https://10web.io
|
10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
*/
|
12 |
|
19 |
define('WD_S_NICENAME', __( 'Slider WD', WD_S_PREFIX ));
|
20 |
define('WD_S_NONCE', 'nonce_wd');
|
21 |
|
22 |
+
define('WD_S_DB_VERSION', '1.2.3');
|
23 |
+
define('WD_S_VERSION', '1.2.3');
|
24 |
|
25 |
define('WD_S_FREE', TRUE);
|
26 |
|
54 |
function wds_options_panel() {
|
55 |
$parent_slug = WD_S_FREE ? null : 'sliders_wds';
|
56 |
if( !WD_S_FREE || get_option( "wds_subscribe_done" ) == 1 ) {
|
57 |
+
$main_title = __('Slider WD', 'wds');
|
58 |
+
if (WD_S_FREE && !get_transient(WD_S_PREFIX . '_overview_visited')) {
|
59 |
+
$main_title .= ' <span class="update-plugins count-2" style="background-color: #d54e21;"><span class="plugin-count">1</span></span>';
|
60 |
+
}
|
61 |
+
add_menu_page(__('Slider WD', 'wds'), $main_title, 'manage_options', 'sliders_wds', 'wd_sliders', WD_S_URL . '/images/wd_slider.png');
|
62 |
$parent_slug = "sliders_wds";
|
63 |
}
|
64 |
|
70 |
add_action('admin_print_styles-' . $global_options_page, 'wds_styles');
|
71 |
add_action('admin_print_scripts-' . $global_options_page, 'wds_scripts');
|
72 |
|
|
|
|
|
|
|
|
|
73 |
$demo_slider = add_submenu_page($parent_slug, __('Import', 'wds'), __('Import', 'wds'), 'manage_options', 'demo_sliders_wds', 'wds_demo_sliders');
|
74 |
add_action('admin_print_scripts-' . $demo_slider, 'wds_scripts');
|
75 |
add_action('admin_print_styles-' . $demo_slider, 'wds_styles');
|
80 |
}
|
81 |
add_action('admin_menu', 'wds_options_panel');
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
function wd_sliders() {
|
84 |
if (function_exists('current_user_can')) {
|
85 |
if (!current_user_can('manage_options')) {
|
296 |
if ( WD_S_FREE ) {
|
297 |
add_option("wds_theme_version", '1.0.0', '', 'no');
|
298 |
}
|
299 |
+
set_transient(WD_S_PREFIX . '_overview_visited', 1, '', 'no');
|
300 |
}
|
301 |
}
|
302 |
if ((!isset($_GET['action']) || $_GET['action'] != 'deactivate')
|
577 |
"prefix" => "wds" ,
|
578 |
"deactivate_class" => 'wds_deactivate_link',
|
579 |
"email" => $admin_data->data->user_email,
|
580 |
+
"plugin_wd_url" => "https://10web.io/plugins/wordpress-slider/",
|
581 |
));
|
582 |
}
|
583 |
|
594 |
if ($query != '') {
|
595 |
$url = 'https://fonts.googleapis.com/css?family=' . $query . '&subset=greek,latin,greek-ext,vietnamese,cyrillic-ext,latin-ext,cyrillic';
|
596 |
}
|
|
|
|
|
|
|
597 |
wp_register_style('wds_frontend', WD_S_FRONT_URL . '/css/wds_frontend.css', array(), WD_S_VERSION);
|
598 |
wp_register_style('wds_effects', WD_S_FRONT_URL . '/css/wds_effects.css', array(), WD_S_VERSION);
|
599 |
wp_register_style('wds_font-awesome', WD_S_FRONT_URL . '/css/font-awesome/font-awesome.css', array(), '4.6.3');
|
600 |
if ($query != '') {
|
601 |
wp_register_style('wds_googlefonts', $url, null, null);
|
602 |
}
|
|
|
603 |
wp_register_script('wds_jquery_mobile', WD_S_FRONT_URL . '/js/jquery.mobile.js', array('jquery'), WD_S_VERSION);
|
604 |
+
wp_register_script(WD_S_PREFIX . '_frontend', WD_S_FRONT_URL . '/js/wds_frontend.js', array('jquery'), WD_S_VERSION, TRUE);
|
605 |
wp_localize_script( WD_S_PREFIX . '_frontend', 'wds_object', array(
|
606 |
"is_free" => WD_S_FREE,
|
607 |
'pause' => __('Pause', WD_S_PREFIX),
|
661 |
|
662 |
function wds_overview() {
|
663 |
if (is_admin() && !isset($_REQUEST['ajax'])) {
|
664 |
+
if (!class_exists("TenWeb")) {
|
665 |
require_once(WD_S_DIR . '/wd/start.php');
|
666 |
}
|
667 |
global $wds_options;
|
668 |
$wds_options = array(
|
669 |
"prefix" => "wds",
|
670 |
+
"wd_plugin_id" => 97,
|
671 |
"plugin_title" => "Slider WD",
|
672 |
"plugin_wordpress_slug" => "slider-wd",
|
673 |
"plugin_dir" => WD_S_DIR,
|
674 |
"plugin_main_file" => __FILE__,
|
675 |
+
"description" => __('CREATE FANCY AND INTERACTIVE WEBSITE!', WD_S_PREFIX),
|
676 |
// from web-dorado.com
|
677 |
"plugin_features" => array(
|
678 |
0 => array(
|
679 |
+
"title" => __("Video Slide Support", "wds"),
|
680 |
+
"description" => __("Create catchy video slides. Embed YouTube, Vimeo, Flickr or Dailymotion videos by adding the URL of the video you want to include in the slider.", "wds"),
|
681 |
+
"logo" => WD_S_URL . "/images/overview/SLD1.svg"
|
682 |
),
|
683 |
1 => array(
|
684 |
+
"title" => __("Slide Effects", "wds"),
|
685 |
+
"description" => __("The premium slider plugin comes with 27 transition effects including Zoom, Kaleidoscope, 3D Random, Parallel and 3D Horizontal.", "wds"),
|
686 |
+
"logo" => WD_S_URL . "/images/overview/SLD2.svg"
|
687 |
),
|
688 |
2 => array(
|
689 |
+
"title" => __("Social sharing buttons", "wds"),
|
690 |
+
"description" => __("Add slides with sharing buttons to popular social networks like Google+, Tumblr, Twitter, Pinterest and Facebook.", "wds"),
|
691 |
+
"logo" => WD_S_URL . "/images/overview/SLD3.svg"
|
692 |
),
|
693 |
3 => array(
|
694 |
+
"title" => __("Layer effects", "wds"),
|
695 |
+
"description" => __("Choose from an an assortment of layer transition and animation effects to make your slides stand out. Set time, position, effect and speed of each layer.", "wds"),
|
696 |
+
"logo" => WD_S_URL . "/images/overview/SLD4.svg"
|
697 |
),
|
698 |
4 => array(
|
699 |
+
"title" => __("Custom Navigation buttons", "wds"),
|
700 |
"description" => __("You can choose among variety of navigation button designs included in the plugin or upload and use your custom ones, based on preferences.", "wds"),
|
701 |
+
"logo" => WD_S_URL . "/images/overview/SLD5.svg"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
702 |
),
|
703 |
5 => array(
|
704 |
+
"title" => __("Parallax slider", "wds"),
|
705 |
+
"description" => __("Choose to display your sliders with the Parallax effect, which responds to the mouse hover and moves multiple layers, creating attractive 3D effects.", "wds"),
|
706 |
+
"logo" => WD_S_URL . "/images/overview/SLD6.svg"
|
707 |
),
|
708 |
),
|
709 |
"video_youtube_id" => "xebpM_-GwG0", // e.g. https://www.youtube.com/watch?v=acaexefeP7o youtube id is the acaexefeP7o
|
710 |
+
"plugin_wd_url" => "https://10web.io/plugins/wordpress-slider/",
|
711 |
+
"plugin_wd_demo_link" => "https://demo.10web.io/slider/",
|
712 |
+
"plugin_wd_docs_link" => "http://docs.10web.io/docs/slider-wd/",
|
713 |
"plugin_wd_addons_link" => "",
|
714 |
+
"after_subscribe" => admin_url('admin.php?page=sliders_wds'), // this can be plagin overview page or set up page
|
715 |
"plugin_wizard_link" => '',
|
716 |
"plugin_menu_title" => "Slider WD",
|
717 |
"plugin_menu_icon" => WD_S_URL . '/images/wd_slider.png',
|
721 |
"menu_position" => null,
|
722 |
);
|
723 |
|
724 |
+
ten_web_init($wds_options);
|
725 |
+
|
726 |
+
if (isset($_GET["page"]) && $_GET["page"] == "overview_wds") {
|
727 |
+
set_transient(WD_S_PREFIX . '_overview_visited', 1, '', 'no');
|
728 |
+
}
|
729 |
}
|
730 |
}
|
731 |
+
if ( WD_S_FREE ) {
|
732 |
+
add_action('init', 'wds_overview', 9);
|
733 |
+
}
|
734 |
|
735 |
function wds_topic() {
|
736 |
$page = isset($_GET['page']) ? $_GET['page'] : '';
|
737 |
+
$user_guide_link = 'http://docs.10web.io/docs/slider-wd/';
|
738 |
$support_forum_link = 'https://wordpress.org/support/plugin/slider-wd';
|
|
|
|
|
739 |
$support_icon = WD_S_URL . '/images/support.png';
|
740 |
$prefix = 'wds';
|
741 |
switch ($page) {
|
749 |
$user_guide_link .= 'adding-images.html';
|
750 |
break;
|
751 |
}
|
|
|
|
|
|
|
|
|
|
|
752 |
default: {
|
753 |
return '';
|
754 |
break;
|
755 |
}
|
756 |
}
|
757 |
ob_start();
|
758 |
+
if ( WD_S_FREE ) {
|
759 |
+
wds_upgrade_pro();
|
760 |
+
}
|
761 |
?>
|
762 |
<style>
|
763 |
.wd_topic {
|
833 |
<?php
|
834 |
}
|
835 |
if ( WD_S_FREE ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
836 |
?>
|
837 |
<span class="wd_support">
|
838 |
<a target="_blank" href="<?php echo $support_forum_link; ?>">
|
849 |
}
|
850 |
add_action('admin_notices', 'wds_topic', 11);
|
851 |
|
852 |
+
function wds_upgrade_pro() {
|
853 |
+
?>
|
854 |
+
<div class="tenweb_banner wd-clear">
|
855 |
+
<div class="tenweb_banner-left">
|
856 |
+
<div class="tenweb_plugin_logo"></div>
|
857 |
+
<div class="tenweb_plugin_name"><?php _e("Premium Slider WD", 'wds'); ?></div>
|
858 |
+
</div>
|
859 |
+
<div class="tenweb_and"> & </div>
|
860 |
+
<div class="tenweb_desc">
|
861 |
+
<h3 class="tenweb_desc_h3 screen"><?php _e("Other solutions essential for your WordPress site", 'wds'); ?></h3>
|
862 |
+
</div>
|
863 |
+
<div class="tenweb_banner-center wd-clear">
|
864 |
+
<div class="tenweb_services">
|
865 |
+
<h3 class="tenweb_desc_h3 screen"><?php _e("Other solutions essential for your WordPress site", 'wds'); ?></h3>
|
866 |
+
<h3 class="tenweb_desc_h3 mobile"><?php _e("And other solutions essential for your WordPress site", 'wds'); ?></h3>
|
867 |
+
<div><span class="dashboard"><?php _e("Unified Dashboard", 'wds'); ?></span><span
|
868 |
+
class="pro-plugins"><?php _e("60+ Plugins/Add-ons", 'wds'); ?></span><span
|
869 |
+
class="backup"><?php _e("Backup", 'wds'); ?></span><span
|
870 |
+
class="optimizer"><?php _e("Image Optimizer", 'wds'); ?></span><span
|
871 |
+
class="seo"><?php _e("SEO", 'wds'); ?></span><span
|
872 |
+
class="themes"><?php _e("Premium WP Themes", 'wds'); ?></span></div>
|
873 |
+
</div>
|
874 |
+
</div>
|
875 |
+
<div class="tenweb_banner-right">
|
876 |
+
<div class="tenweb_banner_logo"></div>
|
877 |
+
<a href="https://10web.io/plugins/wordpress-slider/" target="_blank"
|
878 |
+
class="button"><?php _e("Get free for 14 days", 'wds'); ?></a>
|
879 |
+
</div>
|
880 |
+
</div>
|
881 |
+
|
882 |
+
<?php
|
883 |
+
}
|
884 |
+
|
885 |
/**
|
886 |
* Show notice to install Image Optimization plugin
|
887 |
*/
|
sliders-insert.php
CHANGED
@@ -214,7 +214,6 @@ function wds_insert() {
|
|
214 |
'full_width' => 0,
|
215 |
'width' => 800,
|
216 |
'height' => 300,
|
217 |
-
'bg_fit' => 'cover',
|
218 |
'align' => 'center',
|
219 |
'effect' => 'none',
|
220 |
'time_intervval' => 5,
|
@@ -327,9 +326,9 @@ function wds_insert() {
|
|
327 |
));
|
328 |
}
|
329 |
if ( !$wpdb->get_var("SELECT * FROM " . $wpdb->prefix . "wdsslide") ) {
|
330 |
-
$wpdb->query('INSERT INTO `' . $wpdb->prefix . 'wdsslide` VALUES(1, 1, "Slide 1", "image", "' . WD_S_URL . '/demo/1.jpg", "' . WD_S_URL . '/demo/1-150x150.jpg", 1, "", 1, 0, 0, 0)');
|
331 |
-
$wpdb->query('INSERT INTO `' . $wpdb->prefix . 'wdsslide` VALUES(2, 1, "Slide 2", "image", "' . WD_S_URL . '/demo/2.jpg", "' . WD_S_URL . '/demo/2-150x150.jpg", 1, "", 2, 0, 0, 0)');
|
332 |
-
$wpdb->query('INSERT INTO `' . $wpdb->prefix . 'wdsslide` VALUES(3, 1, "Slide 3", "image", "' . WD_S_URL . '/demo/3.jpg", "' . WD_S_URL . '/demo/3-150x150.jpg", 1, "", 3, 0, 0, 0)');
|
333 |
}
|
334 |
}
|
335 |
|
214 |
'full_width' => 0,
|
215 |
'width' => 800,
|
216 |
'height' => 300,
|
|
|
217 |
'align' => 'center',
|
218 |
'effect' => 'none',
|
219 |
'time_intervval' => 5,
|
326 |
));
|
327 |
}
|
328 |
if ( !$wpdb->get_var("SELECT * FROM " . $wpdb->prefix . "wdsslide") ) {
|
329 |
+
$wpdb->query('INSERT INTO `' . $wpdb->prefix . 'wdsslide` VALUES(1, 1, "Slide 1", "image", "' . WD_S_URL . '/demo/1.jpg", "' . WD_S_URL . '/demo/1-150x150.jpg", 1, "", 1, 0, 0, 0, "fill")');
|
330 |
+
$wpdb->query('INSERT INTO `' . $wpdb->prefix . 'wdsslide` VALUES(2, 1, "Slide 2", "image", "' . WD_S_URL . '/demo/2.jpg", "' . WD_S_URL . '/demo/2-150x150.jpg", 1, "", 2, 0, 0, 0, "fill")');
|
331 |
+
$wpdb->query('INSERT INTO `' . $wpdb->prefix . 'wdsslide` VALUES(3, 1, "Slide 3", "image", "' . WD_S_URL . '/demo/3.jpg", "' . WD_S_URL . '/demo/3-150x150.jpg", 1, "", 3, 0, 0, 0, "fill")');
|
332 |
}
|
333 |
}
|
334 |
|
wd/.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
# Created by .ignore support plugin (hsz.mobi)
|
2 |
+
.idea/*
|
wd/README.md
CHANGED
@@ -5,8 +5,8 @@ Version: 1.0.13
|
|
5 |
Usage:
|
6 |
|
7 |
Copy and paste wd library into your plugin folder.
|
8 |
-
In your plugin main file check if library main
|
9 |
-
if( !class_exists("
|
10 |
require_once(PATH_TO_YOUR_PLUGIN_DIR . '/wd/start.php');
|
11 |
}
|
12 |
|
@@ -31,22 +31,8 @@ $options = array (
|
|
31 |
),
|
32 |
...
|
33 |
),
|
34 |
-
"user_guide" => array(
|
35 |
-
0 => array(
|
36 |
-
"main_title" => "user guide step 1",
|
37 |
-
"url" => "link to step 1",
|
38 |
-
"titles" => array(
|
39 |
-
array(
|
40 |
-
"title" => "step 1 sub title",
|
41 |
-
"url" => "link to step 1 sub"
|
42 |
-
)
|
43 |
-
)
|
44 |
-
),
|
45 |
-
...
|
46 |
-
),
|
47 |
-
"overview_welcome_image" => null,
|
48 |
"video_youtube_id" => "your plugin youtube video id", // e.g. https://www.youtube.com/watch?v=acaexefeP7o youtube id is the acaexefeP7o
|
49 |
-
"plugin_wd_url" => "https://
|
50 |
"plugin_wd_demo_link" => "http://wpdemo.web-dorado.com/your plugin",
|
51 |
"plugin_wd_addons_link" => "https://web-dorado.com/products/your plugin addons",
|
52 |
"after_subscribe" => "after subsribe page", // this can be plagin overview page or set up page admin.php?page=overview_YOUR_PREFIX
|
@@ -85,25 +71,6 @@ array(
|
|
85 |
....
|
86 |
)
|
87 |
|
88 |
-
user_guide - (type array) plugin user guide links from web-dorado.com
|
89 |
-
e.g. (for google maps plugin)
|
90 |
-
array(
|
91 |
-
0 => array(
|
92 |
-
"main_title" => __("Installation Wizard/ Options Menu", "gmwd"),
|
93 |
-
"url" => "https://web-dorado.com/wordpress-google-maps/installation-wizard-options-menu.html",
|
94 |
-
"titles" => array(
|
95 |
-
array(
|
96 |
-
"title" => __("Configuring Map API Key", "gmwd"),
|
97 |
-
"url" => "https://web-dorado.com/wordpress-google-maps/installation-wizard-options-menu/configuring-api-key.html"
|
98 |
-
)
|
99 |
-
)
|
100 |
-
),
|
101 |
-
1 => array(
|
102 |
-
"main_title" => __("Creating Map", "gmwd"),
|
103 |
-
"url" => "https://web-dorado.com/wordpress-google-maps/creating-map.html",
|
104 |
-
"titles" => array()
|
105 |
-
),
|
106 |
-
)
|
107 |
|
108 |
video_youtube_id - (type string) if your plugin has video, video's id, else null
|
109 |
( e.g. for https://www.youtube.com/watch?v=acaexefeP7o , youtube id is the 'acaexefeP7o' )
|
5 |
Usage:
|
6 |
|
7 |
Copy and paste wd library into your plugin folder.
|
8 |
+
In your plugin main file check if library main TenWeb class doesn't exist, include it
|
9 |
+
if( !class_exists("TenWeb") ){
|
10 |
require_once(PATH_TO_YOUR_PLUGIN_DIR . '/wd/start.php');
|
11 |
}
|
12 |
|
31 |
),
|
32 |
...
|
33 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
"video_youtube_id" => "your plugin youtube video id", // e.g. https://www.youtube.com/watch?v=acaexefeP7o youtube id is the acaexefeP7o
|
35 |
+
"plugin_wd_url" => "https://10web.io/plugins/your plugin",
|
36 |
"plugin_wd_demo_link" => "http://wpdemo.web-dorado.com/your plugin",
|
37 |
"plugin_wd_addons_link" => "https://web-dorado.com/products/your plugin addons",
|
38 |
"after_subscribe" => "after subsribe page", // this can be plagin overview page or set up page admin.php?page=overview_YOUR_PREFIX
|
71 |
....
|
72 |
)
|
73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
video_youtube_id - (type string) if your plugin has video, video's id, else null
|
76 |
( e.g. for https://www.youtube.com/watch?v=acaexefeP7o , youtube id is the 'acaexefeP7o' )
|
wd/assets/css/overview.css
CHANGED
@@ -1,462 +1,472 @@
|
|
1 |
-
|
2 |
-
.wd-table{
|
3 |
-
display: table;
|
4 |
-
width: 100%;
|
5 |
-
}
|
6 |
-
.wd-cell{
|
7 |
-
display: table-cell;
|
8 |
-
}
|
9 |
-
.wd-valign-top{
|
10 |
-
vertical-align: top;
|
11 |
-
}
|
12 |
-
.wd-valign-middle{
|
13 |
-
vertical-align: middle;
|
14 |
-
}
|
15 |
-
.wd-valign-bottom{
|
16 |
-
vertical-align: bottom;
|
17 |
-
}
|
18 |
-
.wd-text-right{
|
19 |
-
text-align: right;
|
20 |
-
}
|
21 |
-
.wd-text-center{
|
22 |
-
text-align: center;
|
23 |
-
}
|
24 |
-
.hide{
|
25 |
display: none;
|
26 |
}
|
27 |
-
|
28 |
-
|
29 |
-
outline: none !important;
|
30 |
-
box-shadow: none !important;
|
31 |
-
}
|
32 |
-
|
33 |
-
/*end general */
|
34 |
-
.wd-video_container{
|
35 |
-
text-align: center;
|
36 |
-
}
|
37 |
-
.overview_welcome{
|
38 |
-
background: url(img/welcome_bg.png) no-repeat;
|
39 |
-
margin: 21px 0px;
|
40 |
-
background-size: 100% 100%;
|
41 |
-
line-height: 28px;
|
42 |
-
}
|
43 |
-
.overview_welcome .wd-cell{
|
44 |
-
padding: 15px;
|
45 |
}
|
46 |
-
|
47 |
-
|
48 |
}
|
49 |
|
50 |
-
.
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
margin-bottom: 15px;
|
55 |
-
color: #424141;
|
56 |
-
}
|
57 |
-
.overview_welcome img{
|
58 |
-
width: 120px;
|
59 |
-
padding-right: 100px;
|
60 |
-
padding-left: 25px;
|
61 |
-
}
|
62 |
-
.overview_wrap{
|
63 |
-
width: 935px;
|
64 |
-
background: #fff;
|
65 |
-
}
|
66 |
-
.overview_welcome .overview_welcome_text{
|
67 |
-
font-size: 15px;
|
68 |
-
color: #424141;
|
69 |
-
}
|
70 |
-
.overview_tabs:after, .deals_content:after, .deal_desc_footer:after{
|
71 |
-
content: "";
|
72 |
-
display: table;
|
73 |
-
clear: both;
|
74 |
-
}
|
75 |
-
.overview_tabs li{
|
76 |
-
float: left;
|
77 |
-
width: 16.666%;
|
78 |
-
}
|
79 |
-
|
80 |
-
.overview_tabs li a{
|
81 |
-
text-decoration: none !important;
|
82 |
-
color: #000;
|
83 |
-
background: #D6D6D6;
|
84 |
-
background: -webkit-linear-gradient(#D6D6D6, #D7D7D7, #D6D6D6); /* For Safari 5.1 to 6.0 */
|
85 |
-
background: -o-linear-gradient(#D6D6D6, #D7D7D7, #D6D6D6); /* For Opera 11.1 to 12.0 */
|
86 |
-
background: -moz-linear-gradient(#D6D6D6, #D7D7D7, #D6D6D6); /* For Firefox 3.6 to 15 */
|
87 |
-
background: linear-gradient(#D6D6D6, #D7D7D7, #D6D6D6); /* Standard syntax */
|
88 |
-
text-transform: uppercase;
|
89 |
-
display: block;
|
90 |
-
padding: 7px 10px;
|
91 |
-
text-align: center;
|
92 |
-
font-weight: bold;
|
93 |
-
border-top: 4px solid #F1F1F1;
|
94 |
-
position: relative;
|
95 |
-
top: -4px;
|
96 |
-
}
|
97 |
-
.overview_tabs li a:hover,.overview_tabs li a:active, .overview_tabs li a:focus, .overview_tab_active{
|
98 |
-
background: #fff !important;
|
99 |
-
border-top: 4px solid #2A495F !important;
|
100 |
-
|
101 |
-
}
|
102 |
-
#welcome, #user_guide, #support, .deals_content{
|
103 |
-
padding: 15px 10px;
|
104 |
-
background: #fff;
|
105 |
-
}
|
106 |
-
.plugin_feature_title{
|
107 |
-
font-size: 19px;
|
108 |
-
}
|
109 |
-
.more_features_wrap{
|
110 |
-
margin-top: 25px;
|
111 |
-
text-align: right;
|
112 |
-
}
|
113 |
-
.more_features, .more_features:hover, .more_features:focus{
|
114 |
-
color: #fff;
|
115 |
-
background: #00384F;
|
116 |
-
padding: 3px 15px;
|
117 |
-
text-decoration: none;
|
118 |
-
}
|
119 |
-
.user_guide_item{
|
120 |
-
margin-bottom: 19px;
|
121 |
}
|
122 |
-
.
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
margin-bottom: 5px;
|
127 |
-
text-decoration: none;
|
128 |
-
}
|
129 |
-
.user_guide_titles, .user_guide_titles:hover, .user_guide_titles:focus{
|
130 |
-
color: #192D3B;
|
131 |
-
text-decoration: none;
|
132 |
-
}
|
133 |
-
.user_guide_demo, .user_guide_plugin, .user_guide_support_forum, .user_guide_addons, .user_guide_faq,
|
134 |
-
.user_guide_demo:hover, .user_guide_plugin:hover, .user_guide_support_forum:hover, .user_guide_addons:hover, .user_guide_faq:hover{
|
135 |
-
background-color: #F5F5F5;
|
136 |
background-repeat: no-repeat;
|
137 |
-
background-position: right -4px center;
|
138 |
-
border-top-left-radius: 25px;
|
139 |
-
border-bottom-left-radius: 25px;
|
140 |
-
padding: 3px 23px 3px 16px;
|
141 |
-
width: 144px;
|
142 |
-
font-weight: bold;
|
143 |
-
text-transform: uppercase;
|
144 |
-
color: #192D3B;
|
145 |
-
margin-bottom: 7px;
|
146 |
-
display: block;
|
147 |
-
text-decoration: none;
|
148 |
}
|
149 |
-
.
|
150 |
-
|
151 |
}
|
152 |
-
.
|
153 |
-
|
|
|
154 |
}
|
155 |
-
.
|
156 |
-
|
|
|
157 |
}
|
158 |
-
.
|
159 |
-
|
160 |
}
|
161 |
-
.
|
162 |
-
|
|
|
|
|
163 |
}
|
164 |
-
|
165 |
-
#support .wd-support-main{
|
166 |
-
width: 800px;
|
167 |
-
margin: 0 auto;
|
168 |
-
font-size: 16px;
|
169 |
-
text-align: center;
|
170 |
-
margin-bottom: 15px;
|
171 |
-
|
172 |
-
}
|
173 |
-
.wd-overview-site-deatils{
|
174 |
-
width: 800px;
|
175 |
-
background: #FBFBFB;
|
176 |
-
padding: 10px;
|
177 |
-
margin: 0 auto;
|
178 |
-
}
|
179 |
-
.wd-overview-site-deatils h2, .wd-overview-site-deatils p{
|
180 |
-
text-align: center;
|
181 |
-
}
|
182 |
-
.wd-overview-site-deatils p{
|
183 |
-
font-size: 16px;
|
184 |
-
}
|
185 |
-
.contact_us, .contact_us:hover, .contact_us:focus{
|
186 |
-
display: block;
|
187 |
-
background: #27475D;
|
188 |
-
color: #fff;
|
189 |
-
text-decoration: none;
|
190 |
-
width: 173px;
|
191 |
-
padding: 8px 0px;
|
192 |
-
text-align: center;
|
193 |
-
margin-bottom: 5px;
|
194 |
-
font-size: 16px;
|
195 |
-
margin-left: 8px;
|
196 |
-
border: 1px solid #B7B7B7;
|
197 |
text-transform: uppercase;
|
|
|
|
|
|
|
|
|
|
|
198 |
}
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
}
|
203 |
-
.wd-site-deatils{
|
204 |
-
padding: 23px;
|
205 |
-
background: #f1f1f1;
|
206 |
-
box-sizing: border-box;
|
207 |
}
|
208 |
-
.
|
209 |
-
|
210 |
-
}
|
211 |
-
.contact_us{
|
212 |
-
margin-left: auto !important;
|
213 |
-
margin-right: auto;
|
214 |
-
margin-top: 10px;
|
215 |
-
}
|
216 |
-
#wd-copy{
|
217 |
-
display: block;
|
218 |
-
background: #27475D;
|
219 |
-
color: #fff;
|
220 |
-
padding: 5px 8px;
|
221 |
-
text-align: center;
|
222 |
-
margin-bottom: 5px;
|
223 |
-
font-size: 14px;
|
224 |
-
border: 1px solid #B7B7B7;
|
225 |
-
cursor: pointer;
|
226 |
-
}
|
227 |
-
#plugins{
|
228 |
-
padding-bottom: 15px;
|
229 |
-
background: #fff;
|
230 |
}
|
231 |
|
232 |
-
.
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
}
|
238 |
-
.
|
239 |
-
|
240 |
-
height: 241px;
|
241 |
}
|
242 |
-
.
|
243 |
-
|
|
|
|
|
|
|
|
|
|
|
244 |
}
|
245 |
-
.
|
246 |
-
|
247 |
}
|
248 |
-
.
|
249 |
-
|
250 |
}
|
251 |
-
.
|
252 |
-
|
253 |
-
|
|
|
254 |
}
|
255 |
-
.
|
256 |
-
|
257 |
-
width:
|
|
|
|
|
|
|
|
|
|
|
258 |
}
|
259 |
-
.
|
260 |
-
|
261 |
}
|
262 |
-
|
263 |
-
|
264 |
display: inline-block;
|
|
|
265 |
}
|
266 |
-
.
|
267 |
-
|
268 |
-
font-weight: bold;
|
269 |
-
line-height: 55px;
|
270 |
-
text-align: center;
|
271 |
text-transform: uppercase;
|
|
|
272 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
.deals_secondary_title{
|
278 |
-
font-size: 30px;
|
279 |
}
|
|
|
|
|
|
|
280 |
|
281 |
-
|
282 |
-
|
|
|
283 |
}
|
|
|
|
|
|
|
284 |
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
-webkit-transform: rotate(-27deg);
|
289 |
-
transform: rotate(-30deg);
|
290 |
-
font-weight: bold;
|
291 |
-
font-size: 39px;
|
292 |
-
color: #E5682E;
|
293 |
-
text-transform: uppercase;
|
294 |
-
}
|
295 |
-
.deals_header_plugins .deals_save{
|
296 |
-
bottom: 37px;
|
297 |
-
}
|
298 |
-
.deals_header_themes .deals_save{
|
299 |
-
bottom: 76px;
|
300 |
-
}
|
301 |
-
.deal_block{
|
302 |
-
width: 31.2%;
|
303 |
-
display: inline-block;
|
304 |
-
vertical-align: top;
|
305 |
-
margin: 5px;
|
306 |
-
}
|
307 |
-
.deal_title{
|
308 |
-
text-align: center;
|
309 |
-
text-transform: uppercase;
|
310 |
-
font-size: 20px;
|
311 |
-
background: #FAFAFA;
|
312 |
-
padding: 10px 5px;
|
313 |
-
line-height: 23px;
|
314 |
}
|
315 |
-
.
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
}
|
323 |
-
.deal_desc p{
|
324 |
-
margin-bottom: 15px;
|
325 |
}
|
|
|
|
|
|
|
326 |
|
327 |
-
|
328 |
-
|
|
|
329 |
}
|
330 |
-
.
|
331 |
-
|
332 |
-
|
333 |
-
|
|
|
|
|
|
|
334 |
}
|
335 |
-
.
|
336 |
-
background: #
|
337 |
-
color: #
|
338 |
text-transform: uppercase;
|
339 |
-
|
|
|
|
|
|
|
|
|
340 |
display: inline-block;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
}
|
342 |
-
.
|
343 |
-
background:
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
}
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
text-decoration: none;
|
354 |
-
padding: 4px 16px;
|
355 |
-
display: inline-block;
|
356 |
-
margin-top: 10px;
|
357 |
-
border-radius: 13px;
|
358 |
-
text-transform: uppercase;
|
359 |
}
|
360 |
|
361 |
-
.
|
362 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
363 |
display: inline-block;
|
364 |
-
color: transparent;
|
365 |
-
font-size: 21px;
|
366 |
-
}
|
367 |
-
|
368 |
-
.stars-container:before {
|
369 |
-
position: absolute;
|
370 |
-
top: 0;
|
371 |
-
left: 0;
|
372 |
-
content: '★★★★★';
|
373 |
-
color: #F4AB7F;
|
374 |
-
}
|
375 |
-
|
376 |
-
.stars-container:after {
|
377 |
-
position: absolute;
|
378 |
-
top: 0;
|
379 |
-
left: 0;
|
380 |
-
content: '★★★★★';
|
381 |
-
color: #F4762A;
|
382 |
-
overflow: hidden;
|
383 |
}
|
384 |
|
385 |
-
.
|
386 |
-
|
387 |
-
text-align: center;
|
388 |
-
}
|
389 |
-
.get_all_deals a, .get_all_deals a:hover, .get_all_deals a:active, .get_all_deals a:focus {
|
390 |
-
color: #fff !important;
|
391 |
-
background: #E97025;
|
392 |
-
text-decoration: none;
|
393 |
-
padding: 8px 21px;
|
394 |
-
display: inline-block;
|
395 |
-
margin-top: 10px;
|
396 |
text-transform: uppercase;
|
397 |
-
border: 2px solid #D2631E;
|
398 |
-
font-size: 21px;
|
399 |
-
}
|
400 |
-
|
401 |
-
#themes{
|
402 |
-
border-top: 35px solid #F1F1F1;
|
403 |
-
padding-bottom: 15px;
|
404 |
-
}
|
405 |
-
|
406 |
-
.theme_block{
|
407 |
-
width: 48%;
|
408 |
-
margin: 5px;
|
409 |
-
border: 1px solid #ECE9E9;
|
410 |
-
float: left;
|
411 |
}
|
412 |
-
.
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
|
|
|
|
|
|
418 |
}
|
419 |
-
|
420 |
-
|
421 |
-
.notice_wrap{
|
422 |
-
padding: 15px;
|
423 |
-
border: 1px solid #C4C4C4;
|
424 |
-
width: 98%;
|
425 |
-
margin: 10px auto;
|
426 |
-
box-sizing: border-box;
|
427 |
-
|
428 |
}
|
429 |
-
.
|
430 |
-
|
431 |
-
|
432 |
-
margin-bottom: 17px;
|
433 |
-
font-size: 20px;
|
434 |
-
display: block;
|
435 |
}
|
436 |
-
|
437 |
-
|
438 |
-
font-size: 15px;
|
439 |
}
|
440 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
|
442 |
-
.
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
457 |
}
|
458 |
-
|
459 |
-
.wd-start-using-button{
|
460 |
-
margin-right:10px;
|
461 |
-
float: right;
|
462 |
-
}
|
1 |
+
#wpfooter {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
display: none;
|
3 |
}
|
4 |
+
#wpbody-content > div:not(.tenweb_overview){
|
5 |
+
display:none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
}
|
7 |
+
#wpbody-content {
|
8 |
+
padding-bottom: 0;
|
9 |
}
|
10 |
|
11 |
+
.tenweb_overview .tenweb_header{
|
12 |
+
background:url(../img/slide-1366.jpg);
|
13 |
+
background-size: cover;
|
14 |
+
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
}
|
16 |
+
.tenweb_overview .tenweb_footer.without_demo,
|
17 |
+
.tenweb_overview .tenweb_how_it_works{
|
18 |
+
background:url(../img/how_it_works.png);
|
19 |
+
background-size: cover;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
}
|
22 |
+
.tenweb_overview {
|
23 |
+
margin-left: -20px;
|
24 |
}
|
25 |
+
.tenweb_overview .tenweb_plugin_features,
|
26 |
+
.tenweb_overview .tenweb_footer{
|
27 |
+
background:#ffffff;
|
28 |
}
|
29 |
+
.tenweb_overview .tenweb_plugin_features *,
|
30 |
+
.tenweb_overview .tenweb_footer *{
|
31 |
+
color:#2c3144;
|
32 |
}
|
33 |
+
.tenweb_overview .tenweb_how_it_works .container{
|
34 |
+
padding:60px 0 52px;
|
35 |
}
|
36 |
+
.tenweb_overview .tenweb_footer.without_demo *,
|
37 |
+
.tenweb_overview .tenweb_how_it_works *,
|
38 |
+
.tenweb_overview .tenweb_header *{
|
39 |
+
color:#fff;
|
40 |
}
|
41 |
+
.tenweb_overview h2 {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
text-transform: uppercase;
|
43 |
+
font-size: 24px;
|
44 |
+
letter-spacing: 1px;
|
45 |
+
margin:0;
|
46 |
+
padding: 0 0 20px;
|
47 |
+
line-height: 1.4em;
|
48 |
}
|
49 |
+
h3.more_features {
|
50 |
+
font-size: 21px;
|
51 |
+
text-transform: uppercase;
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
+
img.plugin_logo {
|
54 |
+
margin-bottom: 18px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
}
|
56 |
|
57 |
+
.tenweb_overview .and {
|
58 |
+
font-size: 50px;
|
59 |
+
margin: 17px 14px 19px;
|
60 |
+
line-height: 1;
|
61 |
+
font-weight: lighter;
|
62 |
+
}
|
63 |
+
.tenweb_overview .and.circle {
|
64 |
+
font-size: 50px;
|
65 |
+
margin: 15px 14px;
|
66 |
+
line-height: 1.3;
|
67 |
+
font-weight: lighter;
|
68 |
+
display: inline-block;
|
69 |
+
width: 70px;
|
70 |
+
height: 70px;
|
71 |
+
box-shadow: 0 0 8px rgba(0,0,0,.2);
|
72 |
+
border-radius: 35px;
|
73 |
}
|
74 |
+
.tenweb_plugin_features .container {
|
75 |
+
padding: 30px 0;
|
|
|
76 |
}
|
77 |
+
.tenweb_overview a.more {
|
78 |
+
text-transform: uppercase;
|
79 |
+
letter-spacing: 1px;
|
80 |
+
font-size: 16px;
|
81 |
+
line-height: 1;
|
82 |
+
display: inline-block;
|
83 |
+
text-decoration: none;
|
84 |
}
|
85 |
+
.tenweb_overview a.more:not(.blue) {
|
86 |
+
margin-top: 23px;
|
87 |
}
|
88 |
+
.tenweb_overview a.more.blue {
|
89 |
+
color:#397cf1;
|
90 |
}
|
91 |
+
.tenweb_clear:after{
|
92 |
+
content:"";
|
93 |
+
display:table;
|
94 |
+
clear:both;
|
95 |
}
|
96 |
+
.tenweb_overview .container{
|
97 |
+
width:1190px;
|
98 |
+
max-width:100%;
|
99 |
+
margin:0 auto;
|
100 |
+
text-align:center;
|
101 |
+
box-sizing: border-box;
|
102 |
+
-webkit-box-sizing: border-box;
|
103 |
+
-moz-box-sizing: border-box;
|
104 |
}
|
105 |
+
.plan_features.tenweb_clear {
|
106 |
+
font-size: 0;
|
107 |
}
|
108 |
+
.tenweb_overview .plan_feature {
|
109 |
+
width: 24%;
|
110 |
display: inline-block;
|
111 |
+
margin: 0 .5% 30px;
|
112 |
}
|
113 |
+
.tenweb_overview .plan_feature h3 {
|
114 |
+
font-size: 17px;
|
|
|
|
|
|
|
115 |
text-transform: uppercase;
|
116 |
+
margin: 18px 0;
|
117 |
}
|
118 |
+
.tenweb_overview .plan_feature p {
|
119 |
+
font-size: 15px;
|
120 |
+
overflow: hidden;
|
121 |
+
display: -webkit-box;
|
122 |
+
-webkit-line-clamp: 3;
|
123 |
+
-webkit-box-orient: vertical;
|
124 |
+
text-overflow: ellipsis;
|
125 |
+
line-height: 1.4em;
|
126 |
+
}
|
127 |
+
.tenweb_overview .plan_feature .logo {
|
128 |
+
background: url(../img/header.svg);
|
129 |
+
margin:0 auto;
|
130 |
+
}
|
131 |
+
.tenweb_overview .plan_feature.image_optimizer .logo {
|
132 |
+
background-size: 191px;
|
133 |
+
background-position: 0px -55px;
|
134 |
+
width: 68px;
|
135 |
+
height: 51px;
|
136 |
+
margin: 0 auto 35px;
|
137 |
+
}
|
138 |
+
.tenweb_overview .plan_feature.pro_plugins .logo {
|
139 |
+
background-size: 194px;
|
140 |
+
background-position: 0px -118px;
|
141 |
+
width: 55px;
|
142 |
+
height: 68px;
|
143 |
+
}
|
144 |
+
.tenweb_overview .plan_feature.dashboard .logo {
|
145 |
+
background-size: 195px;
|
146 |
+
background-position: 0px -196px;
|
147 |
|
148 |
+
width: 68px;
|
149 |
+
height: 56px;
|
150 |
+
margin: 0 auto 30px;
|
|
|
|
|
151 |
}
|
152 |
+
.tenweb_overview .plan_feature.pro_themes .logo {
|
153 |
+
background-size: 190px;
|
154 |
+
background-position: 0px -254px;
|
155 |
|
156 |
+
width: 57px;
|
157 |
+
height: 58px;
|
158 |
+
margin: 0 auto 28px;
|
159 |
}
|
160 |
+
.tenweb_overview .plan_feature.seo .logo {
|
161 |
+
background-size: 200px;
|
162 |
+
background-position: 0px -338px;
|
163 |
|
164 |
+
width: 61px;
|
165 |
+
height: 63px;
|
166 |
+
margin: 0 auto 23px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
}
|
168 |
+
.tenweb_overview .plan_feature.security .logo {
|
169 |
+
background-size: 194px;
|
170 |
+
background-position: 0px -398px;
|
171 |
+
|
172 |
+
width: 55px;
|
173 |
+
height: 62px;
|
174 |
+
margin: 0 auto 24px;
|
|
|
|
|
|
|
175 |
}
|
176 |
+
.tenweb_overview .plan_feature.backup .logo {
|
177 |
+
background-size: 250px;
|
178 |
+
background-position: 0px -602px;
|
179 |
|
180 |
+
width: 100px;
|
181 |
+
height: 60px;
|
182 |
+
margin: 0 auto 26px;
|
183 |
}
|
184 |
+
.tenweb_overview .plan_feature.hosting .logo {
|
185 |
+
background-size: 196px;
|
186 |
+
background-position: 0px -527px;
|
187 |
+
|
188 |
+
width: 64px;
|
189 |
+
height: 64px;
|
190 |
+
margin: 0 auto 22px;
|
191 |
}
|
192 |
+
.tenweb_overview a.button {
|
193 |
+
background: #367bf2;
|
194 |
+
color: #ffffff;
|
195 |
text-transform: uppercase;
|
196 |
+
letter-spacing: 1px;
|
197 |
+
font-size: 16px;
|
198 |
+
padding: 16px 30px;
|
199 |
+
line-height: 1;
|
200 |
+
border-radius: 2px;
|
201 |
display: inline-block;
|
202 |
+
border: 0 !important;
|
203 |
+
box-shadow: none;
|
204 |
+
height: auto;
|
205 |
+
}
|
206 |
+
.tenweb_overview a.button.transparent {
|
207 |
+
background: transparent !important;
|
208 |
+
color: #ffffff;
|
209 |
+
border: 1px solid #ffffff !important;
|
210 |
+
width: 160px;
|
211 |
+
margin: 0 5px;
|
212 |
+
}
|
213 |
+
.tenweb_overview a.button:hover {
|
214 |
+
background: #367bf2;
|
215 |
+
color: #ffffff;
|
216 |
+
box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
|
217 |
+
}
|
218 |
+
.tenweb_overview .tenweb_header .container_top a.button {
|
219 |
+
font-size: 18px;
|
220 |
+
padding: 13px 30px;
|
221 |
+
display:table-cell;
|
222 |
+
}
|
223 |
+
.tenweb_overview .tenweb_logo {
|
224 |
+
float: left;
|
225 |
+
width: 197px;
|
226 |
}
|
227 |
+
.tenweb_overview .tenweb_logo a div {
|
228 |
+
background: url(../img/header.svg);
|
229 |
+
height: 53px;
|
230 |
+
background-size: 196px;
|
231 |
+
background-position: 0 0;
|
232 |
+
background-repeat: no-repeat;
|
233 |
}
|
234 |
+
.tenweb_overview .tenweb_header_right {
|
235 |
+
float: right;
|
236 |
+
text-align: right;
|
237 |
+
display: table;
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
}
|
239 |
|
240 |
+
.tenweb_overview .inline-block.header_text {
|
241 |
+
text-transform: uppercase;
|
242 |
+
font-size: 15px;
|
243 |
+
line-height: 1.5;
|
244 |
+
padding-right: 10px;
|
245 |
+
letter-spacing: 0;
|
246 |
+
margin-top: 2px;
|
247 |
+
width: calc(100% - 180px);
|
248 |
+
display:table-cell;
|
249 |
+
vertical-align:middle;
|
250 |
+
}
|
251 |
+
.tenweb_overview .tenweb_header_divider {
|
252 |
+
height:18px;
|
253 |
+
background:#fff;
|
254 |
+
}
|
255 |
+
.tenweb_overview .container_top {
|
256 |
+
padding:24px 15px;
|
257 |
+
}
|
258 |
+
.tenweb_overview .container_bottom {
|
259 |
+
padding: 50px 0 40px;
|
260 |
+
}
|
261 |
+
.tenweb_overview .plugin_features.tenweb_clear {
|
262 |
+
margin-top: 40px;
|
263 |
+
}
|
264 |
+
.plugin_features .plugin_feature_logo{
|
265 |
+
height:54px;
|
266 |
+
}
|
267 |
+
.plugin_features .plugin_feature{
|
268 |
+
width: 31%;
|
269 |
+
margin: 0 1% 20px;
|
270 |
+
/*float: left;*/
|
271 |
display: inline-block;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
}
|
273 |
|
274 |
+
.plugin_features .plugin_feature h3 {
|
275 |
+
font-size: 18px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
text-transform: uppercase;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
}
|
278 |
+
.plugin_features .plugin_feature p {
|
279 |
+
font-size: 15px;
|
280 |
+
overflow: hidden;
|
281 |
+
display: -webkit-box;
|
282 |
+
-webkit-line-clamp: 3;
|
283 |
+
-webkit-box-orient: vertical;
|
284 |
+
text-overflow: ellipsis;
|
285 |
+
line-height: 1.4em;
|
286 |
+
min-height: 63px;
|
287 |
}
|
288 |
+
.tenweb_how_it_works a.button {
|
289 |
+
margin-top: 12px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
}
|
291 |
+
.plugin_features .plugin_feature img{
|
292 |
+
width:54px;
|
293 |
+
max-height: 100%;
|
|
|
|
|
|
|
294 |
}
|
295 |
+
.tenweb_footer {
|
296 |
+
padding: 70px 0 80px;
|
|
|
297 |
}
|
298 |
|
299 |
+
.tenweb_footer p {
|
300 |
+
font-size: 22px;
|
301 |
+
font-weight: lighter;
|
302 |
+
margin: 8px 0 20px;
|
303 |
+
}
|
304 |
+
.tenweb_footer h2 {
|
305 |
+
font-size: 31px;
|
306 |
+
}
|
307 |
+
.tenweb_overview img.plugin_logo {
|
308 |
+
width: 100px;
|
309 |
+
}
|
310 |
+
@media only screen and (min-width: 1620px){
|
311 |
+
.plugin_features .plugin_feature p {
|
312 |
+
font-size: 17px;
|
313 |
+
}
|
314 |
+
.tenweb_overview img.plugin_logo {
|
315 |
+
width: 130px;
|
316 |
+
}
|
317 |
+
.tenweb_overview .container{
|
318 |
+
width:1600px;
|
319 |
+
}
|
320 |
+
.tenweb_overview .inline-block.header_text{
|
321 |
+
font-size: 19px;
|
322 |
+
line-height: 1.2;
|
323 |
+
padding-right: 18px;
|
324 |
+
letter-spacing: .8px;
|
325 |
+
width: calc(100% - 193px);
|
326 |
+
margin-top: 0;
|
327 |
+
}
|
328 |
+
.tenweb_overview h2 {
|
329 |
+
font-size: 28px;
|
330 |
+
padding: 10px 0 20px;
|
331 |
+
}
|
332 |
+
.tenweb_overview .and {
|
333 |
+
font-size: 60px;
|
334 |
+
margin: 18px 14px;
|
335 |
+
}
|
336 |
+
.tenweb_overview .and.circle {
|
337 |
+
font-size: 60px;
|
338 |
+
margin: 20px 14px;
|
339 |
+
line-height: 1.4;
|
340 |
+
width: 90px;
|
341 |
+
height: 90px;
|
342 |
+
border-radius: 45px;
|
343 |
+
}
|
344 |
+
.tenweb_overview .plan_feature {
|
345 |
+
width: 23%;
|
346 |
+
display:inline-block;
|
347 |
+
margin: 0 1% 40px;
|
348 |
+
}
|
349 |
+
.tenweb_overview .plan_feature h3 {
|
350 |
+
font-size:20px;
|
351 |
+
}
|
352 |
+
.tenweb_overview .plan_feature p {
|
353 |
+
height: 72px;
|
354 |
+
font-size:16px;
|
355 |
+
}
|
356 |
+
.plugin_features .plugin_feature p{
|
357 |
+
font-size:18px;
|
358 |
+
height: 75px;
|
359 |
+
}
|
360 |
+
.plugin_features .plugin_feature h3{
|
361 |
+
font-size:20px;
|
362 |
+
}
|
363 |
+
.tenweb_footer h2{
|
364 |
+
font-size:37px;
|
365 |
+
}
|
366 |
+
.tenweb_footer p {
|
367 |
+
font-size: 24px;
|
368 |
+
}
|
369 |
+
.tenweb_overview .container_top {
|
370 |
+
padding: 29px 0;
|
371 |
+
}
|
372 |
+
}
|
373 |
+
@media only screen and (max-width: 1320px){
|
374 |
+
.plugin_features .plugin_feature,
|
375 |
+
.tenweb_overview .plan_feature {
|
376 |
+
width: 46%;
|
377 |
+
display: inline-block;
|
378 |
+
margin: 0 1.5% 10px;
|
379 |
+
}
|
380 |
+
.tenweb_footer h2 {
|
381 |
+
font-size: 26px;
|
382 |
+
}
|
383 |
+
.tenweb_footer p {
|
384 |
+
font-size: 20px;
|
385 |
+
line-height: 1.4em;
|
386 |
+
}
|
387 |
+
.tenweb_overview .container {
|
388 |
+
width: 99%;
|
389 |
+
}
|
390 |
+
.tenweb_overview .inline-block.header_text {
|
391 |
+
text-transform: uppercase;
|
392 |
+
font-size: 13px;
|
393 |
+
}
|
394 |
+
}
|
395 |
+
@media only screen and (max-width: 1200px){
|
396 |
|
397 |
+
.tenweb_overview .tenweb_header_right {
|
398 |
+
float: right;
|
399 |
+
text-align: right;
|
400 |
+
display: table;
|
401 |
+
width: calc(100% - 267px);
|
402 |
+
}
|
403 |
+
}
|
404 |
+
@media only screen and (max-width: 840px){
|
405 |
+
.tenweb_overview .inline-block.header_text {
|
406 |
+
display:block;
|
407 |
+
padding-right: 0;
|
408 |
+
margin-top: 10px;
|
409 |
+
width: 100%;
|
410 |
+
clear:both;
|
411 |
+
}
|
412 |
+
.tenweb_overview .tenweb_header .container_top a.button {
|
413 |
+
display:inline-block;
|
414 |
+
}
|
415 |
+
.tenweb_overview .tenweb_logo a div {
|
416 |
+
height: 37px;
|
417 |
+
background-size: 145px;
|
418 |
+
background-position: 0 0px;
|
419 |
+
}
|
420 |
+
.tenweb_overview .tenweb_logo {
|
421 |
+
float: left;
|
422 |
+
width: 150px;
|
423 |
+
}
|
424 |
+
.tenweb_overview {
|
425 |
+
margin-left: -10px;
|
426 |
+
}
|
427 |
+
.plugin_features .plugin_feature,
|
428 |
+
.tenweb_overview .plan_feature {
|
429 |
+
width: 88%;
|
430 |
+
margin: 0 auto 10px;
|
431 |
+
float: none;
|
432 |
+
}
|
433 |
+
.tenweb_overview .plan_feature p,
|
434 |
+
.plugin_features .plugin_feature p {
|
435 |
+
overflow: visible;
|
436 |
+
-webkit-line-clamp: none;
|
437 |
+
height: auto;
|
438 |
+
}
|
439 |
+
.tenweb_footer h2 {
|
440 |
+
font-size: 23px;
|
441 |
+
}
|
442 |
+
.tenweb_footer p {
|
443 |
+
font-size: 18px;
|
444 |
+
line-height: 1.4em;
|
445 |
+
}
|
446 |
+
.tenweb_overview .plugin_features.tenweb_clear {
|
447 |
+
margin-top: 20px;
|
448 |
+
}
|
449 |
+
.tenweb_footer {
|
450 |
+
padding: 50px 0 60px;
|
451 |
+
}
|
452 |
+
.tenweb_overview .tenweb_logo {
|
453 |
+
float: none;
|
454 |
+
width: 150px;
|
455 |
+
margin: 0 auto 10px;
|
456 |
+
}
|
457 |
+
.tenweb_overview .tenweb_header_right {
|
458 |
+
float: none;
|
459 |
+
width: 100%;
|
460 |
+
text-align: center;
|
461 |
+
}
|
462 |
+
.tenweb_overview .tenweb_header_right a.button {
|
463 |
+
float: none;
|
464 |
+
}
|
465 |
+
.tenweb_overview .inline-block.header_text {
|
466 |
+
float: none;
|
467 |
+
margin-top: 10px;
|
468 |
+
}
|
469 |
+
.tenweb_overview h2 {
|
470 |
+
font-size: 21px;
|
471 |
+
}
|
472 |
}
|
|
|
|
|
|
|
|
|
|
wd/assets/css/subscribe.css
CHANGED
@@ -1,114 +1,210 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
font-family: "Open Sans",sans-serif;
|
4 |
-
line-height: 1.4em;
|
5 |
-
min-width: 600px;
|
6 |
}
|
7 |
-
|
8 |
-
|
9 |
-
background: #fff;
|
10 |
-
border: 2px solid #E2E5EC;
|
11 |
-
width: 55%;
|
12 |
-
margin-top: 40px;
|
13 |
-
}
|
14 |
-
.wd-subscribe-content{
|
15 |
-
padding: 30px 92px;
|
16 |
}
|
17 |
-
|
18 |
-
|
19 |
}
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
}
|
24 |
-
.
|
25 |
-
|
26 |
-
font-weight: bold;
|
27 |
-
font-size: 52px;
|
28 |
-
padding: 0px 28px;
|
29 |
}
|
30 |
-
.
|
31 |
-
|
32 |
-
|
|
|
|
|
33 |
}
|
34 |
|
35 |
-
.
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
height:
|
40 |
-
|
|
|
|
|
|
|
|
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
}
|
43 |
-
.
|
44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
display: inline-block;
|
46 |
-
background: url(img/skip.png) no-repeat;
|
47 |
-
width: 76px;
|
48 |
-
height: 59px;
|
49 |
}
|
50 |
-
.permissions{
|
51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
}
|
53 |
-
.
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
display:none;
|
56 |
}
|
57 |
-
.list_item{
|
58 |
-
|
59 |
-
margin-bottom: 15px;
|
60 |
}
|
61 |
-
.
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
}
|
66 |
-
.
|
67 |
-
|
|
|
68 |
}
|
69 |
-
.
|
70 |
-
width:
|
|
|
|
|
|
|
71 |
}
|
72 |
-
.
|
73 |
-
|
74 |
-
float: right;
|
75 |
}
|
76 |
-
.
|
77 |
-
|
78 |
-
font-size: 13px;
|
79 |
}
|
80 |
-
.
|
81 |
-
|
82 |
-
width: 30px;
|
83 |
-
margin-top: 11px;
|
84 |
-
visibility: hidden;
|
85 |
}
|
86 |
-
.
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
padding: 2px;
|
105 |
-
font-weight: bold;
|
106 |
-
display: inline-block;
|
107 |
-
vertical-align: middle;
|
108 |
}
|
109 |
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
}
|
1 |
+
#wpfooter {
|
2 |
+
display: none;
|
|
|
|
|
|
|
3 |
}
|
4 |
+
#wpbody-content > div:not(.tenweb_subscribe){
|
5 |
+
display:none;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
}
|
7 |
+
#wpbody-content {
|
8 |
+
padding-bottom: 0;
|
9 |
}
|
10 |
+
|
11 |
+
|
12 |
+
.tenweb_clear:after{
|
13 |
+
content:"";
|
14 |
+
display:table;
|
15 |
+
clear:both;
|
16 |
+
}
|
17 |
+
.tenweb_subscribe a.button {
|
18 |
+
background: #367bf2;
|
19 |
+
color: #ffffff;
|
20 |
+
text-transform: uppercase;
|
21 |
+
letter-spacing: 1px;
|
22 |
+
font-size: 16px;
|
23 |
+
padding: 16px 30px;
|
24 |
+
line-height: 1;
|
25 |
+
border-radius: 2px;
|
26 |
+
display: inline-block;
|
27 |
+
border: 0 !important;
|
28 |
+
box-shadow: none;
|
29 |
+
height: auto;
|
30 |
}
|
31 |
+
.tenweb_subscribe a:focus {
|
32 |
+
box-shadow:none;
|
|
|
|
|
|
|
33 |
}
|
34 |
+
.tenweb_subscribe a.button:active,
|
35 |
+
.tenweb_subscribe a.button:hover {
|
36 |
+
background: #367bf2;
|
37 |
+
color: #ffffff;
|
38 |
+
box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
|
39 |
}
|
40 |
|
41 |
+
.tenweb_subscribe a.more {
|
42 |
+
text-transform: uppercase;
|
43 |
+
letter-spacing: 1px;
|
44 |
+
font-size: 14px;
|
45 |
+
line-height: 1;
|
46 |
+
display: block;
|
47 |
+
text-decoration: none;
|
48 |
+
color: #4e4e4e;
|
49 |
+
margin-top: 9px;
|
50 |
+
}
|
51 |
|
52 |
+
.wd_loader{
|
53 |
+
vertical-align: top;
|
54 |
+
width: 30px;
|
55 |
+
margin-top: 11px;
|
56 |
+
display: none;
|
57 |
+
}
|
58 |
+
.tenweb_subscribe {
|
59 |
+
background: #ffffff;
|
60 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.2);
|
61 |
+
width: calc(100% - 20px);
|
62 |
+
padding: 105px 20px 0;
|
63 |
+
margin: 20px 0 0 0;
|
64 |
+
box-sizing: border-box;
|
65 |
+
-webkit-box-sizing: border-box;
|
66 |
+
-moz-box-sizing: border-box;
|
67 |
+
text-align: center;
|
68 |
}
|
69 |
+
.tenweb_subscribe .texts h2 {
|
70 |
+
font-size:28px;
|
71 |
+
text-transform: uppercase;
|
72 |
+
margin: 26px 0 16px;
|
73 |
+
}
|
74 |
+
.tenweb_subscribe .texts h5 {
|
75 |
+
font-size:18px;
|
76 |
+
text-transform: uppercase;
|
77 |
+
margin: 6px 0;
|
78 |
+
line-height: 1.4em;
|
79 |
+
}
|
80 |
+
.tenweb_subscribe .texts p {
|
81 |
+
font-size:16px;
|
82 |
+
}
|
83 |
+
.tenweb_subscribe .texts .hi_there {
|
84 |
+
width:66px;
|
85 |
+
height:103px;
|
86 |
+
background: url(../img/allow-and-continue.png) no-repeat;
|
87 |
+
margin: 0 auto;
|
88 |
+
}
|
89 |
+
.tenweb_subscribe-content{
|
90 |
+
width: 960px;
|
91 |
+
max-width: 100%;
|
92 |
+
margin: 0 auto;
|
93 |
+
}
|
94 |
+
.tenweb_subscribe .permissions {
|
95 |
+
font-size: 16px;
|
96 |
+
cursor: pointer;
|
97 |
+
margin: 10px 0 30px;
|
98 |
+
position: relative;
|
99 |
display: inline-block;
|
|
|
|
|
|
|
100 |
}
|
101 |
+
.tenweb_subscribe .permissions:after {
|
102 |
+
content: "";
|
103 |
+
position: absolute;
|
104 |
+
width: 13px;
|
105 |
+
height: 13px;
|
106 |
+
background: url(../img/allow-and-continue.png) no-repeat;
|
107 |
+
background-position: 1px -237px;
|
108 |
+
right: -19px;
|
109 |
+
top: 2px;
|
110 |
+
transition:transform .2s;
|
111 |
+
}
|
112 |
+
.tenweb_subscribe .permissions.active:after {
|
113 |
+
content: "";
|
114 |
+
transform: rotateZ(-180deg);
|
115 |
+
-webkit-transform: rotateZ(-180deg);
|
116 |
+
-moz-transform: rotateZ(-180deg);
|
117 |
+
top: 3px;
|
118 |
}
|
119 |
+
.tenweb_subscribe .list_item {
|
120 |
+
width: 31%;
|
121 |
+
float: left;
|
122 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.2);
|
123 |
+
margin-right: 3%;
|
124 |
+
padding: 20px 0;
|
125 |
+
box-sizing: border-box;
|
126 |
+
-webkit-box-sizing: border-box;
|
127 |
+
-moz-box-sizing: border-box;
|
128 |
+
}
|
129 |
+
.tenweb_subscribe .list{
|
130 |
display:none;
|
131 |
}
|
132 |
+
.tenweb_subscribe .list_item:last-child {
|
133 |
+
margin-right: 0;
|
|
|
134 |
}
|
135 |
+
.tenweb_subscribe .list.tenweb_clear {
|
136 |
+
max-width: 100%;
|
137 |
+
width: 580px;
|
138 |
+
margin: 0 auto 28px;
|
139 |
}
|
140 |
+
.tenweb_subscribe .list_text_wrap {
|
141 |
+
font-size: 12px;
|
142 |
+
font-weight: bold;
|
143 |
}
|
144 |
+
.tenweb_subscribe .list_logo {
|
145 |
+
width: 36px;
|
146 |
+
height:33px;
|
147 |
+
background: url(../img/allow-and-continue.png) no-repeat;
|
148 |
+
margin:0 auto 20px;
|
149 |
}
|
150 |
+
.tenweb_subscribe .user_info .list_logo {
|
151 |
+
background-position: 3px -110px;
|
|
|
152 |
}
|
153 |
+
.tenweb_subscribe .wp_info .list_logo {
|
154 |
+
background-position: 2px -153px;
|
|
|
155 |
}
|
156 |
+
.tenweb_subscribe .plugins_info .list_logo {
|
157 |
+
background-position: 6px -196px;
|
|
|
|
|
|
|
158 |
}
|
159 |
+
.tenweb_subscribe-footer * {
|
160 |
+
color: #afafaf;
|
161 |
+
}
|
162 |
+
.tenweb_footer-menu a {
|
163 |
+
font-size: 12px;
|
164 |
+
text-transform: uppercase;
|
165 |
+
letter-spacing: 1px;
|
166 |
+
text-decoration: none;
|
167 |
+
}
|
168 |
+
.tenweb_footer-menu li{
|
169 |
+
display:inline-block;
|
170 |
+
margin: 0 10px;
|
171 |
+
}
|
172 |
+
ul.tenweb_footer-menu.tenweb_clear {
|
173 |
+
padding: 18px 0 15px;
|
174 |
+
line-height: 1;
|
175 |
+
border-top: 1px solid #ececec;
|
176 |
+
margin: 16px 0 0;
|
|
|
|
|
|
|
|
|
177 |
}
|
178 |
|
179 |
+
.tenweb_subscribe-top-footer {
|
180 |
+
font-size: 13px;
|
181 |
+
color: #afafaf;
|
182 |
+
margin-top: 112px;
|
183 |
+
}
|
184 |
+
@media only screen and (min-width: 1620px){
|
185 |
+
.tenweb_subscribe-top-footer {
|
186 |
+
margin-top: 130px;
|
187 |
+
}
|
188 |
+
.tenweb_subscribe {
|
189 |
+
padding: 150px 20px 0;
|
190 |
+
}
|
191 |
+
}
|
192 |
+
@media only screen and (max-width: 768px){
|
193 |
+
.tenweb_subscribe {
|
194 |
+
width: calc(100% - 10px);
|
195 |
+
padding: 60px 20px 0;
|
196 |
+
}
|
197 |
+
.tenweb_subscribe-top-footer {
|
198 |
+
margin-top: 60px;
|
199 |
+
}
|
200 |
+
.tenweb_subscribe .list_item {
|
201 |
+
width: 100%;
|
202 |
+
float: none;
|
203 |
+
margin-right: 0;
|
204 |
+
padding: 20px 10px;
|
205 |
+
margin-bottom: 10px;
|
206 |
+
}
|
207 |
+
.tenweb_subscribe .list.tenweb_clear {
|
208 |
+
margin: 0 auto 15px;
|
209 |
+
}
|
210 |
}
|
wd/assets/img/allow-and-continue.png
ADDED
Binary file
|
wd/assets/img/bwg_main_plugin.png
DELETED
Binary file
|
wd/assets/img/cfm_main_plugin.png
DELETED
Binary file
|
wd/assets/img/ecwd_main_plugin.png
DELETED
Binary file
|
wd/assets/img/faqwd_main_plugin.png
DELETED
Binary file
|
wd/assets/img/ffwd_main_plugin.png
DELETED
Binary file
|
wd/assets/img/fm_main_plugin.png
DELETED
Binary file
|
wd/assets/img/fmc_main_plugin.png
DELETED
Binary file
|
wd/assets/img/gawd_main_plugin.png
DELETED
Binary file
|
wd/assets/img/gmwd_main_plugin.png
DELETED
Binary file
|
wd/assets/img/header.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="190.51" height="655.4" viewBox="0 0 190.51 655.4"><defs><style>.cls-1{fill:#fff;}</style></defs><title>ICONS SPRITE</title><path class="cls-1" d="M35.4,147.3a20.82,20.82,0,0,1,9,2c-1-1-2-1.9-3.1-2.9.2-.2.4-.3.5-.4l10.3-10.3a2.85,2.85,0,0,0,.8-1.4,2.35,2.35,0,0,0-1.2-2.6,2.31,2.31,0,0,0-2.9.5l-9.9,9.9a7,7,0,0,0-.8,1c-3.8-3.8-7.4-7.4-11.2-11.1.1-.1.3-.2.4-.3l10.5-10.5a2.41,2.41,0,1,0-3.4-3.4l-6.3,6.3c-1.5,1.5-3,3.1-4.7,4.7-1.3-1.3-2.5-2.6-3.8-3.9l-.4.4c-2,2-4.1,4-6.1,6.1a17.89,17.89,0,0,0-4.9,17.8,47.31,47.31,0,0,0,2,5L0,164.4l5.3,5.4,10.3-10.3A22.47,22.47,0,0,1,35.4,147.3Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M34.5,149.8A16.5,16.5,0,1,0,51,166.3,16.52,16.52,0,0,0,34.5,149.8Zm0,31.6a15.1,15.1,0,1,1,15.1-15.1A15.15,15.15,0,0,1,34.5,181.4Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M29.6,165.9a2.65,2.65,0,0,0-1.9-.9,2.47,2.47,0,0,0-2.1.7,4.42,4.42,0,0,0-.8.9v-.7a5.39,5.39,0,0,1,.5-2.1,3,3,0,0,1,1.3-1.2,5.57,5.57,0,0,1,3-.3v-1h-1a4.67,4.67,0,0,0-3.7,1.4,7.11,7.11,0,0,0-1.2,4.5,6.05,6.05,0,0,0,.4,2.4,3.33,3.33,0,0,0,1.2,1.4,3.45,3.45,0,0,0,1.8.5,3.1,3.1,0,0,0,3.3-3.3A4,4,0,0,0,29.6,165.9Zm-1.1,3.9a1.68,1.68,0,0,1-1.4.6,1.9,1.9,0,0,1-1.5-.8,2.62,2.62,0,0,1-.5-1.7,1.61,1.61,0,0,1,.6-1.3,2,2,0,0,1,1.5-.6,1.68,1.68,0,0,1,1.4.6,2.46,2.46,0,0,1,.5,1.5A4.71,4.71,0,0,1,28.5,169.8Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M33,170.2a2.91,2.91,0,0,0,2.5,1.2,2.79,2.79,0,0,0,2.5-1.2,6.68,6.68,0,0,0,.8-3.9,7,7,0,0,0-.9-3.9,3.2,3.2,0,0,0-5,0,6.68,6.68,0,0,0-.8,3.9A6.59,6.59,0,0,0,33,170.2Zm.9-6.8a1.57,1.57,0,0,1,3,0,7.39,7.39,0,0,1,.4,3,7.7,7.7,0,0,1-.4,3,1.58,1.58,0,0,1-1.5,1.1,1.5,1.5,0,0,1-1.5-1.1,11.45,11.45,0,0,1,0-6Z" transform="translate(0 -0.7)"/><polygon class="cls-1" points="47.2 165.4 44.4 165.4 44.4 162.5 43.6 162.5 43.6 165.4 40.8 165.4 40.8 166.1 43.6 166.1 43.6 168.9 44.4 168.9 44.4 166.1 47.2 166.1 47.2 165.4"/><path class="cls-1" d="M33.3,247.9H10a2.89,2.89,0,0,1-2.4-1.1A32.6,32.6,0,0,1,.3,224a33.05,33.05,0,0,1,62.3-13.3A33.07,33.07,0,0,1,58.7,247a2.74,2.74,0,0,1-2.2.9Zm0-4.5H55.2a1.43,1.43,0,0,0,1.2-.6A28.53,28.53,0,0,0,27.8,198,28.58,28.58,0,0,0,5,223.4a27.78,27.78,0,0,0,5.3,19.3,1.51,1.51,0,0,0,1.4.7C18.8,243.3,26.1,243.4,33.3,243.4Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M29,233.2a3.14,3.14,0,0,0,2.9,2h0a3.17,3.17,0,0,0,2.5-1.2l.2-.3c.1-.1.2-.3.3-.4l3.1-3.8c2.1-2.5,4.2-5.1,6.3-7.6a1.57,1.57,0,0,0,0-2.2,1.61,1.61,0,0,0-1.1-.5,1.5,1.5,0,0,0-1.1.4L29.8,229.8A3.07,3.07,0,0,0,29,233.2Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M18.8,211.2a2.84,2.84,0,0,1-.9,1,1.72,1.72,0,0,1-1.4-.1,19.86,19.86,0,0,1-2.1-2,1.24,1.24,0,0,1,.1-1.7c.5-.5,1.1-.7,1.6-.3.8.7,1.6,1.5,2.4,2.3C18.7,210.6,18.7,210.8,18.8,211.2Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M52.8,209.1c-.1,1-2.4,3.3-3.3,3.2a2.1,2.1,0,0,1-1.1-.7,1.72,1.72,0,0,1,.1-1.4,9.47,9.47,0,0,1,2-2,1.69,1.69,0,0,1,1.4-.1C52.3,208.3,52.5,208.8,52.8,209.1Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M56.2,227.6H54.9a1.24,1.24,0,0,1-1.3-1.2,1.4,1.4,0,0,1,1.2-1.4,13.1,13.1,0,0,1,2.8,0,1.19,1.19,0,0,1,1.1,1.4,1.16,1.16,0,0,1-1.2,1.2Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M10.3,227.6H9.1a1.26,1.26,0,0,1-1.3-1.3A1.24,1.24,0,0,1,9,225h2.5a1.34,1.34,0,0,1,1.3,1.4,1.4,1.4,0,0,1-1.3,1.3A4.48,4.48,0,0,0,10.3,227.6Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M35,202.8V204a1.21,1.21,0,0,1-1.4,1.2,1.32,1.32,0,0,1-1.3-1.3v-2.4a1.3,1.3,0,1,1,2.6,0,6.15,6.15,0,0,1,.1,1.3Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M44.2,298.1a5.51,5.51,0,0,0-2-2.7c-.3-.3-.4-.5,0-.9a45.34,45.34,0,0,0,5-5.7,11.88,11.88,0,0,0,1.3-2.5,1.7,1.7,0,0,0-1.8-2.3,5.63,5.63,0,0,0-3,1.2l-1.2.9c-.1.1-.3.3-.5.1s0-.3.1-.4a8.23,8.23,0,0,0,1.2-2.5,3,3,0,0,0-.2-2.6,1.8,1.8,0,0,0-1.6-.9,8.09,8.09,0,0,0-3.7,1.2,13.25,13.25,0,0,0-2.5,1.6c-.2.1-.4.4-.6.1s0-.4.2-.6a10.53,10.53,0,0,0,1.7-2.9c1.2-2.9-.6-5.1-3.7-4.7a4.33,4.33,0,0,0-.5.1c-.2,0-.4.2-.5-.1s.1-.4.2-.5a5.37,5.37,0,0,0,1-1.6,2.5,2.5,0,0,0-.3-2.5,1.9,1.9,0,0,0-2.2-.8,8.79,8.79,0,0,0-3.4,1.9c-.1.1-.2.2-.3.2s-.3.3-.5.1,0-.3.1-.4c.2-.4.5-.7.7-1.1a1.2,1.2,0,0,0,0-1.5,1.1,1.1,0,0,0-1.4-.3,10.31,10.31,0,0,0-2.8,1.8,35.83,35.83,0,0,0-2.9,2.6c-.3.3-.4.2-.7,0a6.69,6.69,0,0,0-2.8-2.1l.5-.5L27.9,259a2,2,0,0,1,3.2,0l24.6,24.6a2,2,0,0,1,0,3.2L44.9,297.6A1.16,1.16,0,0,0,44.2,298.1Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M26.5,288c-4.5-4.5-9-9-13.5-13.4-.4-.4-.4-.6,0-.9a9.43,9.43,0,0,0,1-1,2,2,0,0,1,2.7,0l.3.3,24.4,24.4c1.2,1.2,1.2,2.2,0,3.3-.4.4-.7,1-1.1,1s-.8-.6-1.2-1C35,296.5,30.8,292.2,26.5,288Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M9.8,276.9a3.92,3.92,0,0,0,0,5.5c.6.7,1.3,1.3,1.9,2a12.28,12.28,0,0,1,2.3,4,4.7,4.7,0,0,1-1.3,5,18.51,18.51,0,0,1-4.8,3.5,15.92,15.92,0,0,0-6.1,4.8,6.64,6.64,0,0,0-.6,7.6,10.49,10.49,0,0,0,3,3.3,6.61,6.61,0,0,0,8.1.3,14.14,14.14,0,0,0,4.9-5.7,22.64,22.64,0,0,1,2.6-4.2c2.5-3.1,5.1-3.6,8.5-1.4a18.46,18.46,0,0,1,3.7,3.1,3.92,3.92,0,0,0,4.9.5,11.37,11.37,0,0,0,1.6-1.5c.4-.3.4-.5,0-.9L25.1,289.4,12.6,276.9c-.5-.5-.9-1.3-1.4-1.2S10.3,276.4,9.8,276.9Zm1.5,26.3a4,4,0,0,1,0,5.6,3.92,3.92,0,1,1,0-5.6Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M42,361.9a23.36,23.36,0,1,0-18.3,8.9,22.77,22.77,0,0,0,12.9-3.9L54,384.2l5.2-5.2Zm.3-14.4a18.6,18.6,0,1,1-18.6-18.6A18.69,18.69,0,0,1,42.3,347.5Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M1,403.6l-.7.1v.7C.3,417.3,3,428,8.7,437.2a46.22,46.22,0,0,0,16.2,16.1,4,4,0,0,0,2.1.7,3.68,3.68,0,0,0,2.1-.8c.6-.5,1.4-1,2-1.5.8-.6,1.6-1.1,2.4-1.8a53.31,53.31,0,0,0,17.7-27.4,62.88,62.88,0,0,0,2.3-18.2v-.7l-.7-.1c-7.8-1.4-14.9-4.9-21.8-8.4l-.1-.1c-2.7-1.4-5.8-1.2-8.9.4C14.6,399.4,8.1,402.3,1,403.6Zm29.4-4.3a80.16,80.16,0,0,0,18.4,7.5c.2.1.6.5.6.6h0c-.4,13.4-4.2,24.1-11.6,32.8a51.71,51.71,0,0,1-6.4,6c-1.1.9-2.2,1.9-3.3,2.8a1.76,1.76,0,0,1-1.3.6,2.69,2.69,0,0,1-1.6-.7A46.11,46.11,0,0,1,6.5,422.2a94.78,94.78,0,0,1-2.3-14.3c0-1.1.2-1.2.9-1.4a71.15,71.15,0,0,0,18.2-7.4A7.45,7.45,0,0,1,30.4,399.3Z" transform="translate(0 -0.7)"/><polygon class="cls-1" points="35.7 410.4 25.6 426 18.6 419.8 15.9 422.6 26.4 432.1 39 412.6 35.7 410.4"/><path class="cls-1" d="M48.5,501.7H15.1a11.9,11.9,0,1,1,0-23.8,12.22,12.22,0,0,1,5.6,1.4l1.4.8.5-1.5A17.49,17.49,0,0,1,39,467.1a17.3,17.3,0,0,1,17,13.6,24.58,24.58,0,0,1,2.8-.2A20.52,20.52,0,0,0,53.1,470,20.06,20.06,0,0,0,39,464.3a20.46,20.46,0,0,0-18.5,12A14.69,14.69,0,1,0,15,504.6H51.3C49.6,503.7,48.5,502.8,48.5,501.7Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M51.7,504.5H15.1a14.8,14.8,0,1,1,0-29.6,14,14,0,0,1,5.4,1,20.3,20.3,0,0,1,18.5-12,20.06,20.06,0,0,1,14.1,5.7,19.74,19.74,0,0,1,5.7,10.6v.1h-.1a24.58,24.58,0,0,0-2.8.2h-.1v-.1a17.3,17.3,0,0,0-33.2-2.1l-.6,1.6-1.5-.8A11.88,11.88,0,1,0,15,501.5H48.5v.1c0,1,1,2,2.7,2.7ZM15.1,475.1a14.6,14.6,0,0,0,0,29.2H50.9c-1.6-.7-2.5-1.7-2.5-2.6H15.1a12,12,0,1,1,5.6-22.6l1.3.7.5-1.4A17.61,17.61,0,0,1,39,466.8a17.18,17.18,0,0,1,17,13.6,24.52,24.52,0,0,1,2.7-.2A20.22,20.22,0,0,0,53,469.8a20,20,0,0,0-14-5.7A20.23,20.23,0,0,0,20.6,476v.1h-.1A16.16,16.16,0,0,0,15.1,475.1Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M69.7,485.9a2.84,2.84,0,0,0-.7-1.7c-1.6-1.7-5.5-2.6-9.4-2.6h-.7a24.52,24.52,0,0,0-2.7.2c-3.7.5-6.7,1.9-6.7,4v13.8a2.2,2.2,0,0,0,.6,1.5c1.3,1.6,4.6,2.5,8.1,2.7h1.5c3.9,0,7.9-.9,9.4-2.6a2.19,2.19,0,0,0,.7-1.7V486.1C69.7,486.2,69.7,486,69.7,485.9ZM59.5,497.4a19.3,19.3,0,0,1-6.2-.9c-1.5-.5-2.1-1.1-2.1-1.4v-2a17.82,17.82,0,0,0,8.2,1.7,23.1,23.1,0,0,0,6.1-.8,6.67,6.67,0,0,0,2.1-.9v2c0,.3-.5.9-2.1,1.4l-.9.3A18.28,18.28,0,0,1,59.5,497.4Zm8.3-7.9v1c0,.3-.5.9-2.1,1.4h-.1a18.25,18.25,0,0,1-6.1.9,19.3,19.3,0,0,1-6.2-.9c-1.5-.5-2.1-1.1-2.1-1.4v-2a17.82,17.82,0,0,0,8.2,1.7,22.65,22.65,0,0,0,5.3-.6,10,10,0,0,0,2.6-.9c.1-.1.2-.1.3-.2v1Zm-14.5-5a17.65,17.65,0,0,1,2.9-.7,32.51,32.51,0,0,1,3.3-.2,19.83,19.83,0,0,1,3.5.3,17.63,17.63,0,0,1,2.7.7c1.5.5,2.1,1.1,2.1,1.4s-.4.7-1.3,1.1a6.88,6.88,0,0,1-.8.3,11.7,11.7,0,0,1-2,.5,27.22,27.22,0,0,1-4.2.4,19.3,19.3,0,0,1-6.2-.9c-1.5-.5-2.1-1.1-2.1-1.4S51.8,485,53.3,484.5Zm14.5,15.2c0,.3-.5.9-2.1,1.4-.4.1-.8.3-1.3.4a23.84,23.84,0,0,1-4.9.5,21.79,21.79,0,0,1-6-.8c-.1,0-.2,0-.2-.1-1.5-.5-2.1-1.1-2.1-1.4v-2a17.82,17.82,0,0,0,8.2,1.7c1.2,0,2.4-.1,3.5-.2a12.23,12.23,0,0,0,4.2-1.2c.2-.1.3-.2.5-.3v2Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M59.5,504.1H58c-3.9-.2-7-1.3-8.2-2.8a2.45,2.45,0,0,1-.6-1.6V485.9c0-2,2.6-3.6,6.9-4.2a24.52,24.52,0,0,1,2.7-.2h.7c4.3,0,8.1,1,9.5,2.6a2.5,2.5,0,0,1,.8,1.8v13.8a2.9,2.9,0,0,1-.8,1.8C67.6,503.1,63.8,504.1,59.5,504.1Zm0-22.3h-.7a24.52,24.52,0,0,0-2.7.2c-4.1.6-6.6,2-6.6,3.9v.4h0v4.5h0v4.5h0v4.1a2.39,2.39,0,0,0,.5,1.4c1.1,1.4,4.2,2.4,8,2.6h1.5c4.2,0,7.9-1,9.3-2.5a2.57,2.57,0,0,0,.7-1.6v-4.1h0v-4.5h0v-4.5h0v-.4a2.13,2.13,0,0,0-.7-1.6C67.4,482.8,63.8,481.8,59.5,481.8Zm0,20.4a21.26,21.26,0,0,1-6-.8.35.35,0,0,1-.2-.1c-1.5-.5-2.2-1.2-2.2-1.6v-2.3l.2.1a18.34,18.34,0,0,0,8.2,1.6c1.2,0,2.4-.1,3.5-.2a15.08,15.08,0,0,0,4.2-1.1c.2-.1.3-.2.5-.2l.2-.1v2.3c0,.4-.7,1-2.2,1.6-.4.1-.8.3-1.3.4A34.67,34.67,0,0,1,59.5,502.2Zm-8.1-4.3v1.8c0,.2.5.8,2,1.3.1,0,.1,0,.2.1a20.53,20.53,0,0,0,5.9.8,24.61,24.61,0,0,0,4.9-.5,5,5,0,0,0,1.3-.4c1.5-.5,2-1.1,2-1.3v-1.8c-.1,0-.2.1-.3.1a18.69,18.69,0,0,1-4.3,1.2,20,20,0,0,1-3.5.2A17.42,17.42,0,0,1,51.4,497.9Zm8.1-.3a18.46,18.46,0,0,1-6.2-.9c-1.5-.5-2.2-1.2-2.2-1.6v-2.3l.2.1a18.34,18.34,0,0,0,8.2,1.6,22.54,22.54,0,0,0,6.1-.8,6.67,6.67,0,0,0,2.1-.9l.2-.1V495c0,.4-.7,1-2.2,1.6l-.9.3A17,17,0,0,1,59.5,497.6Zm-8.1-4.3v1.8c0,.2.5.8,2,1.3a18.25,18.25,0,0,0,6.1.9,20.64,20.64,0,0,0,5.2-.6l.9-.3c1.5-.5,2-1.1,2-1.3v-1.8a18.19,18.19,0,0,1-1.9.8,22.76,22.76,0,0,1-6.2.8A18.49,18.49,0,0,1,51.4,493.3Zm8.1-.3a18.46,18.46,0,0,1-6.2-.9c-1.5-.5-2.2-1.2-2.2-1.6v-2.3l.2.1a18.34,18.34,0,0,0,8.2,1.6,22,22,0,0,0,5.3-.6,8.15,8.15,0,0,0,2.5-.9c.1-.1.2-.1.3-.2l.2-.1v2.3c0,.4-.7,1-2.2,1.6h-.1A15.06,15.06,0,0,1,59.5,493Zm-8.1-4.3v1.8c0,.2.5.8,2,1.3a18.25,18.25,0,0,0,6.1.9,17.63,17.63,0,0,0,6-.9h.1c1.5-.5,2-1.1,2-1.3v-1.8a.1.1,0,0,0-.1.1,8.81,8.81,0,0,1-2.6.9,22.65,22.65,0,0,1-5.3.6A18.65,18.65,0,0,1,51.4,488.7Zm8.1-.3a18.46,18.46,0,0,1-6.2-.9c-1.5-.5-2.2-1.2-2.2-1.6s.7-1,2.2-1.6h0a19.06,19.06,0,0,1,3-.7,32.51,32.51,0,0,1,3.3-.2,19.83,19.83,0,0,1,3.5.3,15,15,0,0,1,2.7.7c1.5.5,2.2,1.2,2.2,1.6s-.5.8-1.4,1.2a6.88,6.88,0,0,1-.8.3,11.7,11.7,0,0,1-2,.5A20.24,20.24,0,0,1,59.5,488.4Zm-6.1-3.8c-1.5.5-2,1.1-2,1.3s.5.8,2,1.3a18.25,18.25,0,0,0,6.1.9,17.28,17.28,0,0,0,4.1-.4,11.7,11.7,0,0,0,2-.5,4.88,4.88,0,0,0,.7-.3c.9-.4,1.2-.8,1.2-1s-.5-.8-2-1.3a10.71,10.71,0,0,0-2.7-.6,18.84,18.84,0,0,0-3.4-.2c-1.1,0-2.2.1-3.2.2a11.54,11.54,0,0,0-2.8.6Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M56.4,560.1H51.3a5.42,5.42,0,0,0-5.5,5.5v.8H39.2a5.78,5.78,0,0,0-1.6-4.6,6.19,6.19,0,0,0-4.7-1.7v-6.6H45c1.6,0,3.5,0,5.3-.1a13.08,13.08,0,0,0,11.3-15.8c-1.3-5.9-5.8-9.7-12-10.1-.3,0-.3,0-.4-.3a18.89,18.89,0,0,0-20.5-12.3,18.8,18.8,0,0,0-15.6,12.4c-.1.3-.1.3-.3.3a11,11,0,0,0-1.8.2,12.55,12.55,0,0,0-8.2,5.1,13.16,13.16,0,0,0,11,20.7H29.4v6.6a5.79,5.79,0,0,0-4.7,1.6,5.57,5.57,0,0,0-1.6,4.6H16.5v-.7a5.48,5.48,0,0,0-5.5-5.5H5.9a5.48,5.48,0,0,0-5.5,5.5v5.1a5.42,5.42,0,0,0,5.5,5.5h5a5.4,5.4,0,0,0,5.4-4.5,8.08,8.08,0,0,0,.1-1.6V570H23v.8a5.6,5.6,0,0,0,5.5,5.4h5.2a5.47,5.47,0,0,0,5.4-4.5,7.57,7.57,0,0,0,.1-1.5V570h6.6v.8a5.48,5.48,0,0,0,5.5,5.5h5a5.42,5.42,0,0,0,5.5-5.5h0v-5.1A5.42,5.42,0,0,0,56.4,560.1Zm2,7.2v3.2a2.1,2.1,0,0,1-2.2,2.2h-5a2,2,0,0,1-2.1-2v-5.1a2.11,2.11,0,0,1,2.1-2.1h5.1a2,2,0,0,1,2.1,2.1Zm-29.8,5.4a2,2,0,0,1-2.1-2.2v-5a1.94,1.94,0,0,1,2.1-2.1h5a1.94,1.94,0,0,1,2.1,2.1v5.1a2,2,0,0,1-2.1,2C31.9,572.7,30.2,572.7,28.6,572.7ZM31,550H13.5a9.6,9.6,0,0,1-8.1-4.1,9.35,9.35,0,0,1-.9-9.4,9.43,9.43,0,0,1,7.7-5.6,5.74,5.74,0,0,1,1.2-.1h.2c1.3,0,1.8-.3,2.2-1.5a15.17,15.17,0,0,1,6.7-8.6,15.58,15.58,0,0,1,13.9-1.5,16.11,16.11,0,0,1,9.8,10.1c.4,1.3.8,1.6,2.2,1.6a9.73,9.73,0,0,1,10,9.5,9.19,9.19,0,0,1-2.7,6.8,9.76,9.76,0,0,1-7,3H36.2ZM9.4,572.7H6a2.1,2.1,0,0,1-2.2-2.2v-4.8a2.07,2.07,0,0,1,2.1-2.2h4.9a2,2,0,0,1,2.1,2.2v4.8a2,2,0,0,1-2.2,2.2Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M27.4,42.8l-3.9,3.9L.3,23.6l2.9-2.9a1.52,1.52,0,0,1,2,0Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M33.5,23.9l-3.9,3.9-9.4-9.4a1.52,1.52,0,0,1,0-2l1.9-1.9a1.52,1.52,0,0,1,2,0Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M21,23.5l-2.9,2.9a1.52,1.52,0,0,1-2,0l-1.9-1.9a1.52,1.52,0,0,1,0-2l1.9-1.9a1.52,1.52,0,0,1,2,0Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M46.3,23.9l-2.9,2.9a1.52,1.52,0,0,1-2,0L19.2,4.6,23.1.7Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M23.5,46.7l-3.9-3.9L35,27.4a1.52,1.52,0,0,1,2,0l2.9,2.9Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M22.5,32.9l-2-1.9a1.52,1.52,0,0,1,0-2l9-9,3.9,3.9-9,9A1.23,1.23,0,0,1,22.5,32.9Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M9.6,20.1,6.7,17.2,23.1.7,27,4.6,11.6,20.1A1.52,1.52,0,0,1,9.6,20.1Z" transform="translate(0 -0.7)"/><polygon class="cls-1" points="60.8 12.7 62 15.8 66.6 14.5 66.6 35.4 70.4 35.4 70.4 10.5 67.8 10.5 60.8 12.7"/><path class="cls-1" d="M86.5,10.9c-6.7,0-11.7,5.5-11.7,12.8v.1c0,7.4,4.9,12.7,11.7,12.7S98.2,31,98.2,23.7v-.1C98.2,16.3,93.3,10.9,86.5,10.9ZM78.7,23.6c0-4.5,2.7-9.3,7.7-9.3s7.8,4.8,7.8,9.3v.1c0,4.5-2.7,9.3-7.7,9.3s-7.8-4.7-7.8-9.4Z" transform="translate(0 -0.7)"/><polygon class="cls-1" points="128.4 29.3 121.5 10.6 121.5 10.6 118.7 10.6 111.7 29.3 104.3 10.7 104.3 10.6 100 10.6 110.2 35.5 110.2 35.6 113.1 35.6 120 17.4 126.9 35.5 126.9 35.6 129.8 35.6 140 10.6 135.9 10.6 128.4 29.3"/><polygon class="cls-1" points="147.1 24.6 162 24.6 162 21.2 147.1 21.2 147.1 14.1 163.7 14.1 163.7 10.6 143.3 10.6 143.3 35.4 163.8 35.4 163.8 31.9 147.1 31.9 147.1 24.6"/><path class="cls-1" d="M186.3,23.2a6,6,0,0,0,2.8-5.2v-.1a5.5,5.5,0,0,0-2-4.3,11.1,11.1,0,0,0-7.4-2.3H168V36.1h12.3c6.2,0,10.2-2.8,10.2-7.2v-.1C190.6,27.1,189.8,24.7,186.3,23.2Zm.4,5.6h0c0,2.4-2.4,3.8-6.3,3.8h-8.5V25.3h7.8C182.4,25.3,186.7,25.8,186.7,28.8Zm-1.4-10.7c0,2.8-3,3.8-5.7,3.8H172V14.8h7.8c3.4,0,5.5,1.2,5.5,3.3Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M63.3,622.2a6.9,6.9,0,0,0-3.5-5.9,10.79,10.79,0,0,0-6.5-8.2h.6a21.5,21.5,0,1,0-43-.3c-3.5,1.5-6.5,4.7-7.1,8.5a6.58,6.58,0,0,0-3.5,5.9,6.77,6.77,0,0,0,3.5,5.9,11,11,0,0,0,10.9,9.1,2.58,2.58,0,0,0,2.6-2.6v-25a2.58,2.58,0,0,0-2.6-2.6h-.3a18,18,0,0,1,36,.3H48.9a2.58,2.58,0,0,0-2.6,2.6v24.7a2.58,2.58,0,0,0,2.6,2.6,6.61,6.61,0,0,0,2.4-.3v5.9a6.38,6.38,0,0,1-5.9,6.2H39.2a5.55,5.55,0,0,0-10.9,1.5,5.79,5.79,0,0,0,5.6,5.6,5.49,5.49,0,0,0,5.3-4.1h6.1a9.6,9.6,0,0,0,9.1-9.4v-7.4a12.13,12.13,0,0,0,5.3-7.7C62.1,626.9,63.3,624.5,63.3,622.2Z" transform="translate(0 -0.7)"/><circle class="cls-1" cx="23.59" cy="70.7" r="4.24"/><path class="cls-1" d="M34.32,101.8H3.56v-8l7.1-6.53,4.32-4,1.34,1.08,1.84,1.49c.83.67,3.06,2.51,8.8,7.3L29.2,95,31.45,93,36,89.1l3-2.57,9.39-8.12.17.14,1.75,1.51,1.07.92,1,.85.91.78,4.35,3.75L61,89.28h0a25.74,25.74,0,0,1,4.58,5.28q0-1.73.07-3.47.27-15.35,0-30.3a4.72,4.72,0,0,0-1.53-3,4.66,4.66,0,0,0-2.57-1.13H4.1A4.1,4.1,0,0,0,0,60.8v41a4.1,4.1,0,0,0,4.1,4.1H34.79a15.3,15.3,0,0,1-.48-3.8C34.31,102,34.32,101.9,34.32,101.8ZM3.56,60.8H61q0,12.34,0,24.68l-3.37-2.9-4.35-3.75-4.71-4.06-.17-.14L39,82.73l-9.77,8.45h0L18.26,82.09,15,79.44,8.59,85.36,3.56,90Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M66.25,102.8H62.58a11.83,11.83,0,0,1-.63,3.11h3.87a14.93,14.93,0,0,0,.49-3.11Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M49.73,100a2.45,2.45,0,0,0-1.24,1.84,2.42,2.42,0,0,0,0,.29,2.45,2.45,0,0,0,4.63,1.12h0l.78-1.41,3.7-6.67L49.72,100Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M51.34,86.61v3.73A10.57,10.57,0,0,1,58.08,93l2.73-2.63A15.59,15.59,0,0,0,51.34,86.61Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M49.48,90.33V86.61a15.44,15.44,0,0,0-14.4,15.21c0,.1,0,.19,0,.29a15.3,15.3,0,0,0,.48,3.8h3.89a11.42,11.42,0,0,1-.66-3.82c0-.09,0-.18,0-.27A12.05,12.05,0,0,1,49.48,90.33Z" transform="translate(0 -0.7)"/><path class="cls-1" d="M66.29,100.94a15,15,0,0,0-4-9.26l-.6.6-2,2a11.91,11.91,0,0,1,2,3.31,11.71,11.71,0,0,1,.83,3.33Z" transform="translate(0 -0.7)"/></svg>
|
wd/assets/img/how_it_works.png
ADDED
Binary file
|
wd/assets/img/mwd_main_plugin.png
DELETED
Binary file
|
wd/assets/img/plugins/business_elite.png
DELETED
Binary file
|
wd/assets/img/plugins/business_world.png
DELETED
Binary file
|
wd/assets/img/plugins/event-calendar-wd.png
DELETED
Binary file
|
wd/assets/img/plugins/form-maker.png
DELETED
Binary file
|
wd/assets/img/plugins/photo-gallery.png
DELETED
Binary file
|
wd/assets/img/plugins/portfolio_gallery.png
DELETED
Binary file
|
wd/assets/img/plugins/sauron.png
DELETED
Binary file
|
wd/assets/img/plugins/slider-wd.png
DELETED
Binary file
|
wd/assets/img/plugins/spider-event-calendar.png
DELETED
Binary file
|
wd/assets/img/plugins/wd-google-maps.png
DELETED
Binary file
|
wd/assets/img/plugins/wd-instagram-feed.png
DELETED
Binary file
|
wd/assets/img/slide-1366.jpg
ADDED
Binary file
|
wd/assets/img/sub_1.png
DELETED
Binary file
|
wd/assets/img/sub_2.png
DELETED
Binary file
|
wd/assets/img/sub_4.png
DELETED
Binary file
|
wd/assets/img/twd_main_plugin.png
DELETED
Binary file
|
wd/assets/img/wd_ads_main_plugin.png
DELETED
Binary file
|
wd/assets/img/wde_main_plugin.png
DELETED
Binary file
|
wd/assets/img/wdi_main_plugin.png
DELETED
Binary file
|
wd/assets/img/wdps_main_plugin.png
DELETED
Binary file
|
wd/assets/img/wds_main_plugin.png
DELETED
Binary file
|
wd/assets/img/wp_logo.png
DELETED
Binary file
|
wd/assets/img/ytwd_main_plugin.png
DELETED
Binary file
|
wd/assets/js/overview.js
CHANGED
@@ -1,56 +1,16 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
////////////////////////////////////////////////////////////////////////////////////////
|
5 |
-
// Constants //
|
6 |
-
////////////////////////////////////////////////////////////////////////////////////////
|
7 |
-
////////////////////////////////////////////////////////////////////////////////////////
|
8 |
-
// Variables //
|
9 |
-
////////////////////////////////////////////////////////////////////////////////////////
|
10 |
-
////////////////////////////////////////////////////////////////////////////////////////
|
11 |
-
// Constructor & Destructor //
|
12 |
-
////////////////////////////////////////////////////////////////////////////////////////
|
13 |
jQuery(document).ready(function () {
|
14 |
-
|
15 |
-
jQuery(".overview_tabs li a:not(.not_tab)").on("click", function(){
|
16 |
-
jQuery(".overview_tabs li a").removeClass("overview_tab_active");
|
17 |
-
jQuery(this).addClass("overview_tab_active");
|
18 |
-
jQuery(".overview_content > div").hide();
|
19 |
-
var id = jQuery(this).attr("href");
|
20 |
-
jQuery(id).show();
|
21 |
-
return false;
|
22 |
-
});
|
23 |
-
|
24 |
-
// rating
|
25 |
-
// jQuery(".rating").each(function(){
|
26 |
-
// var rate = jQuery(this).attr("data-rating");
|
27 |
-
// jQuery("<span class='stars-container'>")
|
28 |
-
// .addClass("stars-" + rate.toString())
|
29 |
-
// .text("★★★★★")
|
30 |
-
// .appendTo(jQuery(this));
|
31 |
-
// jQuery("body").append('<style>.stars-' + rate.toString() + ':after{width:' + rate + '%;}</style>');
|
32 |
-
// });
|
33 |
-
|
34 |
-
jQuery("#wd-copy").on("click", function(){
|
35 |
-
var selector = document.querySelector('#wd-site-deatils-textarea');
|
36 |
-
selector.select();
|
37 |
-
document.execCommand('copy');
|
38 |
-
|
39 |
-
return false;
|
40 |
-
|
41 |
-
});
|
42 |
-
|
43 |
});
|
44 |
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
////////////////////////////////////////////////////////////////////////////////////////
|
55 |
-
// Listeners //
|
56 |
-
////////////////////////////////////////////////////////////////////////////////////////
|
1 |
+
jQuery(window).resize(function () {
|
2 |
+
tenWebOverviewResize();
|
3 |
+
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
jQuery(document).ready(function () {
|
5 |
+
tenWebOverviewResize();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
});
|
7 |
|
8 |
+
function tenWebOverviewResize(){
|
9 |
+
if(jQuery(".tenweb_header_right").length){
|
10 |
+
if (matchMedia('only screen and (max-width: 840px)').matches) {
|
11 |
+
jQuery(".tenweb_header_right").after(jQuery(".tenweb_header_right .header_text"));
|
12 |
+
} else{
|
13 |
+
jQuery(".tenweb_header_right .button").before(jQuery(".tenweb_overview .inline-block.header_text"));
|
14 |
+
}
|
15 |
+
}
|
16 |
+
}
|
|
|
|
|
|
wd/assets/js/subsribe.js
CHANGED
@@ -12,13 +12,14 @@
|
|
12 |
////////////////////////////////////////////////////////////////////////////////////////
|
13 |
jQuery(document).on("ready", function () {
|
14 |
jQuery(".permissions").on("click", function(){
|
15 |
-
jQuery(
|
|
|
16 |
return false;
|
17 |
});
|
18 |
|
19 |
jQuery(".allow_and_continue").on("click", function(){
|
20 |
jQuery(this).css("opacity", "0.5");
|
21 |
-
jQuery(".wd_loader").css("
|
22 |
});
|
23 |
});
|
24 |
|
12 |
////////////////////////////////////////////////////////////////////////////////////////
|
13 |
jQuery(document).on("ready", function () {
|
14 |
jQuery(".permissions").on("click", function(){
|
15 |
+
jQuery(this).toggleClass("active") ;
|
16 |
+
jQuery(".list").slideToggle("fast");
|
17 |
return false;
|
18 |
});
|
19 |
|
20 |
jQuery(".allow_and_continue").on("click", function(){
|
21 |
jQuery(this).css("opacity", "0.5");
|
22 |
+
jQuery(".wd_loader").css("display", "inline-block");
|
23 |
});
|
24 |
});
|
25 |
|
wd/config.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
-
class
|
7 |
public static $instance;
|
8 |
|
9 |
public $prefix = null;
|
@@ -14,8 +14,6 @@
|
|
14 |
public $plugin_main_file = null;
|
15 |
public $description = null;
|
16 |
public $plugin_features = null;
|
17 |
-
public $user_guide = null;
|
18 |
-
public $overview_welcome_image = null;
|
19 |
public $video_youtube_id = null;
|
20 |
public $plugin_wd_url = null;
|
21 |
public $plugin_wd_demo_link = null;
|
@@ -36,6 +34,7 @@
|
|
36 |
public $custom_post = null;
|
37 |
public $menu_capability = null;
|
38 |
public $menu_position = null;
|
|
|
39 |
|
40 |
public function set_options( $options ){
|
41 |
|
@@ -64,23 +63,20 @@
|
|
64 |
if(isset( $options["plugin_features"] )) {
|
65 |
$this->plugin_features = $options["plugin_features"];
|
66 |
}
|
67 |
-
if(isset( $options["user_guide"] )) {
|
68 |
-
$this->user_guide = $options["user_guide"];
|
69 |
-
}
|
70 |
if(isset( $options["video_youtube_id"] )) {
|
71 |
$this->video_youtube_id = $options["video_youtube_id"];
|
72 |
}
|
73 |
-
if(isset( $options["overview_welcome_image"] )) {
|
74 |
-
$this->overview_welcome_image = $options["overview_welcome_image"];
|
75 |
-
}
|
76 |
if(isset( $options["plugin_wd_url"] )) {
|
77 |
$this->plugin_wd_url = $options["plugin_wd_url"];
|
78 |
}
|
79 |
if(isset( $options["plugin_wd_demo_link"] )) {
|
80 |
$this->plugin_wd_demo_link = $options["plugin_wd_demo_link"];
|
81 |
-
}
|
|
|
|
|
|
|
82 |
if(isset( $options["plugin_wd_addons_link"] )) {
|
83 |
-
$this->
|
84 |
}
|
85 |
if(isset( $options["plugin_wizard_link"] )) {
|
86 |
$this->plugin_wizard_link = $options["plugin_wizard_link"];
|
@@ -108,8 +104,10 @@
|
|
108 |
}
|
109 |
if(isset( $options["menu_position"] )) {
|
110 |
$this->menu_position = $options["menu_position"];
|
111 |
-
}
|
112 |
-
|
|
|
|
|
113 |
// directories
|
114 |
$this->wd_dir = dirname( $this->plugin_main_file ) . '/wd';
|
115 |
$this->wd_dir_includes = $this->wd_dir . '/includes';
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
+
class TenWebConfig {
|
7 |
public static $instance;
|
8 |
|
9 |
public $prefix = null;
|
14 |
public $plugin_main_file = null;
|
15 |
public $description = null;
|
16 |
public $plugin_features = null;
|
|
|
|
|
17 |
public $video_youtube_id = null;
|
18 |
public $plugin_wd_url = null;
|
19 |
public $plugin_wd_demo_link = null;
|
34 |
public $custom_post = null;
|
35 |
public $menu_capability = null;
|
36 |
public $menu_position = null;
|
37 |
+
public $overview_welcome_image = null;
|
38 |
|
39 |
public function set_options( $options ){
|
40 |
|
63 |
if(isset( $options["plugin_features"] )) {
|
64 |
$this->plugin_features = $options["plugin_features"];
|
65 |
}
|
|
|
|
|
|
|
66 |
if(isset( $options["video_youtube_id"] )) {
|
67 |
$this->video_youtube_id = $options["video_youtube_id"];
|
68 |
}
|
|
|
|
|
|
|
69 |
if(isset( $options["plugin_wd_url"] )) {
|
70 |
$this->plugin_wd_url = $options["plugin_wd_url"];
|
71 |
}
|
72 |
if(isset( $options["plugin_wd_demo_link"] )) {
|
73 |
$this->plugin_wd_demo_link = $options["plugin_wd_demo_link"];
|
74 |
+
}
|
75 |
+
if(isset( $options["plugin_wd_docs_link"] )) {
|
76 |
+
$this->plugin_wd_demo_link = $options["plugin_wd_demo_link"];
|
77 |
+
}
|
78 |
if(isset( $options["plugin_wd_addons_link"] )) {
|
79 |
+
$this->plugin_wd_docs_link = $options["plugin_wd_docs_link"];
|
80 |
}
|
81 |
if(isset( $options["plugin_wizard_link"] )) {
|
82 |
$this->plugin_wizard_link = $options["plugin_wizard_link"];
|
104 |
}
|
105 |
if(isset( $options["menu_position"] )) {
|
106 |
$this->menu_position = $options["menu_position"];
|
107 |
+
}
|
108 |
+
if(isset( $options["overview_welcome_image"] )) {
|
109 |
+
$this->overview_welcome_image = $options["overview_welcome_image"];
|
110 |
+
}
|
111 |
// directories
|
112 |
$this->wd_dir = dirname( $this->plugin_main_file ) . '/wd';
|
113 |
$this->wd_dir_includes = $this->wd_dir . '/includes';
|
wd/includes/api.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
-
class
|
7 |
////////////////////////////////////////////////////////////////////////////////////////
|
8 |
// Events //
|
9 |
////////////////////////////////////////////////////////////////////////////////////////
|
@@ -31,7 +31,7 @@
|
|
31 |
|
32 |
|
33 |
public function get_remote_data( $id ) {
|
34 |
-
$remote_data_path =
|
35 |
$request = wp_remote_get( ( str_replace( '_id_', $id, $remote_data_path ) ) );
|
36 |
|
37 |
if ( !is_wp_error($request) || wp_remote_retrieve_response_code($request) === 200 ) {
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
+
class TenWebApi{
|
7 |
////////////////////////////////////////////////////////////////////////////////////////
|
8 |
// Events //
|
9 |
////////////////////////////////////////////////////////////////////////////////////////
|
31 |
|
32 |
|
33 |
public function get_remote_data( $id ) {
|
34 |
+
$remote_data_path = TEN_WEB_API_PLUGIN_DATA_PATH . '/' . $this->userhash;
|
35 |
$request = wp_remote_get( ( str_replace( '_id_', $id, $remote_data_path ) ) );
|
36 |
|
37 |
if ( !is_wp_error($request) || wp_remote_retrieve_response_code($request) === 200 ) {
|
wd/includes/deactivate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
-
class
|
7 |
////////////////////////////////////////////////////////////////////////////////////////
|
8 |
// Events //
|
9 |
////////////////////////////////////////////////////////////////////////////////////////
|
@@ -112,14 +112,14 @@
|
|
112 |
if( isset( $_POST[$wd_options->prefix . "_submit_and_deactivate"] ) ){
|
113 |
|
114 |
if( $_POST[$wd_options->prefix . "_submit_and_deactivate"] == 2 || $_POST[$wd_options->prefix . "_submit_and_deactivate"] == 3 ){
|
115 |
-
$api = new
|
116 |
$hash = $api->get_hash();
|
117 |
if($hash != null){
|
118 |
$data = array();
|
119 |
|
120 |
$data["reason"] = isset($_POST[$wd_options->prefix . "_reasons"]) ? $_POST[$wd_options->prefix . "_reasons"] : "";
|
121 |
$data["site_url"] = site_url();
|
122 |
-
$data["plugin_id"] =
|
123 |
|
124 |
$data["additional_details"] = isset($_POST[$wd_options->prefix . "_additional_details"]) ? $_POST[$wd_options->prefix . "_additional_details"] : "";
|
125 |
$admin_data = wp_get_current_user();
|
@@ -129,6 +129,7 @@
|
|
129 |
|
130 |
$data["name"] = $user_first_name || $user_last_name ? $user_first_name . " " . $user_last_name : $admin_data->data->user_login;
|
131 |
$data["hash"] = $hash;
|
|
|
132 |
$response = wp_remote_post( "https://api.web-dorado.com/deactivatereasons", array(
|
133 |
'method' => 'POST',
|
134 |
'timeout' => 45,
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
+
class TenWebDeactivate{
|
7 |
////////////////////////////////////////////////////////////////////////////////////////
|
8 |
// Events //
|
9 |
////////////////////////////////////////////////////////////////////////////////////////
|
112 |
if( isset( $_POST[$wd_options->prefix . "_submit_and_deactivate"] ) ){
|
113 |
|
114 |
if( $_POST[$wd_options->prefix . "_submit_and_deactivate"] == 2 || $_POST[$wd_options->prefix . "_submit_and_deactivate"] == 3 ){
|
115 |
+
$api = new TenWebApi( $wd_options );
|
116 |
$hash = $api->get_hash();
|
117 |
if($hash != null){
|
118 |
$data = array();
|
119 |
|
120 |
$data["reason"] = isset($_POST[$wd_options->prefix . "_reasons"]) ? $_POST[$wd_options->prefix . "_reasons"] : "";
|
121 |
$data["site_url"] = site_url();
|
122 |
+
$data["plugin_id"] = 69;
|
123 |
|
124 |
$data["additional_details"] = isset($_POST[$wd_options->prefix . "_additional_details"]) ? $_POST[$wd_options->prefix . "_additional_details"] : "";
|
125 |
$admin_data = wp_get_current_user();
|
129 |
|
130 |
$data["name"] = $user_first_name || $user_last_name ? $user_first_name . " " . $user_last_name : $admin_data->data->user_login;
|
131 |
$data["hash"] = $hash;
|
132 |
+
|
133 |
$response = wp_remote_post( "https://api.web-dorado.com/deactivatereasons", array(
|
134 |
'method' => 'POST',
|
135 |
'timeout' => 45,
|
wd/includes/notices.php
CHANGED
@@ -3,7 +3,7 @@ if ( !defined( 'ABSPATH' ) ) {
|
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
-
class
|
7 |
|
8 |
protected $promo_link = '';
|
9 |
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
+
class TenWebNotices {
|
7 |
|
8 |
protected $promo_link = '';
|
9 |
|
wd/includes/overview.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
-
class
|
7 |
////////////////////////////////////////////////////////////////////////////////////////
|
8 |
// Events //
|
9 |
////////////////////////////////////////////////////////////////////////////////////////
|
@@ -14,50 +14,19 @@
|
|
14 |
// Variables //
|
15 |
////////////////////////////////////////////////////////////////////////////////////////
|
16 |
public $config ;
|
17 |
-
private $tabs = array();
|
18 |
|
19 |
////////////////////////////////////////////////////////////////////////////////////////
|
20 |
// Constructor & Destructor //
|
21 |
////////////////////////////////////////////////////////////////////////////////////////
|
22 |
public function __construct( $config = array() ) {
|
23 |
$this->config = $config;
|
24 |
-
$wd_options = $this->config;
|
25 |
-
$this->tabs = array(
|
26 |
-
'welcome' => array(
|
27 |
-
'name' => __( "Welcome", $wd_options->prefix ),
|
28 |
-
'view' => array( $this, 'wd_overview_welcome' )
|
29 |
-
),
|
30 |
-
'user_guide' => array(
|
31 |
-
'name' => __( "User Guide", $wd_options->prefix ),
|
32 |
-
'view' => array( $this, 'wd_overview_user_guide' )
|
33 |
-
),
|
34 |
-
'deals' => array(
|
35 |
-
'name' => __( 'Deals', $wd_options->prefix ),
|
36 |
-
'view' => array( $this, 'wd_overview_deals' )
|
37 |
-
),
|
38 |
-
'support' => array(
|
39 |
-
'name' => __( "Support", $wd_options->prefix ),
|
40 |
-
'view' => array( $this, 'wd_overview_support' )
|
41 |
-
),
|
42 |
-
'https://web-dorado.com/support/submit-your-idea.html' => array(
|
43 |
-
'name' => __( "Submit Your Idea", $wd_options->prefix ),
|
44 |
-
'view' => false
|
45 |
-
),
|
46 |
-
'https://wordpress.org/support/plugin/' . $wd_options->plugin_wordpress_slug => array(
|
47 |
-
'name' => __( "Forum", $wd_options->prefix ),
|
48 |
-
'view' => false
|
49 |
-
)
|
50 |
-
);
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
}
|
55 |
////////////////////////////////////////////////////////////////////////////////////////
|
56 |
// Public Methods //
|
57 |
////////////////////////////////////////////////////////////////////////////////////////
|
58 |
public function display_overview_page(){
|
59 |
$wd_options = $this->config;
|
60 |
-
$tabs = $this->tabs;
|
61 |
$start_using_url = "";
|
62 |
if(!empty($this->config->custom_post)) {
|
63 |
if (strpos($this->config->custom_post, 'post_type', 0) !== false) {
|
@@ -68,204 +37,7 @@
|
|
68 |
}
|
69 |
require_once( $wd_options->wd_dir_templates . "/display_overview.php" );
|
70 |
}
|
71 |
-
|
72 |
-
$wd_options = $this->config;
|
73 |
-
//http://api.wordpress.org/plugins/info/1.0/wd-google-maps
|
74 |
-
require_once( $wd_options->wd_dir_templates . "/display_overview_welcome.php" );
|
75 |
-
}
|
76 |
-
public function wd_overview_user_guide(){
|
77 |
-
$wd_options = $this->config;
|
78 |
-
$user_guide = $wd_options->user_guide;
|
79 |
-
require_once( $wd_options->wd_dir_templates . "/display_overview_user_guide.php" );
|
80 |
-
}
|
81 |
-
public function wd_overview_deals(){
|
82 |
-
|
83 |
-
$wd_options = $this->config;
|
84 |
-
$plugins = array(
|
85 |
-
"form-maker" => array(
|
86 |
-
'title' => 'Form Maker',
|
87 |
-
'text' => __( 'Wordpress form builder plugin', $wd_options->prefix ),
|
88 |
-
'content' => __( 'Form Maker is a modern and advanced tool for creating WordPress forms easily and fast.', $wd_options->prefix ),
|
89 |
-
'href' => 'https://web-dorado.com/products/wordpress-form.html'
|
90 |
-
),
|
91 |
-
"photo-gallery" => array(
|
92 |
-
'title' => 'Photo Gallery',
|
93 |
-
'text' => __( 'WordPress Photo Gallery plugin', $wd_options->prefix ),
|
94 |
-
'content' => __( 'Photo Gallery is a fully responsive WordPress Gallery plugin with advanced functionality.', $wd_options->prefix ),
|
95 |
-
'href' => 'https://web-dorado.com/products/wordpress-photo-gallery-plugin.html'
|
96 |
-
),
|
97 |
-
"event-calendar-wd" => array(
|
98 |
-
'title' => 'Event Calendar WD',
|
99 |
-
'text' => __( 'WordPress calendar plugin', $wd_options->prefix ),
|
100 |
-
'content' => __( 'Organize and publish your events in an easy and elegant way using Event Calendar WD.', $wd_options->prefix ),
|
101 |
-
'href' => 'https://web-dorado.com/products/wordpress-event-calendar-wd.html'
|
102 |
-
),
|
103 |
-
"wd-google-maps" => array(
|
104 |
-
'title' => 'WD Google Maps',
|
105 |
-
'text' => __( 'WD Google Maps plugin', $wd_options->prefix ),
|
106 |
-
'content' => __( 'Google Maps WD is an intuitive tool for creating Google maps with advanced markers, custom layers and overlays for your website.', $wd_options->prefix ),
|
107 |
-
'href' => 'https://web-dorado.com/products/wordpress-google-maps-plugin.html'
|
108 |
-
),
|
109 |
-
"slider-wd" => array(
|
110 |
-
'title' => 'Slider WD',
|
111 |
-
'text' => __( 'WordPress slider plugin', $wd_options->prefix ),
|
112 |
-
'content' => __( 'Create responsive, highly configurable sliders with various effects for your WordPress site.', $wd_options->prefix ),
|
113 |
-
'href' => 'https://web-dorado.com/products/wordpress-slider-plugin.html'
|
114 |
-
),
|
115 |
-
"spider-event-calendar" => array(
|
116 |
-
'title' => 'Spider Calendar',
|
117 |
-
'text' => __( 'WordPress event calendar plugin', $wd_options->prefix ),
|
118 |
-
'content' => __( 'Spider Event Calendar is a highly configurable product which allows you to have multiple organized events.', $wd_options->prefix ),
|
119 |
-
'href' => 'https://web-dorado.com/products/wordpress-calendar.html'
|
120 |
-
),
|
121 |
-
"wd-instagram-feed" => array(
|
122 |
-
'title' => 'Instagram Feed WD',
|
123 |
-
'text' => __( 'WordPress Instagram Feed plugin', $wd_options->prefix ),
|
124 |
-
'content' => __( 'WD Instagram Feed is a user-friendly tool for displaying user or hashtag-based feeds on your website.', $wd_options->prefix ),
|
125 |
-
'href' => 'https://web-dorado.com/products/wordpress-instagram-feed-wd.html'
|
126 |
-
),
|
127 |
-
);
|
128 |
-
unset($plugins[$wd_options->plugin_wordpress_slug]) ;
|
129 |
-
|
130 |
-
// foreach ( $plugins as $wp_slug => &$plugin ){
|
131 |
-
// $wp_data = $this->
|
132 |
-
//remote_get($wp_slug);
|
133 |
-
// $plugin["downloaded"] = $wp_data["downloaded"];
|
134 |
-
// $plugin["rating"] = $wp_data["rating"];
|
135 |
-
// }
|
136 |
-
|
137 |
-
$themes = array(
|
138 |
-
"business_elite" => array(
|
139 |
-
'title' => 'Business Elite Theme',
|
140 |
-
'href' => 'https://web-dorado.com/wordpress-themes/business-elite.html'
|
141 |
-
),
|
142 |
-
"portfolio_gallery" => array(
|
143 |
-
'title' => 'Portfolio Gallery Theme',
|
144 |
-
'href' => 'https://web-dorado.com/wordpress-themes/portfolio-gallery.html'
|
145 |
-
),
|
146 |
-
"sauron" => array(
|
147 |
-
'title' => 'Sauron Theme',
|
148 |
-
'href' => 'https://web-dorado.com/wordpress-themes/sauron.html'
|
149 |
-
),
|
150 |
-
"business_world" => array(
|
151 |
-
'title' => 'Business World Theme',
|
152 |
-
'href' => 'https://web-dorado.com/wordpress-themes/business-world.html'
|
153 |
-
),
|
154 |
-
);
|
155 |
-
|
156 |
-
require_once( $wd_options->wd_dir_templates . "/display_overview_deals.php" );
|
157 |
-
}
|
158 |
-
public function wd_overview_support(){
|
159 |
-
$wd_options = $this->config;
|
160 |
-
global $wpdb;
|
161 |
-
$server_info = array();
|
162 |
-
|
163 |
-
// Get PHP Version
|
164 |
-
$server_info["Operating System"] = PHP_OS . " (" . ( PHP_INT_SIZE * 8 ) . ")";
|
165 |
-
$server_info["PHP Version"] = PHP_VERSION;
|
166 |
-
$server_info["Server"] = $_SERVER["SERVER_SOFTWARE"];
|
167 |
-
|
168 |
-
// Get MYSQL Version
|
169 |
-
$sql_version = $wpdb->get_var( "SELECT VERSION() AS version" );
|
170 |
-
$server_info["MySQL Version"] = $sql_version;
|
171 |
-
|
172 |
-
// GET SQL Mode
|
173 |
-
$mysqlinfo = $wpdb->get_results( "SHOW VARIABLES LIKE 'sql_mode'" );
|
174 |
-
if ( is_array( $mysqlinfo ) )
|
175 |
-
$sql_mode = $mysqlinfo[0]->Value;
|
176 |
-
if ( empty( $sql_mode ) )
|
177 |
-
$sql_mode = __( 'Not set', $wd_options->prefix );
|
178 |
-
$server_info["SQL Mode"] = $sql_mode;
|
179 |
-
|
180 |
-
// Get PHP allow_url_fopen
|
181 |
-
if( ini_get( 'allow_url_fopen' ) )
|
182 |
-
$allow_url_fopen = __( 'On', $wd_options->prefix );
|
183 |
-
else
|
184 |
-
$allow_url_fopen = __( 'Off', $wd_options->prefix );
|
185 |
-
$server_info["PHP Allow URL fopen"] = $allow_url_fopen;
|
186 |
-
|
187 |
-
// Get PHP Max Upload Size
|
188 |
-
if (function_exists('wp_max_upload_size'))
|
189 |
-
$upload_max = strval(round((int) wp_max_upload_size() / (1024 * 1024))) . 'M';
|
190 |
-
else if(ini_get('upload_max_filesize'))
|
191 |
-
$upload_max = ini_get('upload_max_filesize');
|
192 |
-
else
|
193 |
-
$upload_max = __('N/A', $wd_options->prefix);
|
194 |
-
|
195 |
-
$server_info["PHP Max Upload Size"] = $upload_max;
|
196 |
-
|
197 |
-
// Get PHP Output buffer Size
|
198 |
-
if( ini_get( 'pcre.backtrack_limit' ) )
|
199 |
-
$backtrack_limit = ini_get( 'pcre.backtrack_limit' );
|
200 |
-
else
|
201 |
-
$backtrack_limit = __( 'N/A', $wd_options->prefix );
|
202 |
-
$server_info["PCRE Backtracking Limit"] = $backtrack_limit;
|
203 |
-
|
204 |
-
// Get PHP Max Post Size
|
205 |
-
if( ini_get( 'post_max_size' ) )
|
206 |
-
$post_max = ini_get( 'post_max_size' );
|
207 |
-
else
|
208 |
-
$post_max = __( 'N/A', $wd_options->prefix );
|
209 |
-
$server_info["PHP Max Post Size"] = $post_max;
|
210 |
-
|
211 |
-
// Get PHP Max execution time
|
212 |
-
if( ini_get( 'max_execution_time' ) )
|
213 |
-
$max_execute = ini_get( 'max_execution_time' );
|
214 |
-
else
|
215 |
-
$max_execute = __( 'N/A', $wd_options->prefix );
|
216 |
-
$server_info["PHP Max Script Execute Time"] = $max_execute;
|
217 |
-
|
218 |
-
|
219 |
-
// Get PHP Memory Limit
|
220 |
-
if( ini_get( 'memory_limit' ) )
|
221 |
-
$memory_limit = ini_get( 'memory_limit' );
|
222 |
-
else
|
223 |
-
$memory_limit = __( 'N/A', $wd_options->prefix );
|
224 |
-
$server_info["PHP Memory Limit"] = $memory_limit;
|
225 |
-
|
226 |
-
// Get actual memory_get_usage
|
227 |
-
if ( function_exists( 'memory_get_usage' ) )
|
228 |
-
$memory_usage = round( memory_get_usage() / 1024 / 1024, 2 ) . __( ' MByte', $wd_options->prefix );
|
229 |
-
else
|
230 |
-
$memory_usage = __( 'N/A', $wd_options->prefix );
|
231 |
-
$server_info["Memory usage"] = $memory_usage;
|
232 |
-
|
233 |
-
// required for EXIF read
|
234 |
-
if ( is_callable( 'exif_read_data' ) )
|
235 |
-
$exif = __( 'Yes', $wd_options->prefix ). " (V" . substr( phpversion( 'exif' ), 0, 4 ) . ")" ;
|
236 |
-
else
|
237 |
-
$exif = __( 'No', $wd_options->prefix );
|
238 |
-
$server_info["PHP Exif support"] = $exif;
|
239 |
-
|
240 |
-
// required for meta data
|
241 |
-
if ( is_callable( 'iptcparse' ) )
|
242 |
-
$iptc = __( 'Yes', $wd_options->prefix );
|
243 |
-
else
|
244 |
-
$iptc = __( 'No', $wd_options->prefix );
|
245 |
-
$server_info["PHP IPTC support"] = $iptc;
|
246 |
-
|
247 |
-
// required for meta data
|
248 |
-
if ( is_callable( 'xml_parser_create' ) )
|
249 |
-
$xml = __( 'Yes', $wd_options->prefix );
|
250 |
-
else
|
251 |
-
$xml = __( 'No', $wd_options->prefix );
|
252 |
-
$server_info["PHP XML support"] = $xml;
|
253 |
-
|
254 |
-
$gd_info = array( "GD support" => __( 'No', $wd_options->prefix ) );
|
255 |
-
if( function_exists( "gd_info" ) ){
|
256 |
-
$gd_info = array();
|
257 |
-
foreach( gd_info() as $key => $val ){
|
258 |
-
if( is_bool($val) ){
|
259 |
-
$gd_info[$key] = $val ? __( 'Yes', $wd_options->prefix ) : __( 'No', $wd_options->prefix );
|
260 |
-
}
|
261 |
-
else{
|
262 |
-
$gd_info[$key] = $val;
|
263 |
-
}
|
264 |
-
}
|
265 |
-
}
|
266 |
-
|
267 |
-
require_once( $wd_options->wd_dir_templates . "/display_overview_support.php" );
|
268 |
-
}
|
269 |
|
270 |
public function overview_styles() {
|
271 |
$wd_options = $this->config;
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
+
class TenWebOverview{
|
7 |
////////////////////////////////////////////////////////////////////////////////////////
|
8 |
// Events //
|
9 |
////////////////////////////////////////////////////////////////////////////////////////
|
14 |
// Variables //
|
15 |
////////////////////////////////////////////////////////////////////////////////////////
|
16 |
public $config ;
|
|
|
17 |
|
18 |
////////////////////////////////////////////////////////////////////////////////////////
|
19 |
// Constructor & Destructor //
|
20 |
////////////////////////////////////////////////////////////////////////////////////////
|
21 |
public function __construct( $config = array() ) {
|
22 |
$this->config = $config;
|
23 |
+
$wd_options = $this->config;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
}
|
25 |
////////////////////////////////////////////////////////////////////////////////////////
|
26 |
// Public Methods //
|
27 |
////////////////////////////////////////////////////////////////////////////////////////
|
28 |
public function display_overview_page(){
|
29 |
$wd_options = $this->config;
|
|
|
30 |
$start_using_url = "";
|
31 |
if(!empty($this->config->custom_post)) {
|
32 |
if (strpos($this->config->custom_post, 'post_type', 0) !== false) {
|
37 |
}
|
38 |
require_once( $wd_options->wd_dir_templates . "/display_overview.php" );
|
39 |
}
|
40 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
public function overview_styles() {
|
43 |
$wd_options = $this->config;
|
wd/includes/subscribe.php
CHANGED
@@ -1,138 +1,124 @@
|
|
1 |
<?php
|
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 |
-
$wd_options = $this->config;
|
35 |
-
wp_enqueue_style( $wd_options->prefix . 'subscribe', $wd_options->wd_url_css . '/subscribe.css' );
|
36 |
-
|
37 |
-
}
|
38 |
-
|
39 |
-
public function subscribe_display_page() {
|
40 |
-
$wd_options = $this->config;
|
41 |
-
$list = array(
|
42 |
-
0 => array(
|
43 |
-
"title" => __( "Your name &", $wd_options->prefix ),
|
44 |
-
"small_text" => __( "Email address", $wd_options->prefix ),
|
45 |
-
"img" => $wd_options->wd_url_img . '/sub_1.png',
|
46 |
-
),
|
47 |
-
1 => array(
|
48 |
-
"title" => __( "Site URL", $wd_options->prefix ),
|
49 |
-
"small_text" => __( "Wordpress version", $wd_options->prefix ),
|
50 |
-
"img" => $wd_options->wd_url_img . '/sub_2.png',
|
51 |
-
),
|
52 |
-
2 => array(
|
53 |
-
"title" => __( "List of plugins", $wd_options->prefix ),
|
54 |
-
"small_text" => "",
|
55 |
-
"img" => $wd_options->wd_url_img . '/sub_4.png',
|
56 |
-
),
|
57 |
-
);
|
58 |
-
|
59 |
-
require_once ( $wd_options->wd_dir_templates . "/display_subscribe.php" );
|
60 |
-
}
|
61 |
-
public function after_subscribe(){
|
62 |
-
$wd_options = $this->config;
|
63 |
-
if( isset( $_GET[ $wd_options->prefix . "_sub_action"] ) ){
|
64 |
-
|
65 |
-
if( $_GET[$wd_options->prefix . "_sub_action"] == "allow" ){
|
66 |
-
$api = new DoradoWebApi($wd_options);
|
67 |
-
$hash = $api->get_hash();
|
68 |
-
|
69 |
-
if( $hash != null ){
|
70 |
-
$all_plugins = array();
|
71 |
-
$plugins = get_plugins();
|
72 |
-
foreach ( $plugins as $slug => $data ) {
|
73 |
-
$plugin = array(
|
74 |
-
"Name" => $data["Name"],
|
75 |
-
"PluginURI" => $data["PluginURI"],
|
76 |
-
"Author" => $data["Author"],
|
77 |
-
"AuthorURI" => $data["AuthorURI"]
|
78 |
-
);
|
79 |
-
$all_plugins[$slug] = $plugin;
|
80 |
-
}
|
81 |
-
|
82 |
-
$data = array();
|
83 |
-
$data["site_url"] = site_url();
|
84 |
-
|
85 |
-
$admin_data = wp_get_current_user();
|
86 |
-
|
87 |
-
$user_first_name = get_user_meta( $admin_data->ID, "first_name", true );
|
88 |
-
$user_last_name = get_user_meta( $admin_data->ID, "last_name", true );
|
89 |
-
|
90 |
-
$data["name"] = $user_first_name || $user_last_name ? $user_first_name . " " . $user_last_name : $admin_data->data->user_login;
|
91 |
-
|
92 |
-
$data["email"] = $admin_data->data->user_email;
|
93 |
-
$data["wp_version"] = get_bloginfo( 'version' );
|
94 |
-
$data["plugin_id"] = $wd_options->wd_plugin_id;
|
95 |
-
$data["hash"] = $hash;
|
96 |
-
$data["all_plugins"] = $all_plugins;
|
97 |
-
|
98 |
-
|
99 |
-
$response = wp_remote_post( "https://api.web-dorado.com/collectuserdata", array(
|
100 |
-
'method' => 'POST',
|
101 |
-
'timeout' => 45,
|
102 |
-
'redirection' => 5,
|
103 |
-
'httpversion' => '1.0',
|
104 |
-
'blocking' => true,
|
105 |
-
'headers' => array(),
|
106 |
-
'body' => json_encode($data),
|
107 |
-
'cookies' => array()
|
108 |
-
)
|
109 |
-
);
|
110 |
-
|
111 |
-
$response_body = (!is_wp_error($response) && isset( $response["body"] )) ? json_decode( $response["body"], true ) : null;
|
112 |
-
|
113 |
-
if( is_array( $response_body ) && $response_body["body"]["msg"] == "Access" ) {
|
114 |
-
|
115 |
-
}
|
116 |
-
}
|
117 |
-
}
|
118 |
-
if ( get_option( $wd_options->prefix . "_subscribe_done" ) != 1 ) {
|
119 |
-
update_option( $wd_options->prefix . "_subscribe_done", 1 );
|
120 |
-
}
|
121 |
-
else {
|
122 |
-
add_option( $wd_options->prefix . "_subscribe_done" , "1", '', 'no');
|
123 |
-
}
|
124 |
-
|
125 |
-
wp_safe_redirect( $wd_options->after_subscribe );
|
126 |
-
}
|
127 |
-
|
128 |
-
}
|
129 |
-
// //////////////////////////////////////////////////////////////////////////////////////
|
130 |
-
// Getters & Setters //
|
131 |
-
// //////////////////////////////////////////////////////////////////////////////////////
|
132 |
-
// //////////////////////////////////////////////////////////////////////////////////////
|
133 |
-
// Private Methods //
|
134 |
-
// //////////////////////////////////////////////////////////////////////////////////////
|
135 |
-
// //////////////////////////////////////////////////////////////////////////////////////
|
136 |
-
// Listeners //
|
137 |
-
// //////////////////////////////////////////////////////////////////////////////////////
|
138 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
+
if (!defined('ABSPATH')) {
|
3 |
+
exit;
|
4 |
+
}
|
5 |
+
|
6 |
+
class TenWebSubscribe
|
7 |
+
{
|
8 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
9 |
+
// Events //
|
10 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
11 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
12 |
+
// Constants //
|
13 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
14 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
15 |
+
// Variables //
|
16 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
17 |
+
public $config;
|
18 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
19 |
+
// Constructor & Destructor //
|
20 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
21 |
+
public function __construct($config = array())
|
22 |
+
{
|
23 |
+
$this->config = $config;
|
24 |
+
add_action('admin_init', array($this, 'after_subscribe'));
|
25 |
+
}
|
26 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
27 |
+
// Public Methods //
|
28 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
29 |
+
|
30 |
+
public function subscribe_scripts()
|
31 |
+
{
|
32 |
+
$wd_options = $this->config;
|
33 |
+
wp_register_script('subscribe_js', $wd_options->wd_url_js . '/subsribe.js');
|
34 |
+
wp_enqueue_script('subscribe_js');
|
35 |
+
|
36 |
+
}
|
37 |
+
|
38 |
+
public function subscribe_styles()
|
39 |
+
{
|
40 |
+
$wd_options = $this->config;
|
41 |
+
wp_enqueue_style($wd_options->prefix . 'subscribe', $wd_options->wd_url_css . '/subscribe.css');
|
42 |
+
|
43 |
+
}
|
44 |
+
|
45 |
+
public function subscribe_display_page()
|
46 |
+
{
|
47 |
+
$wd_options = $this->config;
|
48 |
+
require_once($wd_options->wd_dir_templates . "/display_subscribe.php");
|
49 |
}
|
50 |
+
|
51 |
+
public function after_subscribe()
|
52 |
+
{
|
53 |
+
$wd_options = $this->config;
|
54 |
+
if (isset($_GET[$wd_options->prefix . "_sub_action"])) {
|
55 |
+
|
56 |
+
if ($_GET[$wd_options->prefix . "_sub_action"] == "allow") {
|
57 |
+
//$api = new TenWebApi($wd_options);
|
58 |
+
$all_plugins = array();
|
59 |
+
$plugins = get_plugins();
|
60 |
+
foreach ($plugins as $slug => $data) {
|
61 |
+
$plugin = array(
|
62 |
+
"Name" => $data["Name"],
|
63 |
+
"PluginURI" => $data["PluginURI"],
|
64 |
+
"Author" => $data["Author"],
|
65 |
+
"AuthorURI" => $data["AuthorURI"]
|
66 |
+
);
|
67 |
+
$all_plugins[$slug] = $plugin;
|
68 |
+
}
|
69 |
+
|
70 |
+
$data = array();
|
71 |
+
$data["wp_site_url"] = site_url();
|
72 |
+
|
73 |
+
$admin_data = wp_get_current_user();
|
74 |
+
|
75 |
+
$user_first_name = get_user_meta($admin_data->ID, "first_name", true);
|
76 |
+
$user_last_name = get_user_meta($admin_data->ID, "last_name", true);
|
77 |
+
|
78 |
+
$data["name"] = $user_first_name || $user_last_name ? $user_first_name . " " . $user_last_name : $admin_data->data->user_login;
|
79 |
+
|
80 |
+
$data["email"] = $admin_data->data->user_email;
|
81 |
+
$data["wp_version"] = get_bloginfo('version');
|
82 |
+
$data["product_id"] = $wd_options->wd_plugin_id;
|
83 |
+
$data["all_plugins"] = json_encode($all_plugins);
|
84 |
+
|
85 |
+
|
86 |
+
$response = wp_remote_post(TEN_WEB_SUBSCRIBE_URL, array(
|
87 |
+
'method' => 'POST',
|
88 |
+
'timeout' => 45,
|
89 |
+
'redirection' => 5,
|
90 |
+
'httpversion' => '1.0',
|
91 |
+
'blocking' => true,
|
92 |
+
'headers' => array("Accept" => "application/x.10webcore.v1+json"),
|
93 |
+
'body' => $data,
|
94 |
+
'cookies' => array()
|
95 |
+
)
|
96 |
+
);
|
97 |
+
|
98 |
+
$response_body = (!is_wp_error($response) && isset($response["body"])) ? json_decode($response["body"], true) : null;
|
99 |
+
|
100 |
+
if (is_array($response_body) && $response_body["body"]["msg"] == "ok") {
|
101 |
+
|
102 |
+
}
|
103 |
+
|
104 |
+
}
|
105 |
+
if (get_option($wd_options->prefix . "_subscribe_done") != 1) {
|
106 |
+
update_option($wd_options->prefix . "_subscribe_done", 1);
|
107 |
+
} else {
|
108 |
+
add_option($wd_options->prefix . "_subscribe_done", "1", '', 'no');
|
109 |
+
}
|
110 |
+
|
111 |
+
wp_safe_redirect($wd_options->after_subscribe);
|
112 |
}
|
113 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
}
|
115 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
116 |
+
// Getters & Setters //
|
117 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
118 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
119 |
+
// Private Methods //
|
120 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
121 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
122 |
+
// Listeners //
|
123 |
+
// //////////////////////////////////////////////////////////////////////////////////////
|
124 |
+
}
|
wd/start.php
CHANGED
@@ -2,7 +2,9 @@
|
|
2 |
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
exit;
|
4 |
}
|
5 |
-
define( '
|
|
|
|
|
6 |
require_once dirname( __FILE__ ) . '/config.php';
|
7 |
|
8 |
/**
|
@@ -14,7 +16,6 @@
|
|
14 |
* plugin_main_file;
|
15 |
* description;
|
16 |
* plugin_features;
|
17 |
-
* user_guide;
|
18 |
* video_youtube_id;
|
19 |
* plugin_wd_url;
|
20 |
* plugin_wd_demo_link;
|
@@ -26,12 +27,12 @@
|
|
26 |
* custom_post;
|
27 |
*/
|
28 |
|
29 |
-
function
|
30 |
|
31 |
// load files
|
32 |
require_once dirname( __FILE__ ) . '/wd.php';
|
33 |
|
34 |
-
$wd = new
|
35 |
$wd->wd_init( $options );
|
36 |
|
37 |
}
|
2 |
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
exit;
|
4 |
}
|
5 |
+
define( 'TEN_WEB_API_PLUGIN_DATA_PATH', 'https://api.web-dorado.com/v2/_id_/plugindata' );
|
6 |
+
define( 'TEN_WEB_SUBSCRIBE_URL', 'https://core.10web.io/api/wp-subscribe' );
|
7 |
+
|
8 |
require_once dirname( __FILE__ ) . '/config.php';
|
9 |
|
10 |
/**
|
16 |
* plugin_main_file;
|
17 |
* description;
|
18 |
* plugin_features;
|
|
|
19 |
* video_youtube_id;
|
20 |
* plugin_wd_url;
|
21 |
* plugin_wd_demo_link;
|
27 |
* custom_post;
|
28 |
*/
|
29 |
|
30 |
+
function ten_web_init( $options ) {
|
31 |
|
32 |
// load files
|
33 |
require_once dirname( __FILE__ ) . '/wd.php';
|
34 |
|
35 |
+
$wd = new TenWeb();
|
36 |
$wd->wd_init( $options );
|
37 |
|
38 |
}
|
wd/templates/display_overview.php
CHANGED
@@ -1,43 +1,119 @@
|
|
1 |
-
<div class="
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
</div>
|
12 |
-
<?php } ?></h2>
|
13 |
-
|
14 |
-
<div class="overview_welcome_text">
|
15 |
-
|
16 |
-
<div><?php echo sprintf(__("CONGRATS! You've successfully installed %s WordPress plugin.", $wd_options->prefix), $wd_options->plugin_title); ?></div>
|
17 |
-
<div><?php echo $wd_options->description; ?></div>
|
18 |
</div>
|
19 |
-
</div>
|
20 |
-
</div>
|
21 |
-
<div class="overview_wrap">
|
22 |
-
<ul class="overview_tabs">
|
23 |
-
<?php
|
24 |
-
foreach ($tabs as $tab_key => $tab) {
|
25 |
-
$href = $tab['view'] !== false ? "#" . $tab_key : $tab_key;
|
26 |
-
$target = $tab['view'] == false ? 'target="_blank" class="not_tab"' : '';
|
27 |
-
$overview_tab_active_class = $tab_key == 'welcome' ? 'class="overview_tab_active"' : ''
|
28 |
-
?>
|
29 |
-
<li class=""><a
|
30 |
-
href="<?php echo $href; ?>" <?php echo $overview_tab_active_class; ?> <?php echo $target; ?>><?php echo esc_html($tab['name']); ?></a>
|
31 |
-
</li>
|
32 |
-
<?php } ?>
|
33 |
-
</ul>
|
34 |
-
<div class="overview_content">
|
35 |
-
<?php
|
36 |
-
foreach ($tabs as $tab_key => $tab) {
|
37 |
-
if ($tab['view'] !== false) {
|
38 |
-
echo call_user_func($tab['view']);
|
39 |
-
}
|
40 |
-
}
|
41 |
-
?>
|
42 |
-
</div>
|
43 |
</div>
|
1 |
+
<div class="tenweb_overview">
|
2 |
+
<div class="tenweb_header">
|
3 |
+
<div class="container tenweb_clear container_top">
|
4 |
+
<div class="tenweb_logo">
|
5 |
+
<a href="https://10web.io/" target="_blank">
|
6 |
+
<div></div>
|
7 |
+
</a>
|
8 |
+
</div>
|
9 |
+
<div class="tenweb_header_right tenweb_clear">
|
10 |
+
<div class="inline-block header_text"><?php echo sprintf(__("Get Premium %s and Other Solutions Essential for Your WordPress Site.", $wd_options->prefix), $wd_options->plugin_title); ?>
|
11 |
+
</div>
|
12 |
+
<a href="https://my.10web.io/checkout/" target="_blank"
|
13 |
+
class="button"><?php _e("Try Free", $wd_options->prefix); ?></a>
|
14 |
+
</div>
|
15 |
+
</div>
|
16 |
+
<div class="tenweb_header_divider">
|
17 |
+
</div>
|
18 |
+
<div class="container container_bottom">
|
19 |
+
<div class="plugin_info">
|
20 |
+
<img src="<?php echo $wd_options->overview_welcome_image; ?>" class="plugin_logo">
|
21 |
+
<h2><?php _e("Premium ", $wd_options->prefix); ?><?php echo $wd_options->plugin_title; ?></h2>
|
22 |
+
<div class="and"> & </div>
|
23 |
+
</div>
|
24 |
+
<div class="plan_features tenweb_clear">
|
25 |
+
<div class="plan_feature pro_plugins">
|
26 |
+
<div class="logo"></div>
|
27 |
+
<h3><?php _e("60+ pro plugins/Add-ons", $wd_options->prefix); ?></h3>
|
28 |
+
<p><?php _e("Access 60+ plugins and add-ons, including key plugins, such as gallery, form, slider, social plugins and more.", $wd_options->prefix); ?></p>
|
29 |
+
</div>
|
30 |
+
<div class="plan_feature dashboard">
|
31 |
+
<div class="logo"></div>
|
32 |
+
<h3><?php _e("Unified dashboard", $wd_options->prefix); ?></h3>
|
33 |
+
<p><?php _e("Manage your WordPress websites all in one place within a single dashboard. No need to switch between sites.", $wd_options->prefix); ?></p>
|
34 |
+
</div>
|
35 |
+
<div class="plan_feature pro_themes">
|
36 |
+
<div class="logo"></div>
|
37 |
+
<h3><?php _e("Premium WordPress themes", $wd_options->prefix); ?></h3>
|
38 |
+
<p><?php _e("Professionally designed, responsive themes for your website. Build fully-functional, elegant websites effortlessly.", $wd_options->prefix); ?></p>
|
39 |
+
</div>
|
40 |
+
<?php if ($wd_options->plugin_wordpress_slug != "backup-wd") { ?>
|
41 |
+
<div class="plan_feature backup">
|
42 |
+
<div class="logo"></div>
|
43 |
+
<h3><?php _e("Backup", $wd_options->prefix); ?></h3>
|
44 |
+
<p><?php _e("10Web cloud storage space. Easily and securely backup your website in our storage.", $wd_options->prefix); ?></p>
|
45 |
+
</div>
|
46 |
+
<?php } ?>
|
47 |
+
<?php if ($wd_options->plugin_wordpress_slug != "seo-by-10web") { ?>
|
48 |
+
<div class="plan_feature seo">
|
49 |
+
<div class="logo"></div>
|
50 |
+
<h3><?php _e("SEO", $wd_options->prefix); ?></h3>
|
51 |
+
<p><?php _e("Improve search rankings of your WordPress site with a comprehensive search engine optimization solution.", $wd_options->prefix); ?></p>
|
52 |
+
</div>
|
53 |
+
<?php } ?>
|
54 |
+
<div class="plan_feature security">
|
55 |
+
<div class="logo"></div>
|
56 |
+
<h3><?php _e("Security", $wd_options->prefix); ?></h3>
|
57 |
+
<p><?php _e("Protect your WordPress site from security issues and threats with a powerful security service coming soon to 10Web.", $wd_options->prefix); ?></p>
|
58 |
+
</div>
|
59 |
+
<?php if ($wd_options->plugin_wordpress_slug != "image-optimizer-wd") { ?>
|
60 |
+
<div class="plan_feature image_optimizer">
|
61 |
+
<div class="logo"></div>
|
62 |
+
<h3><?php _e("Image optimization", $wd_options->prefix); ?></h3>
|
63 |
+
<p><?php _e("Automatically resize and compress all images on your website to save space and improve site speed.", $wd_options->prefix); ?></p>
|
64 |
+
</div>
|
65 |
+
<?php } ?>
|
66 |
+
<div class="plan_feature hosting">
|
67 |
+
<div class="logo"></div>
|
68 |
+
<h3><?php _e("Hosting", $wd_options->prefix); ?></h3>
|
69 |
+
<p><?php _e("We’ll soon be offering affordable hosting solution with WordPress-friendly features and great customer support.", $wd_options->prefix); ?></p>
|
70 |
+
</div>
|
71 |
+
</div>
|
72 |
+
<a href="https://my.10web.io/checkout/" target="_blank"
|
73 |
+
class="button"><?php _e("Get free for 14 days", $wd_options->prefix); ?></a>
|
74 |
+
<div><a href="https://10web.io/" target="_blank"
|
75 |
+
class="more white"><?php _e("Learn More", $wd_options->prefix); ?></a></div>
|
76 |
+
</div>
|
77 |
+
</div>
|
78 |
+
<?php if (count($wd_options->plugin_features)) { ?>
|
79 |
+
<div class="tenweb_plugin_features">
|
80 |
+
<div class="container">
|
81 |
+
<h2><?php _e("Premium ", $wd_options->prefix); ?><?php echo $wd_options->plugin_title; ?><?php _e(" features you get!", $wd_options->prefix); ?></h2>
|
82 |
+
<div class="plugin_features tenweb_clear">
|
83 |
+
<?php foreach ($wd_options->plugin_features as $features) { ?>
|
84 |
+
<div class="plugin_feature">
|
85 |
+
<div class="plugin_feature_logo">
|
86 |
+
<img src="<?php echo $features['logo']; ?>">
|
87 |
+
</div>
|
88 |
+
<h3><?php echo $features['title']; ?></h3>
|
89 |
+
<p><?php echo $features['description']; ?></p>
|
90 |
+
</div>
|
91 |
+
<?php } ?>
|
92 |
+
</div>
|
93 |
+
<div class="and circle"> & </div>
|
94 |
+
<h3 class="more_features"><?php _e("More great features of the plugin", $wd_options->prefix); ?></h3>
|
95 |
+
<a href="<?php echo $wd_options->plugin_wd_url; ?>" target="_blank"
|
96 |
+
class="more blue"><?php _e("Learn More", $wd_options->prefix); ?></a>
|
97 |
+
</div>
|
98 |
+
</div>
|
99 |
+
<?php }
|
100 |
+
if(trim($wd_options->plugin_wd_demo_link) != ""){ ?>
|
101 |
+
<div class="tenweb_how_it_works">
|
102 |
+
<div class="container">
|
103 |
+
<h2><?php _e("Checkout how it works", $wd_options->prefix); ?></h2>
|
104 |
+
<a href="<?php echo $wd_options->plugin_wd_demo_link; ?>" target="_blank"
|
105 |
+
class="button transparent"><?php _e("Demo", $wd_options->prefix); ?></a>
|
106 |
+
<a href="<?php echo $wd_options->plugin_wd_docs_link; ?>" target="_blank"
|
107 |
+
class="button transparent"><?php _e("User Guide", $wd_options->prefix); ?></a>
|
108 |
+
</div>
|
109 |
+
</div>
|
110 |
+
<?php } ?>
|
111 |
+
<div class="tenweb_footer <?php echo trim($wd_options->plugin_wd_demo_link) == "" ? "without_demo" : ""; ?>">
|
112 |
+
<div class="container">
|
113 |
+
<h2><?php echo $wd_options->description; ?></h2>
|
114 |
+
<p><?php echo sprintf(__("Get Premium %s and Other Solutions Essential for Your WordPress Site.", $wd_options->prefix), $wd_options->plugin_title); ?></p>
|
115 |
+
<a href="https://my.10web.io/checkout/" target="_blank"
|
116 |
+
class="button"><?php _e("Get free for 14 days", $wd_options->prefix); ?></a>
|
117 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
</div>
|
wd/templates/display_overview_deals.php
DELETED
@@ -1,81 +0,0 @@
|
|
1 |
-
<div id="deals">
|
2 |
-
|
3 |
-
<div id="plugins">
|
4 |
-
<div class="deals_header deals_header_plugins">
|
5 |
-
<a href="https://web-dorado.com/wordpress-plugins-bundle.html" target="_blank">
|
6 |
-
<div class="wd-table">
|
7 |
-
<div class="wd-cell wd-text-right wd-valign-middle">
|
8 |
-
<img src="<?php echo $wd_options->wd_url_img . '/' . $wd_options->prefix . '_main_plugin.png'; ?>" width="100px">
|
9 |
-
</div>
|
10 |
-
<div class="wd-cell wd-valign-middle">
|
11 |
-
<div class="titles_wrap">
|
12 |
-
<div class="deals_main_title"><?php echo sprintf( __( "Get %s", $wd_options->prefix ), $wd_options->plugin_title ); ?></div>
|
13 |
-
<div class="deals_main_title"><span class="higlight">+27 </span><?php echo __( "plugins", $wd_options->prefix ); ?></div>
|
14 |
-
<div class="deals_secondary_title"><?php echo __( "for", $wd_options->prefix ); ?><span class="higlight"> $99 </span><?php echo __( "only", $wd_options->prefix ); ?></div>
|
15 |
-
</div>
|
16 |
-
<div class="deals_save"><?php echo __( "Save 80%", $wd_options->prefix ); ?></div>
|
17 |
-
</div>
|
18 |
-
</div>
|
19 |
-
</a>
|
20 |
-
</div>
|
21 |
-
<div class="deals_content">
|
22 |
-
<?php foreach( $plugins as $wp_slug => &$plugin ){ ?>
|
23 |
-
|
24 |
-
<div class="deal_block">
|
25 |
-
<div class="deal_title">
|
26 |
-
<a href="<?php echo $plugin["href"]; ?>" target="_blank" >
|
27 |
-
<img src = "<?php echo $wd_options->wd_url_img . '/plugins/' . $wp_slug . '.png'; ?>">
|
28 |
-
<h2><?php echo $plugin["title"]; ?></h2>
|
29 |
-
</a>
|
30 |
-
</div>
|
31 |
-
<div class="deal_desc">
|
32 |
-
<p><?php echo $plugin["content"]; ?></p>
|
33 |
-
<div class="deal_desc_footer">
|
34 |
-
<div class="download_btn">
|
35 |
-
<a href="<?php echo $plugin["href"]; ?>" target="_blank" ><?php _e( "Download", $wd_options->prefix ); ?></a>
|
36 |
-
</div>
|
37 |
-
</div>
|
38 |
-
</div>
|
39 |
-
|
40 |
-
</div>
|
41 |
-
<?php } ?>
|
42 |
-
</div>
|
43 |
-
<div class="get_all_deals">
|
44 |
-
<a href="https://web-dorado.com/wordpress-plugins-bundle.html" target="_blank" >
|
45 |
-
<?php _e( "Get all plugins", $wd_options->prefix ); ?>
|
46 |
-
</a>
|
47 |
-
</div>
|
48 |
-
</div>
|
49 |
-
<div id="themes">
|
50 |
-
<div class="deals_header deals_header_themes">
|
51 |
-
<a href="https://web-dorado.com/wordpress-themes-bundle.html" target="_blank">
|
52 |
-
<div class="wd-table">
|
53 |
-
<div class="wd-cell wd-text-right wd-valign-middle">
|
54 |
-
</div>
|
55 |
-
<div class="wd-cell wd-valign-middle">
|
56 |
-
<div class="titles_wrap">
|
57 |
-
<div class="deals_main_title"><?php echo __( "Get all 11 themes", $wd_options->prefix ); ?></div>
|
58 |
-
<div class="deals_main_title"><?php echo __( "for", $wd_options->prefix ); ?><span class="higlight"> $40 </span><?php echo __( "only", $wd_options->prefix ); ?></div>
|
59 |
-
</div>
|
60 |
-
<div class="deals_save"><?php echo __( "Save 70%", $wd_options->prefix ); ?></div>
|
61 |
-
</div>
|
62 |
-
</div>
|
63 |
-
</a>
|
64 |
-
</div>
|
65 |
-
<div class="deals_content">
|
66 |
-
<?php foreach( $themes as $slug => $theme ){ ?>
|
67 |
-
<div class="theme_block">
|
68 |
-
<a href="<?php echo $theme["href"]; ?>" target="_blank" >
|
69 |
-
<img src = "<?php echo $wd_options->wd_url_img . '/plugins/' . $slug . '.png'; ?>" width="100%;">
|
70 |
-
<div><?php echo $theme["title"]; ?></div>
|
71 |
-
</a>
|
72 |
-
</div>
|
73 |
-
<?php } ?>
|
74 |
-
</div>
|
75 |
-
<div class="get_all_deals">
|
76 |
-
<a href="https://web-dorado.com/wordpress-themes-bundle.html" target="_blank" >
|
77 |
-
<?php _e( "Find out more", $wd_options->prefix ); ?>
|
78 |
-
</a>
|
79 |
-
</div>
|
80 |
-
</div>
|
81 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wd/templates/display_overview_support.php
DELETED
@@ -1,43 +0,0 @@
|
|
1 |
-
<div id="support">
|
2 |
-
<p class="wd-support-main">
|
3 |
-
<?php echo sprintf( __("You may contact us by filling in this form or by email %s any time you need professional support or have any questions. You can also fill in the form to leave your comments or feedback.", $wd_options->prefix), "<span class='support_email'>(support@web-dorado.com)</span>") ;?>
|
4 |
-
</p>
|
5 |
-
<div class="wd-overview-site-deatils">
|
6 |
-
<h2><?php _e( "Site Details", $wd_options->prefix ); ?></h2>
|
7 |
-
<p>
|
8 |
-
<?php _e( "When contacting support, consider copying and pasting this information in your support request.", $wd_options->prefix ); ?>
|
9 |
-
<br>
|
10 |
-
<?php _e( "It helps us troubleshoot more quickly.", $wd_options->prefix ); ?>
|
11 |
-
</p>
|
12 |
-
<?php
|
13 |
-
if ( function_exists('current_user_can' ) ) {
|
14 |
-
if ( current_user_can('manage_options') ) {
|
15 |
-
?>
|
16 |
-
<div class="wd-site-deatils wd-table">
|
17 |
-
<button id="wd-copy"><?php _e( "Copy to Clipboard", $wd_options->prefix ); ?></button>
|
18 |
-
<div id="wd-site-deatils">
|
19 |
-
<textarea rows="10" id="wd-site-deatils-textarea"><?php
|
20 |
-
_e( "Server Settings", $wd_options->prefix );
|
21 |
-
echo ' ';
|
22 |
-
foreach( $server_info as $key => $val ){
|
23 |
-
echo $key . ": " . $val . ' ';
|
24 |
-
}
|
25 |
-
echo ' ';
|
26 |
-
_e( "Graphic Library", $wd_options->prefix );
|
27 |
-
echo ' ';
|
28 |
-
foreach( $gd_info as $key => $val ){
|
29 |
-
echo $key . ": " . $val . ' ';
|
30 |
-
}
|
31 |
-
?></textarea>
|
32 |
-
</div>
|
33 |
-
</div>
|
34 |
-
<?php
|
35 |
-
}
|
36 |
-
}
|
37 |
-
?>
|
38 |
-
|
39 |
-
</div>
|
40 |
-
<div class="contact_us_wrap">
|
41 |
-
<a href="https://web-dorado.com/support/contact-us.html" target="_blank" class="contact_us"><?php _e("Contact us", $wd_options->prefix); ?></a>
|
42 |
-
</div>
|
43 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wd/templates/display_overview_user_guide.php
DELETED
@@ -1,46 +0,0 @@
|
|
1 |
-
<div id="user_guide">
|
2 |
-
<div class="wd-table">
|
3 |
-
<div class="wd-cell">
|
4 |
-
<?php for( $i = 0; $i < ceil( count($user_guide) / 2 ); $i++) { ?>
|
5 |
-
<div class="user_guide_item">
|
6 |
-
<a href="<?php echo $user_guide[$i]["url"]; ?>" class="user_guide_title" target="_blank"><?php echo $user_guide[$i]["main_title"]; ?></a>
|
7 |
-
<?php foreach( $user_guide[$i]["titles"] as $title ) { ?>
|
8 |
-
<div><a href="<?php echo $title["url"]; ?>" target="_blank" class="user_guide_titles"><?php echo $title["title"]; ?></a></div>
|
9 |
-
<?php } ?>
|
10 |
-
</div>
|
11 |
-
<?php } ?>
|
12 |
-
</div>
|
13 |
-
<div class="wd-cell">
|
14 |
-
<?php for( $i = $i; $i < count($user_guide); $i++) { ?>
|
15 |
-
<div class="user_guide_item">
|
16 |
-
<a href="<?php echo $user_guide[$i]["url"]; ?>" class="user_guide_title" target="_blank"><?php echo $user_guide[$i]["main_title"]; ?></a>
|
17 |
-
<?php foreach( $user_guide[$i]["titles"] as $title ) { ?>
|
18 |
-
<div><a href="<?php echo $title["url"]; ?>" target="_blank" class="user_guide_titles"><?php echo $title["title"]; ?></a></div>
|
19 |
-
<?php } ?>
|
20 |
-
</div>
|
21 |
-
<?php } ?>
|
22 |
-
</div>
|
23 |
-
<div class="wd-cell">
|
24 |
-
<?php if($wd_options->plugin_wd_demo_link) { ?>
|
25 |
-
<a href="<?php echo $wd_options->plugin_wd_demo_link; ?>" class="user_guide_demo" target="_blank">
|
26 |
-
<?php _e( "Demo", $wd_options->prefix ); ?>
|
27 |
-
</a>
|
28 |
-
<?php } ?>
|
29 |
-
<a href="<?php echo $wd_options->plugin_wd_url; ?>" class="user_guide_plugin" target="_blank">
|
30 |
-
<?php echo $wd_options->plugin_title; ?>
|
31 |
-
</a>
|
32 |
-
<a href="https://wordpress.org/support/plugin/<?php echo $wd_options->plugin_wordpress_slug; ?>" class="user_guide_support_forum" target="_blank">
|
33 |
-
<?php _e( "Support Forum", $wd_options->prefix ); ?>
|
34 |
-
</a>
|
35 |
-
<a href="https://web-dorado.com/support/faq.html" class="user_guide_faq" target="_blank">
|
36 |
-
<?php _e( "FAQ", $wd_options->prefix ); ?>
|
37 |
-
</a>
|
38 |
-
<?php if($wd_options->plugin_wd_addons_link) { ?>
|
39 |
-
<a href="<?php echo $wd_options->plugin_wd_addons_link; ?>" class="user_guide_addons" target="_blank">
|
40 |
-
<?php _e( "Addons", $wd_options->prefix ); ?>
|
41 |
-
</a>
|
42 |
-
<?php } ?>
|
43 |
-
</div>
|
44 |
-
</div>
|
45 |
-
</div>
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wd/templates/display_overview_welcome.php
DELETED
@@ -1,31 +0,0 @@
|
|
1 |
-
<div id="welcome">
|
2 |
-
<!-- display plugin video -->
|
3 |
-
<?php if( $wd_options->video_youtube_id ){ ?>
|
4 |
-
<div class="wd-video_container">
|
5 |
-
<iframe width="100%" height="400" src="//www.youtube.com/embed/<?php echo $wd_options->video_youtube_id; ?>?rel=0" frameborder="0" allowfullscreen></iframe>
|
6 |
-
</div>
|
7 |
-
<?php }
|
8 |
-
else if( $wd_options->overview_welcome_image ) { ?>
|
9 |
-
<img src="<?php echo $wd_options->overview_welcome_image; ?>" width="100%" />
|
10 |
-
|
11 |
-
<?php } ?>
|
12 |
-
|
13 |
-
<!-- display plugin features -->
|
14 |
-
<div class="plugin_features">
|
15 |
-
<!-- if your plugin has a wizard-->
|
16 |
-
<?php if( $wd_options->plugin_wizard_link ) { ?>
|
17 |
-
<div class="wd-tour">
|
18 |
-
<a class="wd-tour-btn" href="<?php echo $wd_options->plugin_wizard_link;?>"><?php _e( "Run Install Wizard ",$wd_options->prefix); ?></a>
|
19 |
-
</div>
|
20 |
-
<?php } ?>
|
21 |
-
<?php foreach( $wd_options->plugin_features as $feature ){ ?>
|
22 |
-
<h2 class="plugin_feature_title"><?php echo $feature["title"]; ?></h2>
|
23 |
-
<div class="plugin_feature_description"><?php echo $feature["description"]; ?></div>
|
24 |
-
<?php } ?>
|
25 |
-
<div class="more_features_wrap">
|
26 |
-
<a href="<?php echo $wd_options->plugin_wd_url; ?>" class="more_features" target="_blank"><?php _e( "More features", $wd_options->prefix ); ?></a>
|
27 |
-
</div>
|
28 |
-
</div>
|
29 |
-
|
30 |
-
</div>
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wd/templates/display_subscribe.php
CHANGED
@@ -1,44 +1,47 @@
|
|
1 |
-
<div class="
|
2 |
-
<div class="
|
3 |
-
<div class="imgs">
|
4 |
-
<img src="<?php echo $wd_options->wd_url_img . '/wp_logo.png'; ?>">
|
5 |
-
<span>+</span>
|
6 |
-
<img src="<?php echo $wd_options->wd_url_img . '/' . $wd_options->prefix . '_main_plugin.png'; ?>">
|
7 |
-
</div>
|
8 |
<div class="texts">
|
9 |
-
<
|
|
|
|
|
10 |
<p>
|
11 |
-
<?php echo sprintf( __( "
|
12 |
</p>
|
13 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
<div class="btns">
|
15 |
-
<a href="<?php echo "admin.php?page=" . $wd_options->prefix . "_subscribe&". $wd_options->prefix . "_sub_action=allow" ;?>" class="allow_and_continue"
|
16 |
<img src="<?php echo $wd_options->wd_url_img . '/loader.gif';?>" class="wd_loader">
|
17 |
-
<a href="<?php echo "admin.php?page=" . $wd_options->prefix . "_subscribe&" . $wd_options->prefix . "_sub_action=skip" ;?>" class="skip"
|
18 |
-
</div>
|
19 |
-
<a href="#" class="permissions"><?php _e( "What data is being collected?" , $wd_options->prefix ); ?></a>
|
20 |
-
<div class="list">
|
21 |
-
<?php foreach( $list as $list_item ) { ?>
|
22 |
-
<div class="list_item">
|
23 |
-
<div class="list_img_wrap"><img src="<?php echo $list_item["img"]; ?>"></div>
|
24 |
-
<div class="list_text_wrap">
|
25 |
-
<div class="list_title"><?php echo $list_item["title"]; ?></div>
|
26 |
-
<div class="list_text"><?php echo $list_item["small_text"]; ?></div>
|
27 |
-
</div>
|
28 |
-
</div>
|
29 |
-
<?php } ?>
|
30 |
</div>
|
31 |
</div>
|
32 |
-
<div class="
|
33 |
-
|
|
|
|
|
|
|
34 |
<li>
|
35 |
-
<a href="https://
|
36 |
<?php _e( "Privacy Policy", $wd_options->prefix ); ?>
|
37 |
</a>
|
38 |
-
<span>.</span>
|
39 |
</li>
|
|
|
40 |
<li>
|
41 |
-
<a href="https://
|
42 |
<?php _e( "Terms of Use", $wd_options->prefix ); ?>
|
43 |
</a>
|
44 |
</li>
|
1 |
+
<div class="tenweb_subscribe">
|
2 |
+
<div class="tenweb_subscribe-content">
|
|
|
|
|
|
|
|
|
|
|
3 |
<div class="texts">
|
4 |
+
<div class="hi_there"></div>
|
5 |
+
<h2><?php _e( "Hi there!", $wd_options->prefix ); ?></h2>
|
6 |
+
<h5><?php _e( "Allow 10web to collect some usage data", $wd_options->prefix ); ?></h5>
|
7 |
<p>
|
8 |
+
<?php echo sprintf( __( "This will allow you to get more out of your plugin experience - get awesome customer support, receive exclusive deals and discounts on premium products and more. You can choose to skip this step, %s will stil work just fine.", $wd_options->prefix ), $wd_options->plugin_title ); ?>
|
9 |
</p>
|
10 |
</div>
|
11 |
+
<div class="permissions"><?php _e( "What data is being collected?" , $wd_options->prefix ); ?></div>
|
12 |
+
<div class="list tenweb_clear">
|
13 |
+
<div class="list_item user_info">
|
14 |
+
<div class="list_logo"></div>
|
15 |
+
<div class="list_text_wrap"> <?php _e( "Your name & Email address", $wd_options->prefix ); ?></div>
|
16 |
+
</div>
|
17 |
+
<div class="list_item wp_info">
|
18 |
+
<div class="list_logo"></div>
|
19 |
+
<div class="list_text_wrap"> <?php _e( "Site URL, Wordpress version", $wd_options->prefix ); ?></div>
|
20 |
+
</div>
|
21 |
+
<div class="list_item plugins_info">
|
22 |
+
<div class="list_logo"></div>
|
23 |
+
<div class="list_text_wrap"> <?php _e( "List of plugins", $wd_options->prefix ); ?></div>
|
24 |
+
</div>
|
25 |
+
</div>
|
26 |
<div class="btns">
|
27 |
+
<a href="<?php echo "admin.php?page=" . $wd_options->prefix . "_subscribe&". $wd_options->prefix . "_sub_action=allow" ;?>" class="allow_and_continue button"><?php _e( "Allow & Continue", $wd_options->prefix ); ?></a>
|
28 |
<img src="<?php echo $wd_options->wd_url_img . '/loader.gif';?>" class="wd_loader">
|
29 |
+
<a href="<?php echo "admin.php?page=" . $wd_options->prefix . "_subscribe&" . $wd_options->prefix . "_sub_action=skip" ;?>" class="skip more" ><?php _e( "Skip", $wd_options->prefix ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
</div>
|
31 |
</div>
|
32 |
+
<div class="tenweb_subscribe-top-footer">
|
33 |
+
<?php _e( "We will not sell, share, or distribute your personal information to third parties.", $wd_options->prefix ); ?>
|
34 |
+
</div>
|
35 |
+
<div class="tenweb_subscribe-footer">
|
36 |
+
<ul class="tenweb_footer-menu tenweb_clear">
|
37 |
<li>
|
38 |
+
<a href="https://10web.io/privacy-policy/" target="_blank">
|
39 |
<?php _e( "Privacy Policy", $wd_options->prefix ); ?>
|
40 |
</a>
|
|
|
41 |
</li>
|
42 |
+
<li>| </li>
|
43 |
<li>
|
44 |
+
<a href="https://10web.io/terms-of-services/" target="_blank">
|
45 |
<?php _e( "Terms of Use", $wd_options->prefix ); ?>
|
46 |
</a>
|
47 |
</li>
|
wd/wd.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
-
class
|
7 |
////////////////////////////////////////////////////////////////////////////////////////
|
8 |
// Events //
|
9 |
////////////////////////////////////////////////////////////////////////////////////////
|
@@ -37,10 +37,10 @@
|
|
37 |
if(!is_array($options)){
|
38 |
return false;
|
39 |
}
|
40 |
-
$config = new
|
41 |
$config->set_options( $options );
|
42 |
$this->config = $config;
|
43 |
-
if( !class_exists("
|
44 |
$this->wd_includes();
|
45 |
}
|
46 |
|
@@ -61,18 +61,21 @@
|
|
61 |
|
62 |
$subscribe_page = add_menu_page( $wd_options->plugin_menu_title, $wd_options->plugin_menu_title, "manage_options", $wd_options->prefix . '_subscribe' , array( $this, 'display_subscribew_page' ), $wd_options->plugin_menu_icon, $wd_options->menu_position );
|
63 |
|
64 |
-
$subscribe_instance = new
|
65 |
$this->subscribe_instance = $subscribe_instance;
|
66 |
add_action( 'admin_print_styles-' . $subscribe_page, array( $subscribe_instance, 'subscribe_styles' ) );
|
67 |
add_action( 'admin_print_scripts-' . $subscribe_page, array( $subscribe_instance, 'subscribe_scripts' ) );
|
68 |
|
69 |
$parent_slug = null;
|
70 |
-
}
|
71 |
-
|
72 |
-
|
|
|
|
|
|
|
73 |
|
74 |
|
75 |
-
$overview_instance = new
|
76 |
$this->overview_instance = $overview_instance;
|
77 |
add_action( 'admin_print_styles-' . $overview_page, array( $overview_instance, 'overview_styles' ) );
|
78 |
add_action( 'admin_print_scripts-' . $overview_page, array( $overview_instance, 'overview_scripts' ) );
|
@@ -106,11 +109,11 @@
|
|
106 |
$current_url = $_SERVER['REQUEST_URI'];
|
107 |
if( $wd_options->deactivate === true ){
|
108 |
if(strpos( $current_url, "plugins.php" ) !== false ){
|
109 |
-
new
|
110 |
}
|
111 |
}
|
112 |
|
113 |
-
new
|
114 |
|
115 |
}
|
116 |
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
+
class TenWeb {
|
7 |
////////////////////////////////////////////////////////////////////////////////////////
|
8 |
// Events //
|
9 |
////////////////////////////////////////////////////////////////////////////////////////
|
37 |
if(!is_array($options)){
|
38 |
return false;
|
39 |
}
|
40 |
+
$config = new TenWebConfig();
|
41 |
$config->set_options( $options );
|
42 |
$this->config = $config;
|
43 |
+
if( !class_exists("TenWebApi") ){
|
44 |
$this->wd_includes();
|
45 |
}
|
46 |
|
61 |
|
62 |
$subscribe_page = add_menu_page( $wd_options->plugin_menu_title, $wd_options->plugin_menu_title, "manage_options", $wd_options->prefix . '_subscribe' , array( $this, 'display_subscribew_page' ), $wd_options->plugin_menu_icon, $wd_options->menu_position );
|
63 |
|
64 |
+
$subscribe_instance = new TenWebSubscribe($this->config);
|
65 |
$this->subscribe_instance = $subscribe_instance;
|
66 |
add_action( 'admin_print_styles-' . $subscribe_page, array( $subscribe_instance, 'subscribe_styles' ) );
|
67 |
add_action( 'admin_print_scripts-' . $subscribe_page, array( $subscribe_instance, 'subscribe_scripts' ) );
|
68 |
|
69 |
$parent_slug = null;
|
70 |
+
}
|
71 |
+
$title = __( 'Premium', $wd_options->prefix );
|
72 |
+
if (!get_transient($wd_options->prefix . '_overview_visited')) {
|
73 |
+
$title .= ' <span class="update-plugins count-2" > <span class="plugin-count">1</span></span>';
|
74 |
+
}
|
75 |
+
$overview_page = add_submenu_page( $parent_slug, __( 'Premium', $wd_options->prefix ), '<span style="color:#4481ea;">' . $title . '</span>', $capability, 'overview_' . $wd_options->prefix, array( $this, 'display_overview_page' ));
|
76 |
|
77 |
|
78 |
+
$overview_instance = new TenWebOverview($this->config);
|
79 |
$this->overview_instance = $overview_instance;
|
80 |
add_action( 'admin_print_styles-' . $overview_page, array( $overview_instance, 'overview_styles' ) );
|
81 |
add_action( 'admin_print_scripts-' . $overview_page, array( $overview_instance, 'overview_scripts' ) );
|
109 |
$current_url = $_SERVER['REQUEST_URI'];
|
110 |
if( $wd_options->deactivate === true ){
|
111 |
if(strpos( $current_url, "plugins.php" ) !== false ){
|
112 |
+
new TenWebDeactivate( $this->config );
|
113 |
}
|
114 |
}
|
115 |
|
116 |
+
new TenWebNotices( $this->config );
|
117 |
|
118 |
}
|
119 |
|