You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### Enhancements
- Added a manual data edit feature to the free version of the plugin
- Improved the flow of chart creation
- Added a chart information panel: backend chart title & quick shortcode access
- Line and Pie charts from the ChartJS library are now available for free users, along with library selection and relative images
- Improved wording in onboarding
- Improved workflow for creating charts via the Visualizer Gutenberg block
- Moved chart library selection to the top of the page and showing charts from the available library only
- Unified chart edition (removed duplicated chart settings in block editor)
- Added optional feature usage data
- Enhanced security
- Improved the UI of the database query option (visible database prefix, sample query, autocompleting table names) [PRO]
/* translators: %1$s: opening tag, %2$s: closing tag */
119
+
'blockEditDoc' => sprintf( __( 'The editor for managing chart settings has been removed from the block editor. You can find more information in this %1$sdocumentation%2$s', 'visualizer' ), '<a href="https://docs.themeisle.com/article/1705-how-can-i-display-a-chart#using-visualizer-block" target="_blank">', '</a>' ),
Copy file name to clipboardExpand all lines: classes/Visualizer/Gutenberg/src/Components/Import/FileImport.js
+42-23Lines changed: 42 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -37,34 +37,53 @@ class FileImport extends Component {
37
37
38
38
render(){
39
39
return(
40
-
<PanelBody
41
-
title={__('Import data from file')}
42
-
initialOpen={false}
43
-
>
40
+
('community'!==visualizerLocalize.isPro) ? (
41
+
<PanelBody
42
+
title={__('Import data from file')}
43
+
initialOpen={false}
44
+
>
45
+
46
+
<p>{__('Select and upload your data CSV file here. The first row of the CSV file should contain the column headings. The second one should contain series type (string, number, boolean, date, datetime, timeofday).')}</p>
47
+
<p>
48
+
{__('If you are unsure about how to format your data CSV then please take a look at this sample: ')}
<p>{__('Select and upload your data CSV file here. The first row of the CSV file should contain the column headings. The second one should contain series type (string, number, boolean, date, datetime, timeofday).')}</p>
46
-
<p>
47
-
{__('If you are unsure about how to format your data CSV then please take a look at this sample: ')}
0 commit comments