Version Description
- Adjustments to Genesis CSS full width support
- Adjustments to TwentySeventeen CSS full width support
Download this release
Release Info
Developer | WPDevHQ |
Plugin | Page Templater For Elementor |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.8 to 1.0.9
- elementemplator.php +4 -4
- inc/settings.php +1 -1
- inc/themes/genesis.php +2 -2
- inc/themes/twentyseventeen.php +8 -3
- readme.txt +10 -4
elementemplator.php
CHANGED
@@ -2,12 +2,12 @@
|
|
2 |
/*
|
3 |
* Plugin Name: Elementor Templater: ElemenTemplator
|
4 |
* Plugin URI: http://www.wpdevhq.com/plugins/elementor-templator
|
5 |
-
* Description: A helper plugin for users of Elementor Pagebuilder.
|
6 |
-
* Version: 1.0.
|
7 |
* Author: WPDevHQ
|
8 |
* Author URI: http://www.wpdevhq.com/
|
9 |
* Requires at least: 4.4
|
10 |
-
* Tested up to: 4.7
|
11 |
*/
|
12 |
|
13 |
/* Do not access this file directly */
|
@@ -17,7 +17,7 @@ if ( ! defined( 'WPINC' ) ) { die; }
|
|
17 |
------------------------------------------ */
|
18 |
|
19 |
/* Set plugin version constant. */
|
20 |
-
define( 'ET_VERSION', '1.0.
|
21 |
|
22 |
/* Set constant path to the plugin directory. */
|
23 |
define( 'ET_PATH', trailingslashit( plugin_dir_path(__FILE__) ) );
|
2 |
/*
|
3 |
* Plugin Name: Elementor Templater: ElemenTemplator
|
4 |
* Plugin URI: http://www.wpdevhq.com/plugins/elementor-templator
|
5 |
+
* Description: A helper plugin for users of Elementor Pagebuilder. Adds 2 new templates for complete full width experience while using the page builder - support for a number of popular themes is built-in.
|
6 |
+
* Version: 1.0.9
|
7 |
* Author: WPDevHQ
|
8 |
* Author URI: http://www.wpdevhq.com/
|
9 |
* Requires at least: 4.4
|
10 |
+
* Tested up to: 4.7
|
11 |
*/
|
12 |
|
13 |
/* Do not access this file directly */
|
17 |
------------------------------------------ */
|
18 |
|
19 |
/* Set plugin version constant. */
|
20 |
+
define( 'ET_VERSION', '1.0.9' );
|
21 |
|
22 |
/* Set constant path to the plugin directory. */
|
23 |
define( 'ET_PATH', trailingslashit( plugin_dir_path(__FILE__) ) );
|
inc/settings.php
CHANGED
@@ -23,7 +23,7 @@ $cpt_pts = isset($cpt_options['objects']) ? $cpt_options['objects'] : array();
|
|
23 |
<table class="form-table">
|
24 |
<tbody>
|
25 |
<tr valign="top">
|
26 |
-
<p><?php _e('Check to Apply Templates
|
27 |
</tr>
|
28 |
<tr>
|
29 |
<td>
|
23 |
<table class="form-table">
|
24 |
<tbody>
|
25 |
<tr valign="top">
|
26 |
+
<p><?php _e('Check to Apply Templates to Custom Post Types', 'elementemplater') ?></p>
|
27 |
</tr>
|
28 |
<tr>
|
29 |
<td>
|
inc/themes/genesis.php
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<?php
|
2 |
/* Support for the Genesis theme */
|
3 |
$genesis = '
|
4 |
-
.page-template-builder-fullwidth,
|
5 |
-
.page-template-builder-fullwidth-std {
|
6 |
max-width: 100%;
|
7 |
padding: 0;
|
8 |
margin: 0;
|
1 |
<?php
|
2 |
/* Support for the Genesis theme */
|
3 |
$genesis = '
|
4 |
+
.page-template-builder-fullwidth .site-inner,
|
5 |
+
.page-template-builder-fullwidth-std .site-inner {
|
6 |
max-width: 100%;
|
7 |
padding: 0;
|
8 |
margin: 0;
|
inc/themes/twentyseventeen.php
CHANGED
@@ -1,12 +1,17 @@
|
|
1 |
<?php
|
2 |
-
/* Support for the Twenty
|
3 |
$style = '
|
4 |
.elementor-editor-active .site-content {
|
5 |
padding: 2.5em 0 0;
|
6 |
-
}
|
7 |
-
|
8 |
.elementor-page .site-content {
|
9 |
padding: 0;
|
10 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
';
|
12 |
wp_add_inline_style( 'twentyseventeen-style', $style );
|
1 |
<?php
|
2 |
+
/* Support for the Twenty Seventeen theme */
|
3 |
$style = '
|
4 |
.elementor-editor-active .site-content {
|
5 |
padding: 2.5em 0 0;
|
6 |
+
}
|
|
|
7 |
.elementor-page .site-content {
|
8 |
padding: 0;
|
9 |
}
|
10 |
+
.elementor-page.page:not(.home) #content {
|
11 |
+
padding-bottom: 0;
|
12 |
+
}
|
13 |
+
.elementor-page .site-footer {
|
14 |
+
margin-top: 0;
|
15 |
+
}
|
16 |
';
|
17 |
wp_add_inline_style( 'twentyseventeen-style', $style );
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: WPDevHQ
|
3 |
Tags: elementor, pagebuilder, page builder, page builder template, page builder templates, actions, storefront, twentysixteen, genesis, template builder, builder templates
|
4 |
Requires at least: 4.4
|
5 |
-
Tested up to: 4.7
|
6 |
-
Stable tag: 1.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -18,13 +18,14 @@ NEW: Support for custom post templates now included. Your theme/child theme must
|
|
18 |
|
19 |
See the [FAQ](https://wordpress.org/plugins/elementor-templater/faq/) for details and a download link for an Actions Elementor ready child theme.
|
20 |
|
21 |
-
|
22 |
- Template 1: Full width with header and footer : Builder Fullwidth Standard
|
23 |
- Template 2: Full width and no header or footer : Builder Fullwidth Blank
|
24 |
|
25 |
== Supported Themes ==
|
26 |
The following themes are currently supported out of the box - if your desired theme is not list you may need to add some custom css.
|
27 |
* [Actions](https://wordpress.org/themes/actions/) - by WPDevHQ
|
|
|
28 |
* [Edge](https://wordpress.org/themes/edge/) - By themefreesia
|
29 |
* [Experon](https://wordpress.org/themes/experon/) - ThinkUpThemes
|
30 |
* [Genesis](http://my.studiopress.com/themes/genesis/) - By StudioPress
|
@@ -33,6 +34,7 @@ The following themes are currently supported out of the box - if your desired th
|
|
33 |
* [TwentyFifteen](https://wordpress.org/themes/twentyfifteen/) - by WordPress.org
|
34 |
* [TwentySixteen](https://wordpress.org/themes/twentysixteen/) - by WordPress.org
|
35 |
* [TwentyThirteen](https://wordpress.org/themes/twentythirteen/) - by WordPress.org
|
|
|
36 |
* [Vantage](https://wordpress.org/themes/vantage/) - by Greg Priday
|
37 |
* [Virtue](https://wordpress.org/themes/virtue/) - by Kadence Themes
|
38 |
* [Enlightenmen](https://wordpress.org/themes/enlightenment/) - by Daniel Tara
|
@@ -68,7 +70,7 @@ Ever wanted to build Landing pages, sales pages or display specific pages withou
|
|
68 |
Anchors a point on a template that are attached to a specific menu item - upon click on the menu item the anchor position will scroll in to the viewport.
|
69 |
|
70 |
**How do I use this new feature?**
|
71 |
-
Please visit [Build With Elementor: Anchor Menus](http://buildwithelementor.com/custom-menu/) to get an over view of
|
72 |
|
73 |
** I've update to version 1.0.2 but don't see the templates for posts, why?**
|
74 |
As with the current state of WordPress, custom post templates are only supported via themes and not plugins.
|
@@ -88,6 +90,10 @@ Please visit the settings page located at Dasboard >> Settings >> Post Type Temp
|
|
88 |
2. Fullwidth no Header no Footer
|
89 |
|
90 |
== Changelog ==
|
|
|
|
|
|
|
|
|
91 |
= 1.0.8 =
|
92 |
* Fixed issue with template loading for WordPress 4.7 due to functional changes to accomodate the new template for post types.
|
93 |
* Added support for the Enlightenmen theme.
|
2 |
Contributors: WPDevHQ
|
3 |
Tags: elementor, pagebuilder, page builder, page builder template, page builder templates, actions, storefront, twentysixteen, genesis, template builder, builder templates
|
4 |
Requires at least: 4.4
|
5 |
+
Tested up to: 4.7
|
6 |
+
Stable tag: 1.0.9
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
18 |
|
19 |
See the [FAQ](https://wordpress.org/plugins/elementor-templater/faq/) for details and a download link for an Actions Elementor ready child theme.
|
20 |
|
21 |
+
Adds 2 new templates for complete full width experience while using the page builder - support for a number of popular themes is built-in
|
22 |
- Template 1: Full width with header and footer : Builder Fullwidth Standard
|
23 |
- Template 2: Full width and no header or footer : Builder Fullwidth Blank
|
24 |
|
25 |
== Supported Themes ==
|
26 |
The following themes are currently supported out of the box - if your desired theme is not list you may need to add some custom css.
|
27 |
* [Actions](https://wordpress.org/themes/actions/) - by WPDevHQ
|
28 |
+
* [ActionsPro](https://wpdevhq.com/themes/actions-pro/) - by WPDevHQ
|
29 |
* [Edge](https://wordpress.org/themes/edge/) - By themefreesia
|
30 |
* [Experon](https://wordpress.org/themes/experon/) - ThinkUpThemes
|
31 |
* [Genesis](http://my.studiopress.com/themes/genesis/) - By StudioPress
|
34 |
* [TwentyFifteen](https://wordpress.org/themes/twentyfifteen/) - by WordPress.org
|
35 |
* [TwentySixteen](https://wordpress.org/themes/twentysixteen/) - by WordPress.org
|
36 |
* [TwentyThirteen](https://wordpress.org/themes/twentythirteen/) - by WordPress.org
|
37 |
+
* [TwentySeventeen](https://wordpress.org/themes/twentyseventeen/) - by WordPress.org
|
38 |
* [Vantage](https://wordpress.org/themes/vantage/) - by Greg Priday
|
39 |
* [Virtue](https://wordpress.org/themes/virtue/) - by Kadence Themes
|
40 |
* [Enlightenmen](https://wordpress.org/themes/enlightenment/) - by Daniel Tara
|
70 |
Anchors a point on a template that are attached to a specific menu item - upon click on the menu item the anchor position will scroll in to the viewport.
|
71 |
|
72 |
**How do I use this new feature?**
|
73 |
+
Please visit [Build With Elementor: Anchor Menus](http://buildwithelementor.com/custom-menu/) to get an over view of how it all works.
|
74 |
|
75 |
** I've update to version 1.0.2 but don't see the templates for posts, why?**
|
76 |
As with the current state of WordPress, custom post templates are only supported via themes and not plugins.
|
90 |
2. Fullwidth no Header no Footer
|
91 |
|
92 |
== Changelog ==
|
93 |
+
= 1.0.9 =
|
94 |
+
* Adjustments to Genesis CSS full width support
|
95 |
+
* Adjustments to TwentySeventeen CSS full width support
|
96 |
+
|
97 |
= 1.0.8 =
|
98 |
* Fixed issue with template loading for WordPress 4.7 due to functional changes to accomodate the new template for post types.
|
99 |
* Added support for the Enlightenmen theme.
|