Changeset 3170292
- Timestamp:
- 10/16/2024 06:46:51 PM (14 months ago)
- Location:
- cubewp-framework/trunk
- Files:
-
- 7 edited
-
cube.php (modified) (1 diff)
-
cube/assets/admin/js/cwp-form-builder.js (modified) (1 diff)
-
cube/assets/admin/js/cwp-options.js (modified) (1 diff)
-
cube/classes/class-cubewp-load.php (modified) (1 diff)
-
cube/modules/settings/class-cubewp-settings-ajax-hooks.php (modified) (1 diff)
-
cube/modules/settings/class-cubewp-settings-fields.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cubewp-framework/trunk/cube.php
r3167922 r3170292 4 4 * Plugin URI: https://cubewp.com/ 5 5 * Description: CubeWP is an end-to-end dynamic content framework for WordPress to help you save up to 90% of your coding time. 6 * Version: 1.1.2 06 * Version: 1.1.21 7 7 * Author: CubeWP 8 8 * Author URI: https://cubewp.com -
cubewp-framework/trunk/cube/assets/admin/js/cwp-form-builder.js
r3157208 r3170292 83 83 } 84 84 ); 85 if(!jQuery('body').hasClass('cubewp_page_cubewp-loop-builder')){ 85 var trigger = false; 86 if(jQuery('body').hasClass('cubewp-addon-frontend-pro-active') && !jQuery('body').hasClass('cubewp_page_cubewp-loop-builder')){ 87 trigger = true; 88 }else if(!jQuery('body').hasClass('cubewp-addon-frontend-pro-active')){ 89 trigger = true; 90 } 91 if(trigger){ 86 92 87 93 $(document).on( -
cubewp-framework/trunk/cube/assets/admin/js/cwp-options.js
r3155340 r3170292 143 143 144 144 jQuery.ajax({ 145 type: 'POST', url: c wp_settings.ajax_url, dataType: 'json', data: {145 type: 'POST', url: cubewp_settings_params.ajax_url, dataType: 'json', data: { 146 146 action: 'cwp_get_font_attributes', font_family: _val, 147 147 }, success: function (response) { 148 148 thisObj.closest('.cwp-typography-container').find('.typography-style select').html(response.font_styles); 149 thisObj.closest('.cwp-typography-container').find('.typography-style select').val(s_font_style).select2("destroy").select2();149 //thisObj.closest('.cwp-typography-container').find('.typography-style select').val(s_font_style).select2("destroy").select2(); 150 150 thisObj.closest('.cwp-typography-container').find('.typography-subset select').html(response.font_subsets); 151 thisObj.closest('.cwp-typography-container').find('.typography-subset select').val(s_font_subset).select2("destroy").select2();151 //thisObj.closest('.cwp-typography-container').find('.typography-subset select').val(s_font_subset).select2("destroy").select2(); 152 152 } 153 153 }); -
cubewp-framework/trunk/cube/classes/class-cubewp-load.php
r3167922 r3170292 21 21 * @var string 22 22 */ 23 public static $CubeWp_version = '1.1.2 0';23 public static $CubeWp_version = '1.1.21'; 24 24 25 25 /** -
cubewp-framework/trunk/cube/modules/settings/class-cubewp-settings-ajax-hooks.php
r2905998 r3170292 124 124 } 125 125 126 public function cwp_get_font_attributes(){126 public static function cwp_get_font_attributes(){ 127 127 128 128 $font_family = isset($_POST['font_family']) ? sanitize_text_field($_POST['font_family']) : ''; -
cubewp-framework/trunk/cube/modules/settings/class-cubewp-settings-fields.php
r3155340 r3170292 754 754 755 755 public function font_styles_options( $output = '', $font_family = '' ){ 756 $google_fonts = apply_filters("cubewp/settings/google_fonts", array());756 $google_fonts = apply_filters("cubewp/settings/google_fonts", self::google_fonts()); 757 757 758 758 $options = array(); … … 766 766 767 767 public function font_subsets_options( $output = '', $font_family = '' ){ 768 $google_fonts = apply_filters("cubewp/settings/google_fonts", array());768 $google_fonts = apply_filters("cubewp/settings/google_fonts", self::google_fonts()); 769 769 770 770 $options = array(); -
cubewp-framework/trunk/readme.txt
r3167922 r3170292 6 6 Requires PHP: 7.4 7 7 Tested up to: 6.4.3 8 Stable tag: 1.1.2 08 Stable tag: 1.1.21 9 9 License: GPLv2 or later 10 10 … … 377 377 == Changelog == 378 378 379 = 1.1.21 2024-10-16 380 381 - FIXED: Post-Card Customizer Code editor issue. 382 - FIXED: Google fonts subsets and variants issue in CubeWP Settings. 383 - FIXED: "cubewp/settings/google_fonts" Hooks added to include your own fonts in CubeWP Settings for font selection. 384 379 385 = 1.1.20 2024-10-13 380 386
Note: See TracChangeset
for help on using the changeset viewer.