Changeset 3340052
- Timestamp:
- 08/06/2025 05:29:28 AM (7 months ago)
- Location:
- fd-beaver-charts/trunk
- Files:
-
- 6 edited
-
fd-beaver-charts.php (modified) (1 diff)
-
module/bar-chart/bar-chart.php (modified) (6 diffs)
-
module/bar-chart/includes/frontend.js.php (modified) (6 diffs)
-
module/pie-chart/includes/frontend.js.php (modified) (1 diff)
-
module/pie-chart/pie-chart.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fd-beaver-charts/trunk/fd-beaver-charts.php
r3250824 r3340052 4 4 * Plugin URI: https://wordpress.org/plugins/fd-beaver-charts/ 5 5 * Description: Allow user to manipulate data via different chart presentations on your site with beaver builder add-on. 6 * Version: 1. 46 * Version: 1.5 7 7 * Author: FlickDevs 8 8 * Author URI: https://flickdevs.com -
fd-beaver-charts/trunk/module/bar-chart/bar-chart.php
r3107484 r3340052 68 68 'type' => 'color', 69 69 'label' => __( 'Border Color', BCM_DOMAIN ), 70 'default' => ' 000000',70 'default' => '#000000', 71 71 'show_reset' => true, 72 72 ), … … 121 121 'type' => 'color', 122 122 'label' => __( 'Tag Color', BCM_DOMAIN ), 123 'default' => ' 666666',123 'default' => '#666666', 124 124 'show_reset' => true, 125 125 ), … … 167 167 'type' => 'color', 168 168 'label' => __( 'Y - Axis Label Font Color', BCM_DOMAIN ), 169 'default' => ' 1E90FF',169 'default' => '#1E90FF', 170 170 'show_reset'=> true 171 171 ), … … 264 264 'type' => 'color', 265 265 'label' => __( 'X - Axis Label Font Color', BCM_DOMAIN ), 266 'default' => ' 1E90FF',266 'default' => '#1E90FF', 267 267 'show_reset'=> true 268 268 ), … … 352 352 'type' => 'color', 353 353 'label' => __( 'Body Text Color', BCM_DOMAIN ), 354 'default' => ' ffffff',354 'default' => '#ffffff', 355 355 'show_reset' => true, 356 356 ), … … 388 388 'type' => 'color', 389 389 'label' => __( 'Bar Color', BCM_DOMAIN ), 390 'default' => ' 298cd8',390 'default' => '#298cd8', 391 391 'show_reset' => true 392 392 ), -
fd-beaver-charts/trunk/module/bar-chart/includes/frontend.js.php
r3250824 r3340052 12 12 data: [<?php echo $barchart_value->yaxis_data_value; ?>], 13 13 14 backgroundColor:' #<?php echo $barchart_value->bar_color; ?>',14 backgroundColor:'<?php echo $barchart_value->bar_color; ?>', 15 15 16 16 borderWidth: '<?php echo $settings->bar_border_width; ?>', 17 17 18 borderColor:' #<?php echo $settings->bar_border_color; ?>'18 borderColor:'<?php echo $settings->bar_border_color; ?>' 19 19 20 20 },<?php } ?> … … 38 38 fontSize: <?php echo $settings->bar_tag_fontsize; ?>, 39 39 40 fontColor: ' #<?php echo $settings->bar_tag_fontcolor; ?>'40 fontColor: '<?php echo $settings->bar_tag_fontcolor; ?>' 41 41 42 42 }, … … 73 73 fontSize: <?php echo $settings->xaxis_label_fontsize; ?>, 74 74 75 fontColor: ' #<?php echo $settings->xaxis_label_fontcolor; ?>'75 fontColor: '<?php echo $settings->xaxis_label_fontcolor; ?>' 76 76 77 77 }, … … 126 126 fontSize: <?php echo $settings->yaxis_label_fontsize; ?>, 127 127 128 fontColor: ' #<?php echo $settings->yaxis_label_fontcolor; ?>'128 fontColor: '<?php echo $settings->yaxis_label_fontcolor; ?>' 129 129 130 130 }, … … 181 181 min:0, 182 182 183 titleFontColor:' #<?php echo $settings->tooltip_title_color;?>',183 titleFontColor:'<?php echo $settings->tooltip_title_color;?>', 184 184 185 185 titleMarginBottom:<?php echo $settings->tooltip_title_bspace;?>, … … 187 187 bodyFontSize:<?php echo $settings->tooltip_body_text_font_size;?>, 188 188 189 bodyFontColor:' #<?php echo $settings->tooltip_body_text_color;?>',189 bodyFontColor:'<?php echo $settings->tooltip_body_text_color;?>', 190 190 }, 191 191 -
fd-beaver-charts/trunk/module/pie-chart/includes/frontend.js.php
r3250824 r3340052 12 12 foreach( $settings->pie_chart as $chart_item ) 13 13 { 14 ?>" #<?php echo esc_js($chart_item->pie_bar_color); ?>", <?php } ?>],14 ?>"<?php echo esc_js($chart_item->pie_bar_color); ?>", <?php } ?>], 15 15 data: [<?php 16 16 foreach( $settings->pie_chart as $chart_item ) -
fd-beaver-charts/trunk/module/pie-chart/pie-chart.php
r2166885 r3340052 117 117 'type' => 'color', 118 118 'label' => __( 'Color', BCM_DOMAIN ), 119 'default' => ' 298cd8',119 'default' => '#298cd8', 120 120 'show_reset' => true 121 121 ), -
fd-beaver-charts/trunk/readme.txt
r3250824 r3340052 3 3 Tags: beaver builder chart addon, chart module, beaver builder, beaver builder addon, beader builder module 4 4 Requires at least: 5.9 or higher 5 Tested up to: 6. 7.25 Tested up to: 6.8.2 6 6 Requires PHP: 7.0 or higher 7 Stable tag: 1. 47 Stable tag: 1.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 67 67 == Changelog == 68 68 69 = 1.5 = 70 * Fix: Background color and font color were not applying (selected or default) — now fixed. 71 * Compatibility with latest WordPress and Beaver Builder version 72 69 73 = 1.4 = 70 74 * Minor bug fixes compatibility with latest WordPress and Beaver Builder version
Note: See TracChangeset
for help on using the changeset viewer.