Version Description
Only Change Version Number
Download this release
Release Info
Developer | kurudrive |
Plugin | VK All in One Expansion Unit |
Version | 9.37.1.1 |
Comparing to | |
See all releases |
Code changes from version 9.37.1.0 to 9.37.1.1
- readme.txt +4 -1
- veu-packages.php +6 -6
- vkExUnit.php +1 -1
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 5.0.0
|
6 |
Tested up to: 5.5.1
|
7 |
-
Stable tag: 9.37.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -81,6 +81,9 @@ e.g.
|
|
81 |
|
82 |
== Changelog ==
|
83 |
|
|
|
|
|
|
|
84 |
= 9.37.1.0 =
|
85 |
[ Design bug fix ] Page top button CSS bug fix / childPage list title CSS bug fix
|
86 |
|
4 |
Tags: Google Analytics, New posts, Related Posts, sitemap, sns, twitter card, Facebook Page Plugin, OG tags,
|
5 |
Requires at least: 5.0.0
|
6 |
Tested up to: 5.5.1
|
7 |
+
Stable tag: 9.37.1.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
81 |
|
82 |
== Changelog ==
|
83 |
|
84 |
+
= 9.37.1.1 =
|
85 |
+
Only Change Version Number
|
86 |
+
|
87 |
= 9.37.1.0 =
|
88 |
[ Design bug fix ] Page top button CSS bug fix / childPage list title CSS bug fix
|
89 |
|
veu-packages.php
CHANGED
@@ -66,7 +66,7 @@ function veu_get_packages() {
|
|
66 |
'name' => 'vk-blocks',
|
67 |
'title' => __( 'VK Blocks', 'vk-all-in-one-expansion-unit' ),
|
68 |
'description' => __( 'Extends Gutenberg\'s blocks.', 'vk-all-in-one-expansion-unit' ),
|
69 |
-
'default' =>
|
70 |
'include' => 'vk-blocks/vk-blocks-config.php',
|
71 |
);
|
72 |
|
@@ -376,18 +376,18 @@ function veu_get_packages() {
|
|
376 |
);
|
377 |
|
378 |
/**
|
379 |
-
*
|
380 |
*/
|
381 |
$required_packages[] = array(
|
382 |
'name' => 'display_ie_alert',
|
383 |
'title' => __( 'Display IE Alert', 'vk-all-in-one-expansion-unit' ),
|
384 |
'description' => __( 'Display a warning if the user who is viewing this site is using IE.', 'vk-all-in-one-expansion-unit' ).'<br>'.__( 'IE is a very old browser and its creator Microsoft does not recommend its use. Encouraging IE users to switch to the next-generation browser will greatly contribute to the evolution of the website.', 'vk-all-in-one-expansion-unit' ),
|
385 |
-
'default' =>
|
386 |
'include' => 'display-ie-alert.php',
|
387 |
);
|
388 |
|
389 |
/**
|
390 |
-
*
|
391 |
*/
|
392 |
$required_packages[] = array(
|
393 |
'name' => 'disable_xml_sitemap',
|
@@ -441,7 +441,7 @@ function veu_get_packages() {
|
|
441 |
'name' => 'pagetop_button',
|
442 |
'title' => __( 'Page Top Button', 'vk-all-in-one-expansion-unit' ),
|
443 |
'description' => __( 'The page top button is displayed in the lower right corner of the screen.', 'vk-all-in-one-expansion-unit' ),
|
444 |
-
'default' =>
|
445 |
'include' => 'pagetop-btn/pagetop-btn.php',
|
446 |
'attr' => array(
|
447 |
array(
|
@@ -493,7 +493,7 @@ function veu_get_packages() {
|
|
493 |
'title' => __( 'Contact Form 7 Asset Optimize', 'vk-all-in-one-expansion-unit' ),
|
494 |
'description' => __( 'Unqueue Contact Form 7 assets at page of unuse form.', 'vk-all-in-one-expansion-unit' ) . '<br/>* ' . __( 'Do not activate if you using css/js optimize plugin like "Autoptimize".', 'vk-all-in-one-expansion-unit' ),
|
495 |
'attr' => array(),
|
496 |
-
'default' =>
|
497 |
'include' => '/contactform7-asset-optimize.php',
|
498 |
);
|
499 |
|
66 |
'name' => 'vk-blocks',
|
67 |
'title' => __( 'VK Blocks', 'vk-all-in-one-expansion-unit' ),
|
68 |
'description' => __( 'Extends Gutenberg\'s blocks.', 'vk-all-in-one-expansion-unit' ),
|
69 |
+
'default' => false,
|
70 |
'include' => 'vk-blocks/vk-blocks-config.php',
|
71 |
);
|
72 |
|
376 |
);
|
377 |
|
378 |
/**
|
379 |
+
* IE Alart.
|
380 |
*/
|
381 |
$required_packages[] = array(
|
382 |
'name' => 'display_ie_alert',
|
383 |
'title' => __( 'Display IE Alert', 'vk-all-in-one-expansion-unit' ),
|
384 |
'description' => __( 'Display a warning if the user who is viewing this site is using IE.', 'vk-all-in-one-expansion-unit' ).'<br>'.__( 'IE is a very old browser and its creator Microsoft does not recommend its use. Encouraging IE users to switch to the next-generation browser will greatly contribute to the evolution of the website.', 'vk-all-in-one-expansion-unit' ),
|
385 |
+
'default' => true,
|
386 |
'include' => 'display-ie-alert.php',
|
387 |
);
|
388 |
|
389 |
/**
|
390 |
+
* Disable Core XML Sitemap.
|
391 |
*/
|
392 |
$required_packages[] = array(
|
393 |
'name' => 'disable_xml_sitemap',
|
441 |
'name' => 'pagetop_button',
|
442 |
'title' => __( 'Page Top Button', 'vk-all-in-one-expansion-unit' ),
|
443 |
'description' => __( 'The page top button is displayed in the lower right corner of the screen.', 'vk-all-in-one-expansion-unit' ),
|
444 |
+
'default' => true,
|
445 |
'include' => 'pagetop-btn/pagetop-btn.php',
|
446 |
'attr' => array(
|
447 |
array(
|
493 |
'title' => __( 'Contact Form 7 Asset Optimize', 'vk-all-in-one-expansion-unit' ),
|
494 |
'description' => __( 'Unqueue Contact Form 7 assets at page of unuse form.', 'vk-all-in-one-expansion-unit' ) . '<br/>* ' . __( 'Do not activate if you using css/js optimize plugin like "Autoptimize".', 'vk-all-in-one-expansion-unit' ),
|
495 |
'attr' => array(),
|
496 |
+
'default' => true,
|
497 |
'include' => '/contactform7-asset-optimize.php',
|
498 |
);
|
499 |
|
vkExUnit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: VK All in One Expansion Unit
|
4 |
* Plugin URI: https://ex-unit.nagoya
|
5 |
* Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
-
* Version: 9.37.1.
|
7 |
* Author: Vektor,Inc.
|
8 |
* Text Domain: vk-all-in-one-expansion-unit
|
9 |
* Domain Path: /languages
|
3 |
* Plugin Name: VK All in One Expansion Unit
|
4 |
* Plugin URI: https://ex-unit.nagoya
|
5 |
* Description: This plug-in is an integrated plug-in with a variety of features that make it powerful your web site. Many features can be stopped individually. Example Facebook Page Plugin,Social Bookmarks,Print OG Tags,Print Twitter Card Tags,Print Google Analytics tag,New post widget,Insert Related Posts and more!
|
6 |
+
* Version: 9.37.1.1
|
7 |
* Author: Vektor,Inc.
|
8 |
* Text Domain: vk-all-in-one-expansion-unit
|
9 |
* Domain Path: /languages
|