| 1 |
<?php |
| 2 |
|
| 3 |
namespace ULTP; |
| 4 |
|
| 5 |
/** |
| 6 |
* The Upgrade Class |
| 7 |
*/ |
| 8 |
class Upgrade { |
| 9 |
public function __construct() { |
| 10 |
add_submenu_page( |
| 11 |
'ultp-settings', |
| 12 |
__('Upgrade','ultimate-post'), |
| 13 |
'<span class="ultp-dashboard-upgrade"><span class="dashicons dashicons-update"></span> '.__('Upgrade', 'ultimate-post').'</span>', |
| 14 |
'manage_options', |
| 15 |
'ultp-upgrade', |
| 16 |
array( self::class, 'create_admin_page' ), 55 |
| 17 |
); |
| 18 |
} |
| 19 |
/** |
| 20 |
* Upgrade Page output |
| 21 |
*/ |
| 22 |
public static function create_admin_page() { ?> |
| 23 |
<style> |
| 24 |
/* upgrade overview start */ |
| 25 |
.ultp-upgrade-overview-wrapper { |
| 26 |
padding: 10px; |
| 27 |
} |
| 28 |
.ultp-upgrade-overview{ |
| 29 |
display: grid; |
| 30 |
grid-template-columns: 0.9fr 1fr; |
| 31 |
box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15); |
| 32 |
margin-top: 0; |
| 33 |
overflow: hidden; |
| 34 |
border: none; |
| 35 |
} |
| 36 |
.ultp-upgrade-overview-content{ |
| 37 |
padding: 55px 40px 60px; |
| 38 |
} |
| 39 |
.ultp-upgrade-overview-content h3{ |
| 40 |
font-weight: normal; |
| 41 |
margin: 0; |
| 42 |
margin-bottom: 25px; |
| 43 |
font-size: 32px; |
| 44 |
line-height: 38px; |
| 45 |
color: #000; |
| 46 |
} |
| 47 |
.ultp-upgrade-overview-content h4 { |
| 48 |
font-weight: normal; |
| 49 |
margin: 0; |
| 50 |
font-size: 20px; |
| 51 |
line-height: 28px; |
| 52 |
} |
| 53 |
.ultp-upgrade-overview-content h4 a { |
| 54 |
color: #037fff; |
| 55 |
text-decoration: none; |
| 56 |
} |
| 57 |
.ultp-upgrade-overview-content h4 strong { |
| 58 |
color: #000; |
| 59 |
} |
| 60 |
.ultp-upgrade-overview-content h3 span{ |
| 61 |
color: #037fff; |
| 62 |
} |
| 63 |
.ultp-upgrade-overview-image{ |
| 64 |
line-height: 0; |
| 65 |
} |
| 66 |
.ultp-upgrade-overview-image img{ |
| 67 |
max-width: 100%; |
| 68 |
object-fit: cover; |
| 69 |
height: 100%; |
| 70 |
} |
| 71 |
/* upgrade overview start */ |
| 72 |
|
| 73 |
/* upgrade compare table */ |
| 74 |
.ultp-upgrade-compare-table{ |
| 75 |
margin-top: 40px; |
| 76 |
} |
| 77 |
.ultp-upgrade-compare-table table{ |
| 78 |
width: 100%; |
| 79 |
border-collapse: collapse; |
| 80 |
border-spacing: 0; |
| 81 |
} |
| 82 |
.ultp-upgrade-compare-table td{ |
| 83 |
border: 1px solid #DFDFDF; |
| 84 |
} |
| 85 |
.ultp-upgrade-compare-table table tr th{ |
| 86 |
text-align: center; |
| 87 |
border-right: 1px solid #DFDFDF; |
| 88 |
padding: 40px; |
| 89 |
font-size: 24px; |
| 90 |
font-weight: 600; |
| 91 |
color: #000; |
| 92 |
} |
| 93 |
.ultp-upgrade-compare-table table tr th:nth-child(2) { |
| 94 |
background-color: #fff; |
| 95 |
border-top: 1px solid #DFDFDF; |
| 96 |
} |
| 97 |
.ultp-upgrade-compare-table table tr th:nth-child(3) { |
| 98 |
background-color: #fff; |
| 99 |
border-top: 1px solid #DFDFDF; |
| 100 |
} |
| 101 |
|
| 102 |
.ultp-upgrade-compare-table table td:first-child { |
| 103 |
font-weight: 600; |
| 104 |
padding: 25px; |
| 105 |
text-align: left; |
| 106 |
color: #000; |
| 107 |
} |
| 108 |
.ultp-upgrade-compare-table table td:nth-child(2) { |
| 109 |
text-align: center; |
| 110 |
color: #e51f1f; |
| 111 |
font-size: 36px; |
| 112 |
} |
| 113 |
.ultp-upgrade-compare-table table td:nth-child(3) { |
| 114 |
text-align: center; |
| 115 |
color: #18982c; |
| 116 |
} |
| 117 |
.ultp-upgrade-compare-table table tr .table-icon{ |
| 118 |
font-size: 36px; |
| 119 |
padding-bottom: 13px; |
| 120 |
} |
| 121 |
|
| 122 |
.ultp-upgrade-compare-table table tr:nth-child(even){ |
| 123 |
background-color:#f7f7f7; |
| 124 |
} |
| 125 |
.ultp-upgrade-compare-table table tr:nth-child(odd){ |
| 126 |
background-color:#FFFFFF; |
| 127 |
} |
| 128 |
|
| 129 |
.ultp-upgrade-compare-table table tr td a{ |
| 130 |
border-radius: 4px; |
| 131 |
display: inline-block; |
| 132 |
font-size: 18px; |
| 133 |
margin: 20px; |
| 134 |
} |
| 135 |
|
| 136 |
.ultp-admin-title{ |
| 137 |
font-size: 32px; |
| 138 |
margin-bottom: 10px; |
| 139 |
color: #000; |
| 140 |
} |
| 141 |
|
| 142 |
.ultp-admin-text{ |
| 143 |
max-width: 680px; |
| 144 |
margin: 0 auto; |
| 145 |
font-size: 16px; |
| 146 |
line-height: 1.5; |
| 147 |
color: #292929; |
| 148 |
} |
| 149 |
.ultp-admin-text a { |
| 150 |
color: #037fff; |
| 151 |
} |
| 152 |
.ultp-admin-title::after{ |
| 153 |
height: 0; |
| 154 |
width: 0; |
| 155 |
} |
| 156 |
.ultp-admin-title::before{ |
| 157 |
height: 0; |
| 158 |
width: 0; |
| 159 |
} |
| 160 |
|
| 161 |
.ultp-admin-title-color{ |
| 162 |
color: #18982c; |
| 163 |
} |
| 164 |
|
| 165 |
/** promo section */ |
| 166 |
.ultp-promo-item{ |
| 167 |
padding: 35px 24px; |
| 168 |
border-radius: 4px; |
| 169 |
box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15); |
| 170 |
border: none; |
| 171 |
display: flex; |
| 172 |
align-items: center; |
| 173 |
justify-content: center; |
| 174 |
transition: 300ms; |
| 175 |
} |
| 176 |
.ultp-promo-item:hover { |
| 177 |
box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.25); |
| 178 |
} |
| 179 |
.ultp-promo-item h4 { |
| 180 |
line-height: 1.4; |
| 181 |
font-size: 18px; |
| 182 |
text-align: center; |
| 183 |
font-weight: 600; |
| 184 |
color: #000; |
| 185 |
} |
| 186 |
/** promo section */ |
| 187 |
|
| 188 |
/* facebook review section */ |
| 189 |
.ultp-facebook-reivew{ |
| 190 |
margin-top: 36px; |
| 191 |
padding: 20px; |
| 192 |
border: none; |
| 193 |
box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15); |
| 194 |
} |
| 195 |
.ultp-facebook-reivew img{ |
| 196 |
max-width: 100%; |
| 197 |
} |
| 198 |
|
| 199 |
/* whats people say section end */ |
| 200 |
.ultp-testimonial-items{ |
| 201 |
margin-top: 49px; |
| 202 |
} |
| 203 |
.ultp-testimonial-item div { |
| 204 |
font-style: italic; |
| 205 |
} |
| 206 |
|
| 207 |
|
| 208 |
/*faq section*/ |
| 209 |
.ultp-faq-items{ |
| 210 |
display: grid; |
| 211 |
grid-template-columns: 1fr 1fr; |
| 212 |
grid-gap: 40px; |
| 213 |
max-width: 850px; |
| 214 |
margin: 50px auto 0; |
| 215 |
} |
| 216 |
|
| 217 |
.ultp-faq-heading{ |
| 218 |
font-size: 20px; |
| 219 |
line-height: 1.3; |
| 220 |
margin-top: 0; |
| 221 |
margin-bottom: 12px; |
| 222 |
} |
| 223 |
.ultp-faq-description{ |
| 224 |
margin: 0; |
| 225 |
font-size: 16px; |
| 226 |
line-height: 1.6; |
| 227 |
text-align: left; |
| 228 |
} |
| 229 |
.ultp-faq-description a { |
| 230 |
color: #037fff; |
| 231 |
} |
| 232 |
|
| 233 |
/* ---- Helps --- */ |
| 234 |
.ultp-upgrade-help-items{ |
| 235 |
display: grid; |
| 236 |
grid-template-columns: 1fr 1fr; |
| 237 |
grid-gap: 30px; |
| 238 |
max-width: 1000px; |
| 239 |
margin: 20px auto 0; |
| 240 |
} |
| 241 |
.ultp-upgrade-help-item{ |
| 242 |
padding: 30px; |
| 243 |
} |
| 244 |
.ultp-upgrade-help-item img{ |
| 245 |
max-width: 60px; |
| 246 |
} |
| 247 |
.ultp-upgrade-help-item h4 { |
| 248 |
margin: 20px 0 15px; |
| 249 |
font-size: 24px; |
| 250 |
color: #000; |
| 251 |
} |
| 252 |
.ultp-upgrade-help-item p { |
| 253 |
font-size: 16px; |
| 254 |
margin-bottom: 25px; |
| 255 |
margin-top: 0; |
| 256 |
line-height: 1.5; |
| 257 |
} |
| 258 |
.ultp-upgrade-help-item a { |
| 259 |
text-decoration: none; |
| 260 |
color: #037fff; |
| 261 |
} |
| 262 |
.ultp-upgrade-help-item a.ultp-btn{ |
| 263 |
display: inline-block; |
| 264 |
padding: 12px 25px; |
| 265 |
} |
| 266 |
.ultp-margin-top20 { |
| 267 |
margin-top: 20px; |
| 268 |
} |
| 269 |
|
| 270 |
/* ----Responsive--- */ |
| 271 |
@media (max-width: 1000px) { |
| 272 |
.ultp-upgrade-overview, .ultp-testimonial-items, .ultp-upgrade-help-items, .ultp-faq-items { |
| 273 |
grid-template-columns: 1fr; |
| 274 |
} |
| 275 |
.ultp-upgrade-overview img{ |
| 276 |
max-width: 100%; |
| 277 |
} |
| 278 |
.ultp-facebook-reivew img{ |
| 279 |
max-width: 100%; |
| 280 |
} |
| 281 |
.ultp-admin-text{ |
| 282 |
max-width: 100%; |
| 283 |
padding: 0; |
| 284 |
} |
| 285 |
.ultp-upgrade-compare-table table tr td a{ |
| 286 |
font-size: 14px; |
| 287 |
} |
| 288 |
} |
| 289 |
</style> |
| 290 |
|
| 291 |
<div class="ultp-option-body ultp-upgrade-overview-wrapper"> |
| 292 |
<div class="ultp-content-wrap"> |
| 293 |
<div class="ultp-upgrade-overview ultp-admin-card"> |
| 294 |
<div class="ultp-upgrade-overview-content"> |
| 295 |
<h3><?php _e( 'The Complete <strong><span>Solutions</span></strong> for your <strong>News, Magazine, and Blog</strong> website.', 'ultimate-post'); ?></h3> |
| 296 |
<h4><?php _e( 'Purchase <a href="https://www.wpxpo.com/postx/pricing/">PostX Pro</a> and launch your website within few clicks.', 'ultimate-post'); ?></h4> |
| 297 |
</div> |
| 298 |
<div class="ultp-upgrade-overview-image"> |
| 299 |
<img loading="lazy" src="<?php echo ULTP_URL.'assets/img/admin/upgrade-overview-image.jpg'; ?>" alt="Filter Category"> |
| 300 |
</div> |
| 301 |
</div> |
| 302 |
</div> |
| 303 |
|
| 304 |
<div class="ultp-content-wrap ultp-margin-top20"> |
| 305 |
<div class="ultp-text-center"> |
| 306 |
<h2 class="ultp-admin-title"><?php _e('Why Do You Need PostX Pro?', 'ultimate-post'); ?></h2> |
| 307 |
<p class="ultp-admin-text"><?php _e('PostX Pro removes all the barriers hindering your creativity. With all the unlocked features and customization options, you can be up and running with a fully functional website and offer a customized experience well-suited for you and your users.', 'ultimate-post'); ?></p> |
| 308 |
</div> |
| 309 |
</div> |
| 310 |
|
| 311 |
<div class="ultp-content-wrap"> |
| 312 |
<div class="ultp-promo-items"> |
| 313 |
<div class="ultp-promo-item ultp-admin-card"> |
| 314 |
<h4 class="ultp-promo-single-line"><?php _e('10+ Addons Included', 'ultimate-post'); ?></h4> |
| 315 |
</div> |
| 316 |
<div class="ultp-promo-item ultp-admin-card"> |
| 317 |
<h4><?php _e('Advanced Query Builder', 'ultimate-post'); ?></h4> |
| 318 |
</div> |
| 319 |
<div class="ultp-promo-item ultp-admin-card"> |
| 320 |
<h4><?php _e('200+ Ready Design Libary', 'ultimate-post'); ?></h4> |
| 321 |
</div> |
| 322 |
<div class="ultp-promo-item ultp-admin-card"> |
| 323 |
<h4><?php _e('Exclusive Archive Builder', 'ultimate-post'); ?></h4> |
| 324 |
</div> |
| 325 |
<div class="ultp-promo-item ultp-admin-card"> |
| 326 |
<h4><?php _e('Unlimited Templates', 'ultimate-post'); ?></h4> |
| 327 |
</div> |
| 328 |
</div> |
| 329 |
</div> |
| 330 |
|
| 331 |
<div class="ultp-content-wrap ultp-margin-top20"> |
| 332 |
<div class="ultp-text-center"> |
| 333 |
<h2 class="ultp-admin-title ultp-admin-title-color"><?php _e('⋆ ⋆ ⋆ 14-Day Moneyback Guarantee ⋆ ⋆ ⋆', 'ultimate-post'); ?></h2> |
| 334 |
<p class="ultp-admin-text"><?php _e('Your satisfaction is our priority. For this reason, if you’re not happy with our product, we have a <strong> 14 days No Questions Asked </strong> refund policy in place. If we can’t deliver a proper experience, you’ll receive a full refund. <a href="https://www.wpxpo.com/refund-policy/">Learn More.</a>'); ?> </p> |
| 335 |
</div> |
| 336 |
|
| 337 |
<div class="ultp-upgrade-compare-table" style="overflow-x:auto;"> |
| 338 |
<table> |
| 339 |
<tbody> |
| 340 |
<tr style="background:none;"> |
| 341 |
<th colspan="2"></th> |
| 342 |
<th colspan="2"><?php _e('Free', 'ultimate-post');?></th> |
| 343 |
<th colspan="2"><?php _e('Premium', 'ultimate-post');?></th> |
| 344 |
</tr> |
| 345 |
|
| 346 |
<tr> |
| 347 |
<td colspan="2"><?php _e('Advanced Starter Packs', 'ultimate-post');?></td> |
| 348 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 349 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 350 |
</tr> |
| 351 |
<tr> |
| 352 |
<td colspan="2"><?php _e('Advanced Ready-block designs', 'ultimate-post');?></td> |
| 353 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 354 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 355 |
</tr> |
| 356 |
<tr> |
| 357 |
<td colspan="2"><?php _e('Advanced Layout designs', 'ultimate-post');?></td> |
| 358 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 359 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 360 |
</tr> |
| 361 |
<tr> |
| 362 |
<td colspan="2"><?php _e('Advanced Quick Query feature', 'ultimate-post');?></td> |
| 363 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 364 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 365 |
</tr> |
| 366 |
<tr> |
| 367 |
<td colspan="2"><?php _e('Category Specific Color', 'ultimate-post');?></td> |
| 368 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 369 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 370 |
</tr> |
| 371 |
<tr> |
| 372 |
<td colspan="2"><?php _e('Category Specific background-color', 'ultimate-post');?></td> |
| 373 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 374 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 375 |
</tr> |
| 376 |
<tr> |
| 377 |
<td colspan="2"><?php _e('PostX Advanced Archive Builder Features', 'ultimate-post');?></td> |
| 378 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 379 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 380 |
</tr> |
| 381 |
<tr> |
| 382 |
<td colspan="2"><?php _e('Unlimited Saved Templates', 'ultimate-post');?></td> |
| 383 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 384 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 385 |
</tr> |
| 386 |
<tr> |
| 387 |
<td colspan="2"><?php _e('Yoast SEO Meta Addon', 'ultimate-post');?></td> |
| 388 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 389 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 390 |
</tr> |
| 391 |
<tr> |
| 392 |
<td colspan="2"><?php _e('All-in-one SEO Meta Addon', 'ultimate-post');?></td> |
| 393 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 394 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 395 |
</tr> |
| 396 |
<tr> |
| 397 |
<td colspan="2"><?php _e('RankMath SEO Meta Addon', 'ultimate-post');?></td> |
| 398 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 399 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 400 |
</tr> |
| 401 |
<tr> |
| 402 |
<td colspan="2"><?php _e('SEOPress Meta Addon', 'ultimate-post');?></td> |
| 403 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 404 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 405 |
</tr> |
| 406 |
<tr> |
| 407 |
<td colspan="2"><?php _e('Squirrly SEO Meta Addon', 'ultimate-post');?></td> |
| 408 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 409 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 410 |
</tr> |
| 411 |
<tr> |
| 412 |
<td colspan="2"><?php _e('Content Animations', 'ultimate-post');?></td> |
| 413 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 414 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 415 |
</tr> |
| 416 |
<tr> |
| 417 |
<td colspan="2"><?php _e('Content Background Color', 'ultimate-post');?></td> |
| 418 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 419 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 420 |
</tr> |
| 421 |
<tr> |
| 422 |
<td colspan="2"><?php _e('Table of Contents advanced layouts', 'ultimate-post');?></td> |
| 423 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 424 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 425 |
</tr> |
| 426 |
<tr> |
| 427 |
<td colspan="2"><?php _e('Table of Contents Advanced Block Designs', 'ultimate-post');?></td> |
| 428 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 429 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 430 |
</tr> |
| 431 |
<tr> |
| 432 |
<td colspan="2"><?php _e('Table of Contents Hover Style', 'ultimate-post');?></td> |
| 433 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 434 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 435 |
</tr> |
| 436 |
<tr> |
| 437 |
<td colspan="2"><?php _e('Sticky Table of Contents', 'ultimate-post');?></td> |
| 438 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 439 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 440 |
</tr> |
| 441 |
<tr> |
| 442 |
<td colspan="2"><?php _e('Advanced Responsiveness Feature ', 'ultimate-post');?></td> |
| 443 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 444 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 445 |
</tr> |
| 446 |
<tr> |
| 447 |
<td colspan="2"><?php _e('Priority Support', 'ultimate-post');?></td> |
| 448 |
<td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td> |
| 449 |
<td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td> |
| 450 |
</tr> |
| 451 |
|
| 452 |
<tr style="background-color:#FFFFFF"> |
| 453 |
<td colspan="2" style="border-right:none;"></td> |
| 454 |
<td colspan="2" style="border-right:none; border-left:none;"></td> |
| 455 |
<td colspan="2" style="border-left: none"><a class="ultp-btn ultp-btn-primary" href="https://www.wpxpo.com/postx/pricing/"><?php _e('Upgrade Now', 'ultimate-post'); ?></a></td> |
| 456 |
</tr> |
| 457 |
</tbody> |
| 458 |
</table> |
| 459 |
</div> |
| 460 |
</div> |
| 461 |
<!--/compare--> |
| 462 |
|
| 463 |
<div class="ultp-content-wrap ultp-margin-top20"> |
| 464 |
|
| 465 |
<div class="ultp-text-center"> |
| 466 |
<h2 class="ultp-admin-title"><?php _e('Encouragement from Our Users', 'ultimate-post'); ?></h2> |
| 467 |
<p class="ultp-admin-text"><?php _e('Here’s what the Facebook community has to say about the PostX Gutenberg Blocks Plugin. We’re pumped because of the positive feedback we’ve received so far!', 'ultimate-post'); ?></p> |
| 468 |
</div> |
| 469 |
|
| 470 |
<div class="ultp-facebook-reivew ultp-admin-card"> |
| 471 |
<img src="<?php echo ULTP_URL.'assets/img/admin/facebook-testimonials.jpg'; ?>" alt="Testimonials"> |
| 472 |
</div> |
| 473 |
</div> |
| 474 |
|
| 475 |
<div class="ultp-content-wrap ultp-margin-top20"> |
| 476 |
<div class="ultp-text-center"> |
| 477 |
<h2 class="ultp-admin-title"><?php _e('Words from the WordPress Community', 'ultimate-post'); ?></h2> |
| 478 |
<p class="ultp-admin-text"><?php _e('With over 10,000+ active downloads and 70+ positive ratings, we’re growing at a rapid pace. It wouldn’t have been possible without a very supportive community admiring PostX. Here’s what they have to say:', 'ultimate-post'); ?></p> |
| 479 |
</div> |
| 480 |
<div class="ultp-testimonial-items"> |
| 481 |
<div class="ultp-testimonial-item"> |
| 482 |
<div class="ultp-admin-card"> |
| 483 |
<div><?php _e('One of the best Gutenberg post Grid. Really nice pre-made designs, Easy to access library, Easy to use, lots of settings enable you to customize your layouts as you wish. Professional designs and layouts.', 'ultimate-post'); ?></div> |
| 484 |
<h3><a href="https://wordpress.org/support/topic/best-post-grid/" target="_blank"><?php _e('@nima78600 – Best post Grid', 'ultimate-post'); ?></a></h3> |
| 485 |
<div class="ultp-reviews-rating"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> |
| 486 |
</div> |
| 487 |
<div class="ultp-admin-card"> |
| 488 |
<div><?php _e('I’ve been hunting for a plugin that formats post and page links like this via blocks for ages. Super happy. On top of that, I found an issue that was resolved in a few minutes over live chat. Great after-sales support to boot.', 'ultimate-post'); ?></div> |
| 489 |
<h3><a href="https://wordpress.org/support/topic/been-on-the-lookout-for-something-like-this-for-ages/" target="_blank"><?php _e('@rockyshark – Been on the lookout for something like this for ages', 'ultimate-post'); ?></a></h3> |
| 490 |
<div class="ultp-reviews-rating"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> |
| 491 |
</div> |
| 492 |
</div> |
| 493 |
<div class="ultp-testimonial-item"> |
| 494 |
<div class="ultp-admin-card"> |
| 495 |
<div><?php _e('I use this plugin on 14 sites and it is great at extending the Gutenberg Block Editor. Adds great flexibility to any site/theme. Good Support available!!', 'ultimate-post'); ?></div> |
| 496 |
<h3><a href="https://wordpress.org/support/topic/great-plugin-great-support-1442/" target="_blank"><?php _e('@markvanjaarsveld – Great Plugin – Great Support', 'ultimate-post'); ?></a></h3> |
| 497 |
<div class="ultp-reviews-rating"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> |
| 498 |
</div> |
| 499 |
<div class="ultp-admin-card"> |
| 500 |
<div><?php _e('I like this plugin: it is simple, give a great experience to the user of your website and easy to use. I had some technical problems, which were resolved in only couple of hours! Great…', 'ultimate-post'); ?></div> |
| 501 |
<h3><a href="https://wordpress.org/support/topic/great-plugin-and-very-good-service/" target="_blank"><?php _e('@tiddeman83 – Great plugin and very good service', 'ultimate-post'); ?></a></h3> |
| 502 |
<div class="ultp-reviews-rating"><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span><span class="dashicons dashicons-star-filled"></span></div> |
| 503 |
</div> |
| 504 |
</div> |
| 505 |
</div> |
| 506 |
</div> |
| 507 |
|
| 508 |
<div class="ultp-content-wrap"> |
| 509 |
<div class="ultp-text-center"> |
| 510 |
<h2 class="ultp-admin-title"><?php _e('Frequently Asked Questions', 'ultimate-post'); ?></h2> |
| 511 |
<p class="ultp-admin-text"><?php _e('Get proper answers to some common questions popping up in your mind. We’re always looking to make our products better to offer the best possible experience. For now, let’s get you started with a few simple answers.', 'ultimate-post'); ?></p> |
| 512 |
</div> |
| 513 |
<div class="ultp-faq-items"> |
| 514 |
<div class="ultp-faq-item"> |
| 515 |
<h3 class="ultp-faq-heading"><?php _e('Where do I get a license from?', 'ultimate-post'); ?></h3> |
| 516 |
<p class="ultp-faq-description"> <?php _e( 'You’ll need to have an active <a href="https://www.wpxpo.com/">WPXPO account</a> to buy the PostX Pro License. Once you log in to your account, you can access your licenses from there.', 'ultimate-post' );?> </p> |
| 517 |
</div> |
| 518 |
<div class="ultp-faq-item"> |
| 519 |
<h3 class="ultp-faq-heading"><?php _e('How can I upgrade my license? ', 'ultimate-post'); ?></h3> |
| 520 |
<p class="ultp-faq-description"> <?php _e( ' You can upgrade your product license using your WPXPO account. You can use the <a href="https://www.wpxpo.com/contact">contact support form</a> to get quick help from our team.', 'ultimate-post' );?> </p> |
| 521 |
</div> |
| 522 |
<div class="ultp-faq-item"> |
| 523 |
<h3 class="ultp-faq-heading"><?php _e(' If I purchase a single license, can I use it on a development site? ', 'ultimate-post'); ?></h3> |
| 524 |
<p class="ultp-faq-description"> <?php _e( 'If you activate the product on a development site, then you’ll need to deactivate the PostX license on the development site and reactivate the license on your live website.', 'ultimate-post' );?> </p> |
| 525 |
</div> |
| 526 |
<div class="ultp-faq-item"> |
| 527 |
<h3 class="ultp-faq-heading"><?php _e('How do I manage licenses for multiple websites? ', 'ultimate-post'); ?></h3> |
| 528 |
<p class="ultp-faq-description"> <?php _e( 'Once you log in to your WPXPO account, you will find a ‘Manage Licenses’ section from where you manage your Pro licenses for different sites. ', 'ultimate-post' );?> </p> |
| 529 |
</div> |
| 530 |
<div class="ultp-faq-item"> |
| 531 |
<h3 class="ultp-faq-heading"><?php _e('How do I contact support? ', 'ultimate-post'); ?></h3> |
| 532 |
<p class="ultp-faq-description"> <?php _e( 'All of the support issues are resolved via our <a href="https://www.wpxpo.com/contact">contact support form</a>. Use it to get rapid support.', 'ultimate-post' );?> </p> |
| 533 |
</div> |
| 534 |
<div class="ultp-faq-item"> |
| 535 |
<h3 class="ultp-faq-heading"><?php _e('How do you accept payment?', 'ultimate-post'); ?></h3> |
| 536 |
<p class="ultp-faq-description"> <?php _e( ' We accept payment via the <a href="https://paddle.com/support/which-payment-methods-do-you-support">paddle platform.</a> We do accept payment via PayPal as well.', 'ultimate-post' );?> </p> |
| 537 |
</div> |
| 538 |
</div> |
| 539 |
</div> |
| 540 |
|
| 541 |
<div class="ultp-content-wrap"> |
| 542 |
<div class="ultp-upgrade-help-items"> |
| 543 |
<div class="ultp-upgrade-help-item ultp-admin-card"> |
| 544 |
<img src="<?php echo ULTP_URL.'assets/img/admin/docs-icon.svg'; ?>" alt="Documentation"> |
| 545 |
<h4><?php _e('Documentation', 'ultimate-post'); ?></h4> |
| 546 |
<p><?php _e('Visit the <a href="https://docs.wpxpo.com/docs/postx/" target="_blank">PostX documentation</a> to get quick answers on topics. We have extensive documentation to help you create your dream website by navigating through the different settings and controls.', 'ultimate-post'); ?></p> |
| 547 |
<a class="ultp-btn ultp-btn-transparent" href="https://docs.wpxpo.com/docs/postx/" target="_blank"><?php _e('View Details', 'ultimate-post'); ?></a> |
| 548 |
|
| 549 |
</div> |
| 550 |
<div class="ultp-upgrade-help-item ultp-admin-card"> |
| 551 |
<img src="<?php echo ULTP_URL.'assets/img/admin/support-icon.svg'; ?>" alt="Support"> |
| 552 |
<h4><?php _e('Quick Support', 'ultimate-post'); ?></h4> |
| 553 |
<p><?php _e('Send us your queries via the <a href="https://www.wpxpo.com/contact/" target="_blank">contact form</a> to get quick help. Our highly qualified team members are ready to help you with all your queries related to our products.', 'ultimate-post'); ?></p> |
| 554 |
<a class="ultp-btn ultp-btn-transparent" href="https://www.wpxpo.com/contact/" target="_blank"><?php _e('Get Support', 'ultimate-post'); ?></a> |
| 555 |
</div> |
| 556 |
<div class="ultp-upgrade-help-item ultp-admin-card"> |
| 557 |
<img src="<?php echo ULTP_URL.'assets/img/admin/love-icon.svg'; ?>" alt="Love"> |
| 558 |
<h4><?php _e('Show Some Love', 'ultimate-post'); ?></h4> |
| 559 |
<p><?php _e('We are always looking for ways to make our products offer a fulfilling experience. Leave your <a href="https://wordpress.org/support/plugin/ultimate-post/reviews/#new-post" target="-blank">valuable recommendations</a> so that we can make our products better.', 'ultimate-post'); ?></p> |
| 560 |
<a class="ultp-btn ultp-btn-transparent" href="https://wordpress.org/support/plugin/ultimate-post/reviews/#new-post" target="_blank"><?php _e('Show Love', 'ultimate-post'); ?></a> |
| 561 |
</div> |
| 562 |
<div class="ultp-upgrade-help-item ultp-admin-card"> |
| 563 |
<img src="<?php echo ULTP_URL.'assets/img/admin/video-icon.svg'; ?>" alt="Video"> |
| 564 |
<h4><?php _e('Video Tutorials', 'ultimate-post'); ?></h4> |
| 565 |
<p><?php _e('We have a variety of <a href="https://www.youtube.com/channel/UC9I7kzTtG31YlWdG3iL42Jg/videos" target="_blank">Video Assets</a> to help you out. Find out relevant product tutorials to create an awesome experience suited both to you and your users. ', 'ultimate-post'); ?></p> |
| 566 |
<a class="ultp-btn ultp-btn-transparent" href="https://www.youtube.com/channel/UC9I7kzTtG31YlWdG3iL42Jg/videos" target="_blank"><?php _e('View Details', 'ultimate-post'); ?></a> |
| 567 |
</div> |
| 568 |
</div> |
| 569 |
</div> |
| 570 |
</div> |
| 571 |
<?php } |
| 572 |
} |