Changeset 3352253
- Timestamp:
- 08/28/2025 07:55:17 PM (6 months ago)
- Location:
- content-visibility-for-divi-builder/trunk
- Files:
-
- 4 edited
-
content-visibility-for-divi-builder.php (modified) (1 diff)
-
includes/cvdb-et-builder-element.class.php (modified) (1 diff)
-
includes/plugin.class.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
content-visibility-for-divi-builder/trunk/content-visibility-for-divi-builder.php
r3351612 r3352253 8 8 * Plugin Name: Content Visibility for Divi Builder 9 9 * Description: Allows Sections and Modules to be displayed/hidden based on the outcome of a PHP boolean expression. 10 * Version: 4.0 010 * Version: 4.01 11 11 * Author: AoD Technologies LLC 12 12 * Author URI: http://www.aod-tech.com/ -
content-visibility-for-divi-builder/trunk/includes/cvdb-et-builder-element.class.php
r3351612 r3352253 95 95 } 96 96 97 $visibility = ContentVisibilityForDiviBuilder::evaluate_visibility_expression( str_replace( array( '%22', '%5D' ), array( '"', ']' ), $atts['cvdb_content_visibility_check'] ), 'shortcode', $ et_pb_element );97 $visibility = ContentVisibilityForDiviBuilder::evaluate_visibility_expression( str_replace( array( '%22', '%5D' ), array( '"', ']' ), $atts['cvdb_content_visibility_check'] ), 'shortcode', $this->wrapped_element ); 98 98 99 99 if ( !$visibility ) { -
content-visibility-for-divi-builder/trunk/includes/plugin.class.php
r3351612 r3352253 24 24 25 25 public static function get_version() { 26 return '4.0 0';26 return '4.01'; 27 27 } 28 28 -
content-visibility-for-divi-builder/trunk/readme.txt
r3351612 r3352253 6 6 Tested up to: 6.8.2 7 7 Requires PHP: 7.0 8 Stable tag: 4.0 08 Stable tag: 4.01 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 = 4.01 = 69 * Fix undefined variable in cvdb-et-builder-element.class.php. Thanks to @kindred for the quick bug report! 70 68 71 = 4.00 = 69 72 * Refactor the code for performance and maintainability.
Note: See TracChangeset
for help on using the changeset viewer.