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 4b6bdb1 commit b677338Copy full SHA for b677338
classes/Visualizer/Render/Page/Data.php
@@ -42,7 +42,9 @@ protected function _renderContent() {
42
if ( VISUALIZER_PRO ) {
43
global $Visualizer_Pro;
44
$Visualizer_Pro->_addEditor( $this->chart->ID );
45
- $Visualizer_Pro->_addFilterWizard( $this->chart->ID );
+ if ( method_exists($Visualizer_Pro, '_addFilterWizard') ) {
46
+ $Visualizer_Pro->_addFilterWizard( $this->chart->ID );
47
+ }
48
}
49
// Added by Ash/Upwork
50
echo '<div id="canvas">';
0 commit comments