PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.11.7
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.11.7
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 3.10.4 All 148 releases
← All changes | classes/Visualizer/Render/Page/Data.php +5 -2 4.0.73.11.7 View file →
@@ -92,9 +92,9 @@
92 92 </div>
93 93 </div>
94 94 <div class="viz-info-item">
95 95 <label for="viz-backend-name"><?php _e( 'Backend chart title for internal usage', 'visualizer' ); ?></label>
96 - <input type="text" id="viz-backend-name" value="<?php echo $hasTitle ? esc_attr( $chartSettings['backend-title'] ) : ( '#' . esc_attr( $this->chart->ID ) ); ?>">
96 + <input type="text" id="viz-backend-name" value="<?php echo $hasTitle ? $chartSettings['backend-title'] : ( '#' . esc_attr( $this->chart->ID ) ); ?>">
97 97 </div>
98 98 </div>
99 99 <div id="viz-tabs">
100 100 <ul>
@@ -107,9 +107,11 @@
107 107 <div id="viz-tab-help-content"><?php Visualizer_Render_Layout::show( 'tab-help', $this->chart->ID ); ?></div>
108 108 </div>
109 109
110 110 <li class="viz-group bottom-fixed" id="vz-chart-copyright">
111 - <?php _e( 'Hate it? Love it?', 'visualizer' ); ?> <a href="https://wordpress.org/support/plugin/visualizer/reviews/#new-post" target="_blank"><?php _e( 'Rate it!', 'visualizer' ); ?></a>
111 + Hate it? Love it? <a href="https://wordpress.org/support/plugin/visualizer/reviews/#new-post" target="_blank">Rate it!</a>
112 + <br/>
113 + Visualizer &copy;
112 114 <?php
113 115 // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date, WordPress.DateTime.CurrentTimeTimestamp.Requested
114 116 echo date( 'Y', current_time( 'timestamp' ) );
115 117 ?>
@@ -153,5 +155,6 @@
153 155 }
154 156 Visualizer_Render_Layout::show( 'db-query', $query, $this->chart->ID );
155 157 Visualizer_Render_Layout::show( 'json-screen', $this->chart->ID );
156 158 }
159 +
157 160 }