Version Description
(Released: May 07, 2018) = * Update: Moved domain from catchthemes.com to catchplugins.com * Compatibility check up to version 4.9.5
Download this release
Release Info
Developer | catchthemes |
Plugin | Essential Content Types |
Version | 1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1 to 1.2
- README.txt +7 -3
- admin/class-essential-content-types-admin.php +9 -4
- admin/css/admin-dashboard.css +715 -0
- admin/css/essential-content-types-admin.css +51 -603
- admin/css/featured-content-shortcode.css +0 -0
- admin/css/food-menu-shortcode.css +137 -137
- admin/css/portfolio-shortcode.css +0 -0
- admin/css/service-shortcode.css +0 -0
- admin/css/testimonial-shortcode.css +0 -0
- admin/images/free-plugin-246x116.png +0 -0
- admin/images/free-plugins.jpg +0 -0
- admin/images/free-theme-246x175.jpg +0 -0
- admin/images/free-themes.jpg +0 -0
- admin/images/header_1680x394.jpg +0 -0
- admin/images/premium-plugin-246x116.png +0 -0
- admin/images/premium-theme-246x175.jpg +0 -0
- admin/images/premium-themes.jpg +0 -0
- admin/js/catch-instagram-feed-gallery-widget-admin.js +57 -0
- admin/js/essential-content-types-admin.js +25 -0
- admin/js/jquery.matchHeight.min.js +1 -0
- admin/partials/dashboard-display.php +123 -128
- admin/partials/essential-content-types-admin-display.php +280 -159
- admin/partials/footer.php +14 -48
- admin/partials/header.php +0 -22
- admin/partials/other-products.php +0 -56
- admin/partials/sidebar.php +59 -0
- essential-content-types.php +5 -5
- includes/class-essential-content-types-activator.php +3 -3
- includes/class-essential-content-types-deactivator.php +2 -2
- includes/class-essential-content-types-i18n.php +2 -2
- includes/class-essential-content-types-loader.php +2 -2
- includes/class-essential-content-types.php +2 -2
- languages/essential-content-types.pot +371 -65
- uninstall.php +2 -2
README.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
=== Essential Content Types ===
|
2 |
-
Contributors: catchthemes, sakinshrestha, pratikshrestha, maheshmaharjan
|
3 |
-
Donate link: https://
|
4 |
Tags: custom post types, CPT, CMS, post, types, post type, taxonomy, tax, custom, content types, post types, custom content types, testimonial, portfolio, featured content, service
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.9.4
|
@@ -191,10 +191,14 @@ Not so easy way (via FTP) :
|
|
191 |
2. Customizer: Portfolio Archive Options
|
192 |
3. Customizer: Testimonial Archive Options
|
193 |
4. Customizer: Featured Content Archive Options
|
194 |
-
5. Customizer:
|
195 |
|
196 |
== Changelog ==
|
197 |
|
|
|
|
|
|
|
|
|
198 |
= 1.1 =
|
199 |
* Removed: Unnecessary code hiding menu price in Food Menu CPT
|
200 |
|
1 |
=== Essential Content Types ===
|
2 |
+
Contributors: catchplugins, catchthemes, sakinshrestha, pratikshrestha, maheshmaharjan
|
3 |
+
Donate link: https://catchplugins.com/plugins/essential-content-types-pro/
|
4 |
Tags: custom post types, CPT, CMS, post, types, post type, taxonomy, tax, custom, content types, post types, custom content types, testimonial, portfolio, featured content, service
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 4.9.4
|
191 |
2. Customizer: Portfolio Archive Options
|
192 |
3. Customizer: Testimonial Archive Options
|
193 |
4. Customizer: Featured Content Archive Options
|
194 |
+
5. Customizer: Services Archive Options
|
195 |
|
196 |
== Changelog ==
|
197 |
|
198 |
+
= 1.2 (Released: May 07, 2018) =
|
199 |
+
* Update: Moved domain from catchthemes.com to catchplugins.com
|
200 |
+
* Compatibility check up to version 4.9.5
|
201 |
+
|
202 |
= 1.1 =
|
203 |
* Removed: Unnecessary code hiding menu price in Food Menu CPT
|
204 |
|
admin/class-essential-content-types-admin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* The admin-specific functionality of the plugin.
|
5 |
*
|
6 |
-
* @link https://
|
7 |
* @since 1.0.0
|
8 |
*
|
9 |
* @package Essential_Content_Types
|
@@ -18,7 +18,7 @@
|
|
18 |
*
|
19 |
* @package Essential_Content_Types
|
20 |
* @subpackage Essential_Content_Types/admin
|
21 |
-
* @author Catch
|
22 |
*/
|
23 |
class Essential_Content_Types_Admin {
|
24 |
|
@@ -138,6 +138,8 @@ class Essential_Content_Types_Admin {
|
|
138 |
|
139 |
wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/essential-content-types-admin.css', array(), $this->version, 'all' );
|
140 |
|
|
|
|
|
141 |
}
|
142 |
|
143 |
/**
|
@@ -159,7 +161,9 @@ class Essential_Content_Types_Admin {
|
|
159 |
return;
|
160 |
}
|
161 |
|
162 |
-
wp_enqueue_script(
|
|
|
|
|
163 |
|
164 |
}
|
165 |
|
@@ -204,7 +208,8 @@ class Essential_Content_Types_Admin {
|
|
204 |
wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
|
205 |
}
|
206 |
|
207 |
-
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/partials/dashboard-display.php';
|
|
|
208 |
}
|
209 |
|
210 |
function dashboard_switch() {
|
3 |
/**
|
4 |
* The admin-specific functionality of the plugin.
|
5 |
*
|
6 |
+
* @link https://catchplugins.com
|
7 |
* @since 1.0.0
|
8 |
*
|
9 |
* @package Essential_Content_Types
|
18 |
*
|
19 |
* @package Essential_Content_Types
|
20 |
* @subpackage Essential_Content_Types/admin
|
21 |
+
* @author Catch Plugins <info@catchplugins.com>
|
22 |
*/
|
23 |
class Essential_Content_Types_Admin {
|
24 |
|
138 |
|
139 |
wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/essential-content-types-admin.css', array(), $this->version, 'all' );
|
140 |
|
141 |
+
wp_enqueue_style( $this->plugin_name.'-tabs', plugin_dir_url( __FILE__ ) . 'css/admin-dashboard.css', array(), $this->version, 'all' );
|
142 |
+
|
143 |
}
|
144 |
|
145 |
/**
|
161 |
return;
|
162 |
}
|
163 |
|
164 |
+
wp_enqueue_script( 'minHeight', plugin_dir_url( __FILE__ ) . 'js/jquery.matchHeight.min.js', array( 'jquery' ), $this->version, false );
|
165 |
+
wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/essential-content-types-admin.js', array( 'minHeight', 'jquery' ), $this->version, false );
|
166 |
+
|
167 |
|
168 |
}
|
169 |
|
208 |
wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
|
209 |
}
|
210 |
|
211 |
+
//require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/partials/dashboard-display.php';
|
212 |
+
require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/partials/essential-content-types-admin-display.php';
|
213 |
}
|
214 |
|
215 |
function dashboard_switch() {
|
admin/css/admin-dashboard.css
ADDED
@@ -0,0 +1,715 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* All of the CSS for your admin-dashboard functionality should be
|
3 |
+
* included in this file.
|
4 |
+
*/
|
5 |
+
|
6 |
+
.wpcatchtab.active,
|
7 |
+
table td strong {
|
8 |
+
display: block;
|
9 |
+
}
|
10 |
+
|
11 |
+
.show-more.button {
|
12 |
+
margin: 10px 0 5px 0;
|
13 |
+
}
|
14 |
+
|
15 |
+
.as-shortcode .new:hover .show-me,
|
16 |
+
.welcome-panel img,
|
17 |
+
.as-shortcode .new > div a,
|
18 |
+
.wpcatchtab.active,
|
19 |
+
#public-usage .content p strong,
|
20 |
+
table td strong {
|
21 |
+
display: block;
|
22 |
+
}
|
23 |
+
|
24 |
+
#public-usage .content {
|
25 |
+
display: -webkit-box;
|
26 |
+
display: -ms-flexbox;
|
27 |
+
display: flex;
|
28 |
+
-ms-flex-wrap: wrap;
|
29 |
+
flex-wrap: wrap;
|
30 |
+
}
|
31 |
+
|
32 |
+
#public-usage .content > .as-widget,
|
33 |
+
#public-usage .content > .as-shortcode {
|
34 |
+
-webkit-box-flex: 0;
|
35 |
+
-ms-flex: 0 1 100%;
|
36 |
+
flex: 0 1 100%;
|
37 |
+
}
|
38 |
+
|
39 |
+
.welcome-panel img {
|
40 |
+
height: 40px;
|
41 |
+
width: 40px;
|
42 |
+
vertical-align: middle;
|
43 |
+
margin: 0 auto 14px auto;
|
44 |
+
}
|
45 |
+
|
46 |
+
.welcome-panel .welcome-panel-column,
|
47 |
+
.welcome-panel .welcome-panel-column:first-child {
|
48 |
+
max-width: 980px;
|
49 |
+
width: 100%;
|
50 |
+
}
|
51 |
+
|
52 |
+
/* Form */
|
53 |
+
.show-more .dashicons {
|
54 |
+
vertical-align: middle;
|
55 |
+
}
|
56 |
+
|
57 |
+
.button.reset-token,
|
58 |
+
.button.reset-token:hover,
|
59 |
+
.button.reset-token:focus {
|
60 |
+
background-color: #d54e21;
|
61 |
+
border-color: #d54e21;
|
62 |
+
color: #fff;
|
63 |
+
}
|
64 |
+
|
65 |
+
.button.get-token,
|
66 |
+
.button.get-token:hover,
|
67 |
+
.button.get-token:focus {
|
68 |
+
background-color: #22D41A;
|
69 |
+
border-color: #22D41A;
|
70 |
+
color: #fff;
|
71 |
+
}
|
72 |
+
|
73 |
+
.as-shortcode .new {
|
74 |
+
position: relative;
|
75 |
+
}
|
76 |
+
|
77 |
+
.as-shortcode .new .dashicons,
|
78 |
+
.as-shortcode .button {
|
79 |
+
vertical-align: middle;
|
80 |
+
}
|
81 |
+
|
82 |
+
.as-shortcode .new > div a {
|
83 |
+
margin-bottom: 3px;
|
84 |
+
}
|
85 |
+
|
86 |
+
.as-shortcode .new>div {
|
87 |
+
display: none;
|
88 |
+
position: absolute;
|
89 |
+
right: -54px;
|
90 |
+
top: -1px;
|
91 |
+
}
|
92 |
+
|
93 |
+
#welcome-message {
|
94 |
+
border-radius: 4px;
|
95 |
+
margin-right: 20px;
|
96 |
+
margin-top: 10px;
|
97 |
+
padding: 1px 5px;
|
98 |
+
}
|
99 |
+
|
100 |
+
#access-token .info {
|
101 |
+
padding: 10px 12px;
|
102 |
+
}
|
103 |
+
|
104 |
+
#access-token .info,
|
105 |
+
#request-queries {
|
106 |
+
line-height: 2;
|
107 |
+
}
|
108 |
+
|
109 |
+
/* Custom Scripts */
|
110 |
+
|
111 |
+
.wrap {
|
112 |
+
position: relative;
|
113 |
+
margin: 25px 20px 0 10px;
|
114 |
+
-ms-word-wrap: break-word;
|
115 |
+
word-wrap: break-word;
|
116 |
+
}
|
117 |
+
|
118 |
+
.wrap,
|
119 |
+
.welcome-panel p,
|
120 |
+
.welcome-panel .welcome-panel-close::before,
|
121 |
+
.content .widefat td,
|
122 |
+
.content .widefat thead th {
|
123 |
+
color: #23282d;
|
124 |
+
}
|
125 |
+
|
126 |
+
.welcome-panel .welcome-panel-close::before {
|
127 |
+
left: inherit;
|
128 |
+
right: 10px;
|
129 |
+
z-index: 9;
|
130 |
+
}
|
131 |
+
|
132 |
+
.welcome-panel {
|
133 |
+
border-left: 4px solid #44b450;
|
134 |
+
margin: 21px 0;
|
135 |
+
padding-bottom: 21px;
|
136 |
+
padding-left: 21px;
|
137 |
+
padding-right: 21px;
|
138 |
+
}
|
139 |
+
|
140 |
+
.welcome-panel-content {
|
141 |
+
margin-left: 0;
|
142 |
+
}
|
143 |
+
|
144 |
+
.wrap h1,
|
145 |
+
.wrap h2,
|
146 |
+
.wrap h3,
|
147 |
+
.wrap h4,
|
148 |
+
.wrap h5,
|
149 |
+
.wrap h6,
|
150 |
+
.welcome-panel h3,
|
151 |
+
.wrap p,
|
152 |
+
.welcome-panel-column p,
|
153 |
+
#go-premium ul {
|
154 |
+
margin-top: 0;
|
155 |
+
}
|
156 |
+
|
157 |
+
.wrap a {
|
158 |
+
text-decoration: none;
|
159 |
+
}
|
160 |
+
|
161 |
+
.wrap a:hover,
|
162 |
+
.wrap a:focus {
|
163 |
+
opacity: 0.9;
|
164 |
+
}
|
165 |
+
|
166 |
+
.welcome-panel-column >:last-child,
|
167 |
+
#public-usage .content > div:last-child,
|
168 |
+
#public-usage .content .as-widget >:last-child,
|
169 |
+
#public-usage .content .as-shortcode >:last-child,
|
170 |
+
#public-usage .content .shortcode-option-container > div:last-child {
|
171 |
+
margin-bottom: 0;
|
172 |
+
}
|
173 |
+
|
174 |
+
.content-wrapper {
|
175 |
+
background-color: #fff;
|
176 |
+
position: relative;
|
177 |
+
}
|
178 |
+
|
179 |
+
.content-wrapper .content {
|
180 |
+
padding: 21px;
|
181 |
+
}
|
182 |
+
|
183 |
+
.content-wrapper .button.dismiss {
|
184 |
+
position: absolute;
|
185 |
+
right: 15px;
|
186 |
+
top: 15px;
|
187 |
+
background-color: transparent;
|
188 |
+
border: 0;
|
189 |
+
box-shadow: none;
|
190 |
+
padding: 0;
|
191 |
+
}
|
192 |
+
|
193 |
+
.content-wrapper h2,
|
194 |
+
.content-wrapper .header h3 {
|
195 |
+
margin: 0;
|
196 |
+
padding: 16px 21px;
|
197 |
+
}
|
198 |
+
|
199 |
+
.content-wrapper h2,
|
200 |
+
.content-wrapper .header h3,
|
201 |
+
.catch-sidebar-title,
|
202 |
+
.sidebar-spot-inner {
|
203 |
+
border-bottom: 1px solid #ddd;
|
204 |
+
}
|
205 |
+
|
206 |
+
.content-wrapper h2,
|
207 |
+
.content-wrapper .header h3,
|
208 |
+
.catchp-sidebar-spot h2,
|
209 |
+
.catchp-sidebar-full-width h2,
|
210 |
+
.widefat td,
|
211 |
+
.widefat thead th,
|
212 |
+
.about-text h2 {
|
213 |
+
font-size: 18px;
|
214 |
+
font-size: 1.125rem;
|
215 |
+
line-height: 1.5;
|
216 |
+
}
|
217 |
+
|
218 |
+
.welcome-panel .button {
|
219 |
+
border: none;
|
220 |
+
background: none;
|
221 |
+
box-shadow: none;
|
222 |
+
}
|
223 |
+
|
224 |
+
.welcome-panel .welcome-panel-close {
|
225 |
+
text-indent: -9999px;
|
226 |
+
}
|
227 |
+
|
228 |
+
.welcome-panel .welcome-panel-close::before {
|
229 |
+
font-size: 30px;
|
230 |
+
font-size: 1.875rem;
|
231 |
+
text-indent: 0;
|
232 |
+
}
|
233 |
+
|
234 |
+
.catchp-content-wrapper {
|
235 |
+
display: table;
|
236 |
+
width: 100%;
|
237 |
+
table-layout: fixed;
|
238 |
+
}
|
239 |
+
|
240 |
+
.wpcatchtab {
|
241 |
+
display: none;
|
242 |
+
}
|
243 |
+
|
244 |
+
.widefat thead th,
|
245 |
+
.table-icons {
|
246 |
+
font-weight: 600;
|
247 |
+
}
|
248 |
+
|
249 |
+
.content-wrapper .catchp-lists li strong {
|
250 |
+
font-weight: 700;
|
251 |
+
}
|
252 |
+
|
253 |
+
.wrap .content .as-shortcode .shortcode-option-container > div,
|
254 |
+
.about-text h2,
|
255 |
+
.wrap p,
|
256 |
+
.welcome-panel h3 {
|
257 |
+
margin-bottom: 14px;
|
258 |
+
}
|
259 |
+
|
260 |
+
.dashicons {
|
261 |
+
font-size: 30px;
|
262 |
+
font-size: 1.875rem;
|
263 |
+
height: 30px;
|
264 |
+
width: 30px;
|
265 |
+
}
|
266 |
+
|
267 |
+
.sidebar-spot-inner ul li,
|
268 |
+
.catchp-sidebar-spot h3 {
|
269 |
+
margin-bottom: 7px;
|
270 |
+
}
|
271 |
+
|
272 |
+
.wrap .wpcatchtab,
|
273 |
+
#sidebar,
|
274 |
+
.content-wrapper {
|
275 |
+
margin-top: 21px;
|
276 |
+
}
|
277 |
+
|
278 |
+
.content-wrapper,
|
279 |
+
.sidebar-spot-inner,
|
280 |
+
.sidebar-spot-inner ul,
|
281 |
+
.catch-sidebar-title {
|
282 |
+
margin-bottom: 21px;
|
283 |
+
}
|
284 |
+
|
285 |
+
.catchp-sidebar-spot,
|
286 |
+
.catchp-sidebar-full-width {
|
287 |
+
float: left;
|
288 |
+
width: 100%;
|
289 |
+
box-sizing: border-box;
|
290 |
+
}
|
291 |
+
|
292 |
+
.sidebar-spot-inner {
|
293 |
+
padding-bottom: 21px;
|
294 |
+
}
|
295 |
+
|
296 |
+
.catchp-lists:before,
|
297 |
+
.catchp-lists:after,
|
298 |
+
.content-wrapper:before,
|
299 |
+
.content-wrapper:after,
|
300 |
+
.content-wrapper .content:before,
|
301 |
+
.content-wrapper .content:after {
|
302 |
+
content: "";
|
303 |
+
display: table;
|
304 |
+
table-layout: fixed;
|
305 |
+
}
|
306 |
+
|
307 |
+
.catchp-lists:after,
|
308 |
+
.content-wrapper:after,
|
309 |
+
.content-wrapper .content:after {
|
310 |
+
clear: both;
|
311 |
+
}
|
312 |
+
|
313 |
+
.catchp-lists li {
|
314 |
+
position: relative;
|
315 |
+
padding-left: 21px;
|
316 |
+
}
|
317 |
+
|
318 |
+
.catchp-lists li:before {
|
319 |
+
content:"\2713\0020";
|
320 |
+
left: 0;
|
321 |
+
font-weight: 700;
|
322 |
+
position: absolute;
|
323 |
+
}
|
324 |
+
|
325 |
+
#pro-screenshot .catchp-lists li {
|
326 |
+
padding-left: 0;
|
327 |
+
}
|
328 |
+
|
329 |
+
#pro-screenshot .catchp-lists li::before {
|
330 |
+
content: none;
|
331 |
+
}
|
332 |
+
|
333 |
+
.wp-ui-highlight {
|
334 |
+
background-color: #0073aa;
|
335 |
+
}
|
336 |
+
|
337 |
+
/*Sidebar*/
|
338 |
+
.catch-sidebar-title {
|
339 |
+
padding-bottom: 10px;
|
340 |
+
}
|
341 |
+
|
342 |
+
.catch-sidebar-title,
|
343 |
+
.catchp-sidebar-spot h3 {
|
344 |
+
font-size: 14px;
|
345 |
+
font-size: 0.875rem;
|
346 |
+
font-weight: 700;
|
347 |
+
}
|
348 |
+
|
349 |
+
.catchp-sidebar-spot h3 {
|
350 |
+
color: #444;
|
351 |
+
}
|
352 |
+
|
353 |
+
/*For Table*/
|
354 |
+
.table-icons {
|
355 |
+
font-size: 21px;
|
356 |
+
font-size: 1.3125rem;
|
357 |
+
display: inline-block;
|
358 |
+
}
|
359 |
+
|
360 |
+
.icon-green,
|
361 |
+
.highlighted {
|
362 |
+
color: #48a348;
|
363 |
+
}
|
364 |
+
|
365 |
+
.icon-red {
|
366 |
+
color: #c7353e;
|
367 |
+
}
|
368 |
+
|
369 |
+
#title,
|
370 |
+
#pro,
|
371 |
+
#free,
|
372 |
+
.fixed .column-free,
|
373 |
+
.fixed .column-pro,
|
374 |
+
.catchp-footer {
|
375 |
+
text-align: center;
|
376 |
+
}
|
377 |
+
|
378 |
+
img {
|
379 |
+
height: auto;
|
380 |
+
max-width: 100%;
|
381 |
+
}
|
382 |
+
|
383 |
+
table {
|
384 |
+
border-collapse: collapse;
|
385 |
+
border-spacing: 0;
|
386 |
+
}
|
387 |
+
|
388 |
+
table thead th {
|
389 |
+
padding: 14px;
|
390 |
+
}
|
391 |
+
|
392 |
+
#premium-extensions table,
|
393 |
+
#premium-extensions th,
|
394 |
+
#premium-extensions td {
|
395 |
+
border: 1px solid #ddd;
|
396 |
+
}
|
397 |
+
|
398 |
+
table td strong,
|
399 |
+
table td p {
|
400 |
+
letter-spacing: 0.01em;
|
401 |
+
}
|
402 |
+
|
403 |
+
dd,
|
404 |
+
li {
|
405 |
+
margin-bottom: 21px;
|
406 |
+
}
|
407 |
+
|
408 |
+
.widefat td p,
|
409 |
+
.catchp-lists li p {
|
410 |
+
margin-top: 7px;
|
411 |
+
}
|
412 |
+
|
413 |
+
.fixed .column-free,
|
414 |
+
.fixed .column-pro {
|
415 |
+
width: 15%;
|
416 |
+
}
|
417 |
+
|
418 |
+
.fixed .column-free,
|
419 |
+
.fixed .column-pro,
|
420 |
+
.widefat td {
|
421 |
+
vertical-align: middle;
|
422 |
+
}
|
423 |
+
|
424 |
+
.widefat td,
|
425 |
+
.widefat thead th {
|
426 |
+
padding: 14px 21px;
|
427 |
+
}
|
428 |
+
|
429 |
+
/*Footer*/
|
430 |
+
.catchp-footer {
|
431 |
+
margin-top: 14px;
|
432 |
+
border-bottom: 1px solid #fff;
|
433 |
+
}
|
434 |
+
|
435 |
+
.catchp-footer-menu ul li,
|
436 |
+
.catchp-footer-menu ul li a,
|
437 |
+
.catchp-footer-site-info a {
|
438 |
+
display: inline-block;
|
439 |
+
margin-bottom: 0;
|
440 |
+
}
|
441 |
+
|
442 |
+
.catchp-footer-menu ul {
|
443 |
+
margin: 0;
|
444 |
+
}
|
445 |
+
|
446 |
+
.catchp-footer-menu ul li a{
|
447 |
+
padding: 10px;
|
448 |
+
}
|
449 |
+
|
450 |
+
.catchp-footer-site-info {
|
451 |
+
border-bottom: 1px solid #ddd;
|
452 |
+
}
|
453 |
+
|
454 |
+
.catchp-footer-site-info a {
|
455 |
+
padding: 12px;
|
456 |
+
}
|
457 |
+
|
458 |
+
.catchp-footer-menu {
|
459 |
+
border-top: 1px solid #fff;
|
460 |
+
border-bottom: 1px solid #ddd;
|
461 |
+
}
|
462 |
+
|
463 |
+
.content-wrapper.col-1,
|
464 |
+
.content-wrapper.col-2 {
|
465 |
+
max-width: 735px;
|
466 |
+
}
|
467 |
+
|
468 |
+
#plugin-description {
|
469 |
+
max-width: 1200px;
|
470 |
+
}
|
471 |
+
|
472 |
+
/* => 667px */
|
473 |
+
@media screen and (min-width: 41.6875em) {
|
474 |
+
.shortcode-option-container {
|
475 |
+
display: flex;
|
476 |
+
flex-flow: row wrap;
|
477 |
+
}
|
478 |
+
|
479 |
+
.shortcode-option-container > div {
|
480 |
+
-webkit-box-flex: 0;
|
481 |
+
-ms-flex: 0 1 50%;
|
482 |
+
flex: 0 1 50%;
|
483 |
+
}
|
484 |
+
|
485 |
+
.welcome-panel h3 {
|
486 |
+
text-align: left;
|
487 |
+
}
|
488 |
+
|
489 |
+
.welcome-panel img {
|
490 |
+
display: inline-block;
|
491 |
+
margin-bottom: 0;
|
492 |
+
margin-right: 14px;
|
493 |
+
}
|
494 |
+
|
495 |
+
#public-usage .content {
|
496 |
+
display: -webkit-box;
|
497 |
+
display: -ms-flexbox;
|
498 |
+
display: flex;
|
499 |
+
-ms-flex-wrap: nowrap;
|
500 |
+
flex-wrap: nowrap;
|
501 |
+
}
|
502 |
+
|
503 |
+
#public-usage .content > .as-widget,
|
504 |
+
#public-usage .content > .as-shortcode {
|
505 |
+
-webkit-box-flex: 0;
|
506 |
+
-ms-flex: 0 1 50%;
|
507 |
+
flex: 0 1 50%;
|
508 |
+
}
|
509 |
+
|
510 |
+
#public-usage .content > .as-widget {
|
511 |
+
padding-right: 21px;
|
512 |
+
}
|
513 |
+
|
514 |
+
#public-usage .content > .as-shortcode {
|
515 |
+
border-left: 1px solid #ddd;
|
516 |
+
padding-left: 21px;
|
517 |
+
}
|
518 |
+
|
519 |
+
#public-usage .content > .as-widget,
|
520 |
+
#public-usage .content > .as-shortcode {
|
521 |
+
margin-bottom: 0;
|
522 |
+
}
|
523 |
+
|
524 |
+
.catchp-sidebar-spot {
|
525 |
+
width: 50%;
|
526 |
+
padding-right: 21px;
|
527 |
+
}
|
528 |
+
|
529 |
+
.catchp-sidebar-spot-wrapper .catchp-sidebar-spot:nth-of-type(even),
|
530 |
+
.col-2 .catchp-lists li:nth-of-type(even),
|
531 |
+
.col-3 .catchp-lists li:nth-child(2n),
|
532 |
+
.col-4 .catchp-lists li:nth-child(2n) {
|
533 |
+
padding-right: 0;
|
534 |
+
}
|
535 |
+
|
536 |
+
.catchp-footer {
|
537 |
+
margin-top: 21px;
|
538 |
+
}
|
539 |
+
|
540 |
+
.catchp-lists li {
|
541 |
+
display: inline-block;
|
542 |
+
float: left;
|
543 |
+
-webkit-box-sizing: border-box;
|
544 |
+
box-sizing: border-box;
|
545 |
+
width: 100%;
|
546 |
+
}
|
547 |
+
|
548 |
+
.content-wrapper.col-3 {
|
549 |
+
max-width: 100%;
|
550 |
+
width: 100%;
|
551 |
+
}
|
552 |
+
|
553 |
+
.col-2 .catchp-lists li,
|
554 |
+
.col-3 .catchp-lists li,
|
555 |
+
.col-4 .catchp-lists li,
|
556 |
+
.module-container .module-wrap {
|
557 |
+
width: 50%;
|
558 |
+
}
|
559 |
+
|
560 |
+
.col-2 .catchp-lists li,
|
561 |
+
.col-3 .catchp-lists li,
|
562 |
+
.col-4 .catchp-lists li {
|
563 |
+
padding-right: 21px;
|
564 |
+
}
|
565 |
+
|
566 |
+
.module-wrap {
|
567 |
+
padding-right: 21px;
|
568 |
+
}
|
569 |
+
|
570 |
+
.module-container .module-wrap:nth-child(2n) {
|
571 |
+
padding-right: 0;
|
572 |
+
}
|
573 |
+
}
|
574 |
+
|
575 |
+
/* => 783px */
|
576 |
+
@media screen and (min-width: 48.9375em) {
|
577 |
+
.wrap {
|
578 |
+
margin-right: 30px;
|
579 |
+
}
|
580 |
+
|
581 |
+
.form-table input[type="text"],
|
582 |
+
.form-table input[type="search"],
|
583 |
+
.form-table input[type="radio"],
|
584 |
+
.form-table input[type="tel"],
|
585 |
+
.form-table input[type="time"],
|
586 |
+
.form-table input[type="url"],
|
587 |
+
.form-table input[type="week"],
|
588 |
+
.form-table input[type="password"],
|
589 |
+
.form-table input[type="checkbox"],
|
590 |
+
.form-table input[type="color"],
|
591 |
+
.form-table input[type="date"],
|
592 |
+
.form-table input[type="datetime"],
|
593 |
+
.form-table input[type="datetime-local"],
|
594 |
+
.form-table input[type="email"],
|
595 |
+
.form-table input[type="month"],
|
596 |
+
.form-table input[type="number"],
|
597 |
+
.form-table select,
|
598 |
+
.form-table textarea {
|
599 |
+
margin-right: 10px;
|
600 |
+
display: inline-block;
|
601 |
+
}
|
602 |
+
|
603 |
+
.form-table td span {
|
604 |
+
display: inline-block;
|
605 |
+
}
|
606 |
+
|
607 |
+
h3.option-toggle a {
|
608 |
+
background-position: 99% 50%;
|
609 |
+
}
|
610 |
+
|
611 |
+
h3.option-active a {
|
612 |
+
background-position: 99% 50%;
|
613 |
+
}
|
614 |
+
}
|
615 |
+
|
616 |
+
/* => 1024px */
|
617 |
+
@media screen and (min-width: 64em) {
|
618 |
+
.catchp-sidebar-spot-wrapper .catchp-sidebar-spot,
|
619 |
+
.catchp-sidebar-spot-wrapper .catchp-sidebar-spot:nth-of-type(even),
|
620 |
+
.col-3 .catchp-lists li:nth-child(2n) {
|
621 |
+
padding-right: 21px;
|
622 |
+
}
|
623 |
+
|
624 |
+
.catchp-sidebar-spot-wrapper .catchp-sidebar-spot:nth-child(3n) {
|
625 |
+
padding-right: 0;
|
626 |
+
}
|
627 |
+
|
628 |
+
.catchp-sidebar-spot,
|
629 |
+
.col-3 .catchp-lists li {
|
630 |
+
width: 33.33%;
|
631 |
+
}
|
632 |
+
|
633 |
+
.col-3 .catchp-lists li:nth-child(3n) {
|
634 |
+
padding-right: 0;
|
635 |
+
}
|
636 |
+
|
637 |
+
.table-icons {
|
638 |
+
font-size: 30px;
|
639 |
+
font-size: 1.875rem;
|
640 |
+
}
|
641 |
+
}
|
642 |
+
|
643 |
+
/* => 1200px */
|
644 |
+
@media screen and (min-width: 75em) {
|
645 |
+
.welcome-panel .welcome-panel-close::before,
|
646 |
+
.welcome-panel .welcome-panel-close {
|
647 |
+
top: 50%;
|
648 |
+
transform: translateY(-50%);
|
649 |
+
}
|
650 |
+
|
651 |
+
.welcome-panel {
|
652 |
+
padding-right: 49px;
|
653 |
+
}
|
654 |
+
|
655 |
+
.catchp_widget_settings,
|
656 |
+
.catchp-widget-sidebar {
|
657 |
+
display: table-cell;
|
658 |
+
vertical-align: top;
|
659 |
+
}
|
660 |
+
|
661 |
+
.catchp_widget_settings,
|
662 |
+
.catchp-sidebar-spot,
|
663 |
+
.col-2 .sidebar-spot-inner .catchp-lists li,
|
664 |
+
.col-3 .sidebar-spot-inner .catchp-lists li {
|
665 |
+
width: 100%;
|
666 |
+
}
|
667 |
+
|
668 |
+
.catchp-widget-sidebar {
|
669 |
+
width: 245px;
|
670 |
+
padding: 0 0 0 200px;
|
671 |
+
}
|
672 |
+
|
673 |
+
#sidebar {
|
674 |
+
margin-top: 66px;
|
675 |
+
}
|
676 |
+
|
677 |
+
.col-4 .catchp-lists li,
|
678 |
+
.col-4 .catchp-lists li:nth-child(2n) {
|
679 |
+
padding-right: 21px;
|
680 |
+
}
|
681 |
+
|
682 |
+
.catchp-sidebar-spot,
|
683 |
+
.catchp-sidebar-spot-wrapper .catchp-sidebar-spot,
|
684 |
+
.catchp-sidebar-spot-wrapper .catchp-sidebar-spot:nth-of-type(even),
|
685 |
+
.col-2 .sidebar-spot-inner .catchp-lists li,
|
686 |
+
.col-3 .sidebar-spot-inner .catchp-lists li,
|
687 |
+
.col-4 .catchp-lists li:nth-child(4n) {
|
688 |
+
padding-right: 0;
|
689 |
+
}
|
690 |
+
|
691 |
+
.catchp-sidebar-spot:last-child .sidebar-spot-inner {
|
692 |
+
border: 0;
|
693 |
+
}
|
694 |
+
|
695 |
+
.catchp-footer {
|
696 |
+
margin-top: 160px;
|
697 |
+
}
|
698 |
+
|
699 |
+
.col-4 .catchp-lists li {
|
700 |
+
width: 25%;
|
701 |
+
}
|
702 |
+
|
703 |
+
.module-container .module-wrap {
|
704 |
+
width: 33.33%;
|
705 |
+
}
|
706 |
+
|
707 |
+
.module-container .module-wrap:nth-child(2n) {
|
708 |
+
padding-right: 21px;
|
709 |
+
}
|
710 |
+
|
711 |
+
.module-container .module-wrap:nth-child(3n) {
|
712 |
+
padding-right: 0;
|
713 |
+
}
|
714 |
+
|
715 |
+
}
|
admin/css/essential-content-types-admin.css
CHANGED
@@ -14,87 +14,13 @@
|
|
14 |
# Header
|
15 |
# Content
|
16 |
# Toggle Switch
|
17 |
-
# Other Products
|
18 |
-
# Footer
|
19 |
-
# Media Queries
|
20 |
-
## >= 320px
|
21 |
-
## >= 768px
|
22 |
-
## >= 1024px
|
23 |
-
## >= 1280px
|
24 |
--------------------------------------------------------------*/
|
25 |
|
26 |
-
/*--------------------------------------------------------------
|
27 |
-
# Typography
|
28 |
-
--------------------------------------------------------------*/
|
29 |
-
.ect-main,
|
30 |
-
.ect-main button,
|
31 |
-
.ect-main input,
|
32 |
-
.ect-main select,
|
33 |
-
.ect-main textarea,
|
34 |
-
.ect-main p {
|
35 |
-
color: #1a1a1a;
|
36 |
-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
37 |
-
font-size: 16px;
|
38 |
-
font-size: 1rem;
|
39 |
-
font-weight: 400;
|
40 |
-
line-height: 1.5;
|
41 |
-
word-wrap: break-word;
|
42 |
-
-webkit-hyphens: auto;
|
43 |
-
-moz-hyphens: auto;
|
44 |
-
-ms-hyphens: auto;
|
45 |
-
hyphens: auto;
|
46 |
-
}
|
47 |
-
|
48 |
-
.ect-main h1,
|
49 |
-
.ect-main h2,
|
50 |
-
.ect-main h3,
|
51 |
-
.ect-main h4,
|
52 |
-
.ect-main h5,
|
53 |
-
.ect-main h6 {
|
54 |
-
clear: both;
|
55 |
-
font-weight: 700;
|
56 |
-
line-height: 1.3;
|
57 |
-
margin: 0;
|
58 |
-
text-rendering: optimizeLegibility;
|
59 |
-
}
|
60 |
-
|
61 |
-
.ect-main h1 {
|
62 |
-
font-size: 24px;
|
63 |
-
font-size: 1.5rem;
|
64 |
-
}
|
65 |
-
|
66 |
-
.ect-main h2 {
|
67 |
-
font-size: 20px;
|
68 |
-
font-size: 1.25rem;
|
69 |
-
}
|
70 |
-
|
71 |
-
.ect-main h3 {
|
72 |
-
font-size: 18px;
|
73 |
-
font-size: 1.125rem;
|
74 |
-
}
|
75 |
-
|
76 |
-
.ect-main h4 {
|
77 |
-
font-size: 16px;
|
78 |
-
font-size: 1rem;
|
79 |
-
}
|
80 |
-
|
81 |
-
.ect-main h5 {
|
82 |
-
font-size: 14px;
|
83 |
-
font-size: 0.875rem;
|
84 |
-
}
|
85 |
-
|
86 |
-
.ect-main h6 {
|
87 |
-
font-size: 13px;
|
88 |
-
font-size: 0.8125rem;
|
89 |
-
}
|
90 |
-
|
91 |
-
.ect-main p {
|
92 |
-
margin: 0 0 1.5em;
|
93 |
-
}
|
94 |
|
95 |
/*--------------------------------------------------------------
|
96 |
# Layout
|
97 |
--------------------------------------------------------------*/
|
|
|
98 |
.ect-main {
|
99 |
-webkit-box-sizing: border-box;
|
100 |
-moz-box-sizing: border-box;
|
@@ -109,27 +35,14 @@
|
|
109 |
box-sizing: inherit;
|
110 |
}
|
111 |
|
112 |
-
.ect-main * {
|
113 |
-
padding: 0;
|
114 |
-
margin: 0;
|
115 |
-
}
|
116 |
-
|
117 |
.ect-main {
|
118 |
background-color: #fff;
|
119 |
}
|
120 |
|
121 |
-
.ect-main .container {
|
122 |
-
padding: 20px 20px 0;
|
123 |
-
}
|
124 |
-
|
125 |
-
.ect-main #dashboard {
|
126 |
-
max-width: 1220px;
|
127 |
-
margin: 0 auto;
|
128 |
-
}
|
129 |
-
|
130 |
/*--------------------------------------------------------------
|
131 |
# Clearing
|
132 |
--------------------------------------------------------------*/
|
|
|
133 |
.ect-main .clear:before,
|
134 |
.ect-main .clear:after {
|
135 |
content: "";
|
@@ -140,257 +53,66 @@
|
|
140 |
clear: both;
|
141 |
}
|
142 |
|
143 |
-
/*--------------------------------------------------------------
|
144 |
-
# Lists
|
145 |
-
--------------------------------------------------------------*/
|
146 |
-
.ect-main .ul,
|
147 |
-
.ect-main ol {
|
148 |
-
margin: 0 0 1.5em 2em;
|
149 |
-
padding: 0;
|
150 |
-
}
|
151 |
-
|
152 |
-
.ect-main li {
|
153 |
-
margin: 0;
|
154 |
-
}
|
155 |
-
|
156 |
-
.ect-main ul {
|
157 |
-
list-style: disc;
|
158 |
-
}
|
159 |
-
|
160 |
-
.ect-main ol {
|
161 |
-
list-style: decimal;
|
162 |
-
}
|
163 |
-
|
164 |
-
.ect-main li > ul,
|
165 |
-
.ect-main li > ol {
|
166 |
-
margin-top: 0.55em;
|
167 |
-
margin-left: 1.5em;
|
168 |
-
margin-bottom: 0;
|
169 |
-
}
|
170 |
-
|
171 |
-
.ect-main li {
|
172 |
-
margin-bottom: 0.55em;
|
173 |
-
}
|
174 |
-
|
175 |
-
.ect-main dt {
|
176 |
-
font-weight: 700;
|
177 |
-
}
|
178 |
-
|
179 |
-
.ect-main dd {
|
180 |
-
margin: 0 1.5em 1.5em;
|
181 |
-
}
|
182 |
-
|
183 |
-
|
184 |
-
/*--------------------------------------------------------------
|
185 |
-
# Media
|
186 |
-
--------------------------------------------------------------*/
|
187 |
-
.ect-main img {
|
188 |
-
height: auto; /* Make sure images are scaled correctly. */
|
189 |
-
max-width: 100%; /* Adhere to container width. */
|
190 |
-
vertical-align: middle;
|
191 |
-
}
|
192 |
-
|
193 |
-
|
194 |
-
/*--------------------------------------------------------------
|
195 |
-
# Links
|
196 |
-
--------------------------------------------------------------*/
|
197 |
-
.ect-main a {
|
198 |
-
color: #0085c3;
|
199 |
-
cursor: pointer;
|
200 |
-
text-decoration: none;
|
201 |
-
}
|
202 |
-
|
203 |
-
.ect-main a:hover,
|
204 |
-
.ect-main a:focus,
|
205 |
-
.ect-main a:active {
|
206 |
-
color: #444;
|
207 |
-
text-decoration: underline;
|
208 |
-
}
|
209 |
-
|
210 |
-
.ect-main a:focus {
|
211 |
-
outline: thin dotted;
|
212 |
-
}
|
213 |
-
|
214 |
-
.ect-main a:hover,
|
215 |
-
.ect-main a:active {
|
216 |
-
outline: 0;
|
217 |
-
}
|
218 |
-
|
219 |
/*--------------------------------------------------------------
|
220 |
# Header
|
221 |
--------------------------------------------------------------*/
|
222 |
-
.ect-main #masthead {
|
223 |
-
background: url("../images/header_1680x394.jpg");
|
224 |
-
background-attachment: fixed;
|
225 |
-
background-repeat: no-repeat;
|
226 |
-
background-size: cover;
|
227 |
-
background-position: center;
|
228 |
-
}
|
229 |
-
|
230 |
-
.ect-main #masthead .wrapper {
|
231 |
-
display: -webkit-box;
|
232 |
-
display: -ms-flexbox;
|
233 |
-
display: flex;
|
234 |
-
-ms-flex-flow: column wrap;
|
235 |
-
flex-flow : column wrap;
|
236 |
-
}
|
237 |
-
|
238 |
-
.ect-main #plugin-description {
|
239 |
-
margin: 0 auto;
|
240 |
-
max-width: 960px;
|
241 |
-
padding-bottom: 20px;
|
242 |
-
text-align: center;
|
243 |
-
}
|
244 |
|
245 |
-
.ect-main
|
246 |
-
|
247 |
-
}
|
248 |
-
|
249 |
-
.ect-main #site-branding {
|
250 |
-
display: block;
|
251 |
-
order: 1;
|
252 |
-
padding: 30px 20px;
|
253 |
-
text-align: center;
|
254 |
-
width: 100%;
|
255 |
-
}
|
256 |
-
|
257 |
-
.ect-main .site-title {
|
258 |
-
font-family: "Trebuchet MS", Helvetica, sans-serif;
|
259 |
-
text-transform: capitalize;
|
260 |
-
}
|
261 |
-
|
262 |
-
.ect-main .site-title a {
|
263 |
-
color: #0085c3;
|
264 |
-
}
|
265 |
-
|
266 |
-
.ect-main .site-title a:hover,
|
267 |
-
.ect-main .site-title a:focus {
|
268 |
-
text-decoration: none;
|
269 |
-
}
|
270 |
-
|
271 |
-
.ect-main .site-title-additional {
|
272 |
-
color: #006ea4;
|
273 |
-
}
|
274 |
-
|
275 |
-
.ect-main .setting {
|
276 |
-
padding: 0 7px;
|
277 |
-
color: #fff;
|
278 |
}
|
279 |
|
280 |
/*--------------------------------------------------------------
|
281 |
# Content
|
282 |
--------------------------------------------------------------*/
|
283 |
-
.ect-main .container {
|
284 |
-
display: -webkit-box;
|
285 |
-
display: -ms-flexbox;
|
286 |
-
display: flex;
|
287 |
-
-ms-flex-flow: column wrap;
|
288 |
-
flex-flow: column wrap;
|
289 |
-
justify-content: center;
|
290 |
-
margin: 0 auto;
|
291 |
-
max-width: 680px;
|
292 |
-
}
|
293 |
-
|
294 |
-
.ect-main .module-container {
|
295 |
-
display: -webkit-box;
|
296 |
-
display: -ms-flexbox;
|
297 |
-
display: flex;
|
298 |
-
-ms-flex-flow: column wrap;
|
299 |
-
flex-flow: column wrap;
|
300 |
-
-webkit-box-pack: flex-start;
|
301 |
-
-ms-flex-pack: flex-start;
|
302 |
-
justify-content:flex-start;
|
303 |
-
}
|
304 |
|
305 |
.ect-main .module-header {
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
|
|
316 |
}
|
317 |
|
318 |
-
.
|
319 |
-
|
320 |
-
-webkit-transition: all 0.2s ease;
|
321 |
-
-moz-transition: all 0.2s ease;
|
322 |
-
o-transition: all 0.2s ease;
|
323 |
-
transition: all 0.2s ease;
|
324 |
}
|
325 |
|
326 |
-
.
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
|
|
332 |
}
|
333 |
|
334 |
-
.
|
335 |
-
|
336 |
-
color: #fff;
|
337 |
-
font-family: "Trebuchet MS", Helvetica, sans-serif;
|
338 |
-
font-weight: normal;
|
339 |
-
text-transform: uppercase;
|
340 |
-
}
|
341 |
-
|
342 |
-
.ect-main .catch-modules {
|
343 |
-
background-color: #f9f9f9;
|
344 |
-
border-radius: 3px;
|
345 |
-
border: 2px solid #ccc;
|
346 |
-
border-top: 0;
|
347 |
-
display: -webkit-box;
|
348 |
-
display: -ms-flexbox;
|
349 |
-
display: flex;
|
350 |
-
-ms-flex-flow: column wrap;
|
351 |
-
flex-flow: column wrap;
|
352 |
-
margin-bottom: 20px;
|
353 |
-
}
|
354 |
-
|
355 |
-
.ect-main .catch-module-long {
|
356 |
-
background-color: #f9f9f9;
|
357 |
-
border-radius: 3px;
|
358 |
-
border: 2px solid #ccc;
|
359 |
-
border-top: 0;
|
360 |
-
display: -webkit-box;
|
361 |
-
display: -ms-flexbox;
|
362 |
-
display: flex;
|
363 |
-
-ms-flex-flow: column wrap;
|
364 |
-
flex-flow:column wrap;
|
365 |
-
}
|
366 |
-
|
367 |
-
.ect-main .module-content {
|
368 |
-
padding: 15px;
|
369 |
-
}
|
370 |
-
|
371 |
-
.ect-main .module-content p:last-child {
|
372 |
-
margin-bottom: 0;
|
373 |
-
}
|
374 |
-
|
375 |
-
.ect-main #main-nav .dashicons {
|
376 |
-
line-height: 2.7;
|
377 |
}
|
378 |
|
379 |
/*--------------------------------------------------------------
|
380 |
# Toggle Switch
|
381 |
--------------------------------------------------------------*/
|
|
|
382 |
.ect-main .switch {
|
383 |
-webkit-box-flex: 0;
|
384 |
-webkit-flex-grow: 0;
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-webkit-flex-shrink: 0;
|
389 |
-
|
390 |
-
|
391 |
position: relative;
|
392 |
float: none;
|
393 |
right: 0;
|
|
|
394 |
}
|
395 |
|
396 |
.ect-main .module-title.active {
|
@@ -398,25 +120,30 @@
|
|
398 |
}
|
399 |
|
400 |
.ect-main .switch label {
|
401 |
-
background-color: #
|
402 |
border-radius: 11px;
|
403 |
cursor: pointer;
|
404 |
-
height:
|
405 |
-
|
406 |
position: absolute;
|
407 |
-
top:
|
408 |
-
width:
|
|
|
|
|
|
|
|
|
409 |
}
|
410 |
|
411 |
.ect-main .switch input[type="checkbox"] {
|
412 |
visibility: hidden;
|
|
|
413 |
}
|
414 |
|
415 |
.ect-main .switch label:after {
|
416 |
-
background-color: #
|
417 |
border-radius: 100%;
|
418 |
content: '';
|
419 |
-
height:
|
420 |
left: 2px;
|
421 |
position: absolute;
|
422 |
-webkit-transition: all 0.2s ease-in-out;
|
@@ -424,16 +151,16 @@
|
|
424 |
o-transition: all 0.2s ease-in-out;
|
425 |
transition: all 0.2s ease-in-out;
|
426 |
top: 2px;
|
427 |
-
width:
|
428 |
}
|
429 |
|
430 |
-
.ect-main .switch input[type="checkbox"]:checked + label:after
|
431 |
-
left:
|
432 |
-
background-color: #
|
433 |
}
|
434 |
|
435 |
.ect-main .loader {
|
436 |
-
border: 5px solid #
|
437 |
border-radius: 50%;
|
438 |
border-top: 2px solid transparent;
|
439 |
width: 20px;
|
@@ -441,8 +168,7 @@
|
|
441 |
-webkit-animation: spin 2s linear infinite;
|
442 |
animation: spin 2s linear infinite;
|
443 |
position: absolute;
|
444 |
-
|
445 |
-
right: 20px;
|
446 |
display: none;
|
447 |
}
|
448 |
|
@@ -455,281 +181,3 @@
|
|
455 |
0% { transform: rotate(0deg); }
|
456 |
100% { transform: rotate(360deg); }
|
457 |
}
|
458 |
-
|
459 |
-
/*--------------------------------------------------------------
|
460 |
-
# Other Products
|
461 |
-
--------------------------------------------------------------*/
|
462 |
-
.ect-main .other-catchthemes-products {
|
463 |
-
background-color: #f9f9f9;
|
464 |
-
clear: both;
|
465 |
-
display: block;
|
466 |
-
}
|
467 |
-
|
468 |
-
.ect-main .other-catchthemes-products .module-content {
|
469 |
-
border: none;
|
470 |
-
padding: 0;
|
471 |
-
position: relative;
|
472 |
-
text-align: center;
|
473 |
-
}
|
474 |
-
|
475 |
-
.ect-main .other-catchthemes-products .catch-modules {
|
476 |
-
background-color: #fff;
|
477 |
-
border: 1px solid #dedede;
|
478 |
-
}
|
479 |
-
|
480 |
-
.ect-main .other-catchthemes-products .catch-modules a {
|
481 |
-
color: #444;
|
482 |
-
display: block;
|
483 |
-
padding: 1em;
|
484 |
-
}
|
485 |
-
|
486 |
-
.ect-main .other-catchthemes-products .catch-modules a:hover,
|
487 |
-
.ect-main .other-catchthemes-products .catch-modules a:focus {
|
488 |
-
color: #0085c3;
|
489 |
-
text-decoration: none;
|
490 |
-
}
|
491 |
-
|
492 |
-
.ect-main .other-catchthemes-products .catch-modules .more-details {
|
493 |
-
background-color: #00618d;
|
494 |
-
color: #fff;
|
495 |
-
padding: 16px;
|
496 |
-
position: absolute;
|
497 |
-
left: 25%;
|
498 |
-
font-size: 15px;
|
499 |
-
font-size: 0.9375rem;
|
500 |
-
right: 25%;
|
501 |
-
text-align: center;
|
502 |
-
top: 35%;
|
503 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
|
504 |
-
opacity: 0;
|
505 |
-
-webkit-transition: opacity 0.1s ease-in-out;
|
506 |
-
transition: opacity 0.1s ease-in-out;
|
507 |
-
}
|
508 |
-
|
509 |
-
.ect-main .other-catchthemes-products .module-content:hover .more-details,
|
510 |
-
.ect-main .other-catchthemes-products .module-content:focus .more-details {
|
511 |
-
color: #fff;
|
512 |
-
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
|
513 |
-
opacity: 1;
|
514 |
-
text-decoration: none;
|
515 |
-
}
|
516 |
-
|
517 |
-
.ect-main .other-catchthemes-products .catch-modules .modules-thumbnail {
|
518 |
-
padding: 0;
|
519 |
-
}
|
520 |
-
|
521 |
-
/*--------------------------------------------------------------
|
522 |
-
# Footer
|
523 |
-
--------------------------------------------------------------*/
|
524 |
-
.ect-main .footer-navigation {
|
525 |
-
font-family: "Trebuchet MS", Helvetica, sans-serif;
|
526 |
-
}
|
527 |
-
|
528 |
-
.ect-main .menu-footer-container {
|
529 |
-
padding: 10px 20px 30px;
|
530 |
-
}
|
531 |
-
|
532 |
-
.ect-main .footer-navigation ul {
|
533 |
-
list-style: none;
|
534 |
-
}
|
535 |
-
|
536 |
-
.ect-main .footer-navigation a {
|
537 |
-
color: #444;
|
538 |
-
text-transform: capitalize;
|
539 |
-
padding: 10px 8px 10px 6px;
|
540 |
-
display: block;
|
541 |
-
}
|
542 |
-
|
543 |
-
.ect-main .footer-navigation a:hover,
|
544 |
-
.ect-main .footer-navigation a:focus {
|
545 |
-
color: #0085c3;
|
546 |
-
text-decoration: none;
|
547 |
-
}
|
548 |
-
|
549 |
-
.ect-main .site-footer .menu-footer {
|
550 |
-
display: -webkit-box;
|
551 |
-
display: -ms-flexbox;
|
552 |
-
display: flex;
|
553 |
-
-ms-flex-flow: row wrap;
|
554 |
-
flex-flow: row wrap;
|
555 |
-
-webkit-box-pack: center;
|
556 |
-
-ms-flex-pack: center;
|
557 |
-
justify-content: center;
|
558 |
-
align-items: center;
|
559 |
-
margin: 0;
|
560 |
-
}
|
561 |
-
|
562 |
-
.ect-main .site-footer .menu-footer li {
|
563 |
-
margin: 0;
|
564 |
-
}
|
565 |
-
|
566 |
-
/*--------------------------------------------------------------
|
567 |
-
# Media Queries
|
568 |
-
--------------------------------------------------------------*/
|
569 |
-
|
570 |
-
/*--------------------------------------------------------------
|
571 |
-
## >= 320px
|
572 |
-
--------------------------------------------------------------*/
|
573 |
-
@media screen and (min-width: 20em) {
|
574 |
-
.ect-main .module-header {
|
575 |
-
display: -webkit-box;
|
576 |
-
display: -ms-flexbox;
|
577 |
-
display: flex;
|
578 |
-
-ms-flex-flow: row wrap;
|
579 |
-
flex-flow: row wrap;
|
580 |
-
-webkit-box-pack: space-between;
|
581 |
-
-ms-flex-pack: space-between;
|
582 |
-
justify-content: space-between;
|
583 |
-
}
|
584 |
-
|
585 |
-
.ect-main .module-title {
|
586 |
-
margin-bottom: 0;
|
587 |
-
}
|
588 |
-
|
589 |
-
.ect-main .switch {
|
590 |
-
margin-right: 25px;
|
591 |
-
}
|
592 |
-
}
|
593 |
-
|
594 |
-
/*--------------------------------------------------------------
|
595 |
-
## >= 768px
|
596 |
-
--------------------------------------------------------------*/
|
597 |
-
@media screen and (min-width: 48em) {
|
598 |
-
.ect-main .container {
|
599 |
-
padding: 30px;
|
600 |
-
max-width: 100%;
|
601 |
-
}
|
602 |
-
|
603 |
-
.ect-main .module-container {
|
604 |
-
-ms-flex-flow: row wrap;
|
605 |
-
flex-flow: row wrap;
|
606 |
-
-webkit-box-pack: space-between;
|
607 |
-
-ms-flex-pack: space-between;
|
608 |
-
justify-content: space-between;
|
609 |
-
}
|
610 |
-
|
611 |
-
.ect-main #plugin-description {
|
612 |
-
padding-bottom: 30px;
|
613 |
-
}
|
614 |
-
|
615 |
-
.ect-main .catch-modules {
|
616 |
-
flex: 0 1 48.5%;
|
617 |
-
}
|
618 |
-
|
619 |
-
.ect-main .module-content {
|
620 |
-
padding: 20px;
|
621 |
-
}
|
622 |
-
|
623 |
-
.ect-main .menu-footer-container {
|
624 |
-
padding: 10px 40px 30px;
|
625 |
-
}
|
626 |
-
}
|
627 |
-
|
628 |
-
/*--------------------------------------------------------------
|
629 |
-
## >= 1024px
|
630 |
-
--------------------------------------------------------------*/
|
631 |
-
@media screen and (min-width: 64em) {
|
632 |
-
.ect-main h1 {
|
633 |
-
font-size: 32px;
|
634 |
-
font-size: 2rem;
|
635 |
-
}
|
636 |
-
|
637 |
-
.ect-main h2 {
|
638 |
-
font-size: 22px;
|
639 |
-
font-size: 1.375rem;
|
640 |
-
}
|
641 |
-
|
642 |
-
.ect-main #site-branding {
|
643 |
-
padding: 80px 40px;
|
644 |
-
}
|
645 |
-
|
646 |
-
.ect-main .module-container {
|
647 |
-
-webkit-box-pack: flex-start;
|
648 |
-
-ms-flex-pack: flex-start;
|
649 |
-
justify-content: flex-start;
|
650 |
-
}
|
651 |
-
|
652 |
-
.ect-main .module-container .wrapper {
|
653 |
-
display: -webkit-box;
|
654 |
-
display: -ms-flexbox;
|
655 |
-
display: flex;
|
656 |
-
-webkit-flex-wrap:wrap;
|
657 |
-
-ms-flex-wrap: wrap;
|
658 |
-
flex-wrap: wrap;
|
659 |
-
-webkit-box-pack: flex-start;
|
660 |
-
-ms-flex-pack: flex-start;
|
661 |
-
justify-content: flex-start;
|
662 |
-
}
|
663 |
-
|
664 |
-
.ect-main .catch-modules {
|
665 |
-
-ms-flex: 31.33%;
|
666 |
-
-webkit-flex: 31.33%;
|
667 |
-
flex: 0 1 31.33%;
|
668 |
-
margin: 0 1%;
|
669 |
-
}
|
670 |
-
|
671 |
-
.ect-main #dashboard .catch-modules {
|
672 |
-
-ms-flex: 48%;
|
673 |
-
-webkit-flex: 48%;
|
674 |
-
flex: 0 1 48%;
|
675 |
-
margin: 10px 1%;
|
676 |
-
}
|
677 |
-
|
678 |
-
.ect-main .menu-footer-container {
|
679 |
-
padding: 25px 40px;
|
680 |
-
}
|
681 |
-
|
682 |
-
.ect-main .footer-navigation a {
|
683 |
-
padding: 10px;
|
684 |
-
}
|
685 |
-
}
|
686 |
-
|
687 |
-
/*--------------------------------------------------------------
|
688 |
-
## >= 1280px
|
689 |
-
--------------------------------------------------------------*/
|
690 |
-
@media screen and (min-width: 80em) {
|
691 |
-
.ect-main,
|
692 |
-
.ect-main button,
|
693 |
-
.ect-main input,
|
694 |
-
.ect-main select,
|
695 |
-
.ect-main textarea,
|
696 |
-
.ect-main p {
|
697 |
-
font-size: 18px;
|
698 |
-
font-size: 1.1875rem;
|
699 |
-
}
|
700 |
-
|
701 |
-
.ect-main h1 {
|
702 |
-
font-size: 48px;
|
703 |
-
font-size: 3rem;
|
704 |
-
}
|
705 |
-
|
706 |
-
.ect-main h2 {
|
707 |
-
font-size: 24px;
|
708 |
-
font-size: 1.5rem;
|
709 |
-
}
|
710 |
-
|
711 |
-
.ect-main h3 {
|
712 |
-
font-size: 20px;
|
713 |
-
font-size: 1.25rem;
|
714 |
-
}
|
715 |
-
|
716 |
-
.ect-main .container {
|
717 |
-
padding: 60px 40px;
|
718 |
-
}
|
719 |
-
|
720 |
-
.ect-main #plugin-description {
|
721 |
-
padding-bottom: 40px;
|
722 |
-
}
|
723 |
-
|
724 |
-
.ect-main #site-branding {
|
725 |
-
padding: 100px 50px;
|
726 |
-
}
|
727 |
-
|
728 |
-
.ect-main .module-content {
|
729 |
-
padding: 25px;
|
730 |
-
}
|
731 |
-
|
732 |
-
.ect-main .footer-navigation a {
|
733 |
-
padding: 10px 10px 10px 13px;
|
734 |
-
}
|
735 |
-
}
|
14 |
# Header
|
15 |
# Content
|
16 |
# Toggle Switch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
--------------------------------------------------------------*/
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
/*--------------------------------------------------------------
|
21 |
# Layout
|
22 |
--------------------------------------------------------------*/
|
23 |
+
|
24 |
.ect-main {
|
25 |
-webkit-box-sizing: border-box;
|
26 |
-moz-box-sizing: border-box;
|
35 |
box-sizing: inherit;
|
36 |
}
|
37 |
|
|
|
|
|
|
|
|
|
|
|
38 |
.ect-main {
|
39 |
background-color: #fff;
|
40 |
}
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
/*--------------------------------------------------------------
|
43 |
# Clearing
|
44 |
--------------------------------------------------------------*/
|
45 |
+
|
46 |
.ect-main .clear:before,
|
47 |
.ect-main .clear:after {
|
48 |
content: "";
|
53 |
clear: both;
|
54 |
}
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
/*--------------------------------------------------------------
|
57 |
# Header
|
58 |
--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
+
.ect-main .module-title {
|
61 |
+
margin-bottom: 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
}
|
63 |
|
64 |
/*--------------------------------------------------------------
|
65 |
# Content
|
66 |
--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
|
68 |
.ect-main .module-header {
|
69 |
+
background-color: #f3f3f3;
|
70 |
+
display: -webkit-box;
|
71 |
+
display: -ms-flexbox;
|
72 |
+
display: flex;
|
73 |
+
padding: 11px 18px;
|
74 |
+
position: relative;
|
75 |
+
-ms-flex-flow: row wrap;
|
76 |
+
flex-flow: row wrap;
|
77 |
+
-webkit-box-pack: space-between;
|
78 |
+
-ms-flex-pack: space-between;
|
79 |
+
justify-content: space-between;
|
80 |
}
|
81 |
|
82 |
+
.module-container .catch-modules {
|
83 |
+
border: 1px solid #dfdfdf;
|
|
|
|
|
|
|
|
|
84 |
}
|
85 |
|
86 |
+
.module-container .module-wrap {
|
87 |
+
display: inline;
|
88 |
+
float: left;
|
89 |
+
margin-bottom: 20px;
|
90 |
+
position: relative;
|
91 |
+
width: 100%;
|
92 |
+
box-sizing: border-box;
|
93 |
}
|
94 |
|
95 |
+
.module-content {
|
96 |
+
padding: 11px 18px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
}
|
98 |
|
99 |
/*--------------------------------------------------------------
|
100 |
# Toggle Switch
|
101 |
--------------------------------------------------------------*/
|
102 |
+
|
103 |
.ect-main .switch {
|
104 |
-webkit-box-flex: 0;
|
105 |
-webkit-flex-grow: 0;
|
106 |
+
-moz-box-flex: 0;
|
107 |
+
-ms-flex-positive: 0;
|
108 |
+
flex-grow: 0;
|
109 |
-webkit-flex-shrink: 0;
|
110 |
+
-ms-flex-negative: 0;
|
111 |
+
flex-shrink: 0;
|
112 |
position: relative;
|
113 |
float: none;
|
114 |
right: 0;
|
115 |
+
top: 2px;
|
116 |
}
|
117 |
|
118 |
.ect-main .module-title.active {
|
120 |
}
|
121 |
|
122 |
.ect-main .switch label {
|
123 |
+
background-color: #48a348;
|
124 |
border-radius: 11px;
|
125 |
cursor: pointer;
|
126 |
+
height: 16px;
|
127 |
+
right:0;
|
128 |
position: absolute;
|
129 |
+
top: 3px;
|
130 |
+
width: 30px;
|
131 |
+
}
|
132 |
+
|
133 |
+
.ect-main .inactive .switch label {
|
134 |
+
background-color: #ccc;
|
135 |
}
|
136 |
|
137 |
.ect-main .switch input[type="checkbox"] {
|
138 |
visibility: hidden;
|
139 |
+
display: none;
|
140 |
}
|
141 |
|
142 |
.ect-main .switch label:after {
|
143 |
+
background-color: #fff;
|
144 |
border-radius: 100%;
|
145 |
content: '';
|
146 |
+
height: 12px;
|
147 |
left: 2px;
|
148 |
position: absolute;
|
149 |
-webkit-transition: all 0.2s ease-in-out;
|
151 |
o-transition: all 0.2s ease-in-out;
|
152 |
transition: all 0.2s ease-in-out;
|
153 |
top: 2px;
|
154 |
+
width: 12px;
|
155 |
}
|
156 |
|
157 |
+
.ect-main .switch input[type="checkbox"]:checked + label:after {
|
158 |
+
left: 16px;
|
159 |
+
background-color: #fff;
|
160 |
}
|
161 |
|
162 |
.ect-main .loader {
|
163 |
+
border: 5px solid #48a348;
|
164 |
border-radius: 50%;
|
165 |
border-top: 2px solid transparent;
|
166 |
width: 20px;
|
168 |
-webkit-animation: spin 2s linear infinite;
|
169 |
animation: spin 2s linear infinite;
|
170 |
position: absolute;
|
171 |
+
right: 60px;
|
|
|
172 |
display: none;
|
173 |
}
|
174 |
|
181 |
0% { transform: rotate(0deg); }
|
182 |
100% { transform: rotate(360deg); }
|
183 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/css/featured-content-shortcode.css
CHANGED
File without changes
|
admin/css/food-menu-shortcode.css
CHANGED
@@ -1,137 +1,137 @@
|
|
1 |
-
|
2 |
-
body.page-template-menu-page .content-area .singular-content-wrap .entry-content {
|
3 |
-
padding-top: 0;
|
4 |
-
}
|
5 |
-
|
6 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-title {
|
7 |
-
font-family: 'Montserrat', sans-serif;
|
8 |
-
}
|
9 |
-
|
10 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-title {
|
11 |
-
font-size: 18px;
|
12 |
-
font-size: 1.125rem;
|
13 |
-
}
|
14 |
-
|
15 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-title {
|
16 |
-
font-weight: 600;
|
17 |
-
}
|
18 |
-
|
19 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
20 |
-
border-bottom: 3px solid;
|
21 |
-
padding-bottom: 21px;
|
22 |
-
}
|
23 |
-
|
24 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-container {
|
25 |
-
display: table;
|
26 |
-
position: relative;
|
27 |
-
table-layout: fixed;
|
28 |
-
width: 100%;
|
29 |
-
}
|
30 |
-
|
31 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-header {
|
32 |
-
margin-bottom: 14px;
|
33 |
-
}
|
34 |
-
|
35 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-content {
|
36 |
-
margin-top: 14px;
|
37 |
-
}
|
38 |
-
|
39 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-description {
|
40 |
-
width: 70%;
|
41 |
-
}
|
42 |
-
|
43 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-description,
|
44 |
-
.page-template-menu-page .entry-price {
|
45 |
-
display: table-cell;
|
46 |
-
vertical-align: top;
|
47 |
-
}
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
52 |
-
padding-bottom: 28px;
|
53 |
-
}
|
54 |
-
|
55 |
-
@media screen and (min-width: 48em) {
|
56 |
-
|
57 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-title {
|
58 |
-
font-size: 21px;
|
59 |
-
font-size: 1.3125rem;
|
60 |
-
}
|
61 |
-
|
62 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
63 |
-
padding-bottom: 28px;
|
64 |
-
}
|
65 |
-
|
66 |
-
|
67 |
-
.page-template-menu-page .ect-food-menu-shortcode .section-content-wrapper {
|
68 |
-
max-width: 1080px;
|
69 |
-
margin: 0 auto;
|
70 |
-
}
|
71 |
-
}
|
72 |
-
|
73 |
-
@media screen and (min-width: 50.75em) {
|
74 |
-
|
75 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
76 |
-
padding-bottom: 0;
|
77 |
-
}
|
78 |
-
}
|
79 |
-
|
80 |
-
@media screen and (min-width: 75em) {
|
81 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-title {
|
82 |
-
font-size: 24px;
|
83 |
-
font-size: 1.5rem;
|
84 |
-
}
|
85 |
-
|
86 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
87 |
-
padding-bottom: 35px;
|
88 |
-
}
|
89 |
-
|
90 |
-
.page-template-menu-page .ect-food-menu-shortcode .archive-content-wrap .hentry {
|
91 |
-
padding-left: 0;
|
92 |
-
padding-right: 0;
|
93 |
-
}
|
94 |
-
}
|
95 |
-
|
96 |
-
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
97 |
-
border-color: #f2f2f2;
|
98 |
-
}
|
99 |
-
|
100 |
-
|
101 |
-
.page-template-menu-page .ect-food-menu-shortcode {
|
102 |
-
padding-top: 0px;
|
103 |
-
}
|
104 |
-
|
105 |
-
.page-template-menu-page .ect-food-menu-shortcode .entry-header {
|
106 |
-
padding: 0;
|
107 |
-
text-align: left;
|
108 |
-
}
|
109 |
-
|
110 |
-
.page-template-menu-page .entry-content .ect-food-menu-shortcode a {
|
111 |
-
text-decoration: none;
|
112 |
-
}
|
113 |
-
|
114 |
-
/* From Theme */
|
115 |
-
.page-template-menu-page .content-area .menu-items .entry-container {
|
116 |
-
display: table;
|
117 |
-
position: relative;
|
118 |
-
table-layout: fixed;
|
119 |
-
width: 100%;
|
120 |
-
}
|
121 |
-
|
122 |
-
.page-template-menu-page .content-area .menu-items .entry-header {
|
123 |
-
margin-bottom: 14px;
|
124 |
-
}
|
125 |
-
|
126 |
-
.page-template-menu-page .content-area .menu-items .entry-content {
|
127 |
-
margin-top: 14px;
|
128 |
-
}
|
129 |
-
|
130 |
-
.page-template-menu-page .menu-items .entry-description {
|
131 |
-
width: 70%;
|
132 |
-
}
|
133 |
-
|
134 |
-
.page-template-menu-page .menu-items .entry-description {
|
135 |
-
display: table-cell;
|
136 |
-
vertical-align: top;
|
137 |
-
}
|
1 |
+
|
2 |
+
body.page-template-menu-page .content-area .singular-content-wrap .entry-content {
|
3 |
+
padding-top: 0;
|
4 |
+
}
|
5 |
+
|
6 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-title {
|
7 |
+
font-family: 'Montserrat', sans-serif;
|
8 |
+
}
|
9 |
+
|
10 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-title {
|
11 |
+
font-size: 18px;
|
12 |
+
font-size: 1.125rem;
|
13 |
+
}
|
14 |
+
|
15 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-title {
|
16 |
+
font-weight: 600;
|
17 |
+
}
|
18 |
+
|
19 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
20 |
+
border-bottom: 3px solid;
|
21 |
+
padding-bottom: 21px;
|
22 |
+
}
|
23 |
+
|
24 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-container {
|
25 |
+
display: table;
|
26 |
+
position: relative;
|
27 |
+
table-layout: fixed;
|
28 |
+
width: 100%;
|
29 |
+
}
|
30 |
+
|
31 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-header {
|
32 |
+
margin-bottom: 14px;
|
33 |
+
}
|
34 |
+
|
35 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-content {
|
36 |
+
margin-top: 14px;
|
37 |
+
}
|
38 |
+
|
39 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-description {
|
40 |
+
width: 70%;
|
41 |
+
}
|
42 |
+
|
43 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-description,
|
44 |
+
.page-template-menu-page .entry-price {
|
45 |
+
display: table-cell;
|
46 |
+
vertical-align: top;
|
47 |
+
}
|
48 |
+
|
49 |
+
|
50 |
+
|
51 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
52 |
+
padding-bottom: 28px;
|
53 |
+
}
|
54 |
+
|
55 |
+
@media screen and (min-width: 48em) {
|
56 |
+
|
57 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-title {
|
58 |
+
font-size: 21px;
|
59 |
+
font-size: 1.3125rem;
|
60 |
+
}
|
61 |
+
|
62 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
63 |
+
padding-bottom: 28px;
|
64 |
+
}
|
65 |
+
|
66 |
+
|
67 |
+
.page-template-menu-page .ect-food-menu-shortcode .section-content-wrapper {
|
68 |
+
max-width: 1080px;
|
69 |
+
margin: 0 auto;
|
70 |
+
}
|
71 |
+
}
|
72 |
+
|
73 |
+
@media screen and (min-width: 50.75em) {
|
74 |
+
|
75 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
76 |
+
padding-bottom: 0;
|
77 |
+
}
|
78 |
+
}
|
79 |
+
|
80 |
+
@media screen and (min-width: 75em) {
|
81 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .entry-title {
|
82 |
+
font-size: 24px;
|
83 |
+
font-size: 1.5rem;
|
84 |
+
}
|
85 |
+
|
86 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
87 |
+
padding-bottom: 35px;
|
88 |
+
}
|
89 |
+
|
90 |
+
.page-template-menu-page .ect-food-menu-shortcode .archive-content-wrap .hentry {
|
91 |
+
padding-left: 0;
|
92 |
+
padding-right: 0;
|
93 |
+
}
|
94 |
+
}
|
95 |
+
|
96 |
+
.page-template-menu-page .ect-food-menu-shortcode .menu-items .hentry-inner {
|
97 |
+
border-color: #f2f2f2;
|
98 |
+
}
|
99 |
+
|
100 |
+
|
101 |
+
.page-template-menu-page .ect-food-menu-shortcode {
|
102 |
+
padding-top: 0px;
|
103 |
+
}
|
104 |
+
|
105 |
+
.page-template-menu-page .ect-food-menu-shortcode .entry-header {
|
106 |
+
padding: 0;
|
107 |
+
text-align: left;
|
108 |
+
}
|
109 |
+
|
110 |
+
.page-template-menu-page .entry-content .ect-food-menu-shortcode a {
|
111 |
+
text-decoration: none;
|
112 |
+
}
|
113 |
+
|
114 |
+
/* From Theme */
|
115 |
+
.page-template-menu-page .content-area .menu-items .entry-container {
|
116 |
+
display: table;
|
117 |
+
position: relative;
|
118 |
+
table-layout: fixed;
|
119 |
+
width: 100%;
|
120 |
+
}
|
121 |
+
|
122 |
+
.page-template-menu-page .content-area .menu-items .entry-header {
|
123 |
+
margin-bottom: 14px;
|
124 |
+
}
|
125 |
+
|
126 |
+
.page-template-menu-page .content-area .menu-items .entry-content {
|
127 |
+
margin-top: 14px;
|
128 |
+
}
|
129 |
+
|
130 |
+
.page-template-menu-page .menu-items .entry-description {
|
131 |
+
width: 70%;
|
132 |
+
}
|
133 |
+
|
134 |
+
.page-template-menu-page .menu-items .entry-description {
|
135 |
+
display: table-cell;
|
136 |
+
vertical-align: top;
|
137 |
+
}
|
admin/css/portfolio-shortcode.css
CHANGED
File without changes
|
admin/css/service-shortcode.css
CHANGED
File without changes
|
admin/css/testimonial-shortcode.css
CHANGED
File without changes
|
admin/images/free-plugin-246x116.png
ADDED
Binary file
|
admin/images/free-plugins.jpg
DELETED
Binary file
|
admin/images/free-theme-246x175.jpg
ADDED
Binary file
|
admin/images/free-themes.jpg
DELETED
Binary file
|
admin/images/header_1680x394.jpg
DELETED
Binary file
|
admin/images/premium-plugin-246x116.png
ADDED
Binary file
|
admin/images/premium-theme-246x175.jpg
ADDED
Binary file
|
admin/images/premium-themes.jpg
DELETED
Binary file
|
admin/js/catch-instagram-feed-gallery-widget-admin.js
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function($) {
|
2 |
+
'use strict';
|
3 |
+
|
4 |
+
/**
|
5 |
+
* All of the code for your admin-facing JavaScript source
|
6 |
+
* should reside in this file.
|
7 |
+
*
|
8 |
+
* Note: It has been assumed you will write jQuery code here, so the
|
9 |
+
* $ function reference has been prepared for usage within the scope
|
10 |
+
* of this function.
|
11 |
+
*
|
12 |
+
* This enables you to define handlers, for when the DOM is ready:
|
13 |
+
*
|
14 |
+
* $(function() {
|
15 |
+
*
|
16 |
+
* });
|
17 |
+
*
|
18 |
+
* When the window is loaded:
|
19 |
+
*
|
20 |
+
* $( window ).load(function() {
|
21 |
+
*
|
22 |
+
* });
|
23 |
+
*
|
24 |
+
* ...and/or other possibilities.
|
25 |
+
*
|
26 |
+
* Ideally, it is not considered best practise to attach more than a
|
27 |
+
* single DOM-ready or window-load handler for a particular page.
|
28 |
+
* Although scripts in the WordPress core, Plugins and Themes may be
|
29 |
+
* practising this, we should strive to set a better example in our own work.
|
30 |
+
*/
|
31 |
+
|
32 |
+
$(function() {
|
33 |
+
|
34 |
+
// Tabs
|
35 |
+
$('.catchp_widget_settings .nav-tab-wrapper a').on('click', function(e){
|
36 |
+
e.preventDefault();
|
37 |
+
|
38 |
+
if( !$(this).hasClass('ui-state-active') ){
|
39 |
+
$('.nav-tab').removeClass('nav-tab-active');
|
40 |
+
$('.wpcatchtab').removeClass('active').fadeOut(0);
|
41 |
+
|
42 |
+
$(this).addClass('nav-tab-active');
|
43 |
+
|
44 |
+
var anchorAttr = $(this).attr('href');
|
45 |
+
|
46 |
+
$(anchorAttr).addClass('active').fadeOut(0).fadeIn(500);
|
47 |
+
}
|
48 |
+
|
49 |
+
});
|
50 |
+
});
|
51 |
+
|
52 |
+
// jQuery Match Height init for sidebar spots
|
53 |
+
$(document).ready(function() {
|
54 |
+
$('.catchp-sidebar-spot .sidebar-spot-inner, .col-2 .catchp-lists li, .col-3 .catchp-lists li').matchHeight();
|
55 |
+
});
|
56 |
+
|
57 |
+
})(jQuery);
|
admin/js/essential-content-types-admin.js
CHANGED
@@ -42,4 +42,29 @@
|
|
42 |
/* For Input Switch End */
|
43 |
});
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
})( jQuery );
|
42 |
/* For Input Switch End */
|
43 |
});
|
44 |
|
45 |
+
$(function() {
|
46 |
+
|
47 |
+
// Tabs
|
48 |
+
$('.catchp_widget_settings .nav-tab-wrapper a').on('click', function(e){
|
49 |
+
e.preventDefault();
|
50 |
+
|
51 |
+
if( !$(this).hasClass('ui-state-active') ){
|
52 |
+
$('.nav-tab').removeClass('nav-tab-active');
|
53 |
+
$('.wpcatchtab').removeClass('active').fadeOut(0);
|
54 |
+
|
55 |
+
$(this).addClass('nav-tab-active');
|
56 |
+
|
57 |
+
var anchorAttr = $(this).attr('href');
|
58 |
+
|
59 |
+
$(anchorAttr).addClass('active').fadeOut(0).fadeIn(500);
|
60 |
+
}
|
61 |
+
|
62 |
+
});
|
63 |
+
});
|
64 |
+
|
65 |
+
// jQuery Match Height init for sidebar spots
|
66 |
+
$(document).ready(function() {
|
67 |
+
$('.catchp-sidebar-spot .sidebar-spot-inner, .col-2 .catchp-lists li, .col-3 .catchp-lists li, .module-content').matchHeight();
|
68 |
+
});
|
69 |
+
|
70 |
})( jQuery );
|
admin/js/jquery.matchHeight.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):"undefined"!=typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){var b=-1,c=-1,d=function(a){return parseFloat(a)||0},e=function(b){var c=a(b),e=null,f=[];return c.each(function(){var b=a(this),c=b.offset().top-d(b.css("margin-top")),g=f.length>0?f[f.length-1]:null;null===g?f.push(b):Math.floor(Math.abs(e-c))<=1?f[f.length-1]=g.add(b):f.push(b),e=c}),f},f=function(b){var c={byRow:!0,property:"height",target:null,remove:!1};return"object"==typeof b?a.extend(c,b):("boolean"==typeof b?c.byRow=b:"remove"===b&&(c.remove=!0),c)},g=a.fn.matchHeight=function(b){var c=f(b);if(c.remove){var d=this;return this.css(c.property,""),a.each(g._groups,function(a,b){b.elements=b.elements.not(d)}),this}return this.length<=1&&!c.target?this:(g._groups.push({elements:this,options:c}),g._apply(this,c),this)};g.version="master",g._groups=[],g._throttle=80,g._maintainScroll=!1,g._beforeUpdate=null,g._afterUpdate=null,g._rows=e,g._parse=d,g._parseOptions=f,g._apply=function(b,c){var h=f(c),i=a(b),j=[i],k=a(window).scrollTop(),l=a("html").outerHeight(!0),m=i.parents().filter(":hidden");return m.each(function(){var b=a(this);b.data("style-cache",b.attr("style"))}),m.css("display","block"),h.byRow&&!h.target&&(i.each(function(){var b=a(this),c=b.css("display");"inline-block"!==c&&"flex"!==c&&"inline-flex"!==c&&(c="block"),b.data("style-cache",b.attr("style")),b.css({display:c,"padding-top":"0","padding-bottom":"0","margin-top":"0","margin-bottom":"0","border-top-width":"0","border-bottom-width":"0",height:"100px",overflow:"hidden"})}),j=e(i),i.each(function(){var b=a(this);b.attr("style",b.data("style-cache")||"")})),a.each(j,function(b,c){var e=a(c),f=0;if(h.target)f=h.target.outerHeight(!1);else{if(h.byRow&&e.length<=1)return void e.css(h.property,"");e.each(function(){var b=a(this),c=b.attr("style"),d=b.css("display");"inline-block"!==d&&"flex"!==d&&"inline-flex"!==d&&(d="block");var e={display:d};e[h.property]="",b.css(e),b.outerHeight(!1)>f&&(f=b.outerHeight(!1)),c?b.attr("style",c):b.css("display","")})}e.each(function(){var b=a(this),c=0;h.target&&b.is(h.target)||("border-box"!==b.css("box-sizing")&&(c+=d(b.css("border-top-width"))+d(b.css("border-bottom-width")),c+=d(b.css("padding-top"))+d(b.css("padding-bottom"))),b.css(h.property,f-c+"px"))})}),m.each(function(){var b=a(this);b.attr("style",b.data("style-cache")||null)}),g._maintainScroll&&a(window).scrollTop(k/l*a("html").outerHeight(!0)),this},g._applyDataApi=function(){var b={};a("[data-match-height], [data-mh]").each(function(){var c=a(this),d=c.attr("data-mh")||c.attr("data-match-height");b[d]=d in b?b[d].add(c):c}),a.each(b,function(){this.matchHeight(!0)})};var h=function(b){g._beforeUpdate&&g._beforeUpdate(b,g._groups),a.each(g._groups,function(){g._apply(this.elements,this.options)}),g._afterUpdate&&g._afterUpdate(b,g._groups)};g._update=function(d,e){if(e&&"resize"===e.type){var f=a(window).width();if(f===b)return;b=f}d?-1===c&&(c=setTimeout(function(){h(e),c=-1},g._throttle)):h(e)},a(g._applyDataApi);var i=a.fn.on?"on":"bind";a(window)[i]("load",function(a){g._update(!1,a)}),a(window)[i]("resize orientationchange",function(a){g._update(!0,a)})});
|
admin/partials/dashboard-display.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
*
|
6 |
* This file is used to markup the admin-facing aspects of the plugin.
|
7 |
*
|
8 |
-
* @link https://
|
9 |
* @since 1.0.0
|
10 |
*
|
11 |
* @package Essential_Content_Types
|
@@ -13,155 +13,150 @@
|
|
13 |
*/
|
14 |
?>
|
15 |
|
16 |
-
<div id="essential-content-types" class="ect-main"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
<
|
37 |
-
<label for="ect_portfolio"></label>
|
38 |
</div>
|
39 |
|
40 |
-
<div class="
|
41 |
-
|
42 |
|
43 |
-
|
44 |
-
<p><?php esc_html_e( 'Portfolio – Create and display your portfolio on your website.', 'essential-content-types' ); ?></p>
|
45 |
|
46 |
-
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
|
|
|
|
63 |
</div>
|
64 |
|
65 |
-
<div class="
|
66 |
-
|
67 |
-
|
68 |
-
<div class="module-content">
|
69 |
-
<p><?php esc_html_e( 'Testimonials – Add customer testimonials to your website.', 'essential-content-types' ); ?></p>
|
70 |
-
|
71 |
-
<p><?php esc_html_e( 'Once enabled, Testimonials Post Type options will appear on Dashboard Menu', 'essential-content-types' ); ?></p>
|
72 |
-
|
73 |
-
<p><?php printf( esc_html__( '%1$sClick here%2$s to view Testimonial Achive Options.', 'essential-content-types' ) , '<a href ="' . esc_url( admin_url( 'customize.php?autofocus[control]=jetpack_testimonials[page-title]' ) ) . '" target="_blank">', '</a>' ); ?></p>
|
74 |
|
75 |
-
|
76 |
-
</div>
|
77 |
-
</div><!-- #module-testimonial -->
|
78 |
|
79 |
-
|
80 |
-
<?php
|
81 |
-
$featured_content_options = get_option( 'ect_featured_content' );
|
82 |
-
?>
|
83 |
-
<div class="module-header <?php echo $featured_content_options['status'] ? 'active' : 'inactive'; ?>">
|
84 |
-
<h3 class="module-title"><?php esc_html_e( 'Featured Content', 'essential-content-types' ); ?></h3>
|
85 |
|
86 |
-
|
87 |
-
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
</div>
|
90 |
|
91 |
-
<div class="
|
92 |
-
|
93 |
-
|
94 |
-
<div class="module-content">
|
95 |
-
<p><?php esc_html_e( 'Featured Content – Display the content you want as featured content to attract visitors\' attention.', 'essential-content-types' ); ?></p>
|
96 |
-
|
97 |
-
<p><?php esc_html_e( 'Once enabled, Featured Content Post Type options will appear on Dashboard Menu', 'essential-content-types' ); ?></p>
|
98 |
-
|
99 |
-
<p><?php printf( esc_html__( '%1$sClick here%2$s to view Featured Content Archive Options.', 'essential-content-types' ) , '<a href ="' . esc_url( admin_url( 'customize.php?autofocus[control]=featured_content_title' ) ) . '" target="_blank">', '</a>' ); ?></p>
|
100 |
|
101 |
-
|
102 |
-
</div>
|
103 |
-
</div><!-- #module-featured-content -->
|
104 |
|
105 |
-
|
106 |
-
<?php
|
107 |
-
$service_options = get_option( 'ect_service' );
|
108 |
-
?>
|
109 |
-
<div class="module-header <?php echo $service_options['status'] ? 'active' : 'inactive'; ?>">
|
110 |
-
<h3 class="module-title"><?php esc_html_e( 'Services', 'essential-content-types' ); ?></h3>
|
111 |
|
112 |
-
|
113 |
-
|
114 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
</div>
|
116 |
|
117 |
-
<div class="
|
118 |
-
|
119 |
-
|
120 |
-
<div class="module-content">
|
121 |
-
<p><?php esc_html_e( 'Service – Create and display your service on your website.', 'essential-content-types' ); ?></p>
|
122 |
-
|
123 |
-
<p><?php esc_html_e( 'Once enabled, Service Post Type options will appear on Dashboard Menu', 'essential-content-types' ); ?></p>
|
124 |
-
|
125 |
-
<p><?php printf( esc_html__( '%1$sClick here%2$s to view Service Archive Options.', 'essential-content-types' ) , '<a href ="' . esc_url( admin_url( 'customize.php?autofocus[control]=ect_service_title' ) ) . '" target="_blank">', '</a>' ); ?></p>
|
126 |
|
127 |
-
|
128 |
-
</div>
|
129 |
-
</div><!-- #module-service -->
|
130 |
|
131 |
-
|
132 |
-
<?php
|
133 |
-
$food_menu_options = get_option( 'ect_food_menu' );
|
134 |
-
?>
|
135 |
-
<div class="module-header <?php echo $food_menu_options['status'] ? 'active' : 'inactive'; ?>">
|
136 |
-
<h3 class="module-title"><?php esc_html_e( 'Food Menu', 'essential-content-types' ); ?></h3>
|
137 |
|
138 |
-
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
</div>
|
142 |
|
143 |
-
<div class="
|
144 |
-
|
145 |
-
|
146 |
-
<div class="module-content">
|
147 |
-
<p><?php esc_html_e( 'Food Menu – Create and display your Food Menu items on your website.', 'essential-content-types' ); ?></p>
|
148 |
|
149 |
-
|
150 |
|
151 |
-
|
152 |
-
|
153 |
-
|
|
|
154 |
</div><!-- .module-container -->
|
155 |
-
</div><!-- .
|
156 |
-
</div
|
157 |
-
|
158 |
-
<?php
|
159 |
-
//Add other products
|
160 |
-
require_once plugin_dir_path( dirname( __FILE__ ) ) . '/partials/other-products.php';
|
161 |
-
?>
|
162 |
-
|
163 |
-
<?php
|
164 |
-
//Add footer
|
165 |
-
require_once plugin_dir_path( dirname( __FILE__ ) ) . '/partials/footer.php';
|
166 |
-
?>
|
167 |
-
</div> <!-- Main Content-->
|
5 |
*
|
6 |
* This file is used to markup the admin-facing aspects of the plugin.
|
7 |
*
|
8 |
+
* @link https://catchplugins.com
|
9 |
* @since 1.0.0
|
10 |
*
|
11 |
* @package Essential_Content_Types
|
13 |
*/
|
14 |
?>
|
15 |
|
16 |
+
<div id="essential-content-types" class="ect-main">
|
17 |
+
<div class="content-wrapper">
|
18 |
+
<div class="header">
|
19 |
+
<h2><?php esc_html_e( 'Settings', 'essential-content-types' ); ?></h2>
|
20 |
+
</div> <!-- .Header -->
|
21 |
+
<div class="content">
|
22 |
+
|
23 |
+
<div class="module-container ect-options">
|
24 |
+
<div class="module-wrap">
|
25 |
+
<div id="module-portfolio" class="catch-modules">
|
26 |
+
<?php
|
27 |
+
$portfolio_options = get_option( 'ect_portfolio' );
|
28 |
+
?>
|
29 |
+
<div class="module-header <?php echo $portfolio_options['status'] ? 'active' : 'inactive'; ?>">
|
30 |
+
<h3 class="module-title"><?php esc_html_e( 'Portfolios/Projects', 'essential-content-types' ); ?></h3>
|
31 |
+
<div class="switch">
|
32 |
+
<input type="checkbox" id="ect_portfolio" class="input-switch" rel="ect_portfolio" <?php checked( true, $portfolio_options['status'] ); ?> >
|
33 |
+
<label for="ect_portfolio"></label>
|
34 |
+
</div>
|
35 |
+
|
36 |
+
<div class="loader"></div>
|
|
|
37 |
</div>
|
38 |
|
39 |
+
<div class="module-content">
|
40 |
+
<p><?php esc_html_e( 'Portfolio – Create and display your portfolio on your website.', 'essential-content-types' ); ?></p>
|
41 |
|
42 |
+
<p><?php esc_html_e( 'Once enabled, Portfolio Post Type options will appear on Dashboard Menu', 'essential-content-types' ); ?></p>
|
|
|
43 |
|
44 |
+
<p><?php printf( esc_html__( '%1$sClick here%2$s to view Portfolio Archive Options.', 'essential-content-types' ) , '<a href ="' . esc_url( admin_url( 'customize.php?autofocus[control]=jetpack_portfolio_title' ) ) . '" target="_blank">', '</a>' ); ?></p>
|
45 |
|
46 |
+
<p>For more information on <strong>How to use Portfolio Shortcodes</strong>, <a href="https://catchplugins.com/blog/essential-content-types-plugin/#Portfolio" title="Essential Content Type: Portfolio Shortcode" target="_blank">Click here</a></p>
|
47 |
+
</div>
|
48 |
+
</div><!-- #module-portfolio -->
|
49 |
+
</div><!-- .module-wrap -->
|
50 |
+
|
51 |
+
<div class="module-wrap">
|
52 |
+
<div id="module-testimonial" class="catch-modules">
|
53 |
+
<?php
|
54 |
+
$options = get_option( 'ect_testimonial' );
|
55 |
+
?>
|
56 |
+
<div class="module-header <?php echo $options['status'] ? 'active' : 'inactive'; ?>">
|
57 |
+
<h3 class="module-title"><?php esc_html_e( 'Testimonials', 'essential-content-types' ); ?></h3>
|
58 |
+
<div class="switch">
|
59 |
+
<input type="checkbox" id="ect_testimonial" class="input-switch" rel="ect_testimonial" <?php checked( true, $options['status'] ); ?> >
|
60 |
+
<label for="ect_testimonial"></label>
|
61 |
+
</div>
|
62 |
+
|
63 |
+
<div class="loader"></div>
|
64 |
</div>
|
65 |
|
66 |
+
<div class="module-content">
|
67 |
+
<p><?php esc_html_e( 'Testimonials – Add customer testimonials to your website.', 'essential-content-types' ); ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
|
69 |
+
<p><?php esc_html_e( 'Once enabled, Testimonials Post Type options will appear on Dashboard Menu', 'essential-content-types' ); ?></p>
|
|
|
|
|
70 |
|
71 |
+
<p><?php printf( esc_html__( '%1$sClick here%2$s to view Testimonial Archive Options.', 'essential-content-types' ) , '<a href ="' . esc_url( admin_url( 'customize.php?autofocus[control]=jetpack_testimonials[page-title]' ) ) . '" target="_blank">', '</a>' ); ?></p>
|
|
|
|
|
|
|
|
|
|
|
72 |
|
73 |
+
<p>For more information on <strong>How to use Testimonials Shortcodes</strong>, <a href="https://catchplugins.com/blog/essential-content-types-plugin/#Testimonial" title="Essential Content Type: Testimonial Shortcode" target="_blank">Click here</a></p>
|
74 |
+
</div>
|
75 |
+
</div><!-- #module-testimonial -->
|
76 |
+
</div><!-- .module-wrap -->
|
77 |
+
|
78 |
+
<div class="module-wrap">
|
79 |
+
<div id="module-featured-content" class="catch-modules">
|
80 |
+
<?php
|
81 |
+
$featured_content_options = get_option( 'ect_featured_content' );
|
82 |
+
?>
|
83 |
+
<div class="module-header <?php echo $featured_content_options['status'] ? 'active' : 'inactive'; ?>">
|
84 |
+
<h3 class="module-title"><?php esc_html_e( 'Featured Content', 'essential-content-types' ); ?></h3>
|
85 |
+
|
86 |
+
<div class="switch">
|
87 |
+
<input type="checkbox" id="ect_featured_content" class="input-switch" rel="ect_featured_content" <?php checked( true, $featured_content_options['status'] ); ?> >
|
88 |
+
<label for="ect_featured_content"></label>
|
89 |
+
</div>
|
90 |
+
|
91 |
+
<div class="loader"></div>
|
92 |
</div>
|
93 |
|
94 |
+
<div class="module-content">
|
95 |
+
<p><?php esc_html_e( 'Featured Content – Display the content you want as featured content to attract visitors\' attention.', 'essential-content-types' ); ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
+
<p><?php esc_html_e( 'Once enabled, Featured Content Post Type options will appear on Dashboard Menu', 'essential-content-types' ); ?></p>
|
|
|
|
|
98 |
|
99 |
+
<p><?php printf( esc_html__( '%1$sClick here%2$s to view Featured Content Archive Options.', 'essential-content-types' ) , '<a href ="' . esc_url( admin_url( 'customize.php?autofocus[control]=featured_content_title' ) ) . '" target="_blank">', '</a>' ); ?></p>
|
|
|
|
|
|
|
|
|
|
|
100 |
|
101 |
+
<p>For more information on <strong>How to use Featured Content Shortcodes</strong>, <a href="https://catchplugins.com/blog/essential-content-types-plugin/#FeaturedContent" title="Essential Content Type: Featured Content Shortcode" target="_blank">Click here</a></p>
|
102 |
+
</div>
|
103 |
+
</div><!-- #module-featured-content -->
|
104 |
+
</div><!-- .module-wrap -->
|
105 |
+
|
106 |
+
<div class="module-wrap">
|
107 |
+
<div id="module-service" class="catch-modules">
|
108 |
+
<?php
|
109 |
+
$service_options = get_option( 'ect_service' );
|
110 |
+
?>
|
111 |
+
<div class="module-header <?php echo $service_options['status'] ? 'active' : 'inactive'; ?>">
|
112 |
+
<h3 class="module-title"><?php esc_html_e( 'Services', 'essential-content-types' ); ?></h3>
|
113 |
+
|
114 |
+
<div class="switch">
|
115 |
+
<input type="checkbox" id="ect_service" class="input-switch" rel="ect_service" <?php checked( true, $service_options['status'] ); ?> >
|
116 |
+
<label for="ect_service"></label>
|
117 |
+
</div>
|
118 |
+
|
119 |
+
<div class="loader"></div>
|
120 |
</div>
|
121 |
|
122 |
+
<div class="module-content">
|
123 |
+
<p><?php esc_html_e( 'Service – Create and display your service on your website.', 'essential-content-types' ); ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
+
<p><?php esc_html_e( 'Once enabled, Service Post Type options will appear on Dashboard Menu', 'essential-content-types' ); ?></p>
|
|
|
|
|
126 |
|
127 |
+
<p><?php printf( esc_html__( '%1$sClick here%2$s to view Service Archive Options.', 'essential-content-types' ) , '<a href ="' . esc_url( admin_url( 'customize.php?autofocus[control]=ect_service_title' ) ) . '" target="_blank">', '</a>' ); ?></p>
|
|
|
|
|
|
|
|
|
|
|
128 |
|
129 |
+
<p>For more information on <strong>How to use Service Shortcodes</strong>, <a href="https://catchplugins.com/blog/essential-content-types-plugin/#Service" title="Essential Content Type: Service Shortcode" target="_blank">Click here</a></p>
|
130 |
+
</div>
|
131 |
+
</div><!-- #module-service -->
|
132 |
+
</div><!-- .module-wrap -->
|
133 |
+
|
134 |
+
<div class="module-wrap">
|
135 |
+
<div id="module-food-menu" class="catch-modules">
|
136 |
+
<?php
|
137 |
+
$food_menu_options = get_option( 'ect_food_menu' );
|
138 |
+
?>
|
139 |
+
<div class="module-header <?php echo $food_menu_options['status'] ? 'active' : 'inactive'; ?>">
|
140 |
+
<h3 class="module-title"><?php esc_html_e( 'Food Menu', 'essential-content-types' ); ?></h3>
|
141 |
+
|
142 |
+
<div class="switch">
|
143 |
+
<input type="checkbox" id="ect_food_menu" class="input-switch" rel="ect_food_menu" <?php checked( true, $food_menu_options['status'] ); ?> >
|
144 |
+
<label for="ect_food_menu"></label>
|
145 |
+
</div>
|
146 |
+
|
147 |
+
<div class="loader"></div>
|
148 |
</div>
|
149 |
|
150 |
+
<div class="module-content">
|
151 |
+
<p><?php esc_html_e( 'Food Menu – Create and display your Food Menu items on your website.', 'essential-content-types' ); ?></p>
|
|
|
|
|
|
|
152 |
|
153 |
+
<p><?php esc_html_e( 'Once enabled, Food Menu Items Post Type options will appear on Dashboard Menu', 'essential-content-types' ); ?></p>
|
154 |
|
155 |
+
<p>For more information on <strong>How to use Food Menu Shortcodes</strong>, <a href="https://catchplugins.com/blog/added-food-menu-essential-content-types-plugin-pro-free" title="Essential Content Type: Food Menu Shortcode" target="_blank">Click here</a></p>
|
156 |
+
</div>
|
157 |
+
</div><!-- #module-food-menu -->
|
158 |
+
</div><!-- .module-wrap -->
|
159 |
</div><!-- .module-container -->
|
160 |
+
</div><!-- .content -->
|
161 |
+
</div><!-- .content-wrapper -->
|
162 |
+
</div> <!-- .ect-main-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/partials/essential-content-types-admin-display.php
CHANGED
@@ -1,186 +1,307 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
/**
|
4 |
* Provide a admin area view for the plugin
|
5 |
*
|
6 |
* This file is used to markup the admin-facing aspects of the plugin.
|
7 |
*
|
8 |
-
* @link
|
9 |
* @since 1.0.0
|
10 |
*
|
11 |
-
* @package
|
12 |
-
* @subpackage
|
13 |
*/
|
|
|
14 |
?>
|
15 |
|
16 |
-
|
17 |
-
<
|
18 |
-
<
|
19 |
-
<
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
<nav id="main-nav" class="ect-main-navigation" aria-label="Priamry Menu" role="navigation">
|
25 |
-
<ul>
|
26 |
-
<li id="list-item-1"><a href="#" id="display-none" class="active">dashboard</a>
|
27 |
-
<span class="setting"><i class="dashicons dashicons-menu" aria-hidden="true"></i></span>
|
28 |
-
<ul class="drop-menu" >
|
29 |
-
<li><a href="#" class="active">dashboard</a></li>
|
30 |
-
<li><a href="">webmaster tools</a></li>
|
31 |
-
<li><a href="">custom CSS</a></li>
|
32 |
-
<li><a href="">social icons</a></li>
|
33 |
-
<li><a href="">open graph</a></li>
|
34 |
-
<li><a href="">SEO</a></li>
|
35 |
-
<li><a href="">to top</a></li>
|
36 |
-
</ul>
|
37 |
-
</li>
|
38 |
-
</ul>
|
39 |
-
</nav>
|
40 |
-
</div><!-- wrapper-->
|
41 |
-
</header> <!-- masthead -->
|
42 |
-
|
43 |
-
<div id="dashboard">
|
44 |
-
<div class="container">
|
45 |
-
<div id="plugin-description">
|
46 |
-
<p>Catch Web Tools is a simple and lightweight WordPress plugin to Help you manage your WordPress site. Power up your WordPress site with powerful features that were till now only available to Catch Themes users. We currently offer Webmaster Tools, Open Graph, Custom CSS, Social Icons, Catch IDs and basic SEO Optimization. </p>
|
47 |
-
</div>
|
48 |
|
49 |
-
|
50 |
-
|
51 |
-
<
|
52 |
-
|
53 |
-
|
54 |
-
<input type="checkbox" id="checkbox1" class="input-switch">
|
55 |
-
<label for="checkbox1"></label>
|
56 |
-
</div>
|
57 |
-
</div>
|
58 |
|
59 |
-
|
60 |
-
<p>Webmaster Tools gives you an option to add in the Site Verfication Code and Header and Footer Script required to manage your site.
|
61 |
-
</p>
|
62 |
-
</div>
|
63 |
-
</div>
|
64 |
|
65 |
-
|
66 |
-
<div class="module-header">
|
67 |
-
<h3 class="module-title">Custom CSS</h3>
|
68 |
-
</div>
|
69 |
-
|
70 |
-
<div class="module-content">
|
71 |
-
<p>Custom CSS gives you an option to add in your CSS to your WordPress site without building Child Theme. You can just add your Custom CSS and save, it will show up in the frontend head section. Leave it blank if it is not needed.</p>
|
72 |
-
</div>
|
73 |
-
</div>
|
74 |
|
75 |
-
|
76 |
-
<div class="module-header inactive">
|
77 |
-
<h3 class="module-title">Catch IDs</h3>
|
78 |
-
<div class="switch">
|
79 |
-
<input type="checkbox" id="checkbox2" class="input-switch">
|
80 |
-
<label for="checkbox2"></label>
|
81 |
-
</div>
|
82 |
-
</div>
|
83 |
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
</div>
|
88 |
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
<
|
95 |
-
|
96 |
-
|
|
|
|
|
|
|
|
|
97 |
|
98 |
-
|
99 |
-
|
100 |
-
</div>
|
101 |
-
</div>
|
102 |
|
103 |
-
|
104 |
-
<div class="module-header inactive">
|
105 |
-
<h3 class="module-title">Open Graph</h3>
|
106 |
-
<div class="switch">
|
107 |
-
<input type="checkbox" id="checkbox4" class="input-switch">
|
108 |
-
<label for="checkbox4"></label>
|
109 |
-
</div>
|
110 |
-
</div>
|
111 |
-
|
112 |
-
<div class="module-content">
|
113 |
-
<p>The Open Graph protocol enables your site to become a rich object in a social graph. For instance, this is used on Facebook to allow any web page to have the same functionality as any other object on Facebook. </p>
|
114 |
-
</div>
|
115 |
-
</div>
|
116 |
|
117 |
-
<div id="
|
118 |
-
<div class="
|
119 |
-
<
|
120 |
-
|
121 |
-
<input type="checkbox" id="checkbox5" class="input-switch">
|
122 |
-
<label for="checkbox5"></label>
|
123 |
-
</div>
|
124 |
-
</div>
|
125 |
-
|
126 |
-
<div class="module-content">
|
127 |
-
<p>SEO is in beta version. SEO can be used to add SEO meta tags to Homepage, specific Pages or Posts and Categories page. This section adds SEO meta data to site's section.</p>
|
128 |
-
</div>
|
129 |
-
</div>
|
130 |
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
|
|
|
|
|
|
135 |
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
<input type="checkbox" id="checkbox6" class="input-switch">
|
146 |
-
<label for="checkbox6"></label>
|
147 |
-
</div>
|
148 |
-
</div>
|
149 |
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
</div>
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
</div>
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
</div
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
|
|
2 |
/**
|
3 |
* Provide a admin area view for the plugin
|
4 |
*
|
5 |
* This file is used to markup the admin-facing aspects of the plugin.
|
6 |
*
|
7 |
+
* @link catchplugins.com
|
8 |
* @since 1.0.0
|
9 |
*
|
10 |
+
* @package Essential_Content_types
|
11 |
+
* @subpackage Essential_Content_types/admin/partials
|
12 |
*/
|
13 |
+
|
14 |
?>
|
15 |
|
16 |
+
<div class="wrap">
|
17 |
+
<h1 class="wp-heading-inline"><?php esc_html_e( 'Essential Content Types', 'essential-content-types' ); ?></h1>
|
18 |
+
<div id="plugin-description">
|
19 |
+
<p><?php esc_html_e( 'Essential Content Types allows you to feature the impressive content through different content/post types on your website just the way you want it. These content/post types are missed by the themes in WordPress Theme Directory as the feature falls more towards the plugins’ territory.', 'essential-content-types' ); ?></p>
|
20 |
+
</div>
|
21 |
+
<div class="catchp-content-wrapper">
|
22 |
+
<div class="catchp_widget_settings">
|
23 |
+
<form id="essential-content-types-main" method="post" action="options.php">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
+
<h2 class="nav-tab-wrapper">
|
26 |
+
<a class="nav-tab nav-tab-active" id="dashboard-tab" href="#dashboard"><?php esc_html_e( 'Dashboard', 'essential-content-types' ); ?></a>
|
27 |
+
<a class="nav-tab" id="features-tab" href="#features"><?php esc_html_e( 'Features', 'essential-content-types' ); ?></a>
|
28 |
+
<a class="nav-tab" id="premium-extensions-tab" href="#premium-extensions"><?php esc_html_e( 'Premium/Extensions', 'essential-content-types' ); ?></a>
|
29 |
+
</h2>
|
|
|
|
|
|
|
|
|
30 |
|
31 |
+
<div id="dashboard" class="wpcatchtab nosave active">
|
|
|
|
|
|
|
|
|
32 |
|
33 |
+
<?php require_once plugin_dir_path( dirname( __FILE__ ) ) . '/partials/dashboard-display.php'; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
<div id="go-premium" class="content-wrapper col-2">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
+
<div class="header">
|
38 |
+
<h2><?php esc_html_e( 'Go Premium!', 'essential-content-types' ); ?></h2>
|
39 |
+
</div> <!-- .Header -->
|
|
|
40 |
|
41 |
+
<div class="content">
|
42 |
+
<button type="button" class="button dismiss">
|
43 |
+
<span class="screen-reader-text"><?php esc_html_e( 'Dismiss this item.', 'essential-content-types' ); ?></span>
|
44 |
+
<span class="dashicons dashicons-no-alt"></span>
|
45 |
+
</button>
|
46 |
+
<ul class="catchp-lists">
|
47 |
+
<li><strong><?php esc_html_e( 'Featured Content Widget', 'essential-content-types' ); ?></strong></li>
|
48 |
+
<li><strong><?php esc_html_e( 'Portfolio Widget', 'essential-content-types' ); ?></strong></li>
|
49 |
+
<li><strong><?php esc_html_e( 'Testomonials Widget', 'essential-content-types' ); ?></strong></li>
|
50 |
+
<li><strong><?php esc_html_e( 'Services Widget', 'essential-content-types' ); ?></strong></li>
|
51 |
+
<li><strong><?php esc_html_e( 'Ability to add shortcodes via button', 'essential-content-types' ); ?></strong></li>
|
52 |
+
</ul>
|
53 |
|
54 |
+
<a href="https://catchplugins.com/plugins/essential-content-types-pro/" target="_blank"><?php esc_html_e( 'Find out why you should upgrade to Essential Content Types Premium »', 'essential-content-types' ); ?></a>
|
55 |
+
</div> <!-- .Content -->
|
56 |
+
</div> <!-- #go-premium -->
|
|
|
57 |
|
58 |
+
</div><!-- .dashboard -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
|
60 |
+
<div id="features" class="wpcatchtab save">
|
61 |
+
<div class="content-wrapper col-3">
|
62 |
+
<div class="header">
|
63 |
+
<h3><?php esc_html_e( 'Features', 'essential-content-types' ); ?></h3>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
+
</div><!-- .header -->
|
66 |
+
<div class="content">
|
67 |
+
<ul class="catchp-lists">
|
68 |
+
<li>
|
69 |
+
<strong><?php esc_html_e( 'Portfolio', 'essential-content-types-pro' ); ?></strong>
|
70 |
+
<p><?php esc_html_e( 'Portfolio enables you to showcase your professional accomplishments to the world at large. Display your most impressive Portfolios in the way you like. You also have the option to choose your Portfolio layout up to 6 columns. A marvelous way to easily display your experience and expertise.', 'essential-content-types-pro' ); ?></p>
|
71 |
+
</li>
|
72 |
|
73 |
+
<li>
|
74 |
+
<strong><?php esc_html_e( 'Testimonials', 'essential-content-types-pro' ); ?></strong>
|
75 |
+
<p><?php esc_html_e( 'People are always after authenticity. They are always looking for ways to know what your goods or services are really like. Customer testimonials really help in building trust. You can customize the testimonials as you want and also select your testimonial layout type up to 6 columns.', 'essential-content-types-pro' ); ?></p>
|
76 |
+
</li>
|
77 |
|
78 |
+
<li>
|
79 |
+
<strong><?php esc_html_e( 'Featured Content', 'essential-content-types-pro' ); ?></strong>
|
80 |
+
<p><?php esc_html_e( 'Featured Content allows you to showcase your recent and popular posts on your website. Your Featured Content can be displayed up to 1 to 6 columns. Enable the Featured Content option and display your most impressive posts.', 'essential-content-types-pro' ); ?></p>
|
81 |
+
</li>
|
|
|
|
|
|
|
|
|
82 |
|
83 |
+
<li>
|
84 |
+
<strong><?php esc_html_e( 'Services', 'essential-content-types-pro' ); ?></strong>
|
85 |
+
<p><?php esc_html_e( 'Every website owner wants people to know about eh services they provide. You can place the services you provide right on the spotlight. Choose to display the services in 1 to 6 columns. Display your services and let the world know what you can provide them with.', 'essential-content-types-pro' ); ?></p>
|
86 |
+
</li>
|
87 |
|
88 |
+
<li>
|
89 |
+
<strong><?php esc_html_e( 'Food Menu', 'essential-content-types-pro' ); ?></strong>
|
90 |
+
<p><?php esc_html_e( 'If you run a restaurant or any food business, you must showcase your food menu items gracefully in order to attract more customers to your business. Adding a food menu on your website makes your website more engaging and lets your visitors know everything you have to offer.', 'essential-content-types-pro' ); ?></p>
|
91 |
+
</li>
|
92 |
+
|
93 |
+
<li>
|
94 |
+
<strong><?php esc_html_e( 'Supports all themes on WordPress', 'essential-content-types-pro' ); ?></strong>
|
95 |
+
<p><?php esc_html_e( 'You don’t have to worry if you have a slightly different or complicated theme installed on your website. It supports all the themes on WordPress and makes your website more striking and playful.', 'essential-content-types-pro' ); ?></p>
|
96 |
+
</li>
|
97 |
+
|
98 |
+
<li>
|
99 |
+
<strong><?php esc_html_e( 'Lightweight', 'essential-content-types-pro' ); ?></strong>
|
100 |
+
<p><?php esc_html_e( 'It is extremely lightweight. You do not need to worry about it affecting the space and speed of your website.', 'essential-content-types-pro' ); ?></p>
|
101 |
+
</li>
|
102 |
+
|
103 |
+
<li>
|
104 |
+
<strong><?php esc_html_e( 'Order', 'essential-content-types-pro' ); ?></strong>
|
105 |
+
<p><?php esc_html_e( 'You have the freedom to choose how your content would be displayed—whether in ascending or descending alphabetical order by author name, title, date, or in random order.', 'essential-content-types-pro' ); ?></p>
|
106 |
+
</li>
|
107 |
+
|
108 |
+
<li>
|
109 |
+
<strong><?php esc_html_e( 'Enable/Disable any content/post type as needed', 'essential-content-types-pro' ); ?></strong>
|
110 |
+
<p><?php esc_html_e( 'With this option, you can choose whether you want to display your content/post type or not. You can enable or disable any content or post type as per your need.', 'essential-content-types-pro' ); ?></p>
|
111 |
+
</li>
|
112 |
+
|
113 |
+
<li>
|
114 |
+
<strong><?php esc_html_e( 'Super Simple to Set Up', 'essential-content-types-pro' ); ?></strong>
|
115 |
+
<p><?php esc_html_e( 'It is super easy to set up. Even the beginners can set it up easily and also, you do not need to have any coding knowledge. Just install, activate, customize it your way and enjoy the plugin.', 'essential-content-types-pro' ); ?></p>
|
116 |
+
</li>
|
117 |
+
|
118 |
+
<li>
|
119 |
+
<strong><?php esc_html_e( 'Responsive Design', 'essential-content-types-pro' ); ?></strong>
|
120 |
+
<p><?php esc_html_e( 'One of the key features of our plugins is that your website will magically respond and adapt to different screen sizes delivering an optimized design for iPhones, iPads, and other mobile devices. No longer will you need to zoom and scroll around when browsing on your mobile phone.', 'essential-content-types-pro' ); ?></p>
|
121 |
+
</li>
|
122 |
+
|
123 |
+
<li>
|
124 |
+
<strong><?php esc_html_e( 'Incredible Support', 'essential-content-types-pro' ); ?></strong>
|
125 |
+
<p><?php esc_html_e( 'We have a great line of support team and support documentation. You do not need to worry about how to use the plugins we provide, just refer to our Tech Support Forum. Further, if you need to do advanced customization to your website, you can always hire our theme customizer!', 'essential-content-types-pro' ); ?></p>
|
126 |
+
</li>
|
127 |
+
|
128 |
+
<li>
|
129 |
+
<strong><?php esc_html_e( 'Widgets', 'essential-content-types-pro' ); ?></strong>
|
130 |
+
<p><?php esc_html_e( 'Multitude of widget options provide you with the option to choose the widgets that you want to display. You can have full control over each widget’s visibility and appearance. You can assign different contents on your sidebars, footer and any sidebar widgets.', 'essential-content-types-pro' ); ?></p>
|
131 |
+
</li>
|
132 |
+
|
133 |
+
<li>
|
134 |
+
<strong><?php esc_html_e( 'Shortcodes', 'essential-content-types-pro' ); ?></strong>
|
135 |
+
<p><?php esc_html_e( 'With Shortcodes, you have the option to use the powerful shortcode options to style multiple contents in completely different ways.', 'essential-content-types-pro' ); ?></p>
|
136 |
+
</li>
|
137 |
+
|
138 |
+
<li>
|
139 |
+
<strong><?php esc_html_e( 'Number of Posts', 'essential-content-types-pro' ); ?></strong>
|
140 |
+
<p><?php esc_html_e( 'You have the option to choose the number of posts you want to display on your website. Pick the number of posts that suits the best on your website.', 'essential-content-types-pro' ); ?></p>
|
141 |
+
</li>
|
142 |
+
|
143 |
+
<li>
|
144 |
+
<strong><?php esc_html_e( 'Column Option', 'essential-content-types-pro' ); ?></strong>
|
145 |
+
<p><?php esc_html_e( 'Column Option allows you to choose from multiple column options. Several options are available for all column types in general to edit the default behavior.', 'essential-content-types-pro' ); ?></p>
|
146 |
+
</li>
|
147 |
+
</ul>
|
148 |
+
<a href="https://catchplugins.com/plugins/essential-content-types-pro/" target="_blank"><?php esc_html_e( 'Upgrade to Essential Content Types Premium »', 'essential-content-types' ); ?></a>
|
149 |
+
</div><!-- .content -->
|
150 |
+
</div><!-- content-wrapper -->
|
151 |
+
</div> <!-- Featured -->
|
152 |
+
|
153 |
+
<div id="premium-extensions" class="wpcatchtab save">
|
154 |
+
|
155 |
+
<div class="about-text">
|
156 |
+
<h2><?php esc_html_e( 'Get Essential Content Types Pro -', 'essential-content-types' ); ?> <a href="https://catchplugins.com/plugins/essential-content-types-pro/" target="_blank"><?php esc_html_e( 'Get It Here!', 'essential-content-types' ); ?></a></h2>
|
157 |
+
<p><?php esc_html_e( 'You are currently using the free version of Essential Content Types.', 'essential-content-types' ); ?><br />
|
158 |
+
<a href="https://catchplugins.com/plugins/" target="_blank"><?php esc_html_e( 'If you have purchased from catchplugins.com, then follow this link to the installation instructions (particularly step 1).', 'essential-content-types' ); ?></a></p>
|
159 |
</div>
|
160 |
+
|
161 |
+
<div class="content-wrapper">
|
162 |
+
<div class="header">
|
163 |
+
<h3><?php esc_html_e( 'Premium/Extensions', 'essential-content-types' ); ?></h3>
|
164 |
+
|
165 |
+
</div><!-- .header -->
|
166 |
+
<div class="content">
|
167 |
+
|
168 |
+
<table class="widefat fixed striped posts">
|
169 |
+
<thead>
|
170 |
+
<tr>
|
171 |
+
<th id="title" class="manage-column column-title column-primary"><?php esc_html_e( 'Features', 'essential-content-types' ); ?></th>
|
172 |
+
<th id="free" class="manage-column column-free"><?php esc_html_e( 'Free', 'essential-content-types' ); ?></th>
|
173 |
+
<th id="pro" class="manage-column column-pro"><?php esc_html_e( 'Pro', 'essential-content-types' ); ?></th>
|
174 |
+
</tr>
|
175 |
+
</thead>
|
176 |
+
|
177 |
+
<tbody id="the-list" class="ui-sortable">
|
178 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
179 |
+
<td>
|
180 |
+
<strong><?php esc_html_e( 'Responsive Design', 'essential-content-types' ); ?></strong>
|
181 |
+
</td>
|
182 |
+
<td class="column column-free"><div class="table-icons icon-green">✓</div></td>
|
183 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
184 |
+
</tr>
|
185 |
+
|
186 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
187 |
+
<td>
|
188 |
+
<strong><?php esc_html_e( 'Super Easy Setup', 'essential-content-types' ); ?></strong>
|
189 |
+
</td>
|
190 |
+
<td class="column column-free"><div class="table-icons icon-green">✓</div></td>
|
191 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
192 |
+
</tr>
|
193 |
+
|
194 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
195 |
+
<td>
|
196 |
+
<strong><?php esc_html_e( 'Lightweight', 'essential-content-types' ); ?></strong>
|
197 |
+
</td>
|
198 |
+
<td class="column column-free"><div class="table-icons icon-green">✓</div></td>
|
199 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
200 |
+
</tr>
|
201 |
+
|
202 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
203 |
+
<td>
|
204 |
+
<strong><?php esc_html_e( 'Number of Posts', 'essential-content-types' ); ?></strong>
|
205 |
+
</td>
|
206 |
+
<td class="column column-free"><div class="table-icons icon-green">✓</div></td>
|
207 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
208 |
+
</tr>
|
209 |
+
|
210 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
211 |
+
<td>
|
212 |
+
<strong><?php esc_html_e( 'Order', 'essential-content-types' ); ?></strong>
|
213 |
+
</td>
|
214 |
+
<td class="column column-free"><div class="table-icons icon-green">✓</div></td>
|
215 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
216 |
+
</tr>
|
217 |
+
|
218 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
219 |
+
<td>
|
220 |
+
<strong><?php esc_html_e( 'Shortcode', 'essential-content-types' ); ?></strong>
|
221 |
+
</td>
|
222 |
+
<td class="column column-free"><div class="table-icons icon-green">✓</div></td>
|
223 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
224 |
+
</tr>
|
225 |
+
|
226 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
227 |
+
<td>
|
228 |
+
<strong><?php esc_html_e( 'Custom Post Types', 'essential-content-types' ); ?></strong>
|
229 |
+
</td>
|
230 |
+
<td class="column column-free"><div class="table-icons icon-green">✓</div></td>
|
231 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
232 |
+
</tr>
|
233 |
+
|
234 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
235 |
+
<td>
|
236 |
+
<strong><?php esc_html_e( 'Column Option', 'essential-content-types' ); ?></strong>
|
237 |
+
</td>
|
238 |
+
<td class="column column-free"><div class="table-icons icon-green">✓</div></td>
|
239 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
240 |
+
</tr>
|
241 |
+
|
242 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
243 |
+
<td>
|
244 |
+
<strong><?php esc_html_e( 'Portfolio Widget', 'essential-content-types' ); ?></strong>
|
245 |
+
</td>
|
246 |
+
<td class="column column-free"><div class="table-icons icon-red">×</div></td>
|
247 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
248 |
+
</tr>
|
249 |
+
|
250 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
251 |
+
<td>
|
252 |
+
<strong><?php esc_html_e( 'Featured Image Widget', 'essential-content-types' ); ?></strong>
|
253 |
+
</td>
|
254 |
+
<td class="column column-free"><div class="table-icons icon-red">×</div></td>
|
255 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
256 |
+
</tr>
|
257 |
+
|
258 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
259 |
+
<td>
|
260 |
+
<strong><?php esc_html_e( 'Testimonials Widget', 'essential-content-types' ); ?></strong>
|
261 |
+
</td>
|
262 |
+
<td class="column column-free"><div class="table-icons icon-red">×</div></td>
|
263 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
264 |
+
</tr>
|
265 |
+
|
266 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
267 |
+
<td>
|
268 |
+
<strong><?php esc_html_e( 'Services Widget', 'essential-content-types' ); ?></strong>
|
269 |
+
</td>
|
270 |
+
<td class="column column-free"><div class="table-icons icon-red">×</div></td>
|
271 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
272 |
+
</tr>
|
273 |
+
|
274 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
275 |
+
<td>
|
276 |
+
<strong><?php esc_html_e( 'Add Shortcode Button', 'essential-content-types' ); ?></strong>
|
277 |
+
</td>
|
278 |
+
<td class="column column-free"><div class="table-icons icon-red">×</div></td>
|
279 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
280 |
+
</tr>
|
281 |
+
|
282 |
+
<tr class="iedit author-self level-0 type-post status-publish format-standard hentry">
|
283 |
+
<td>
|
284 |
+
<strong><?php esc_html_e( 'Ads-free Dashboard', 'essential-content-types' ); ?></strong>
|
285 |
+
</td>
|
286 |
+
<td class="column column-free"><div class="table-icons icon-red">×</div></td>
|
287 |
+
<td class="column column-pro"><div class="table-icons icon-green">✓</div></td>
|
288 |
+
</tr>
|
289 |
+
|
290 |
+
</tbody>
|
291 |
+
|
292 |
+
</table>
|
293 |
+
|
294 |
+
</div><!-- .content -->
|
295 |
+
</div><!-- content-wrapper -->
|
296 |
</div>
|
297 |
+
|
298 |
+
</form><!-- #essential-content-types-main -->
|
299 |
+
|
300 |
+
</div><!-- .catchp_widget_settings -->
|
301 |
+
|
302 |
+
|
303 |
+
<?php require_once plugin_dir_path( dirname( __FILE__ ) ) . '/partials/sidebar.php'; ?>
|
304 |
+
</div> <!-- .catchp-content-wrapper -->
|
305 |
+
|
306 |
+
<?php require_once plugin_dir_path( dirname( __FILE__ ) ) . '/partials/footer.php'; ?>
|
307 |
+
</div><!-- .wrap -->
|
admin/partials/footer.php
CHANGED
@@ -1,48 +1,14 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
<footer id="colophon" class="site-footer" role="content-info">
|
17 |
-
<div class="footer-container">
|
18 |
-
<nav class="footer-navigation" role="navigation" aria-label="Footer Menu">
|
19 |
-
<div class="menu-footer-container">
|
20 |
-
<ul class="menu-footer">
|
21 |
-
<li>
|
22 |
-
<a href="https://catchthemes.com/donate" target="_blank"><?php esc_html_e( 'Donate', 'essential-content-types' ) ; ?></a>
|
23 |
-
</li>
|
24 |
-
|
25 |
-
<li>
|
26 |
-
<a href="https://catchthemes.com/support-forum" target="_blank"><?php esc_html_e( 'Support Forum', 'essential-content-types' ) ; ?></a>
|
27 |
-
</li>
|
28 |
-
|
29 |
-
<li>
|
30 |
-
<a href="https://catchthemes.com/plugins/essential-content-types" target="_blank"><?php esc_html_e( 'Plugin Details', 'essential-content-types' ) ; ?></a>
|
31 |
-
</li>
|
32 |
-
|
33 |
-
<li>
|
34 |
-
<a href="https://facebook.com/catchthemes" target="_blank"><?php esc_html_e( 'Facebook', 'essential-content-types' ) ; ?></a>
|
35 |
-
</li>
|
36 |
-
|
37 |
-
<li>
|
38 |
-
<a href="https://twitter.com/catchthemes" target="_blank"><?php esc_html_e( 'Twitter', 'essential-content-types' ) ; ?></a>
|
39 |
-
</li>
|
40 |
-
|
41 |
-
<li>
|
42 |
-
<a href="https://wordpress.org/support/plugin/essential-content-types/reviews/?rate=5#new-post" target="_blank"><?php esc_html_e( '5 Star Rating', 'essential-content-types' ) ; ?></a>
|
43 |
-
</li>
|
44 |
-
</ul><!-- .menu-footer -->
|
45 |
-
</div><!-- .menu-footer-container -->
|
46 |
-
</nav><!-- .footer-navigation -->
|
47 |
-
</div><!-- .footer-container -->
|
48 |
-
</footer><!-- #colophon -->
|
1 |
+
<!-- Footer -->
|
2 |
+
<div class="catchp-footer">
|
3 |
+
<div class="catchp-footer-site-info">
|
4 |
+
<a href="<?php echo esc_url( 'https://catchplugins.com/' ); ?>" target="_blank"><?php esc_html_e( 'Catch Plugins', 'essential-content-types' ); ?></a>
|
5 |
+
</div>
|
6 |
+
|
7 |
+
<div class="catchp-footer-menu">
|
8 |
+
<ul>
|
9 |
+
<li><a href="<?php echo esc_url( 'https://catchthemes.com/themes/category/premium/' ); ?>" target="_blank"><?php esc_html_e( 'View Themes', 'essential-content-types' ); ?></a></li>
|
10 |
+
<li><a href="<?php echo esc_url( 'https://catchplugins.com/plugins/' ); ?>" target="_blank"><?php esc_html_e( 'View Plugins', 'essential-content-types' ); ?></a></li>
|
11 |
+
<li><a href="<?php echo esc_url( 'https://catchplugins.com/support/' ); ?>" target="_blank"><?php esc_html_e( 'Support', 'essential-content-types' ); ?></a></li>
|
12 |
+
</ul>
|
13 |
+
</div>
|
14 |
+
</div> <!-- .catchp-footer -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/partials/header.php
DELETED
@@ -1,22 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Provide a admin area common header view for the plugin
|
5 |
-
*
|
6 |
-
* This file is used to markup the admin-facing aspects of the plugin.
|
7 |
-
*
|
8 |
-
* @link https://catchthemes.com
|
9 |
-
* @since 1.0.0
|
10 |
-
*
|
11 |
-
* @package Essential_Content_Types
|
12 |
-
* @subpackage Essential_Content_Types/admin/partials
|
13 |
-
*/
|
14 |
-
?>
|
15 |
-
|
16 |
-
<header id="masthead" class="site-header" role="banner">
|
17 |
-
<div class="wrapper">
|
18 |
-
<div id="site-branding">
|
19 |
-
<h1 class="site-title"><a href="https://catchthemes.com/plugins/essential-content-types" target="_blank">ESSENTIAL <span class="site-title-additional">CONTENT TYPES</span></a></h1>
|
20 |
-
</div>
|
21 |
-
</div><!-- .wrapper-->
|
22 |
-
</header> <!-- #masthead -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/partials/other-products.php
DELETED
@@ -1,56 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Provide a admin area common other products view for the plugin
|
5 |
-
*
|
6 |
-
* This file is used to markup the admin-facing aspects of the plugin.
|
7 |
-
*
|
8 |
-
* @link https://catchthemes.com
|
9 |
-
* @since 1.0.0
|
10 |
-
*
|
11 |
-
* @package Essential_Content_Types
|
12 |
-
* @subpackage Essential_Content_Types/admin/partials
|
13 |
-
*/
|
14 |
-
?>
|
15 |
-
|
16 |
-
<div class="other-catchthemes-products">
|
17 |
-
<div class="container">
|
18 |
-
<div class="module-container">
|
19 |
-
<div id="module-premium-themes" class="catch-modules">
|
20 |
-
<div class="module-content">
|
21 |
-
<a class="modules-thumbnail" href="https://catchthemes.com/themes/category/premium/" target="_blank" title="<?php esc_attr_e( 'View Premium Themes', 'essential-content-types' ); ?>">
|
22 |
-
<img src="<?php echo esc_url( plugins_url( 'images/premium-themes.jpg', dirname(__FILE__) ) ) ; ?>" alt="<?php esc_attr_e( 'Premium Themes', 'essential-content-types' ); ?>" title ="<?php esc_attr_e( 'Premium Themes', 'essential-content-types' ); ?>">
|
23 |
-
</a>
|
24 |
-
|
25 |
-
<a class="modules-link" href="https://catchthemes.com/themes/category/premium/" target="_blank" title="<?php esc_attr_e( 'View Premium Themes', 'essential-content-types' ); ?>"><?php esc_html_e( 'Premium Themes', 'essential-content-types' ); ?></a>
|
26 |
-
|
27 |
-
<a class="more-details" href="https://catchthemes.com/themes/category/premium/" target="_blank"><?php esc_html_e( 'View Themes', 'essential-content-types' ); ?></a>
|
28 |
-
</div>
|
29 |
-
</div><!-- #module-premium-themes -->
|
30 |
-
|
31 |
-
<div id="module-premium-plugins" class="catch-modules">
|
32 |
-
<div class="module-content">
|
33 |
-
<a class="modules-thumbnail" href="https://catchthemes.com/plugins/" target="_blank" title="<?php esc_attr_e( 'View Plugins', 'essential-content-types' ); ?>">
|
34 |
-
<img src="<?php echo esc_url( plugins_url( 'images/free-plugins.jpg', dirname(__FILE__) ) ) ; ?>" alt="<?php esc_attr_e( 'Free Plugins', 'essential-content-types' ); ?>" title ="<?php esc_attr_e( 'Free Plugins', 'essential-content-types' ); ?>">
|
35 |
-
</a>
|
36 |
-
|
37 |
-
<a class="modules-link" href="https://catchthemes.com/plugins/" target="_blank" title="<?php esc_attr_e( 'View Free Plugins', 'essential-content-types' ); ?>"><?php esc_html_e( 'Free Plugins', 'essential-content-types' ); ?></a>
|
38 |
-
|
39 |
-
<a class="more-details" href="https://catchthemes.com/plugins/" target="_blank"><?php esc_html_e( 'View Plugins', 'essential-content-types' ); ?></a>
|
40 |
-
</div>
|
41 |
-
</div><!-- #module-free-plugins -->
|
42 |
-
|
43 |
-
<div id="module-free-themes" class="catch-modules">
|
44 |
-
<div class="module-content">
|
45 |
-
<a class="modules-thumbnail" href="https://catchthemes.com/themes/category/free/" target="_blank" title="<?php esc_attr_e( 'View Free Themes', 'essential-content-types' ); ?>">
|
46 |
-
<img src="<?php echo esc_url( plugins_url( 'images/free-themes.jpg', dirname(__FILE__) ) ) ; ?>" alt="<?php esc_attr_e( 'Free Themes', 'essential-content-types' ); ?>" title ="<?php esc_attr_e( 'Free Themes', 'essential-content-types' ); ?>">
|
47 |
-
</a>
|
48 |
-
|
49 |
-
<a class="modules-link" href="https://catchthemes.com/themes/category/free/" target="_blank" title="<?php esc_attr_e( 'View Free Themes', 'essential-content-types' ); ?>"><?php esc_html_e( 'Free Themes', 'essential-content-types' ); ?></a>
|
50 |
-
|
51 |
-
<a class="more-details" href="https://catchthemes.com/themes/category/free/" target="_blank"><?php esc_html_e( 'View Themes', 'essential-content-types' ); ?></a>
|
52 |
-
</div>
|
53 |
-
</div><!-- #module-free-themes -->
|
54 |
-
</div><!-- #module-featured-content -->
|
55 |
-
</div><!-- .container -->
|
56 |
-
</div><!-- .other-catchthemes-products -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/partials/sidebar.php
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="catchp-widget-sidebar" id="sidebar-container">
|
2 |
+
<div id="sidebar">
|
3 |
+
<div class="catch-sidebar-title highlighted"><?php esc_html_e( 'Recommendations', 'essential-content-types' ); ?></div>
|
4 |
+
|
5 |
+
<div class="catchp-sidebar-full-width col-2">
|
6 |
+
<div class="sidebar-spot-inner">
|
7 |
+
<h2><a href="https://catchplugins.com/plugins/essential-content-types-pro/" target="_blank"><?php esc_html_e( 'Get Essential Content Types Pro', 'essential-content-types' ); ?></a></h2>
|
8 |
+
<ul class="catchp-lists">
|
9 |
+
<li><strong><?php esc_html_e( 'Featured Content Widget', 'essential-content-types' ); ?></strong></li>
|
10 |
+
<li><strong><?php esc_html_e( 'Portfolio Widget', 'essential-content-types' ); ?></strong></li>
|
11 |
+
<li><strong><?php esc_html_e( 'Testomonials Widget', 'essential-content-types' ); ?></strong></li>
|
12 |
+
<li><strong><?php esc_html_e( 'Services Widget', 'essential-content-types' ); ?></strong></li>
|
13 |
+
<li><strong><?php esc_html_e( 'Ability to add shortcodes via button', 'essential-content-types' ); ?></strong></li>
|
14 |
+
</ul>
|
15 |
+
<a id="catch-premium-button" class="button button-primary" href="https://catchplugins.com/plugins/essential-content-types-pro/" target="_blank"><?php esc_html_e( 'Get Now', 'essential-content-types' ); ?></a>
|
16 |
+
</div>
|
17 |
+
</div> <!-- .catchp-sidebar-full-width -->
|
18 |
+
|
19 |
+
<div class="catchp-sidebar-spot-wrapper">
|
20 |
+
<div class="catchp-sidebar-spot">
|
21 |
+
<div class="sidebar-spot-inner">
|
22 |
+
<h3><?php esc_html_e( 'Premium Themes', 'essential-content-types' ); ?></h3>
|
23 |
+
<p><?php esc_html_e( 'Check out our simple, clean and responsive Premium WordPress Themes that come with an array of crucial features with a superior functionality.', 'essential-content-types' ); ?> <a target="_blank" href="https://catchthemes.com/themes/category/premium/"><?php esc_html_e( 'Check our premium themes.', 'essential-content-types' ); ?></a></p>
|
24 |
+
<a class="catch-banner-link" target="_blank" href="https://catchthemes.com/themes/category/premium/"><img class="catch-banner-image" src="<?php echo esc_url( plugins_url( 'images/premium-theme-246x175.jpg', dirname(__FILE__) ) ) ; ?>" alt="catch" width="246" height="175"></a>
|
25 |
+
</div>
|
26 |
+
</div>
|
27 |
+
|
28 |
+
<div class="catchp-sidebar-spot">
|
29 |
+
<div class="sidebar-spot-inner">
|
30 |
+
<h3><?php esc_html_e( 'Free Themes', 'essential-content-types' ); ?></h3>
|
31 |
+
<p><?php esc_html_e( 'Check out our collection of Free WordPress Themes that are clean, simple and feature-rich.', 'essential-content-types' ); ?> <a target="_blank" href="https://catchthemes.com/themes/category/free/"><?php esc_html_e( 'Check our free themes.', 'essential-content-types' ); ?></a></p>
|
32 |
+
|
33 |
+
<a class="catch-banner-link" target="_blank" href="https://catchthemes.com/themes/category/free/"><img class="catch-banner-image" src="<?php echo esc_url( plugins_url( 'images/free-theme-246x175.jpg', dirname(__FILE__) ) ) ; ?>" alt="catch" width="246" height="175"></a>
|
34 |
+
</div>
|
35 |
+
</div>
|
36 |
+
|
37 |
+
<div class="catchp-sidebar-spot">
|
38 |
+
<div class="sidebar-spot-inner">
|
39 |
+
<h3><?php esc_html_e( 'Premium Plugins', 'essential-content-types' ); ?></h3>
|
40 |
+
<p><?php esc_html_e( 'Check out our secured Premium WordPress Plugins to enhance and add extra functionalities to your website. An exceptional way to get the most out of WordPress!', 'essential-content-types' ); ?> <a target="_blank" href="https://catchplugins.com/plugins/tag/pro/"><?php esc_html_e( 'Check our premium plugins.', 'essential-content-types' ); ?></a></p>
|
41 |
+
<a class="catch-banner-link" target="_blank" href="https://catchplugins.com/plugins/tag/pro/">
|
42 |
+
<img class="catch-banner-image" src="<?php echo esc_url( plugins_url( 'images/premium-plugin-246x116.png', dirname(__FILE__) ) ) ; ?>" alt="catch" width="246" height="116"></a>
|
43 |
+
</div>
|
44 |
+
</div>
|
45 |
+
|
46 |
+
<div class="catchp-sidebar-spot">
|
47 |
+
<div class="sidebar-spot-inner">
|
48 |
+
<h3><?php esc_html_e( 'Free Plugins', 'essential-content-types' ); ?></h3>
|
49 |
+
<p><?php esc_html_e( 'Check out our Free WordPress Plugins and get the taste of our service without affecting your wallet.', 'essential-content-types' ); ?> <a target="_blank" href="https://catchplugins.com/plugins/tag/free/
|
50 |
+
"><?php esc_html_e( 'check our free plugins.', 'essential-content-types' ); ?></a></p>
|
51 |
+
<a class="catch-banner-link" target="_blank" href="https://catchplugins.com/plugins/tag/free/
|
52 |
+
">
|
53 |
+
<img class="catch-banner-image" src="<?php echo esc_url( plugins_url( 'images/free-plugin-246x116.png', dirname(__FILE__) ) ) ; ?>" alt="catch" width="246" height="116"></a>
|
54 |
+
</div>
|
55 |
+
</div>
|
56 |
+
</div><!-- .catchp-sidebar-spot-wrapper -->
|
57 |
+
|
58 |
+
</div>
|
59 |
+
</div>
|
essential-content-types.php
CHANGED
@@ -8,17 +8,17 @@
|
|
8 |
* registers the activation and deactivation functions, and defines a function
|
9 |
* that starts the plugin.
|
10 |
*
|
11 |
-
* @link https://
|
12 |
* @since 1.0.0
|
13 |
* @package Essential_Content_Types
|
14 |
*
|
15 |
* @wordpress-plugin
|
16 |
* Plugin Name: Essential Content Types
|
17 |
-
* Plugin URI: https://
|
18 |
* Description: Essential Content Types allows you to feature the impressive content through different content/post types on your website just the way you want it. These content/post types are missed by the themes in WordPress Theme Directory as the feature falls more towards the plugins’ territory.
|
19 |
-
* Version: 1.
|
20 |
-
* Author: Catch
|
21 |
-
* Author URI: https://
|
22 |
* License: GPL-3.0+
|
23 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
24 |
* Text Domain: essential-content-types
|
8 |
* registers the activation and deactivation functions, and defines a function
|
9 |
* that starts the plugin.
|
10 |
*
|
11 |
+
* @link https://catchplugins.com
|
12 |
* @since 1.0.0
|
13 |
* @package Essential_Content_Types
|
14 |
*
|
15 |
* @wordpress-plugin
|
16 |
* Plugin Name: Essential Content Types
|
17 |
+
* Plugin URI: https://catchplugins.com/plugins/essential-content-types/
|
18 |
* Description: Essential Content Types allows you to feature the impressive content through different content/post types on your website just the way you want it. These content/post types are missed by the themes in WordPress Theme Directory as the feature falls more towards the plugins’ territory.
|
19 |
+
* Version: 1.2
|
20 |
+
* Author: Catch Plugins
|
21 |
+
* Author URI: https://catchplugins.com
|
22 |
* License: GPL-3.0+
|
23 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
|
24 |
* Text Domain: essential-content-types
|
includes/class-essential-content-types-activator.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* Fired during plugin activation
|
5 |
*
|
6 |
-
* @link https://
|
7 |
* @since 1.0.0
|
8 |
*
|
9 |
* @package Essential_Content_Types
|
@@ -18,7 +18,7 @@
|
|
18 |
* @since 1.0.0
|
19 |
* @package Essential_Content_Types
|
20 |
* @subpackage Essential_Content_Types/includes
|
21 |
-
* @author Catch
|
22 |
*/
|
23 |
class Essential_Content_Types_Activator {
|
24 |
|
@@ -47,4 +47,4 @@ class Essential_Content_Types_Activator {
|
|
47 |
}
|
48 |
}
|
49 |
|
50 |
-
}
|
3 |
/**
|
4 |
* Fired during plugin activation
|
5 |
*
|
6 |
+
* @link https://catchplugins.com
|
7 |
* @since 1.0.0
|
8 |
*
|
9 |
* @package Essential_Content_Types
|
18 |
* @since 1.0.0
|
19 |
* @package Essential_Content_Types
|
20 |
* @subpackage Essential_Content_Types/includes
|
21 |
+
* @author Catch Plugins <info@catchplugins.com>
|
22 |
*/
|
23 |
class Essential_Content_Types_Activator {
|
24 |
|
47 |
}
|
48 |
}
|
49 |
|
50 |
+
}
|
includes/class-essential-content-types-deactivator.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* Fired during plugin deactivation
|
5 |
*
|
6 |
-
* @link https://
|
7 |
* @since 1.0.0
|
8 |
*
|
9 |
* @package Essential_Content_Types
|
@@ -18,7 +18,7 @@
|
|
18 |
* @since 1.0.0
|
19 |
* @package Essential_Content_Types
|
20 |
* @subpackage Essential_Content_Types/includes
|
21 |
-
* @author Catch
|
22 |
*/
|
23 |
class Essential_Content_Types_Deactivator {
|
24 |
|
3 |
/**
|
4 |
* Fired during plugin deactivation
|
5 |
*
|
6 |
+
* @link https://catchplugins.com
|
7 |
* @since 1.0.0
|
8 |
*
|
9 |
* @package Essential_Content_Types
|
18 |
* @since 1.0.0
|
19 |
* @package Essential_Content_Types
|
20 |
* @subpackage Essential_Content_Types/includes
|
21 |
+
* @author Catch Plugins <info@catchplugins.com>
|
22 |
*/
|
23 |
class Essential_Content_Types_Deactivator {
|
24 |
|
includes/class-essential-content-types-i18n.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Loads and defines the internationalization files for this plugin
|
7 |
* so that it is ready for translation.
|
8 |
*
|
9 |
-
* @link https://
|
10 |
* @since 1.0.0
|
11 |
*
|
12 |
* @package Essential_Content_Types
|
@@ -22,7 +22,7 @@
|
|
22 |
* @since 1.0.0
|
23 |
* @package Essential_Content_Types
|
24 |
* @subpackage Essential_Content_Types/includes
|
25 |
-
* @author Catch
|
26 |
*/
|
27 |
class Essential_Content_Types_i18n {
|
28 |
|
6 |
* Loads and defines the internationalization files for this plugin
|
7 |
* so that it is ready for translation.
|
8 |
*
|
9 |
+
* @link https://catchplugins.com
|
10 |
* @since 1.0.0
|
11 |
*
|
12 |
* @package Essential_Content_Types
|
22 |
* @since 1.0.0
|
23 |
* @package Essential_Content_Types
|
24 |
* @subpackage Essential_Content_Types/includes
|
25 |
+
* @author Catch Plugins <info@catchplugins.com>
|
26 |
*/
|
27 |
class Essential_Content_Types_i18n {
|
28 |
|
includes/class-essential-content-types-loader.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* Register all actions and filters for the plugin
|
5 |
*
|
6 |
-
* @link https://
|
7 |
* @since 1.0.0
|
8 |
*
|
9 |
* @package Essential_Content_Types
|
@@ -19,7 +19,7 @@
|
|
19 |
*
|
20 |
* @package Essential_Content_Types
|
21 |
* @subpackage Essential_Content_Types/includes
|
22 |
-
* @author Catch
|
23 |
*/
|
24 |
class Essential_Content_Types_Loader {
|
25 |
|
3 |
/**
|
4 |
* Register all actions and filters for the plugin
|
5 |
*
|
6 |
+
* @link https://catchplugins.com
|
7 |
* @since 1.0.0
|
8 |
*
|
9 |
* @package Essential_Content_Types
|
19 |
*
|
20 |
* @package Essential_Content_Types
|
21 |
* @subpackage Essential_Content_Types/includes
|
22 |
+
* @author Catch Plugins <info@catchplugins.com>
|
23 |
*/
|
24 |
class Essential_Content_Types_Loader {
|
25 |
|
includes/class-essential-content-types.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* A class definition that includes attributes and functions used across both the
|
7 |
* public-facing side of the site and the admin area.
|
8 |
*
|
9 |
-
* @link https://
|
10 |
* @since 1.0.0
|
11 |
*
|
12 |
* @package Essential_Content_Types
|
@@ -25,7 +25,7 @@
|
|
25 |
* @since 1.0.0
|
26 |
* @package Essential_Content_Types
|
27 |
* @subpackage Essential_Content_Types/includes
|
28 |
-
* @author Catch
|
29 |
*/
|
30 |
class Essential_Content_Types {
|
31 |
|
6 |
* A class definition that includes attributes and functions used across both the
|
7 |
* public-facing side of the site and the admin area.
|
8 |
*
|
9 |
+
* @link https://catchplugins.com
|
10 |
* @since 1.0.0
|
11 |
*
|
12 |
* @package Essential_Content_Types
|
25 |
* @since 1.0.0
|
26 |
* @package Essential_Content_Types
|
27 |
* @subpackage Essential_Content_Types/includes
|
28 |
+
* @author Catch Plugins <info@catchplugins.com>
|
29 |
*/
|
30 |
class Essential_Content_Types {
|
31 |
|
languages/essential-content-types.pot
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the GNU General Public License v2 or later.
|
3 |
#, fuzzy
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Essential Content Types\n"
|
7 |
"Report-Msgid-Bugs-To: https://wordpress.org/tags/_s\n"
|
8 |
-
"POT-Creation-Date: 2018-
|
9 |
"PO-Revision-Date: 2016-12-12 09:23-0500\n"
|
10 |
-
"Last-Translator: Sakin Shrestha <info@
|
11 |
-
"Language-Team: Catch
|
12 |
"Language: en_US\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -22,20 +22,22 @@ msgstr ""
|
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
-
#: ../admin/class-essential-content-types-admin.php:
|
|
|
26 |
msgid "Settings"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../admin/class-essential-content-types-admin.php:
|
30 |
-
#: ../admin/class-essential-content-types-admin.php:
|
|
|
31 |
msgid "Essential Content Types"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: ../admin/class-essential-content-types-admin.php:
|
35 |
msgid "You do not have sufficient permissions to access this page."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: ../admin/class-essential-content-types-admin.php:
|
39 |
msgid "Connection Error. Please try again."
|
40 |
msgstr ""
|
41 |
|
@@ -51,6 +53,7 @@ msgstr ""
|
|
51 |
#: ../admin/class-featured-content.php:105
|
52 |
#: ../admin/class-featured-content.php:276
|
53 |
#: ../admin/partials/dashboard-display.php:84
|
|
|
54 |
msgid "Featured Content"
|
55 |
msgstr ""
|
56 |
|
@@ -584,6 +587,8 @@ msgid "Price"
|
|
584 |
msgstr ""
|
585 |
|
586 |
#: ../admin/class-food-menu.php:504
|
|
|
|
|
587 |
msgid "Order"
|
588 |
msgstr ""
|
589 |
|
@@ -698,6 +703,7 @@ msgid "Project"
|
|
698 |
msgstr ""
|
699 |
|
700 |
#: ../admin/class-portfolio.php:232 ../admin/class-portfolio.php:410
|
|
|
701 |
msgid "Portfolio"
|
702 |
msgstr ""
|
703 |
|
@@ -911,7 +917,8 @@ msgid "Service Items"
|
|
911 |
msgstr ""
|
912 |
|
913 |
#: ../admin/class-service.php:103 ../admin/class-service.php:276
|
914 |
-
#: ../admin/class-service.php:282 ../admin/partials/dashboard-display.php:
|
|
|
915 |
msgid "Services"
|
916 |
msgstr ""
|
917 |
|
@@ -1124,7 +1131,8 @@ msgstr ""
|
|
1124 |
#: ../admin/class-testimonial.php:118 ../admin/class-testimonial.php:263
|
1125 |
#: ../admin/class-testimonial.php:265 ../admin/class-testimonial.php:434
|
1126 |
#: ../admin/class-testimonial.php:441
|
1127 |
-
#: ../admin/partials/dashboard-display.php:
|
|
|
1128 |
msgid "Testimonials"
|
1129 |
msgstr ""
|
1130 |
|
@@ -1279,44 +1287,36 @@ msgstr ""
|
|
1279 |
msgid "Testmonial Options"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: ../admin/partials/dashboard-display.php:
|
1283 |
-
msgid ""
|
1284 |
-
"Essential Content Types allows you to feature the impressive content "
|
1285 |
-
"through different content/post types on your website just the way you want "
|
1286 |
-
"it. These content/post types are missed by the themes in WordPress Theme "
|
1287 |
-
"Directory as the feature falls more towards the plugins’ territory."
|
1288 |
-
msgstr ""
|
1289 |
-
|
1290 |
-
#: ../admin/partials/dashboard-display.php:34
|
1291 |
msgid "Portfolios/Projects"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: ../admin/partials/dashboard-display.php:
|
1295 |
msgid "Portfolio – Create and display your portfolio on your website."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: ../admin/partials/dashboard-display.php:
|
1299 |
msgid ""
|
1300 |
"Once enabled, Portfolio Post Type options will appear on Dashboard Menu"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: ../admin/partials/dashboard-display.php:
|
1304 |
#, php-format
|
1305 |
msgid "%1$sClick here%2$s to view Portfolio Archive Options."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: ../admin/partials/dashboard-display.php:
|
1309 |
msgid "Testimonials – Add customer testimonials to your website."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: ../admin/partials/dashboard-display.php:
|
1313 |
msgid ""
|
1314 |
"Once enabled, Testimonials Post Type options will appear on Dashboard Menu"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: ../admin/partials/dashboard-display.php:
|
1318 |
#, php-format
|
1319 |
-
msgid "%1$sClick here%2$s to view Testimonial
|
1320 |
msgstr ""
|
1321 |
|
1322 |
#: ../admin/partials/dashboard-display.php:95
|
@@ -1336,96 +1336,402 @@ msgstr ""
|
|
1336 |
msgid "%1$sClick here%2$s to view Featured Content Archive Options."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: ../admin/partials/dashboard-display.php:
|
1340 |
msgid "Service – Create and display your service on your website."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: ../admin/partials/dashboard-display.php:
|
1344 |
msgid "Once enabled, Service Post Type options will appear on Dashboard Menu"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: ../admin/partials/dashboard-display.php:
|
1348 |
#, php-format
|
1349 |
msgid "%1$sClick here%2$s to view Service Archive Options."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: ../admin/partials/dashboard-display.php:
|
|
|
1353 |
msgid "Food Menu"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: ../admin/partials/dashboard-display.php:
|
1357 |
msgid "Food Menu – Create and display your Food Menu items on your website."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: ../admin/partials/dashboard-display.php:
|
1361 |
msgid ""
|
1362 |
"Once enabled, Food Menu Items Post Type options will appear on Dashboard "
|
1363 |
"Menu"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: ../admin/partials/
|
1367 |
-
msgid "
|
|
|
|
|
|
|
|
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: ../admin/partials/
|
1371 |
-
msgid "
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: ../admin/partials/
|
1375 |
-
|
|
|
|
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: ../admin/partials/
|
1379 |
-
|
|
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: ../admin/partials/
|
1383 |
-
msgid "
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: ../admin/partials/
|
1387 |
-
msgid "
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: ../admin/partials/
|
1391 |
-
#: ../admin/partials/
|
1392 |
-
msgid "
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: ../admin/partials/
|
1396 |
-
#: ../admin/partials/
|
1397 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: ../admin/partials/
|
1401 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1402 |
msgid "View Themes"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: ../admin/partials/
|
1406 |
-
#: ../admin/partials/other-products.php:39
|
1407 |
msgid "View Plugins"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: ../admin/partials/
|
1411 |
-
|
1412 |
-
msgid "Free Plugins"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: ../admin/partials/
|
1416 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: ../admin/partials/
|
1420 |
-
|
1421 |
-
msgid "View Free Themes"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: ../admin/partials/
|
1425 |
-
#: ../admin/partials/other-products.php:49
|
1426 |
msgid "Free Themes"
|
1427 |
msgstr ""
|
1428 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1429 |
#: ../essential-content-types.php:40
|
1430 |
#, php-format
|
1431 |
msgid ""
|
1 |
+
# Copyright (C) 2018 Catch Plugins
|
2 |
# This file is distributed under the GNU General Public License v2 or later.
|
3 |
#, fuzzy
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Essential Content Types\n"
|
7 |
"Report-Msgid-Bugs-To: https://wordpress.org/tags/_s\n"
|
8 |
+
"POT-Creation-Date: 2018-05-07 20:31+0545\n"
|
9 |
"PO-Revision-Date: 2016-12-12 09:23-0500\n"
|
10 |
+
"Last-Translator: Sakin Shrestha <info@catchplugins.com>\n"
|
11 |
+
"Language-Team: Catch Plugins <info@catchplugins.com>\n"
|
12 |
"Language: en_US\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
+
#: ../admin/class-essential-content-types-admin.php:180
|
26 |
+
#: ../admin/partials/dashboard-display.php:19
|
27 |
msgid "Settings"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ../admin/class-essential-content-types-admin.php:193
|
31 |
+
#: ../admin/class-essential-content-types-admin.php:194
|
32 |
+
#: ../admin/partials/essential-content-types-admin-display.php:17
|
33 |
msgid "Essential Content Types"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: ../admin/class-essential-content-types-admin.php:208
|
37 |
msgid "You do not have sufficient permissions to access this page."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../admin/class-essential-content-types-admin.php:227
|
41 |
msgid "Connection Error. Please try again."
|
42 |
msgstr ""
|
43 |
|
53 |
#: ../admin/class-featured-content.php:105
|
54 |
#: ../admin/class-featured-content.php:276
|
55 |
#: ../admin/partials/dashboard-display.php:84
|
56 |
+
#: ../admin/partials/essential-content-types-admin-display.php:79
|
57 |
msgid "Featured Content"
|
58 |
msgstr ""
|
59 |
|
587 |
msgstr ""
|
588 |
|
589 |
#: ../admin/class-food-menu.php:504
|
590 |
+
#: ../admin/partials/essential-content-types-admin-display.php:104
|
591 |
+
#: ../admin/partials/essential-content-types-admin-display.php:212
|
592 |
msgid "Order"
|
593 |
msgstr ""
|
594 |
|
703 |
msgstr ""
|
704 |
|
705 |
#: ../admin/class-portfolio.php:232 ../admin/class-portfolio.php:410
|
706 |
+
#: ../admin/partials/essential-content-types-admin-display.php:69
|
707 |
msgid "Portfolio"
|
708 |
msgstr ""
|
709 |
|
917 |
msgstr ""
|
918 |
|
919 |
#: ../admin/class-service.php:103 ../admin/class-service.php:276
|
920 |
+
#: ../admin/class-service.php:282 ../admin/partials/dashboard-display.php:112
|
921 |
+
#: ../admin/partials/essential-content-types-admin-display.php:84
|
922 |
msgid "Services"
|
923 |
msgstr ""
|
924 |
|
1131 |
#: ../admin/class-testimonial.php:118 ../admin/class-testimonial.php:263
|
1132 |
#: ../admin/class-testimonial.php:265 ../admin/class-testimonial.php:434
|
1133 |
#: ../admin/class-testimonial.php:441
|
1134 |
+
#: ../admin/partials/dashboard-display.php:57
|
1135 |
+
#: ../admin/partials/essential-content-types-admin-display.php:74
|
1136 |
msgid "Testimonials"
|
1137 |
msgstr ""
|
1138 |
|
1287 |
msgid "Testmonial Options"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: ../admin/partials/dashboard-display.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1291 |
msgid "Portfolios/Projects"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: ../admin/partials/dashboard-display.php:40
|
1295 |
msgid "Portfolio – Create and display your portfolio on your website."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: ../admin/partials/dashboard-display.php:42
|
1299 |
msgid ""
|
1300 |
"Once enabled, Portfolio Post Type options will appear on Dashboard Menu"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: ../admin/partials/dashboard-display.php:44
|
1304 |
#, php-format
|
1305 |
msgid "%1$sClick here%2$s to view Portfolio Archive Options."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: ../admin/partials/dashboard-display.php:67
|
1309 |
msgid "Testimonials – Add customer testimonials to your website."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: ../admin/partials/dashboard-display.php:69
|
1313 |
msgid ""
|
1314 |
"Once enabled, Testimonials Post Type options will appear on Dashboard Menu"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: ../admin/partials/dashboard-display.php:71
|
1318 |
#, php-format
|
1319 |
+
msgid "%1$sClick here%2$s to view Testimonial Archive Options."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
#: ../admin/partials/dashboard-display.php:95
|
1336 |
msgid "%1$sClick here%2$s to view Featured Content Archive Options."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: ../admin/partials/dashboard-display.php:123
|
1340 |
msgid "Service – Create and display your service on your website."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: ../admin/partials/dashboard-display.php:125
|
1344 |
msgid "Once enabled, Service Post Type options will appear on Dashboard Menu"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: ../admin/partials/dashboard-display.php:127
|
1348 |
#, php-format
|
1349 |
msgid "%1$sClick here%2$s to view Service Archive Options."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: ../admin/partials/dashboard-display.php:140
|
1353 |
+
#: ../admin/partials/essential-content-types-admin-display.php:89
|
1354 |
msgid "Food Menu"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: ../admin/partials/dashboard-display.php:151
|
1358 |
msgid "Food Menu – Create and display your Food Menu items on your website."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: ../admin/partials/dashboard-display.php:153
|
1362 |
msgid ""
|
1363 |
"Once enabled, Food Menu Items Post Type options will appear on Dashboard "
|
1364 |
"Menu"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: ../admin/partials/essential-content-types-admin-display.php:19
|
1368 |
+
msgid ""
|
1369 |
+
"Essential Content Types allows you to feature the impressive content "
|
1370 |
+
"through different content/post types on your website just the way you want "
|
1371 |
+
"it. These content/post types are missed by the themes in WordPress Theme "
|
1372 |
+
"Directory as the feature falls more towards the plugins’ territory."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: ../admin/partials/essential-content-types-admin-display.php:26
|
1376 |
+
msgid "Dashboard"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: ../admin/partials/essential-content-types-admin-display.php:27
|
1380 |
+
#: ../admin/partials/essential-content-types-admin-display.php:63
|
1381 |
+
#: ../admin/partials/essential-content-types-admin-display.php:171
|
1382 |
+
msgid "Features"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: ../admin/partials/essential-content-types-admin-display.php:28
|
1386 |
+
#: ../admin/partials/essential-content-types-admin-display.php:163
|
1387 |
+
msgid "Premium/Extensions"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: ../admin/partials/essential-content-types-admin-display.php:38
|
1391 |
+
msgid "Go Premium!"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: ../admin/partials/essential-content-types-admin-display.php:43
|
1395 |
+
msgid "Dismiss this item."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: ../admin/partials/essential-content-types-admin-display.php:47
|
1399 |
+
#: ../admin/partials/sidebar.php:9
|
1400 |
+
msgid "Featured Content Widget"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: ../admin/partials/essential-content-types-admin-display.php:48
|
1404 |
+
#: ../admin/partials/essential-content-types-admin-display.php:244
|
1405 |
+
#: ../admin/partials/sidebar.php:10
|
1406 |
+
msgid "Portfolio Widget"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: ../admin/partials/essential-content-types-admin-display.php:49
|
1410 |
+
#: ../admin/partials/sidebar.php:11
|
1411 |
+
msgid "Testomonials Widget"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: ../admin/partials/essential-content-types-admin-display.php:50
|
1415 |
+
#: ../admin/partials/sidebar.php:12
|
1416 |
+
msgid "Services Widget"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: ../admin/partials/essential-content-types-admin-display.php:51
|
1420 |
+
#: ../admin/partials/sidebar.php:13
|
1421 |
+
msgid "Ability to add shortcodes via button"
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: ../admin/partials/essential-content-types-admin-display.php:54
|
1425 |
+
msgid "Find out why you should upgrade to Essential Content Types Premium »"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: ../admin/partials/essential-content-types-admin-display.php:70
|
1429 |
+
msgid ""
|
1430 |
+
"Portfolio enables you to showcase your professional accomplishments to the "
|
1431 |
+
"world at large. Display your most impressive Portfolios in the way you "
|
1432 |
+
"like. You also have the option to choose your Portfolio layout up to 6 "
|
1433 |
+
"columns. A marvelous way to easily display your experience and expertise."
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: ../admin/partials/essential-content-types-admin-display.php:75
|
1437 |
+
msgid ""
|
1438 |
+
"People are always after authenticity. They are always looking for ways to "
|
1439 |
+
"know what your goods or services are really like. Customer testimonials "
|
1440 |
+
"really help in building trust. You can customize the testimonials as you "
|
1441 |
+
"want and also select your testimonial layout type up to 6 columns."
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: ../admin/partials/essential-content-types-admin-display.php:80
|
1445 |
+
msgid ""
|
1446 |
+
"Featured Content allows you to showcase your recent and popular posts on "
|
1447 |
+
"your website. Your Featured Content can be displayed up to 1 to 6 columns. "
|
1448 |
+
"Enable the Featured Content option and display your most impressive posts."
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: ../admin/partials/essential-content-types-admin-display.php:85
|
1452 |
+
msgid ""
|
1453 |
+
"Every website owner wants people to know about eh services they provide. "
|
1454 |
+
"You can place the services you provide right on the spotlight. Choose to "
|
1455 |
+
"display the services in 1 to 6 columns. Display your services and let the "
|
1456 |
+
"world know what you can provide them with."
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#: ../admin/partials/essential-content-types-admin-display.php:90
|
1460 |
+
msgid ""
|
1461 |
+
"If you run a restaurant or any food business, you must showcase your food "
|
1462 |
+
"menu items gracefully in order to attract more customers to your business. "
|
1463 |
+
"Adding a food menu on your website makes your website more engaging and "
|
1464 |
+
"lets your visitors know everything you have to offer."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: ../admin/partials/essential-content-types-admin-display.php:94
|
1468 |
+
msgid "Supports all themes on WordPress"
|
1469 |
+
msgstr ""
|
1470 |
+
|
1471 |
+
#: ../admin/partials/essential-content-types-admin-display.php:95
|
1472 |
+
msgid ""
|
1473 |
+
"You don’t have to worry if you have a slightly different or complicated "
|
1474 |
+
"theme installed on your website. It supports all the themes on WordPress "
|
1475 |
+
"and makes your website more striking and playful."
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: ../admin/partials/essential-content-types-admin-display.php:99
|
1479 |
+
#: ../admin/partials/essential-content-types-admin-display.php:196
|
1480 |
+
msgid "Lightweight"
|
1481 |
+
msgstr ""
|
1482 |
+
|
1483 |
+
#: ../admin/partials/essential-content-types-admin-display.php:100
|
1484 |
+
msgid ""
|
1485 |
+
"It is extremely lightweight. You do not need to worry about it affecting "
|
1486 |
+
"the space and speed of your website."
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: ../admin/partials/essential-content-types-admin-display.php:105
|
1490 |
+
msgid ""
|
1491 |
+
"You have the freedom to choose how your content would be displayed—whether "
|
1492 |
+
"in ascending or descending alphabetical order by author name, title, date, "
|
1493 |
+
"or in random order."
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: ../admin/partials/essential-content-types-admin-display.php:109
|
1497 |
+
msgid "Enable/Disable any content/post type as needed"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: ../admin/partials/essential-content-types-admin-display.php:110
|
1501 |
+
msgid ""
|
1502 |
+
"With this option, you can choose whether you want to display your content/"
|
1503 |
+
"post type or not. You can enable or disable any content or post type as per "
|
1504 |
+
"your need."
|
1505 |
+
msgstr ""
|
1506 |
+
|
1507 |
+
#: ../admin/partials/essential-content-types-admin-display.php:114
|
1508 |
+
msgid "Super Simple to Set Up"
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: ../admin/partials/essential-content-types-admin-display.php:115
|
1512 |
+
msgid ""
|
1513 |
+
"It is super easy to set up. Even the beginners can set it up easily and "
|
1514 |
+
"also, you do not need to have any coding knowledge. Just install, activate, "
|
1515 |
+
"customize it your way and enjoy the plugin."
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: ../admin/partials/essential-content-types-admin-display.php:119
|
1519 |
+
#: ../admin/partials/essential-content-types-admin-display.php:180
|
1520 |
+
msgid "Responsive Design"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: ../admin/partials/essential-content-types-admin-display.php:120
|
1524 |
+
msgid ""
|
1525 |
+
"One of the key features of our plugins is that your website will magically "
|
1526 |
+
"respond and adapt to different screen sizes delivering an optimized design "
|
1527 |
+
"for iPhones, iPads, and other mobile devices. No longer will you need to "
|
1528 |
+
"zoom and scroll around when browsing on your mobile phone."
|
1529 |
+
msgstr ""
|
1530 |
+
|
1531 |
+
#: ../admin/partials/essential-content-types-admin-display.php:124
|
1532 |
+
msgid "Incredible Support"
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: ../admin/partials/essential-content-types-admin-display.php:125
|
1536 |
+
msgid ""
|
1537 |
+
"We have a great line of support team and support documentation. You do not "
|
1538 |
+
"need to worry about how to use the plugins we provide, just refer to our "
|
1539 |
+
"Tech Support Forum. Further, if you need to do advanced customization to "
|
1540 |
+
"your website, you can always hire our theme customizer!"
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: ../admin/partials/essential-content-types-admin-display.php:129
|
1544 |
+
msgid "Widgets"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: ../admin/partials/essential-content-types-admin-display.php:130
|
1548 |
+
msgid ""
|
1549 |
+
"Multitude of widget options provide you with the option to choose the "
|
1550 |
+
"widgets that you want to display. You can have full control over each "
|
1551 |
+
"widget’s visibility and appearance. You can assign different contents on "
|
1552 |
+
"your sidebars, footer and any sidebar widgets."
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: ../admin/partials/essential-content-types-admin-display.php:134
|
1556 |
+
msgid "Shortcodes"
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
+
#: ../admin/partials/essential-content-types-admin-display.php:135
|
1560 |
+
msgid ""
|
1561 |
+
"With Shortcodes, you have the option to use the powerful shortcode options "
|
1562 |
+
"to style multiple contents in completely different ways."
|
1563 |
+
msgstr ""
|
1564 |
+
|
1565 |
+
#: ../admin/partials/essential-content-types-admin-display.php:139
|
1566 |
+
#: ../admin/partials/essential-content-types-admin-display.php:204
|
1567 |
+
msgid "Number of Posts"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: ../admin/partials/essential-content-types-admin-display.php:140
|
1571 |
+
msgid ""
|
1572 |
+
"You have the option to choose the number of posts you want to display on "
|
1573 |
+
"your website. Pick the number of posts that suits the best on your website."
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: ../admin/partials/essential-content-types-admin-display.php:144
|
1577 |
+
#: ../admin/partials/essential-content-types-admin-display.php:236
|
1578 |
+
msgid "Column Option"
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: ../admin/partials/essential-content-types-admin-display.php:145
|
1582 |
+
msgid ""
|
1583 |
+
"Column Option allows you to choose from multiple column options. Several "
|
1584 |
+
"options are available for all column types in general to edit the default "
|
1585 |
+
"behavior."
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: ../admin/partials/essential-content-types-admin-display.php:148
|
1589 |
+
msgid "Upgrade to Essential Content Types Premium »"
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: ../admin/partials/essential-content-types-admin-display.php:156
|
1593 |
+
msgid "Get Essential Content Types Pro -"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: ../admin/partials/essential-content-types-admin-display.php:156
|
1597 |
+
msgid "Get It Here!"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: ../admin/partials/essential-content-types-admin-display.php:157
|
1601 |
+
msgid "You are currently using the free version of Essential Content Types."
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: ../admin/partials/essential-content-types-admin-display.php:158
|
1605 |
+
msgid ""
|
1606 |
+
"If you have purchased from catchplugins.com, then follow this link to the "
|
1607 |
+
"installation instructions (particularly step 1)."
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: ../admin/partials/essential-content-types-admin-display.php:172
|
1611 |
+
msgid "Free"
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: ../admin/partials/essential-content-types-admin-display.php:173
|
1615 |
+
msgid "Pro"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: ../admin/partials/essential-content-types-admin-display.php:188
|
1619 |
+
msgid "Super Easy Setup"
|
1620 |
+
msgstr ""
|
1621 |
+
|
1622 |
+
#: ../admin/partials/essential-content-types-admin-display.php:220
|
1623 |
+
msgid "Shortcode"
|
1624 |
+
msgstr ""
|
1625 |
+
|
1626 |
+
#: ../admin/partials/essential-content-types-admin-display.php:228
|
1627 |
+
msgid "Custom Post Types"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: ../admin/partials/essential-content-types-admin-display.php:252
|
1631 |
+
msgid "Featured Image Widget"
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: ../admin/partials/essential-content-types-admin-display.php:260
|
1635 |
+
msgid "Testimonials Widget"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: ../admin/partials/essential-content-types-admin-display.php:268
|
1639 |
+
msgid "Services Widget"
|
1640 |
+
msgstr ""
|
1641 |
+
|
1642 |
+
#: ../admin/partials/essential-content-types-admin-display.php:276
|
1643 |
+
msgid "Add Shortcode Button"
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
+
#: ../admin/partials/essential-content-types-admin-display.php:284
|
1647 |
+
msgid "Ads-free Dashboard"
|
1648 |
+
msgstr ""
|
1649 |
+
|
1650 |
+
#: ../admin/partials/footer.php:4
|
1651 |
+
msgid "Catch Plugins"
|
1652 |
+
msgstr ""
|
1653 |
+
|
1654 |
+
#: ../admin/partials/footer.php:9
|
1655 |
msgid "View Themes"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: ../admin/partials/footer.php:10
|
|
|
1659 |
msgid "View Plugins"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: ../admin/partials/footer.php:11
|
1663 |
+
msgid "Support"
|
|
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: ../admin/partials/sidebar.php:3
|
1667 |
+
msgid "Recommendations"
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: ../admin/partials/sidebar.php:7
|
1671 |
+
msgid "Get Essential Content Types Pro"
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: ../admin/partials/sidebar.php:15
|
1675 |
+
msgid "Get Now"
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#: ../admin/partials/sidebar.php:22
|
1679 |
+
msgid "Premium Themes"
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: ../admin/partials/sidebar.php:23
|
1683 |
+
msgid ""
|
1684 |
+
"Check out our simple, clean and responsive Premium WordPress Themes that "
|
1685 |
+
"come with an array of crucial features with a superior functionality."
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: ../admin/partials/sidebar.php:23
|
1689 |
+
msgid "Check our premium themes."
|
|
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: ../admin/partials/sidebar.php:30
|
|
|
1693 |
msgid "Free Themes"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: ../admin/partials/sidebar.php:31
|
1697 |
+
msgid ""
|
1698 |
+
"Check out our collection of Free WordPress Themes that are clean, simple "
|
1699 |
+
"and feature-rich."
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: ../admin/partials/sidebar.php:31
|
1703 |
+
msgid "Check our free themes."
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: ../admin/partials/sidebar.php:39
|
1707 |
+
msgid "Premium Plugins"
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: ../admin/partials/sidebar.php:40
|
1711 |
+
msgid ""
|
1712 |
+
"Check out our secured Premium WordPress Plugins to enhance and add extra "
|
1713 |
+
"functionalities to your website. An exceptional way to get the most out of "
|
1714 |
+
"WordPress!"
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: ../admin/partials/sidebar.php:40
|
1718 |
+
msgid "Check our premium plugins."
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: ../admin/partials/sidebar.php:48
|
1722 |
+
msgid "Free Plugins"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: ../admin/partials/sidebar.php:49
|
1726 |
+
msgid ""
|
1727 |
+
"Check out our Free WordPress Plugins and get the taste of our service "
|
1728 |
+
"without affecting your wallet."
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: ../admin/partials/sidebar.php:50
|
1732 |
+
msgid "check our free plugins."
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
#: ../essential-content-types.php:40
|
1736 |
#, php-format
|
1737 |
msgid ""
|
uninstall.php
CHANGED
@@ -19,7 +19,7 @@
|
|
19 |
* For more information, see the following discussion:
|
20 |
* https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913
|
21 |
*
|
22 |
-
* @link https://
|
23 |
* @since 1.0.0
|
24 |
*
|
25 |
* @package Essential_Content_Types
|
@@ -55,4 +55,4 @@ if ( !is_multisite() ) {
|
|
55 |
}
|
56 |
}
|
57 |
switch_to_blog( $original_blog_id );
|
58 |
-
}
|
19 |
* For more information, see the following discussion:
|
20 |
* https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913
|
21 |
*
|
22 |
+
* @link https://catchplugins.com
|
23 |
* @since 1.0.0
|
24 |
*
|
25 |
* @package Essential_Content_Types
|
55 |
}
|
56 |
}
|
57 |
switch_to_blog( $original_blog_id );
|
58 |
+
}
|