We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c2f4b commit 8ed04f5Copy full SHA for 8ed04f5
classes/Visualizer/Module/Chart.php
@@ -769,7 +769,10 @@ public function renderFlattrScript() {
769
*/
770
private function handleCSVasString( $data ) {
771
$source = null;
772
- if ( VISUALIZER_PRO ) {
+
773
+ // do not check for VISUALIZER_PRO here as that is false:
774
+ // @issue https://github.com/Codeinwp/visualizer/issues/412
775
+ if ( has_filter( 'visualizer_pro_handle_chart_data' ) ) {
776
$source = apply_filters( 'visualizer_pro_handle_chart_data', $data, '' );
777
} else {
778
// data coming in from the text editor.
0 commit comments