Version Description
- Fixed - The taxonomy chosen dropdown displaying superfluous taxonomies in the dropdown for Posts Grid.
Download this release
Release Info
Developer | livemesh |
Plugin | Addons for WPBakery Page Builder |
Version | 2.5.6 |
Comparing to | |
See all releases |
Code changes from version 2.5.5 to 2.5.6
- addons-for-visual-composer.php +2 -2
- admin/views/documentation.php +5 -0
- freemius/assets/js/nojquery.ba-postmessage.min.min.js +0 -1
- includes/helper-functions.php +14 -1
- plugin.php +2 -2
- readme.txt +3 -1
addons-for-visual-composer.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
* Author URI: https://www.livemeshthemes.com/
|
9 |
* License: GPL3
|
10 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
-
* Version: 2.5.
|
12 |
* Text Domain: livemesh-vc-addons
|
13 |
* Domain Path: languages
|
14 |
*
|
@@ -36,7 +36,7 @@ if ( !defined( 'ABSPATH' ) ) {
|
|
36 |
|
37 |
if ( !function_exists( 'lvca_fs' ) ) {
|
38 |
// Plugin version
|
39 |
-
define( 'LVCA_VERSION', '2.5.
|
40 |
// Plugin Root File
|
41 |
define( 'LVCA_PLUGIN_FILE', __FILE__ );
|
42 |
// Plugin Folder Path
|
8 |
* Author URI: https://www.livemeshthemes.com/
|
9 |
* License: GPL3
|
10 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
+
* Version: 2.5.6
|
12 |
* Text Domain: livemesh-vc-addons
|
13 |
* Domain Path: languages
|
14 |
*
|
36 |
|
37 |
if ( !function_exists( 'lvca_fs' ) ) {
|
38 |
// Plugin version
|
39 |
+
define( 'LVCA_VERSION', '2.5.6' );
|
40 |
// Plugin Root File
|
41 |
define( 'LVCA_PLUGIN_FILE', __FILE__ );
|
42 |
// Plugin Folder Path
|
admin/views/documentation.php
CHANGED
@@ -1236,6 +1236,11 @@ else {
|
|
1236 |
|
1237 |
<h2>Change Log for the Premium Version</h2>
|
1238 |
<br>
|
|
|
|
|
|
|
|
|
|
|
1239 |
<h3>2.5.5</h3>
|
1240 |
<ul>
|
1241 |
<li>Fixed - Some sites reporting error - call to undefined function get_blog_list().</li>
|
1236 |
|
1237 |
<h2>Change Log for the Premium Version</h2>
|
1238 |
<br>
|
1239 |
+
<h3>2.5.6</h3>
|
1240 |
+
<ul>
|
1241 |
+
<li>Fixed - The taxonomy chosen dropdown displaying superfluous taxonomies in the dropdown for Posts Grid/Posts Block.</li>
|
1242 |
+
<li>Fixed - Cannot display taxonomy terms for the post in block styles 7,8 and 9 of Posts Block.</li>
|
1243 |
+
</ul>
|
1244 |
<h3>2.5.5</h3>
|
1245 |
<ul>
|
1246 |
<li>Fixed - Some sites reporting error - call to undefined function get_blog_list().</li>
|
freemius/assets/js/nojquery.ba-postmessage.min.min.js
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
function NoJQueryPostMessageMixin(g,a){var b,h,e,d,f,c=1;if(window.postMessage){if(window.addEventListener){b=function(i){window.addEventListener("message",i,false)};h=function(i){window.removeEventListener("message",i,false)}}else{b=function(i){window.attachEvent("onmessage",i)};h=function(i){window.detachEvent("onmessage",i)}}this[g]=function(i,k,j){if(!k){return}j.postMessage(i,k.replace(/([^:]+:\/\/[^\/]+).*/,"$1"))};this[a]=function(k,j,i){if(e){h(e);e=null}if(!k){return false}e=b(function(l){switch(Object.prototype.toString.call(j)){case"[object String]":if(j!==l.origin){return false}break;case"[object Function]":if(j(l.origin)){return false}break}k(l)})}}else{this[g]=function(i,k,j){if(!k){return}j.location=k.replace(/#.*$/,"")+"#"+ +new Date+c+++"&"+i};this[a]=function(k,j,i){if(d){clearInterval(d);d=null}if(k){i=typeof j==="number"?j:typeof i==="number"?i:100;d=setInterval(function(){var m=document.location.hash,l=/^#?\d+&/;if(m!==f&&l.test(m)){f=m;k({data:m.replace(l,"")})}},i)}}}return this}
|
|
includes/helper-functions.php
CHANGED
@@ -136,13 +136,26 @@ function lvca_get_info_for_taxonomies( $taxonomies )
|
|
136 |
function lvca_get_taxonomies_map()
|
137 |
{
|
138 |
$map = array();
|
139 |
-
$taxonomies =
|
140 |
foreach ( $taxonomies as $taxonomy ) {
|
141 |
$map[$taxonomy] = $taxonomy;
|
142 |
}
|
143 |
return apply_filters( 'lvca_taxonomies_map', $map );
|
144 |
}
|
145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
function lvca_entry_published( $format = null )
|
147 |
{
|
148 |
if ( empty($format) ) {
|
136 |
function lvca_get_taxonomies_map()
|
137 |
{
|
138 |
$map = array();
|
139 |
+
$taxonomies = lvca_get_all_taxonomies();
|
140 |
foreach ( $taxonomies as $taxonomy ) {
|
141 |
$map[$taxonomy] = $taxonomy;
|
142 |
}
|
143 |
return apply_filters( 'lvca_taxonomies_map', $map );
|
144 |
}
|
145 |
|
146 |
+
function lvca_get_all_taxonomies()
|
147 |
+
{
|
148 |
+
$taxonomies = get_taxonomies( array(
|
149 |
+
'public' => true,
|
150 |
+
'_builtin' => false,
|
151 |
+
) );
|
152 |
+
$taxonomies = array_merge( array(
|
153 |
+
'category' => 'category',
|
154 |
+
'post_tag' => 'post_tag',
|
155 |
+
), $taxonomies );
|
156 |
+
return $taxonomies;
|
157 |
+
}
|
158 |
+
|
159 |
function lvca_entry_published( $format = null )
|
160 |
{
|
161 |
if ( empty($format) ) {
|
plugin.php
CHANGED
@@ -43,7 +43,7 @@ if ( !class_exists( 'Livemesh_VC_Addons' ) ) {
|
|
43 |
public function __clone()
|
44 |
{
|
45 |
// Cloning instances of the class is forbidden
|
46 |
-
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-vc-addons' ), '2.5.
|
47 |
}
|
48 |
|
49 |
/**
|
@@ -53,7 +53,7 @@ if ( !class_exists( 'Livemesh_VC_Addons' ) ) {
|
|
53 |
public function __wakeup()
|
54 |
{
|
55 |
// Unserializing instances of the class is forbidden
|
56 |
-
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-vc-addons' ), '2.5.
|
57 |
}
|
58 |
|
59 |
private function setup_debug_constants()
|
43 |
public function __clone()
|
44 |
{
|
45 |
// Cloning instances of the class is forbidden
|
46 |
+
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-vc-addons' ), '2.5.6' );
|
47 |
}
|
48 |
|
49 |
/**
|
53 |
public function __wakeup()
|
54 |
{
|
55 |
// Unserializing instances of the class is forbidden
|
56 |
+
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-vc-addons' ), '2.5.6' );
|
57 |
}
|
58 |
|
59 |
private function setup_debug_constants()
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Contributors: livemesh, freemius
|
|
5 |
Tags: wpbakery page builder, wpbakery page builder addons, wpbakery, wpbakery page builder extensions, visual composer, visual composer addons, visual composer extensions, page builder, portfolio, carousel, post, posts, shortcodes, tabs, plugin, page
|
6 |
Requires at least: 4.5
|
7 |
Tested up to: 5.2
|
8 |
-
Stable Tag: 2.5.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html-func
|
11 |
|
@@ -102,6 +102,8 @@ Pls install and activate the <a href="https://wordpress.org/plugins/portfolio-po
|
|
102 |
3. Editing a addon/extension element in the WPBakery Page Builder.
|
103 |
|
104 |
== Changelog ==
|
|
|
|
|
105 |
|
106 |
= 2.5.5 =
|
107 |
* Fixed - Some sites reporting error - call to undefined function get_blog_list().
|
5 |
Tags: wpbakery page builder, wpbakery page builder addons, wpbakery, wpbakery page builder extensions, visual composer, visual composer addons, visual composer extensions, page builder, portfolio, carousel, post, posts, shortcodes, tabs, plugin, page
|
6 |
Requires at least: 4.5
|
7 |
Tested up to: 5.2
|
8 |
+
Stable Tag: 2.5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html-func
|
11 |
|
102 |
3. Editing a addon/extension element in the WPBakery Page Builder.
|
103 |
|
104 |
== Changelog ==
|
105 |
+
= 2.5.6 =
|
106 |
+
* Fixed - The taxonomy chosen dropdown displaying superfluous taxonomies in the dropdown for Posts Grid.
|
107 |
|
108 |
= 2.5.5 =
|
109 |
* Fixed - Some sites reporting error - call to undefined function get_blog_list().
|