PluginProbe
Post Grid Gutenberg Blocks – PostX / 2.9.2
Post Grid Gutenberg Blocks – PostX v2.9.2
5.0.39 5.0.38 5.0.37 5.0.36 5.0.35 5.0.34 5.0.33 5.0.32 5.0.31 5.0.30 5.0.29 5.0.28 5.0.27 5.0.26 5.0.25 5.0.23 5.0.24 5.0.22 5.0.21 5.0.20 5.0.19 5.0.18 5.0.17 2.1.1 2.1.2 All 237 releases
ultimate-post / classes / options / Upgrade.php

Upgrade.php in Post Grid Gutenberg Blocks – PostX 2.9.2, at classes/options/Upgrade.php

554 lines 32.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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-text{
137 max-width: 680px;
138 margin: 0 auto;
139 font-size: 16px;
140 line-height: 1.5;
141 color: #292929;
142 }
143 .ultp-admin-text a {
144 color: #037fff;
145 }
146
147 /** promo section */
148 .ultp-promo-item{
149 padding: 35px 24px;
150 border-radius: 4px;
151 box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
152 border: none;
153 display: flex;
154 align-items: center;
155 justify-content: center;
156 transition: 300ms;
157 }
158 .ultp-promo-item:hover {
159 box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.25);
160 }
161 .ultp-promo-item h4 {
162 line-height: 1.4;
163 font-size: 18px;
164 text-align: center;
165 font-weight: 600;
166 color: #000;
167 }
168 /** promo section */
169
170 /* facebook review section */
171 .ultp-facebook-reivew{
172 margin-top: 36px;
173 padding: 20px;
174 border: none;
175 box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
176 }
177 .ultp-facebook-reivew img{
178 max-width: 100%;
179 }
180
181 /* whats people say section end */
182 .ultp-testimonial-items{
183 margin-top: 49px;
184 }
185 .ultp-testimonial-item div {
186 font-style: italic;
187 }
188
189
190 /*faq section*/
191 .ultp-faq-items{
192 display: grid;
193 grid-template-columns: 1fr 1fr;
194 grid-gap: 40px;
195 max-width: 850px;
196 margin: 50px auto 0;
197 }
198
199 .ultp-faq-heading{
200 font-size: 20px;
201 line-height: 1.3;
202 margin-top: 0;
203 margin-bottom: 12px;
204 }
205 .ultp-faq-description{
206 margin: 0;
207 font-size: 16px;
208 line-height: 1.6;
209 text-align: left;
210 }
211 .ultp-faq-description a {
212 color: #037fff;
213 }
214
215 /* ---- Helps --- */
216 .ultp-upgrade-help-items{
217 display: grid;
218 grid-template-columns: 1fr 1fr;
219 grid-gap: 30px;
220 max-width: 1000px;
221 margin: 20px auto 0;
222 }
223 .ultp-upgrade-help-item{
224 padding: 30px;
225 }
226 .ultp-upgrade-help-item img{
227 max-width: 60px;
228 }
229 .ultp-upgrade-help-item h4 {
230 margin: 20px 0 15px;
231 font-size: 24px;
232 color: #000;
233 }
234 .ultp-upgrade-help-item p {
235 font-size: 16px;
236 margin-bottom: 25px;
237 margin-top: 0;
238 line-height: 1.5;
239 }
240 .ultp-upgrade-help-item a {
241 text-decoration: none;
242 color: #037fff;
243 }
244 .ultp-upgrade-help-item a.ultp-btn{
245 display: inline-block;
246 padding: 12px 25px;
247 }
248 .ultp-margin-top20 {
249 margin-top: 20px;
250 }
251
252 /* ----Responsive--- */
253 @media (max-width: 1000px) {
254 .ultp-upgrade-overview, .ultp-testimonial-items, .ultp-upgrade-help-items, .ultp-faq-items {
255 grid-template-columns: 1fr;
256 }
257 .ultp-upgrade-overview img{
258 max-width: 100%;
259 }
260 .ultp-facebook-reivew img{
261 max-width: 100%;
262 }
263 .ultp-admin-text{
264 max-width: 100%;
265 padding: 0;
266 }
267 .ultp-upgrade-compare-table table tr td a{
268 font-size: 14px;
269 }
270 }
271 </style>
272
273 <div class="ultp-option-body ultp-upgrade-overview-wrapper">
274 <div class="ultp-content-wrap">
275 <div class="ultp-upgrade-overview ultp-admin-card">
276 <div class="ultp-upgrade-overview-content">
277 <h3><?php _e( 'The Complete <strong><span>Solutions</span></strong> for your <strong>News, Magazine, and Blog</strong> website.', 'ultimate-post'); ?></h3>
278 <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>
279 </div>
280 <div class="ultp-upgrade-overview-image">
281 <img loading="lazy" src="<?php echo ULTP_URL.'assets/img/admin/upgrade-overview-image.jpg'; ?>" alt="Filter Category">
282 </div>
283 </div>
284 </div>
285
286 <div class="ultp-content-wrap ultp-margin-top20">
287 <div class="ultp-text-center">
288 <h2 class="ultp-lg-heading"><?php _e('Why Do You Need PostX Pro?', 'ultimate-post'); ?></h2>
289 <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>
290 </div>
291 </div>
292
293 <div class="ultp-content-wrap">
294 <div class="ultp-promo-items">
295 <div class="ultp-promo-item ultp-admin-card">
296 <h4 class="ultp-promo-single-line"><?php _e('10+ Addons Included', 'ultimate-post'); ?></h4>
297 </div>
298 <div class="ultp-promo-item ultp-admin-card">
299 <h4><?php _e('Advanced Query Builder', 'ultimate-post'); ?></h4>
300 </div>
301 <div class="ultp-promo-item ultp-admin-card">
302 <h4><?php _e('200+ Ready Design Libary', 'ultimate-post'); ?></h4>
303 </div>
304 <div class="ultp-promo-item ultp-admin-card">
305 <h4><?php _e('Exclusive Dynamic Site Builder', 'ultimate-post'); ?></h4>
306 </div>
307 <div class="ultp-promo-item ultp-admin-card">
308 <h4><?php _e('Unlimited Templates', 'ultimate-post'); ?></h4>
309 </div>
310 </div>
311 </div>
312
313 <div class="ultp-content-wrap ultp-margin-top20">
314 <div class="ultp-text-center">
315 <h2 class="ultp-lg-heading"><?php _e('⋆ ⋆ ⋆ 14-Day Moneyback Guarantee ⋆ ⋆ ⋆', 'ultimate-post'); ?></h2>
316 <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>
317 </div>
318
319 <div class="ultp-upgrade-compare-table" style="overflow-x:auto;">
320 <table>
321 <tbody>
322 <tr style="background:none;">
323 <th colspan="2"></th>
324 <th colspan="2"><?php _e('Free', 'ultimate-post');?></th>
325 <th colspan="2"><?php _e('Premium', 'ultimate-post');?></th>
326 </tr>
327
328 <tr>
329 <td colspan="2"><?php _e('Advanced Starter Packs', 'ultimate-post');?></td>
330 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
331 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
332 </tr>
333 <tr>
334 <td colspan="2"><?php _e('Advanced Ready-block designs', 'ultimate-post');?></td>
335 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
336 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
337 </tr>
338 <tr>
339 <td colspan="2"><?php _e('Advanced Layout designs', 'ultimate-post');?></td>
340 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
341 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
342 </tr>
343 <tr>
344 <td colspan="2"><?php _e('Advanced Quick Query feature', 'ultimate-post');?></td>
345 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
346 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
347 </tr>
348 <tr>
349 <td colspan="2"><?php _e('Category Specific Color', 'ultimate-post');?></td>
350 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
351 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
352 </tr>
353 <tr>
354 <td colspan="2"><?php _e('Category Specific background-color', 'ultimate-post');?></td>
355 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
356 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
357 </tr>
358 <tr>
359 <td colspan="2"><?php _e('PostX Advanced Dynamic Site Builder Features', 'ultimate-post');?></td>
360 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
361 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
362 </tr>
363 <tr>
364 <td colspan="2"><?php _e('Unlimited Saved Templates', 'ultimate-post');?></td>
365 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
366 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
367 </tr>
368 <tr>
369 <td colspan="2"><?php _e('Yoast SEO Meta Addon', 'ultimate-post');?></td>
370 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
371 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
372 </tr>
373 <tr>
374 <td colspan="2"><?php _e('All-in-one SEO Meta Addon', 'ultimate-post');?></td>
375 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
376 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
377 </tr>
378 <tr>
379 <td colspan="2"><?php _e('RankMath SEO Meta Addon', 'ultimate-post');?></td>
380 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
381 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
382 </tr>
383 <tr>
384 <td colspan="2"><?php _e('SEOPress Meta Addon', 'ultimate-post');?></td>
385 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
386 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
387 </tr>
388 <tr>
389 <td colspan="2"><?php _e('Squirrly SEO Meta Addon', 'ultimate-post');?></td>
390 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
391 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
392 </tr>
393 <tr>
394 <td colspan="2"><?php _e('Content Animations', 'ultimate-post');?></td>
395 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
396 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
397 </tr>
398 <tr>
399 <td colspan="2"><?php _e('Content Background Color', 'ultimate-post');?></td>
400 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
401 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
402 </tr>
403 <tr>
404 <td colspan="2"><?php _e('Table of Contents advanced layouts', 'ultimate-post');?></td>
405 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
406 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
407 </tr>
408 <tr>
409 <td colspan="2"><?php _e('Table of Contents Advanced Block Designs', 'ultimate-post');?></td>
410 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
411 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
412 </tr>
413 <tr>
414 <td colspan="2"><?php _e('Table of Contents Hover Style', 'ultimate-post');?></td>
415 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
416 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
417 </tr>
418 <tr>
419 <td colspan="2"><?php _e('Sticky Table of Contents', 'ultimate-post');?></td>
420 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
421 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
422 </tr>
423 <tr>
424 <td colspan="2"><?php _e('Advanced Responsiveness Feature ', 'ultimate-post');?></td>
425 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
426 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
427 </tr>
428 <tr>
429 <td colspan="2"><?php _e('Priority Support', 'ultimate-post');?></td>
430 <td colspan="2"><i class="dashicons dashicons-no-alt table-icon"></i></td>
431 <td colspan="2"><i class="dashicons dashicons-yes table-icon"></i></td>
432 </tr>
433
434 <tr style="background-color:#FFFFFF">
435 <td colspan="2" style="border-right:none;"></td>
436 <td colspan="2" style="border-right:none; border-left:none;"></td>
437 <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>
438 </tr>
439 </tbody>
440 </table>
441 </div>
442 </div>
443 <!--/compare-->
444
445 <div class="ultp-content-wrap ultp-margin-top20">
446
447 <div class="ultp-text-center">
448 <h2 class="ultp-lg-heading"><?php _e('Encouragement from Our Users', 'ultimate-post'); ?></h2>
449 <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>
450 </div>
451
452 <div class="ultp-facebook-reivew ultp-admin-card">
453 <img src="<?php echo ULTP_URL.'assets/img/admin/facebook-testimonials.jpg'; ?>" alt="Testimonials">
454 </div>
455 </div>
456
457 <div class="ultp-content-wrap ultp-margin-top20">
458 <div class="ultp-text-center">
459 <h2 class="ultp-lg-heading"><?php _e('Words from the WordPress Community', 'ultimate-post'); ?></h2>
460 <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>
461 </div>
462 <div class="ultp-testimonial-items">
463 <div class="ultp-testimonial-item">
464 <div class="ultp-admin-card">
465 <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>
466 <h3><a href="https://wordpress.org/support/topic/best-post-grid/" target="_blank"><?php _e('@nima78600 – Best post Grid', 'ultimate-post'); ?></a></h3>
467 <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>
468 </div>
469 <div class="ultp-admin-card">
470 <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>
471 <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>
472 <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>
473 </div>
474 </div>
475 <div class="ultp-testimonial-item">
476 <div class="ultp-admin-card">
477 <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>
478 <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>
479 <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>
480 </div>
481 <div class="ultp-admin-card">
482 <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>
483 <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>
484 <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>
485 </div>
486 </div>
487 </div>
488 </div>
489
490 <div class="ultp-content-wrap">
491 <div class="ultp-text-center">
492 <h2 class="ultp-lg-heading"><?php _e('Frequently Asked Questions', 'ultimate-post'); ?></h2>
493 <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>
494 </div>
495 <div class="ultp-faq-items">
496 <div class="ultp-faq-item">
497 <h3 class="ultp-faq-heading"><?php _e('Where do I get a license from?', 'ultimate-post'); ?></h3>
498 <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>
499 </div>
500 <div class="ultp-faq-item">
501 <h3 class="ultp-faq-heading"><?php _e('How can I upgrade my license? ', 'ultimate-post'); ?></h3>
502 <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>
503 </div>
504 <div class="ultp-faq-item">
505 <h3 class="ultp-faq-heading"><?php _e(' If I purchase a single license, can I use it on a development site? ', 'ultimate-post'); ?></h3>
506 <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>
507 </div>
508 <div class="ultp-faq-item">
509 <h3 class="ultp-faq-heading"><?php _e('How do I manage licenses for multiple websites? ', 'ultimate-post'); ?></h3>
510 <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>
511 </div>
512 <div class="ultp-faq-item">
513 <h3 class="ultp-faq-heading"><?php _e('How do I contact support? ', 'ultimate-post'); ?></h3>
514 <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>
515 </div>
516 <div class="ultp-faq-item">
517 <h3 class="ultp-faq-heading"><?php _e('How do you accept payment?', 'ultimate-post'); ?></h3>
518 <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>
519 </div>
520 </div>
521 </div>
522
523 <div class="ultp-content-wrap">
524 <div class="ultp-upgrade-help-items">
525 <div class="ultp-upgrade-help-item ultp-admin-card">
526 <img src="<?php echo ULTP_URL.'assets/img/admin/docs-icon.svg'; ?>" alt="Documentation">
527 <h4><?php _e('Documentation', 'ultimate-post'); ?></h4>
528 <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>
529 <a class="ultp-btn ultp-btn-transparent" href="https://docs.wpxpo.com/docs/postx/" target="_blank"><?php _e('View Details', 'ultimate-post'); ?></a>
530
531 </div>
532 <div class="ultp-upgrade-help-item ultp-admin-card">
533 <img src="<?php echo ULTP_URL.'assets/img/admin/support-icon.svg'; ?>" alt="Support">
534 <h4><?php _e('Quick Support', 'ultimate-post'); ?></h4>
535 <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>
536 <a class="ultp-btn ultp-btn-transparent" href="https://www.wpxpo.com/contact/" target="_blank"><?php _e('Get Support', 'ultimate-post'); ?></a>
537 </div>
538 <div class="ultp-upgrade-help-item ultp-admin-card">
539 <img src="<?php echo ULTP_URL.'assets/img/admin/love-icon.svg'; ?>" alt="Love">
540 <h4><?php _e('Show Some Love', 'ultimate-post'); ?></h4>
541 <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>
542 <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>
543 </div>
544 <div class="ultp-upgrade-help-item ultp-admin-card">
545 <img src="<?php echo ULTP_URL.'assets/img/admin/video-icon.svg'; ?>" alt="Video">
546 <h4><?php _e('Video Tutorials', 'ultimate-post'); ?></h4>
547 <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>
548 <a class="ultp-btn ultp-btn-transparent" href="https://www.youtube.com/channel/UC9I7kzTtG31YlWdG3iL42Jg/videos" target="_blank"><?php _e('View Details', 'ultimate-post'); ?></a>
549 </div>
550 </div>
551 </div>
552 </div>
553 <?php }
554 }