PluginProbe ʕ •ᴥ•ʔ
The Post Grid – Shortcode, Gutenberg Blocks and Elementor Addon for Post Grid / 4.2.0
The Post Grid – Shortcode, Gutenberg Blocks and Elementor Addon for Post Grid v4.2.0
7.9.3 7.9.2 trunk 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 4.2.0 4.2.1 4.2.2 4.2.3 5.0.0 5.0.1 5.0.2 5.0.3 5.0.4 5.0.5 6.0.0 7.0.0 7.0.1 7.0.2 7.1.0 7.2.0 7.2.1 7.2.10 7.2.11 7.2.2 7.2.3 7.2.4 7.2.5 7.2.6 7.2.7 7.2.8 7.2.9 7.3.0 7.3.1 7.4.0 7.4.1 7.4.2 7.4.3 7.5.0 7.6.0 7.6.1 7.7.0 7.7.1 7.7.10 7.7.11 7.7.12 7.7.13 7.7.14 7.7.15 7.7.16 7.7.17 7.7.18 7.7.19 7.7.2 7.7.20 7.7.21 7.7.22 7.7.3 7.7.4 7.7.5 7.7.6 7.7.7 7.7.8 7.7.9 7.8.0 7.8.1 7.8.2 7.8.3 7.8.4 7.8.5 7.8.6 7.8.7 7.8.8 7.8.9 7.9.0 7.9.1
the-post-grid / resources / page / help.php
the-post-grid / resources / page Last commit date
help.php 3 years ago
help.php
282 lines
1 <?php
2 /**
3 * Get Help Page
4 *
5 * @package RT_TPG
6 */
7
8 // Do not allow directly accessing this file.
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit( 'This script cannot be accessed directly.' );
11 }
12
13 /**
14 * Get Help
15 */
16 ?>
17 <style>
18 .rttpg-help-wrapper {
19 width: 60%;
20 margin: 0 auto;
21 }
22 .rttpg-help-section iframe {
23 max-width: 100%;
24 }
25 .rttpg-help-wrapper .rt-document-box .rt-box-title {
26 margin-bottom: 30px;
27 }
28 .rttpg-help-wrapper .rttpg-help-section {
29 margin-top: 30px;
30 }
31 .rttpg-feature-list ul {
32 display: flex;
33 flex-wrap: wrap;
34 }
35 .rttpg-feature-list ul li {
36 margin: 5px 10px 5px 0;
37 width: calc(50% - 20px);
38 flex: 0 0 calc(50% - 20px);
39 font-size: 14px;
40 }
41 .rttpg-feature-list ul li i {
42 color: var(--rt-primary-color);
43 }
44 .rttpg-pro-feature-content {
45 display: flex;
46 flex-wrap: wrap;
47 }
48 .rttpg-pro-feature-content .rt-document-box + .rt-document-box {
49 margin-left: 30px;
50 }
51 .rttpg-pro-feature-content .rt-document-box {
52 flex: 0 0 calc(33.3333% - 60px);
53 margin-top: 30px;
54 }
55 .rttpg-testimonials {
56 display: flex;
57 flex-wrap: wrap;
58 }
59 .rttpg-testimonials .rttpg-testimonial + .rttpg-testimonial {
60 margin-left: 30px;
61 }
62 .rttpg-testimonials .rttpg-testimonial {
63 flex: 0 0 calc(50% - 30px)
64 }
65 .rttpg-testimonial .client-info {
66 display: flex;
67 flex-wrap: wrap;
68 font-size: 14px;
69 align-items: center;
70 }
71 .rttpg-testimonial .client-info img {
72 width: 60px;
73 height: 60px;
74 object-fit: cover;
75 border-radius: 50%;
76 margin-right: 10px;
77 }
78 .rttpg-testimonial .client-info .rttpg-star {
79 color: var(--rt-primary-color);
80 }
81 .rttpg-testimonial .client-info .client-name {
82 display: block;
83 color: #000;
84 font-size: 16px;
85 font-weight: 600;
86 margin: 8px 0 5px;
87 }
88 .rttpg-call-to-action {
89 background-size: cover;
90 background-repeat: no-repeat;
91 background-position: center;
92 height: 150px;
93 color: #ffffff;
94 margin: 30px 0;
95 }
96 .rttpg-call-to-action a {
97 color: inherit;
98 display: flex;
99 flex-wrap: wrap;
100 width: 100%;
101 height: 100%;
102 flex: 1;
103 justify-content: center;
104 align-items: center;
105 font-size: 28px;
106 font-weight: 700;
107 text-decoration: none;
108 }
109 .rttpg-call-to-action:hover a {
110 text-decoration: underline;
111 }
112 @media all and (max-width: 1400px) {
113 .rttpg-help-wrapper {
114 width: 80%;
115 }
116 .rttpg-help-section iframe {
117 max-width: 100%;
118 height: 320px;
119 }
120 }
121 @media all and (max-width: 991px) {
122 .rttpg-help-wrapper {
123 width: calc(100% - 40px);
124 }
125 .rttpg-pro-feature-content .rt-document-box {
126 flex: 0 0 calc(50% - 55px)
127 }
128 .rttpg-pro-feature-content .rt-document-box + .rt-document-box + .rt-document-box {
129 margin-left: 0;
130 }
131 }
132 @media all and (max-width: 600px) {
133 .rt-document-box .rt-box-content .rt-box-title {
134 line-height: 28px;
135 }
136 .rttpg-help-section iframe {
137 height: 250px;
138 }
139 .rttpg-feature-list ul {
140 display: block;
141 }
142 .rttpg-feature-list ul li {
143 width: 100%;
144 }
145 .rttpg-call-to-action a {
146 padding-left: 25px;
147 padding-right: 25px;
148 font-size: 20px;
149 line-height: 28px;
150 width: 80%;
151 }
152 .rttpg-testimonials {
153 display: block;
154 }
155 .rttpg-testimonials .rttpg-testimonial + .rttpg-testimonial {
156 margin-left: 0;
157 margin-top: 30px;
158 }
159 .rttpg-pro-feature-content .rt-document-box {
160 width: 100%;
161 flex: auto;
162 }
163 .rttpg-pro-feature-content .rt-document-box + .rt-document-box {
164 margin-left: 0;
165 }
166 }
167 </style>
168 <div class="rttpg-help-wrapper" >
169 <div class="rttpg-help-section rt-document-box">
170 <div class="rt-box-icon"><i class="dashicons dashicons-media-document"></i></div>
171 <div class="rt-box-content">
172 <h3 class="rt-box-title">Thank you for installing The Post Grid</h3>
173
174 <H3>Shortcode Demo</H3>
175 <iframe style="width:calc(100% - 40px);" width="800" height="450" src="https://www.youtube.com/embed/_xZBDU4kgKk" title="The Post Grid" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
176
177 <H3>Elementor Demo</H3>
178 <iframe style="width:calc(100% - 40px);" width="800" height="450" src="https://www.youtube.com/embed/Px7c91A0W5Y" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
179 </div>
180 </div>
181 <div class="rt-document-box">
182 <div class="rt-box-icon"><i class="dashicons dashicons-megaphone"></i></div>
183 <div class="rt-box-content rttpg-feature-list">
184 <h3 class="rt-box-title">Pro Features</h3>
185 <ul>
186 <li><i class="dashicons dashicons-saved"></i> Custom Post Type Supported.</li>
187 <li><i class="dashicons dashicons-saved"></i> Advanced Post Filter.</li>
188 <li><i class="dashicons dashicons-saved"></i> Single or Multi Popup.</li>
189 <li><i class="dashicons dashicons-saved"></i> Custom Image Size.</li>
190 <li><i class="dashicons dashicons-saved"></i> Meta Position Control.</li>
191 <li><i class="dashicons dashicons-saved"></i> Social Share.</li>
192 <li><i class="dashicons dashicons-saved"></i> 62 Different Layouts.</li>
193 <li><i class="dashicons dashicons-saved"></i> Slider Layout.</li>
194 <li><i class="dashicons dashicons-saved"></i> Fields Selection.</li>
195 <li><i class="dashicons dashicons-saved"></i> All Text and Color control.</li>
196 <li><i class="dashicons dashicons-saved"></i> AJAX Pagination (Load more and Load on Scrolling).</li>
197 <li><i class="dashicons dashicons-saved"></i> Archive page builder for Elementor </li>
198 <li><i class="dashicons dashicons-saved"></i> Advanced Custom Field support</li>
199 <li><i class="dashicons dashicons-saved"></i> Post View Count</li>
200 </ul>
201 </div>
202 </div>
203 <div class="rttpg-call-to-action" style="background-image: url('<?php echo rtTPG()->get_assets_uri( 'images/admin/banner.png' ); ?>')">
204 <a href="<?php echo esc_url( rtTpg()->proLink() ); ?>" target="_blank" class="rt-update-pro-btn">
205 Update Pro To Get More Features
206 </a>
207 </div>
208 <div class="rt-document-box">
209 <div class="rt-box-icon"><i class="dashicons dashicons-thumbs-up"></i></div>
210 <div class="rt-box-content">
211 <h3 class="rt-box-title">Happy clients of the Post Grid</h3>
212 <div class="rttpg-testimonials">
213 <div class="rttpg-testimonial">
214 <p>So much functionality in the free version. Thank you very much! Many plugins offer a crippled free version to push into going to their PRO. The guys here provide a free version that brings lots of value also. I needed a flexible grid solution to my website that has dozen of grids in different configurations and the plugin could do everything I needed. Very easy to use and support it fantastic. Highly Recomended!</p>
215 <div class="client-info">
216 <img src="<?php echo esc_url(rtTPG()->get_assets_uri( 'images/admin/client1.jpeg' ) ); ?>">
217 <div>
218 <div class="rttpg-star">
219 <i class="dashicons dashicons-star-filled"></i>
220 <i class="dashicons dashicons-star-filled"></i>
221 <i class="dashicons dashicons-star-filled"></i>
222 <i class="dashicons dashicons-star-filled"></i>
223 <i class="dashicons dashicons-star-filled"></i>
224 </div>
225 <span class="client-name">Erez Speiser</span>
226 </div>
227 </div>
228 </div>
229 <div class="rttpg-testimonial">
230 <p>The post grid is a fantastic plugin! It's very easy to figure out without having to read any documentation. That is the mark of an excellent developer who knows how to make the user interface easy for people to use. I love that I can take my simple theme, and jazz it up with a nice grid, without having to go to a page builder. I am now teaching this to all my WordPress students 🙂 Hats off to this amazing plugin!</p>
231 <div class="client-info">
232 <img src="<?php echo esc_url( rtTPG()->get_assets_uri( 'images/admin/client2.jpeg' ) ); ?>">
233 <div>
234 <div class="rttpg-star">
235 <i class="dashicons dashicons-star-filled"></i>
236 <i class="dashicons dashicons-star-filled"></i>
237 <i class="dashicons dashicons-star-filled"></i>
238 <i class="dashicons dashicons-star-filled"></i>
239 <i class="dashicons dashicons-star-filled"></i>
240 </div>
241 <span class="client-name">Christina Hills</span>
242 </div>
243 </div>
244 </div>
245 </div>
246 </div>
247 </div>
248 <div class="rttpg-pro-feature-content">
249 <div class="rt-document-box">
250 <div class="rt-box-icon"><i class="dashicons dashicons-media-document"></i></div>
251 <div class="rt-box-content">
252 <h3 class="rt-box-title">Documentation</h3>
253 <p>Get started by spending some time with the documentation we included step by step process with screenshots with video.</p>
254 <a href="<?php echo esc_url( rtTpg()->docLink() ); ?>" target="_blank" class="rt-admin-btn">Documentation</a>
255 </div>
256 </div>
257 <?php
258 $rtContact = 'https://www.radiustheme.com/contact/';
259 $rtFb = 'https://www.facebook.com/groups/234799147426640/';
260 $rtsite = 'https://www.radiustheme.com/';
261 $rtRating = 'https://wordpress.org/support/plugin/the-post-grid/reviews/?filter=5#new-post';
262 ?>
263 <div class="rt-document-box">
264 <div class="rt-box-icon"><i class="dashicons dashicons-sos"></i></div>
265 <div class="rt-box-content">
266 <h3 class="rt-box-title">Need Help?</h3>
267 <p>Stuck with something? Please create a
268 <a href="<?php echo esc_url( $rtContact ); ?>">ticket here</a> or post on <a href="<?php echo esc_url( $rtFb ); ?>">facebook group</a>. For emergency case join our <a href="<?php echo esc_url( $rtsite ); ?>">live chat</a>.</p>
269 <a href="<?php echo esc_url( $rtContact ); ?>" target="_blank" class="rt-admin-btn">Get Support</a>
270 </div>
271 </div>
272 <div class="rt-document-box">
273 <div class="rt-box-icon"><i class="dashicons dashicons-smiley"></i></div>
274 <div class="rt-box-content">
275 <h3 class="rt-box-title">Happy Our Work?</h3>
276 <p>If you happy with <strong>The Post Grid</strong> plugin, please add a rating. It would be glad to us.</p>
277 <a href="<?php echo esc_url( $rtRating ); ?>" class="rt-admin-btn" target="_blank">Post Review</a>
278 </div>
279 </div>
280 </div>
281 </div>
282