Plugin Directory

Changeset 3340052


Ignore:
Timestamp:
08/06/2025 05:29:28 AM (7 months ago)
Author:
flickdevs
Message:

new 1.5

Location:
fd-beaver-charts/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • fd-beaver-charts/trunk/fd-beaver-charts.php

    r3250824 r3340052  
    44 * Plugin URI: https://wordpress.org/plugins/fd-beaver-charts/
    55 * Description: Allow user to manipulate data via different chart presentations on your site with beaver builder add-on.
    6  * Version: 1.4
     6 * Version: 1.5
    77 * Author: FlickDevs
    88 * Author URI: https://flickdevs.com
  • fd-beaver-charts/trunk/module/bar-chart/bar-chart.php

    r3107484 r3340052  
    6868                        'type'          => 'color',
    6969                        'label'         => __( 'Border Color', BCM_DOMAIN ),
    70                         'default'       => '000000',
     70                        'default'       => '#000000',
    7171                        'show_reset'    => true,
    7272                    ),                     
     
    121121                        'type'          => 'color',
    122122                        'label'         => __( 'Tag Color', BCM_DOMAIN ),
    123                         'default'       => '666666',
     123                        'default'       => '#666666',
    124124                        'show_reset'    => true,
    125125                    ),
     
    167167                        'type'      => 'color',
    168168                        'label'     => __( 'Y - Axis Label Font Color', BCM_DOMAIN ),
    169                         'default'   => '1E90FF',
     169                        'default'   => '#1E90FF',
    170170                        'show_reset'=> true
    171171                    ),                 
     
    264264                        'type'      => 'color',
    265265                        'label'     => __( 'X - Axis Label Font Color', BCM_DOMAIN ),
    266                         'default'   => '1E90FF',
     266                        'default'   => '#1E90FF',
    267267                        'show_reset'=> true
    268268                    ),                 
     
    352352                        'type'          => 'color',
    353353                        'label'         => __( 'Body Text Color', BCM_DOMAIN ),
    354                         'default'       => 'ffffff',
     354                        'default'       => '#ffffff',
    355355                        'show_reset'    => true,
    356356                    ),
     
    388388                            'type'          => 'color',
    389389                            'label'         => __( 'Bar Color', BCM_DOMAIN ),
    390                             'default'       => '298cd8',
     390                            'default'       => '#298cd8',
    391391                            'show_reset'    => true
    392392                        ),
  • fd-beaver-charts/trunk/module/bar-chart/includes/frontend.js.php

    r3250824 r3340052  
    1212                    data: [<?php echo $barchart_value->yaxis_data_value;  ?>],
    1313
    14                     backgroundColor:'#<?php echo $barchart_value->bar_color;  ?>',
     14                    backgroundColor:'<?php echo $barchart_value->bar_color;  ?>',
    1515
    1616                    borderWidth: '<?php echo $settings->bar_border_width;  ?>',
    1717
    18                     borderColor:'#<?php echo $settings->bar_border_color;  ?>'   
     18                    borderColor:'<?php echo $settings->bar_border_color;  ?>'   
    1919
    2020                },<?php } ?>
     
    3838                        fontSize: <?php echo $settings->bar_tag_fontsize;  ?>,                     
    3939
    40                         fontColor: '#<?php echo $settings->bar_tag_fontcolor;  ?>'
     40                        fontColor: '<?php echo $settings->bar_tag_fontcolor;  ?>'
    4141
    4242                    },
     
    7373                    fontSize: <?php echo $settings->xaxis_label_fontsize; ?>,
    7474
    75                     fontColor: '#<?php echo $settings->xaxis_label_fontcolor;  ?>'
     75                    fontColor: '<?php echo $settings->xaxis_label_fontcolor;  ?>'
    7676
    7777              },               
     
    126126                    fontSize: <?php echo $settings->yaxis_label_fontsize; ?>,
    127127
    128                     fontColor: '#<?php echo $settings->yaxis_label_fontcolor;  ?>'                 
     128                    fontColor: '<?php echo $settings->yaxis_label_fontcolor;  ?>'                   
    129129
    130130                },             
     
    181181                    min:0,
    182182
    183                     titleFontColor:'#<?php echo $settings->tooltip_title_color;?>',
     183                    titleFontColor:'<?php echo $settings->tooltip_title_color;?>',
    184184
    185185                    titleMarginBottom:<?php echo $settings->tooltip_title_bspace;?>,
     
    187187                    bodyFontSize:<?php echo $settings->tooltip_body_text_font_size;?>,
    188188
    189                     bodyFontColor:'#<?php echo $settings->tooltip_body_text_color;?>',
     189                    bodyFontColor:'<?php echo $settings->tooltip_body_text_color;?>',
    190190        },
    191191
  • fd-beaver-charts/trunk/module/pie-chart/includes/frontend.js.php

    r3250824 r3340052  
    1212         foreach( $settings->pie_chart as $chart_item )
    1313            {
    14             ?>"#<?php echo esc_js($chart_item->pie_bar_color);  ?>", <?php } ?>],
     14            ?>"<?php echo esc_js($chart_item->pie_bar_color);  ?>", <?php } ?>],
    1515          data: [<?php
    1616         foreach( $settings->pie_chart as $chart_item )
  • fd-beaver-charts/trunk/module/pie-chart/pie-chart.php

    r2166885 r3340052  
    117117                            'type'          => 'color',
    118118                            'label'         => __( 'Color', BCM_DOMAIN ),
    119                             'default'       => '298cd8',
     119                            'default'       => '#298cd8',
    120120                            'show_reset'    => true
    121121                        ),
  • fd-beaver-charts/trunk/readme.txt

    r3250824 r3340052  
    33Tags: beaver builder chart addon, chart module, beaver builder, beaver builder addon, beader builder module
    44Requires at least: 5.9 or higher
    5 Tested up to: 6.7.2
     5Tested up to: 6.8.2
    66Requires PHP: 7.0 or higher
    7 Stable tag: 1.4
     7Stable tag: 1.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6767== Changelog ==
    6868
     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
    6973= 1.4 =
    7074* Minor bug fixes compatibility with latest WordPress and Beaver Builder version
Note: See TracChangeset for help on using the changeset viewer.