I tried all the example shortcodes but can′t see anything yet.
What can I do?
This is the URL:
https://visuelllernen.de/d3-plugin/
Please review the use of
https://codex.www.ads-software.com/Function_Reference/wp_enqueue_script
on the code, this is what I have use it to get it working:
function add_scripts_method() {
wp_enqueue_script('d3-simpleCharts',
plugins_url( 'd3-simpleCharts.js' , __FILE__ )
);
wp_enqueue_script('d3.v3.min-script',
plugins_url( 'd3.v3.min.js' , __FILE__ )
);
wp_enqueue_script('jquery-script',
'https://code.jquery.com/jquery-1.9.1.js'
);
wp_enqueue_script('jquery-ui-script',
'https://code.jquery.com/ui/1.10.3/jquery-ui.js'
);
}
add_action( 'wp_enqueue_scripts', 'add_scripts_method' );
https://www.ads-software.com/extend/plugins/d3-simplecharts/
]]>according to:
https://codex.www.ads-software.com/Function_Reference/wp_enqueue_style
Please review this code as a better way to add style files on the plugin.
function d3simplecharts_add_stylesheets() {
wp_register_style( 'nv.d3-style', plugins_url('nvd3/nv.d3.css', __FILE__) );
wp_enqueue_style( 'nv.d3-style' );
wp_register_style( 'd3chart-style', plugins_url('d3chart.css', __FILE__) );
wp_enqueue_style( 'd3chart-style' );
wp_register_style( 'query-ui-style', 'https://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css' );
wp_enqueue_style( 'query-ui-style' );
wp_register_style( 'rickshaw.min-style', plugins_url('rickshaw/rickshaw.min.css ', __FILE__) );
wp_enqueue_style( 'rickshaw.min-style' );
}
add_action( 'wp_enqueue_scripts', 'd3simplecharts_add_stylesheets' );
https://www.ads-software.com/extend/plugins/d3-simplecharts/
]]>Hi,
I am trying yet to get this plugin working. And I found some references to nv/nv.d3.css but that file is missing on the plugin.
could you mind to have a look?
https://www.ads-software.com/extend/plugins/d3-simplecharts/
]]>I got this warning on the css code.
Acording to
https://www.w3schools.com/css/css_syntax.asp
Please use /* */
diff –git a/d3chart.css b/d3chart.css
index 775c59d..686b8cf 100644
— a/d3chart.css
+++ b/d3chart.css
@@ -110,7 +110,7 @@
/* Tooltip definitions */
.ISO-3166-1 {
– //color: transparent;
+ /* color: transparent; */
font-size: 1.0em;
}
@@ -121,7 +121,7 @@ div.iputooltip {
color: Black;
position: absolute;
padding: 5px 10px 5px 10px;
– background: #ffffcc; // #faf8ba;
+ background: #ffffcc; /* #faf8ba;*/
border-radius: 8px;
box-shadow: 4px 4px 2px gray;
}
https://www.ads-software.com/extend/plugins/d3-simplecharts/
]]>Its not here..
https://github.com/mrBigJS/d3-simpleCharts/tree/master/icons
https://www.ads-software.com/extend/plugins/d3-simplecharts/
]]>Please review the url of the plugin.Its inconsistency. So it breaks images
cheche@casa:/var/tmp/maskk$ wget https://downloads.www.ads-software.com/plugin/d3-simplecharts.1.2.28.zip
cheche@casa:/var/tmp/maskk$ unzip d3-simplecharts.1.2.28.zip
Archive: d3-simplecharts.1.2.28.zip
d3-simplecharts.1.2.28 packaged: Tue, 11 Jun 2013 06:41:58 +0000
creating: d3-simplecharts/
https://www.ads-software.com/extend/plugins/d3-simplecharts/
]]>