| 1 |
<?php |
| 2 |
// Do not allow directly accessing this file. |
| 3 |
if ( ! defined( 'ABSPATH' ) ) { |
| 4 |
exit( 'This script cannot be accessed directly.' ); |
| 5 |
} |
| 6 |
/** |
| 7 |
* Get Help |
| 8 |
*/ |
| 9 |
$iframe = 'https://www.youtube.com/embed/videoseries?si=BRbMu5oVNJvsOtPY&list=PLSR3AlpVWfs6GVZtNTXZpAfjHimBGNvCG'; |
| 10 |
$pro = 'https://www.radiustheme.com/downloads/woocommerce-bundle/'; |
| 11 |
$doc = 'https://www.radiustheme.com/docs/shopbuilder/getting-started/installation/'; |
| 12 |
$contact = 'https://www.radiustheme.com/contact/'; |
| 13 |
$fb = 'https://www.facebook.com/groups/234799147426640/'; |
| 14 |
$rt = 'https://www.radiustheme.com/'; |
| 15 |
$review = 'https://wordpress.org/support/plugin/shopbuilder/reviews/?filter=5#new-post'; |
| 16 |
$has_pro = rtsb()->has_pro(); |
| 17 |
|
| 18 |
?> |
| 19 |
<style> |
| 20 |
.rtsb-help-wrapper { |
| 21 |
width: 60%; |
| 22 |
margin: 0 auto; |
| 23 |
} |
| 24 |
.rt-document-box { |
| 25 |
background-color: #fff; |
| 26 |
-webkit-box-shadow: 0 1px 18px 0 rgba(0,0,0,.08); |
| 27 |
box-shadow: 0 1px 18px 0 rgba(0,0,0,.08); |
| 28 |
border-radius: 4px; |
| 29 |
padding: 30px 20px; |
| 30 |
display: -webkit-box; |
| 31 |
display: -ms-flexbox; |
| 32 |
display: flex; |
| 33 |
} |
| 34 |
.rt-document-box .rt-box-icon { |
| 35 |
height: 30px; |
| 36 |
width: 30px; |
| 37 |
background-color: #ecf1ff; |
| 38 |
border-radius: 50%; |
| 39 |
display: -webkit-box; |
| 40 |
display: -ms-flexbox; |
| 41 |
display: flex; |
| 42 |
-webkit-box-align: center; |
| 43 |
-ms-flex-align: center; |
| 44 |
align-items: center; |
| 45 |
-webkit-box-pack: center; |
| 46 |
-ms-flex-pack: center; |
| 47 |
justify-content: center; |
| 48 |
-ms-flex-line-pack: center; |
| 49 |
align-content: center; |
| 50 |
margin-right: 10px; |
| 51 |
} |
| 52 |
.rt-document-box .rt-box-icon i { |
| 53 |
font-size: 20px; |
| 54 |
color: #4360ef; |
| 55 |
} |
| 56 |
.rt-document-box .rt-box-content { |
| 57 |
-webkit-box-flex: 1; |
| 58 |
-ms-flex: 1; |
| 59 |
flex: 1; |
| 60 |
display:flex; |
| 61 |
flex-wrap:wrap; |
| 62 |
} |
| 63 |
.rt-document-box .rt-box-content.rtsb-feature-list{ |
| 64 |
display:block; |
| 65 |
} |
| 66 |
.rt-document-box .rt-box-content .rt-box-title { |
| 67 |
margin: 0 0 12px 0; |
| 68 |
font-size: 20px; |
| 69 |
color: #000; |
| 70 |
font-weight: 600; |
| 71 |
} |
| 72 |
.rt-document-box+.rt-document-box { |
| 73 |
margin-top: 30px; |
| 74 |
} |
| 75 |
body .rt-admin-btn { |
| 76 |
text-align: center; |
| 77 |
display: inline-block; |
| 78 |
font-size: 15px; |
| 79 |
font-weight: 400; |
| 80 |
color: #5d3dfd; |
| 81 |
text-decoration: none; |
| 82 |
padding: 9px 18px; |
| 83 |
border-radius: 4px; |
| 84 |
position: relative; |
| 85 |
z-index: 2; |
| 86 |
line-height: 1.4; |
| 87 |
-webkit-transition: all .3s ease-in-out; |
| 88 |
transition: all .3s ease-in-out; |
| 89 |
height: auto; |
| 90 |
border: 2px solid #4360ef; |
| 91 |
margin-top: auto; |
| 92 |
} |
| 93 |
body .rt-admin-btn:hover { |
| 94 |
background-color: #4360ef; |
| 95 |
color: #fff; |
| 96 |
text-decoration: none; |
| 97 |
} |
| 98 |
.rtsb-help-section .embed-wrapper { |
| 99 |
position: relative; |
| 100 |
display: block; |
| 101 |
width: calc(100% - 40px); |
| 102 |
padding: 0; |
| 103 |
overflow: hidden; |
| 104 |
} |
| 105 |
.rtsb-help-section .embed-wrapper::before { |
| 106 |
display: block; |
| 107 |
content: ""; |
| 108 |
padding-top: 56.25%; |
| 109 |
} |
| 110 |
.rtsb-help-section iframe { |
| 111 |
position: absolute; |
| 112 |
top: 0; |
| 113 |
bottom: 0; |
| 114 |
left: 0; |
| 115 |
width: 100%; |
| 116 |
height: 100%; |
| 117 |
border: 0; |
| 118 |
} |
| 119 |
.rtsb-help-wrapper .rt-document-box .rt-box-title { |
| 120 |
margin-bottom: 30px; |
| 121 |
} |
| 122 |
.rtsb-help-wrapper .rt-document-box .rt-box-icon { |
| 123 |
margin-top: -6px; |
| 124 |
} |
| 125 |
.rtsb-help-wrapper .rtsb-help-section { |
| 126 |
margin-top: 30px; |
| 127 |
} |
| 128 |
.rtsb-feature-list ul { |
| 129 |
column-count: 2; |
| 130 |
column-gap: 30px; |
| 131 |
margin-bottom: 0; |
| 132 |
} |
| 133 |
.rtsb-feature-list ul li { |
| 134 |
padding: 0 0 12px; |
| 135 |
margin-bottom: 0; |
| 136 |
width: 100%; |
| 137 |
font-size: 14px; |
| 138 |
} |
| 139 |
.rtsb-feature-list ul li:last-child { |
| 140 |
padding-bottom: 0; |
| 141 |
} |
| 142 |
.rtsb-feature-list ul li i { |
| 143 |
color: #4C6FFF; |
| 144 |
} |
| 145 |
.rtsb-pro-feature-content { |
| 146 |
display: flex; |
| 147 |
flex-wrap: wrap; |
| 148 |
} |
| 149 |
.rtsb-pro-feature-content .rt-document-box + .rt-document-box { |
| 150 |
margin-left: 30px; |
| 151 |
} |
| 152 |
.rtsb-pro-feature-content .rt-document-box { |
| 153 |
flex: 0 0 calc(33.3333% - 60px); |
| 154 |
margin-top: 30px; |
| 155 |
} |
| 156 |
.rtsb-testimonials { |
| 157 |
display: flex; |
| 158 |
flex-wrap: wrap; |
| 159 |
} |
| 160 |
.rtsb-testimonials .rtsb-testimonial + .rtsb-testimonial { |
| 161 |
margin-left: 30px; |
| 162 |
} |
| 163 |
.rtsb-testimonials .rtsb-testimonial { |
| 164 |
flex: 0 0 calc(50% - 30px); |
| 165 |
display:flex; |
| 166 |
flex-wrap:wrap; |
| 167 |
} |
| 168 |
.rtsb-testimonial .client-info { |
| 169 |
display: flex; |
| 170 |
flex-wrap: wrap; |
| 171 |
font-size: 14px; |
| 172 |
align-items: center; |
| 173 |
} |
| 174 |
.rtsb-testimonial .client-info img { |
| 175 |
width: 60px; |
| 176 |
height: 60px; |
| 177 |
object-fit: cover; |
| 178 |
border-radius: 50%; |
| 179 |
margin-right: 10px; |
| 180 |
border: 1px solid #ddd; |
| 181 |
-webkit-box-shadow: 0 1px 3px rgb(0, 0, 0, 0.2); |
| 182 |
box-shadow: 0 1px 3px rgb(0, 0, 0, 0.2); |
| 183 |
} |
| 184 |
.rtsb-testimonial .client-info .rtsb-star { |
| 185 |
color: #4C6FFF; |
| 186 |
} |
| 187 |
.rtsb-testimonial .client-info .client-name { |
| 188 |
display: block; |
| 189 |
color: #000; |
| 190 |
font-size: 16px; |
| 191 |
font-weight: 600; |
| 192 |
margin: 8px 0 0; |
| 193 |
} |
| 194 |
.rtsb-call-to-action { |
| 195 |
background-size: cover; |
| 196 |
background-repeat: no-repeat; |
| 197 |
background-position: left center; |
| 198 |
height: 150px; |
| 199 |
color: #ffffff; |
| 200 |
margin: 30px 0; |
| 201 |
} |
| 202 |
.rtsb-call-to-action a { |
| 203 |
color: inherit; |
| 204 |
display: flex; |
| 205 |
flex-wrap: wrap; |
| 206 |
width: 100%; |
| 207 |
height: 100%; |
| 208 |
flex: 1; |
| 209 |
align-items: center; |
| 210 |
font-size: 28px; |
| 211 |
font-weight: 700; |
| 212 |
text-decoration: none; |
| 213 |
margin-left: 130px; |
| 214 |
position: relative; |
| 215 |
outline: none; |
| 216 |
-webkit-box-shadow: none; |
| 217 |
box-shadow: none; |
| 218 |
} |
| 219 |
.rtsb-call-to-action a::before { |
| 220 |
content: ""; |
| 221 |
position: absolute; |
| 222 |
left: -30px; |
| 223 |
top: 50%; |
| 224 |
height: 30%; |
| 225 |
width: 5px; |
| 226 |
background: #fff; |
| 227 |
-webkit-transform: translateY(-50%); |
| 228 |
transform: translateY(-50%); |
| 229 |
} |
| 230 |
.rtsb-call-to-action:hover a { |
| 231 |
text-decoration: underline; |
| 232 |
} |
| 233 |
.rtsb-testimonial p { |
| 234 |
text-align: justify; |
| 235 |
flex-basis:100%; |
| 236 |
} |
| 237 |
@media all and (max-width: 1400px) { |
| 238 |
.rtsb-help-wrapper { |
| 239 |
width: 80%; |
| 240 |
} |
| 241 |
} |
| 242 |
@media all and (max-width: 1025px) { |
| 243 |
.rtsb-pro-feature-content .rt-document-box { |
| 244 |
flex: 0 0 calc(50% - 55px) |
| 245 |
} |
| 246 |
.rtsb-pro-feature-content .rt-document-box + .rt-document-box + .rt-document-box { |
| 247 |
margin-left: 0; |
| 248 |
} |
| 249 |
} |
| 250 |
@media all and (max-width: 991px) { |
| 251 |
.rtsb-help-wrapper { |
| 252 |
width: calc(100% - 40px); |
| 253 |
} |
| 254 |
.rtsb-call-to-action a { |
| 255 |
justify-content: center; |
| 256 |
margin-left: auto; |
| 257 |
margin-right: auto; |
| 258 |
text-align: center; |
| 259 |
} |
| 260 |
.rtsb-call-to-action a::before { |
| 261 |
content: none; |
| 262 |
} |
| 263 |
} |
| 264 |
@media all and (max-width: 600px) { |
| 265 |
.rt-document-box .rt-box-content .rt-box-title { |
| 266 |
line-height: 28px; |
| 267 |
} |
| 268 |
.rtsb-help-section .embed-wrapper { |
| 269 |
width: 100%; |
| 270 |
} |
| 271 |
.rtsb-feature-list ul { |
| 272 |
column-count: 1; |
| 273 |
} |
| 274 |
.rtsb-feature-list ul li { |
| 275 |
width: 100%; |
| 276 |
} |
| 277 |
.rtsb-call-to-action a { |
| 278 |
padding-left: 25px; |
| 279 |
padding-right: 25px; |
| 280 |
font-size: 20px; |
| 281 |
line-height: 28px; |
| 282 |
width: 80%; |
| 283 |
} |
| 284 |
.rtsb-testimonials { |
| 285 |
display: block; |
| 286 |
} |
| 287 |
.rtsb-testimonials .rtsb-testimonial + .rtsb-testimonial { |
| 288 |
margin-left: 0; |
| 289 |
margin-top: 30px; |
| 290 |
padding-top: 30px; |
| 291 |
border-top: 1px solid #ddd; |
| 292 |
} |
| 293 |
.rtsb-pro-feature-content .rt-document-box { |
| 294 |
width: 100%; |
| 295 |
flex: auto; |
| 296 |
} |
| 297 |
.rtsb-pro-feature-content .rt-document-box + .rt-document-box { |
| 298 |
margin-left: 0; |
| 299 |
} |
| 300 |
|
| 301 |
.rtsb-help-wrapper .rt-document-box { |
| 302 |
display: block; |
| 303 |
position: relative; |
| 304 |
} |
| 305 |
|
| 306 |
.rtsb-help-wrapper .rt-document-box .rt-box-icon { |
| 307 |
position: absolute; |
| 308 |
left: 20px; |
| 309 |
top: 30px; |
| 310 |
margin-top: 0; |
| 311 |
} |
| 312 |
|
| 313 |
.rt-document-box .rt-box-content .rt-box-title { |
| 314 |
margin-left: 45px; |
| 315 |
} |
| 316 |
} |
| 317 |
</style> |
| 318 |
<div class="rtsb-help-wrapper" > |
| 319 |
<div class="rtsb-help-section rt-document-box"> |
| 320 |
<div class="rt-box-icon"><i class="dashicons dashicons-media-document"></i></div> |
| 321 |
<div class="rt-box-content"> |
| 322 |
<h3 class="rt-box-title">Thank you for installing ShopBuilder</h3> |
| 323 |
<div class="embed-wrapper"> |
| 324 |
<iframe src="<?php echo esc_url( $iframe ); ?>" title="Shop Builder" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> |
| 325 |
</div> |
| 326 |
</div> |
| 327 |
</div> |
| 328 |
<?php if ( ! $has_pro ) { ?> |
| 329 |
<div class="rt-document-box"> |
| 330 |
<div class="rt-box-icon"><i class="dashicons dashicons-megaphone"></i></div> |
| 331 |
<div class="rt-box-content rtsb-feature-list"> |
| 332 |
<h3 class="rt-box-title">Pro Features</h3> |
| 333 |
<ul> |
| 334 |
<li><i class="dashicons dashicons-saved"></i> AJAX Product Filter Widget.</li> |
| 335 |
<li><i class="dashicons dashicons-saved"></i> Product Share – Single Product Widget.</li> |
| 336 |
<li><i class="dashicons dashicons-saved"></i> Sales Count – Single Product Widget.</li> |
| 337 |
<li><i class="dashicons dashicons-saved"></i> Flash Sale Countdown – Single Product Widget.</li> |
| 338 |
<li><i class="dashicons dashicons-saved"></i> Size Chart – Single Product Widget.</li> |
| 339 |
<li><i class="dashicons dashicons-saved"></i> Quick Checkout – Single Product Widget.</li> |
| 340 |
<li><i class="dashicons dashicons-saved"></i> Coupon Form – Checkout Widget.</li> |
| 341 |
<li><i class="dashicons dashicons-saved"></i> Order Details Table.</li> |
| 342 |
<li><i class="dashicons dashicons-saved"></i> Order Billing Address.</li> |
| 343 |
<li><i class="dashicons dashicons-saved"></i> Order Shipping Address.</li> |
| 344 |
<li><i class="dashicons dashicons-saved"></i> Account Dashboard.</li> |
| 345 |
<li><i class="dashicons dashicons-saved"></i> Account Orders.</li> |
| 346 |
<li><i class="dashicons dashicons-saved"></i> Account Billing Address.</li> |
| 347 |
<li><i class="dashicons dashicons-saved"></i> Account Edit / Details.</li> |
| 348 |
<li><i class="dashicons dashicons-saved"></i> Account Order Shipping.</li> |
| 349 |
<li><i class="dashicons dashicons-saved"></i> Account Order Billing.</li> |
| 350 |
<li><i class="dashicons dashicons-saved"></i> Edit Billing Address.</li> |
| 351 |
<li><i class="dashicons dashicons-saved"></i> Edit Shipping Address.</li> |
| 352 |
<li><i class="dashicons dashicons-saved"></i> Login Register Form.</li> |
| 353 |
<li><i class="dashicons dashicons-saved"></i> More Feature...</li> |
| 354 |
</ul> |
| 355 |
</div> |
| 356 |
</div> |
| 357 |
<div class="rtsb-call-to-action" style="background-image: url('<?php echo esc_url( rtsb()->get_assets_uri( 'images/admin-banner.jpg' ) ); ?>')"> |
| 358 |
<a href="<?php echo esc_url( $pro ); ?>" target="_blank" class="rt-update-pro-btn"> |
| 359 |
Update to Pro & Get More Features |
| 360 |
</a> |
| 361 |
</div> |
| 362 |
<?php } ?> |
| 363 |
<div class="rt-document-box"> |
| 364 |
<div class="rt-box-icon"><i class="dashicons dashicons-thumbs-up"></i></div> |
| 365 |
<div class="rt-box-content"> |
| 366 |
<h3 class="rt-box-title">Happy clients of the ShopBuilder</h3> |
| 367 |
<div class="rtsb-testimonials"> |
| 368 |
<div class="rtsb-testimonial"> |
| 369 |
<p>I strongly recommend this solution for creating unique design for your next WooCommerce store. In comparison with alternatives – ShopBuilder is the best. Support is amazing and fast. Thanks for this plugin!</p> |
| 370 |
<div class="client-info"> |
| 371 |
<img src="<?php echo esc_url( rtsb()->get_assets_uri( 'images/admin-testimonial/review-clients-3.png' ) ); ?>"> |
| 372 |
<div> |
| 373 |
<div class="rtsb-star"> |
| 374 |
<i class="dashicons dashicons-star-filled"></i> |
| 375 |
<i class="dashicons dashicons-star-filled"></i> |
| 376 |
<i class="dashicons dashicons-star-filled"></i> |
| 377 |
<i class="dashicons dashicons-star-filled"></i> |
| 378 |
<i class="dashicons dashicons-star-filled"></i> |
| 379 |
</div> |
| 380 |
<span class="client-name">codeorlov</span> |
| 381 |
</div> |
| 382 |
</div> |
| 383 |
</div> |
| 384 |
<div class="rtsb-testimonial"> |
| 385 |
<p>I love this plugin. It’s simple but exactly what I was looking for. Easy install, quick response from the developer. Finally, an easy way to monetize my Shop.</p> |
| 386 |
<div class="client-info"> |
| 387 |
<img src="<?php echo esc_url( rtsb()->get_assets_uri( 'images/admin-testimonial/review-clients-1.png' ) ); ?>"> |
| 388 |
<div> |
| 389 |
<div class="rtsb-star"> |
| 390 |
<i class="dashicons dashicons-star-filled"></i> |
| 391 |
<i class="dashicons dashicons-star-filled"></i> |
| 392 |
<i class="dashicons dashicons-star-filled"></i> |
| 393 |
<i class="dashicons dashicons-star-filled"></i> |
| 394 |
<i class="dashicons dashicons-star-filled"></i> |
| 395 |
</div> |
| 396 |
<span class="client-name">Mahabub Hasan</span> |
| 397 |
</div> |
| 398 |
</div> |
| 399 |
</div> |
| 400 |
</div> |
| 401 |
</div> |
| 402 |
</div> |
| 403 |
<div class="rtsb-pro-feature-content"> |
| 404 |
<div class="rt-document-box"> |
| 405 |
<div class="rt-box-icon"><i class="dashicons dashicons-media-document"></i></div> |
| 406 |
<div class="rt-box-content"> |
| 407 |
<h3 class="rt-box-title">Documentation</h3> |
| 408 |
<p>Get started by spending some time with the documentation we included step by step process with screenshots with video.</p> |
| 409 |
<a href="<?php echo esc_url( $doc ); ?>" target="_blank" class="rt-admin-btn">Documentation</a> |
| 410 |
</div> |
| 411 |
</div> |
| 412 |
<div class="rt-document-box"> |
| 413 |
<div class="rt-box-icon"><i class="dashicons dashicons-sos"></i></div> |
| 414 |
<div class="rt-box-content"> |
| 415 |
<h3 class="rt-box-title">Need Help?</h3> |
| 416 |
<p>Stuck with something? Please create a |
| 417 |
<a href="<?php echo esc_url( $contact ); ?>">ticket here</a> or post on <a href="<?php echo esc_url( $fb ); ?>">facebook group</a>. For emergency case join our <a href="<?php echo esc_url( $rt ); ?>">live chat</a>.</p> |
| 418 |
<a href="<?php echo esc_url( $contact ); ?>" target="_blank" class="rt-admin-btn">Get Support</a> |
| 419 |
</div> |
| 420 |
</div> |
| 421 |
<div class="rt-document-box"> |
| 422 |
<div class="rt-box-icon"><i class="dashicons dashicons-smiley"></i></div> |
| 423 |
<div class="rt-box-content"> |
| 424 |
<h3 class="rt-box-title">Happy Our Work?</h3> |
| 425 |
<p>If you are happy with <strong>Food Menu</strong> plugin, please add a rating. It would be glad to us.</p> |
| 426 |
<a href="<?php echo esc_url( $review ); ?>" class="rt-admin-btn" target="_blank">Post Review</a> |
| 427 |
</div> |
| 428 |
</div> |
| 429 |
</div> |
| 430 |
</div> |
| 431 |
|