Version Description
- Weaver Xtreme 1.x users should continue to use this plugin, even with support for new version.
- Add new options for Weaver Xtreme 2.0
Download this release
Release Info
Developer | wpweaver |
Plugin | Weaver Xtreme Theme Support |
Version | 1.9.1 |
Comparing to | |
See all releases |
Code changes from version 1.9 to 1.9.1
- admin/lib-admin.php +9 -0
- readme.txt +4 -1
- weaverx-ts.php +2 -2
admin/lib-admin.php
CHANGED
@@ -909,6 +909,15 @@ function weaverx_form_widget_area( $value, $submit = false ) {
|
|
909 |
'info' => '<em>' . $name . '</em>' . __(': How to align this area (Default: Left Align)', 'weaver-xtreme' /*adm*/) )
|
910 |
|
911 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
912 |
}
|
913 |
|
914 |
|
909 |
'info' => '<em>' . $name . '</em>' . __(': How to align this area (Default: Left Align)', 'weaver-xtreme' /*adm*/) )
|
910 |
|
911 |
);
|
912 |
+
if ($id == 'header_html' || $id == 'footer_html') {
|
913 |
+
weaverx_form_checkbox(array(
|
914 |
+
'name' => '<span class="i-left dashicons dashicons-align-none"></span><small>' . __('Center Content', 'weaver-xtreme' /*adm*/) . '</small>',
|
915 |
+
'id' => $id . '_center_content',
|
916 |
+
'type' => '',
|
917 |
+
'info' => '<em>' . $name . '</em>' .
|
918 |
+
__(': Center Content within HTML Area content within the area.', 'weaver-xtreme' /*adm*/) ));
|
919 |
+
}
|
920 |
+
|
921 |
}
|
922 |
|
923 |
|
readme.txt
CHANGED
@@ -10,7 +10,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
|
10 |
Text Domain: weaverx-theme-support
|
11 |
Requires at least: 4.0
|
12 |
Tested up to: 4.3
|
13 |
-
Stable tag: 1.9
|
14 |
|
15 |
A useful shortcode and widget collection for Weaver Xtreme
|
16 |
|
@@ -75,6 +75,9 @@ Support for this plugin can best be found at our forum - http://forum.weaverthem
|
|
75 |
This is the initial release of this plugin.
|
76 |
|
77 |
== ChangeLog ==
|
|
|
|
|
|
|
78 |
|
79 |
= 1.9 =
|
80 |
* Changes to support Weaver Xtreme Version 2.0 (for alpha test versions)
|
10 |
Text Domain: weaverx-theme-support
|
11 |
Requires at least: 4.0
|
12 |
Tested up to: 4.3
|
13 |
+
Stable tag: 1.9.1
|
14 |
|
15 |
A useful shortcode and widget collection for Weaver Xtreme
|
16 |
|
75 |
This is the initial release of this plugin.
|
76 |
|
77 |
== ChangeLog ==
|
78 |
+
= 1.9.1 =
|
79 |
+
* Weaver Xtreme 1.x users should continue to use this plugin, even with support for new version.
|
80 |
+
* Add new options for Weaver Xtreme 2.0
|
81 |
|
82 |
= 1.9 =
|
83 |
* Changes to support Weaver Xtreme Version 2.0 (for alpha test versions)
|
weaverx-ts.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://weavertheme.com/plugins
|
|
5 |
Description: Weaver X Theme Support - a package of useful shortcodes and widgets that integrates closely with the Weaver X theme. This plugin Will also allow you to switch from Weaver X to any other theme and still be able to use the shortcodes and widgets from Weaver X with minimal effort.
|
6 |
Author: wpweaver
|
7 |
Author URI: http://weavertheme.com/about/
|
8 |
-
Version: 1.9
|
9 |
License: GPL V3
|
10 |
|
11 |
Weaver Xtreme Theme Support
|
@@ -33,7 +33,7 @@ $theme = get_template_directory();
|
|
33 |
|
34 |
if ( strpos( $theme, '/weaver-xtreme') !== false ) { // only load if Weaver Xtreme is the theme
|
35 |
|
36 |
-
define ('WVRX_TS_VERSION','1.9');
|
37 |
define ('WVRX_TS_MINIFY','.min'); // '' for dev, '.min' for production
|
38 |
define ('WVRX_TS_APPEARANCE_PAGE', false );
|
39 |
|
5 |
Description: Weaver X Theme Support - a package of useful shortcodes and widgets that integrates closely with the Weaver X theme. This plugin Will also allow you to switch from Weaver X to any other theme and still be able to use the shortcodes and widgets from Weaver X with minimal effort.
|
6 |
Author: wpweaver
|
7 |
Author URI: http://weavertheme.com/about/
|
8 |
+
Version: 1.9.1
|
9 |
License: GPL V3
|
10 |
|
11 |
Weaver Xtreme Theme Support
|
33 |
|
34 |
if ( strpos( $theme, '/weaver-xtreme') !== false ) { // only load if Weaver Xtreme is the theme
|
35 |
|
36 |
+
define ('WVRX_TS_VERSION','1.9.1');
|
37 |
define ('WVRX_TS_MINIFY','.min'); // '' for dev, '.min' for production
|
38 |
define ('WVRX_TS_APPEARANCE_PAGE', false );
|
39 |
|