| @@ -3,9 +3,9 @@ | ||
| 3 | 3 | * WordPress plugin from Wow-Company |
| 4 | 4 | * |
| 5 | 5 | * @package Wow_Plugin |
| 6 | 6 | * @subpackage Wow-Company/Plugins |
| 7 | - * @author Wow-Company <helper@wow-company.com> | |
| 7 | + * @author Dmytro Lobov <i@wpbiker.com> | |
| 8 | 8 | * @copyright 2019 Wow-Company |
| 9 | 9 | * @license GNU P |
| 10 | 10 | */ |
| 11 | 11 | |
| @@ -33,47 +33,83 @@ | ||
| 33 | 33 | $items = unserialize( $request['body'] ); |
| 34 | 34 | set_transient( 'wow_items_code', $items, 604800 ); |
| 35 | 35 | } |
| 36 | 36 | ?> |
| 37 | +<style> | |
| 38 | + .height_screen { | |
| 39 | + height: 270px; | |
| 40 | + background: #fff; | |
| 41 | + } | |
| 37 | 42 | |
| 43 | + .height_screen img { | |
| 44 | + max-width: 100%; | |
| 45 | + } | |
| 46 | + | |
| 47 | + .height_screen span { | |
| 48 | + padding: 10px; | |
| 49 | + font-size: 16px; | |
| 50 | + font-weight: 500; | |
| 51 | + display: block; | |
| 52 | + } | |
| 53 | + | |
| 54 | + .height_screen a { | |
| 55 | + color: #000; | |
| 56 | + text-decoration: none; | |
| 57 | + } | |
| 58 | + | |
| 59 | + .themes { | |
| 60 | + overflow: hidden; | |
| 61 | + } | |
| 62 | + | |
| 63 | + .theme-actions { | |
| 64 | + background: rgba(244, 244, 244, 1) !important; | |
| 65 | + } | |
| 66 | + .theme-name { | |
| 67 | + text-align: left !important; | |
| 68 | + } | |
| 69 | + .install { | |
| 70 | + float: right; | |
| 71 | + } | |
| 72 | +</style> | |
| 73 | +<h3>Several plugins below has free and pro versions you can install it and hopefully useful. Enjoy it.</h3> | |
| 74 | + | |
| 38 | 75 | <div class="theme-browser"> |
| 39 | - <div class="themes"> | |
| 76 | + <div class="themes"> | |
| 40 | 77 | <?php |
| 41 | 78 | $image = 'https://wow-estore.com/a-plugins/img/'; |
| 42 | 79 | foreach ( $items as $key => $value ) { ?> |
| 43 | 80 | |
| 44 | - <div class="theme"> | |
| 45 | - <div class="height_screen"> | |
| 46 | - <a target="_blank" href="<?php echo esc_url( $value[3] ); ?>" target="_blank"><img | |
| 47 | - src="<?php echo esc_url( $image . $value[2] ); ?>"/> | |
| 48 | - <span><?php echo esc_attr( $value[1] ); ?></span> | |
| 49 | - </a> | |
| 50 | - </div> | |
| 51 | - <div class="theme-author"></div> | |
| 52 | - <div class="theme-id-container"> | |
| 53 | - <h2 class="theme-name"> | |
| 54 | - <span><?php echo esc_attr( $value[0] ); ?></span> | |
| 81 | + <div class="theme"> | |
| 82 | + <div class="height_screen"> | |
| 83 | + <a target="_blank" href="<?php echo esc_url( $value[3] ); ?>" target="_blank"><img | |
| 84 | + src="<?php echo esc_url( $image . $value[2] ); ?>"/> | |
| 85 | + <span><?php echo esc_attr( $value[1] ); ?></span> | |
| 86 | + </a> | |
| 87 | + </div> | |
| 88 | + <div class="theme-author"></div> | |
| 89 | + <div class="theme-id-container"> | |
| 90 | + <h2 class="theme-name"> | |
| 91 | + <span><?php echo esc_attr( $value[0] ); ?></span> | |
| 55 | 92 | <?php if ( ! empty( $value[5] ) ) : ?> |
| 56 | - <span class="install"><?php echo esc_attr( $value[5] ); ?>+ <?php _e( 'Active Installs' ); ?></span> | |
| 93 | + <span class="install"><?php echo esc_attr( $value[5] ); ?>+ <?php _e( 'Active Installs' ); ?></span> | |
| 57 | 94 | <?php endif; ?> |
| 58 | - </h2> | |
| 59 | - <div class="theme-actions"> | |
| 95 | + </h2> | |
| 96 | + <div class="theme-actions"> | |
| 60 | 97 | <?php if ( ! empty( $value[3] ) ) : ?> |
| 61 | - <a class="button activate" href="<?php echo esc_url( $value[3] ); ?>">Try FREE</a> | |
| 98 | + <a class="button activate" href="<?php echo esc_url( $value[3] ); ?>">Try FREE</a> | |
| 62 | 99 | <?php endif; ?> |
| 63 | 100 | <?php if ( ! empty( $value[4] ) ) : ?> |
| 64 | - <a class="button button-primary" href="<?php echo esc_url( $value[4] ); ?>" target="_blank">Get | |
| 65 | - PRO</a> | |
| 101 | + <a class="button button-primary" href="<?php echo esc_url( $value[4] ); ?>" target="_blank">Get PRO</a> | |
| 66 | 102 | <?php endif; ?> |
| 67 | - </div> | |
| 68 | - </div> | |
| 69 | - </div> | |
| 103 | + </div> | |
| 104 | + </div> | |
| 105 | + </div> | |
| 70 | 106 | <?php } ?> |
| 71 | - </div> | |
| 107 | + </div> | |
| 72 | 108 | </div> |
| 73 | 109 | |
| 74 | 110 | <p class="wow-thank-you"> |
| 75 | - <span class="thank-line">= = = = = = =</span><br/> | |
| 76 | - Thank you for choosing our plugin<br/> | |
| 77 | - Dmyto Lobov<br/> | |
| 78 | - <a href="https://wow-estore.com" target="_blank">Wow-Estore.com</a> | |
| 111 | + <span class="thank-line">= = = = = = =</span><br/> | |
| 112 | + Thank you for choosing 'Wow Plugin'<br/> | |
| 113 | + Dmyto Lobov<br/> | |
| 114 | + <a href="https://wow-estore.com" target="_blank">Wow-Estore.com</a> | |
| 79 | 115 | </p> |