PluginProbe
Flying Scripts: Delay JavaScript to Improve Site Speed & Performance / 1.1.7
Flying Scripts: Delay JavaScript to Improve Site Speed & Performance v1.1.7
trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4
flying-scripts / settings / optimize-more.php

optimize-more.php in Flying Scripts: Delay JavaScript to Improve Site Speed & Performance 1.1.7, at settings/optimize-more.php

168 lines 4.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 function flying_scripts_view_optimize_more() {
3 ?>
4 <style>
5 .grid {
6 display: flex;
7 flex-wrap: wrap;
8 }
9 .box {
10 width: 300px;
11 margin: 10px;
12 background: white;
13 border-radius: 7px;
14 overflow: hidden;
15 box-shadow: 2px 5px 5px 5px #ececec;
16 }
17 .box .info {
18 padding: 0px 15px 15px 15px;
19 }
20 </style>
21
22 <div id="optimize-more">
23 <h3>From the creator of this plugin</h3>
24 <div class="grid">
25 <div class="box">
26 <img
27 src="https://optimize-more.wpspeedmatters.com/flying-pages.png"
28 width="300px"
29 height="150px"
30 />
31 <div class="info">
32 <h3>Flying Pages</h3>
33 <p>
34 Preload pages before the user click on links, making them load
35 instantly.
36 </p>
37 <a href="https://wordpress.org/plugins/flying-pages/" target="_blank"
38 ><button class="button button-primary">Get Flying Pages</button></a
39 >
40 </div>
41 </div>
42 <div class="box">
43 <img
44 src="https://optimize-more.wpspeedmatters.com/flying-images.png"
45 width="300px"
46 height="150px"
47 />
48 <div class="info">
49 <h3>Flying Images</h3>
50 <p>
51 The complete solution for image optimization. Free CDN, compression,
52 WebP, responsive images, lazy loading.
53 </p>
54 <a href="https://wordpress.org/plugins/nazy-load/" target="_blank"
55 ><button class="button button-primary">Get Flying Images</button></a
56 >
57 </div>
58 </div>
59 <div class="box">
60 <img
61 src="https://optimize-more.wpspeedmatters.com/flying-analytics.png"
62 width="300px"
63 height="150px"
64 />
65 <div class="info">
66 <h3>Flying Analytics</h3>
67 <p>Speed up Google Analytics by hosting locally.</p>
68 <a
69 href="https://wordpress.org/plugins/flying-analytics/"
70 target="_blank"
71 ><button class="button button-primary">
72 Get Flying Analytics
73 </button></a
74 >
75 </div>
76 </div>
77 <div class="box">
78 <img
79 src="https://optimize-more.wpspeedmatters.com/wp-speed-matters.png"
80 width="300px"
81 height="150px"
82 />
83 <div class="info">
84 <h3>WP Speed Matters</h3>
85 <p>Blog - Tutorials, reviews, guides to speed WordPress.</p>
86 <a href="https://wpspeedmatters.com/" target="_blank"
87 ><button class="button button-primary">
88 Checkout WP Speed Matters
89 </button></a
90 >
91 </div>
92 </div>
93 <div class="box">
94 <img
95 src="https://optimize-more.wpspeedmatters.com/facebook-group.png"
96 width="300px"
97 height="150px"
98 />
99 <div class="info">
100 <h3>Facebook Group</h3>
101 <p>
102 A community of WordPress speed enthusiasts with expert plugin
103 developers, theme developers, hosting providers etc.
104 </p>
105 <a href="https://www.facebook.com/groups/wpspeedmatters" target="_blank"
106 ><button class="button button-primary">Join Facebook Group</button></a
107 >
108 </div>
109 </div>
110 </div>
111 <h3>Other recommended products</h3>
112 <div class="grid">
113 <div class="box">
114 <img
115 src="https://optimize-more.wpspeedmatters.com/cloudways.png"
116 width="300px"
117 height="150px"
118 />
119 <div class="info">
120 <h3>Cloudways</h3>
121 <p>
122 Managed high-performance cloud hosting platform. 5 popular cloud
123 providers with unlimited sites.
124 </p>
125 <a href="https://wpspeedmatters.com/get/cloudways" target="_blank"
126 ><button class="button button-primary">Get Cloudways</button></a
127 >
128 </div>
129 </div>
130 <div class="box">
131 <img
132 src="https://optimize-more.wpspeedmatters.com/wp-rocket.png"
133 width="300px"
134 height="150px"
135 />
136 <div class="info">
137 <h3>WP Rocket</h3>
138 <p>
139 #1 cache plugin to speed WordPress. Get a faster website in a few
140 clicks.
141 </p>
142 <a href="https://wpspeedmatters.com/get/wp-rocket" target="_blank"
143 ><button class="button button-primary">Get WP Rocket</button></a
144 >
145 </div>
146 </div>
147 <div class="box">
148 <img
149 src="https://optimize-more.wpspeedmatters.com/bunnycdn.png"
150 width="300px"
151 height="150px"
152 />
153 <div class="info">
154 <h3>BunnyCDN</h3>
155 <p>
156 37+ pops which provide &lt;30ms latency worldwide. Cheap as ~$1/month.
157 Use coupon code 'WPSPEEDMATTERS' to get $5 OFF.
158 </p>
159 <a href="https://wpspeedmatters.com/get/bunnycdn" target="_blank"
160 ><button class="button button-primary">Get BunnyCDN</button></a
161 >
162 </div>
163 </div>
164 </div>
165 </div>
166
167 <?php
168 }