thmufl
Forum Replies Created
-
Forum: Plugins
In reply to: [IPU-Chart] chart randomly stopped renderingYou mentioned that everything worked fine until today. So, I would first restart the (Apache) server. Then I would check the access rights of the files in the /raw folder.
Forum: Plugins
In reply to: [IPU-Chart] chart randomly stopped renderingI just tested: the sever sends a 500 internal server error for some IPU-Chart definition files. Please can you check, that the files in the /raw directory are delivered:
http://ontwerp.crossculturalconsult.com/wp-content/plugins/ipu-chart/raw/world-110m.json
and
Thomas
Forum: Plugins
In reply to: [IPU-Chart] Update disappears graphsThanks!
Forum: Plugins
In reply to: [IPU-Chart] Update disappears graphsHi, please can you delete the plugin and reinstall it from the wordpress plugin directory.
The first build of version 0.95 yesterday went wrong. It seems that your updated with this build that was for a moment online:-(
Sorry for the inconvenience.
Forum: Reviews
In reply to: [IPU-Chart] Can't use it. It is a Paid plugin, asking Licence keySorry, the configuration panel leads to a misunderstanding. You can ignore it for IPU-Chart Basic, downloaded here from the WordPress directory.
The functionality described in the description section of the plugin works without any license key. If it doesn’t work there is an other issue – certainly not a missing license key.
A license key is only needed if you’ve installed one of the extensions IPU-Chart Multi-Series or IPU-Chart Editor (which are described on our website).
We will change the configuration panel in one of our next updates. So the plugin will ask for a key only if you’ve actually installed one of the extensions.
Forum: Reviews
In reply to: [IPU-Chart] 100% Paid. Doesn't Belong Here in the RepositorySorry, the configuration panel leads to a misunderstanding. You can ignore it for IPU-Chart Basic, downloaded here from the WordPress directory.
The functionality described in the description section of the plugin works without any license key. If it doesn’t work there is an other issue – certainly not a missing license key.
A license key is only needed if you’ve installed one of the extensions IPU-Chart Multi-Series or IPU-Chart Editor (which are described on our website).
We will change the configuration panel in our next update. So the plugin will ask for a key only if you’ve actually installed one of the extensions.
Forum: Plugins
In reply to: [IPU-Chart] plugin code broken under paglines themeHi,
So the scripts and the svg are not even rendered with Pagelines. Just this strange image tag.
Does Pagelines (or any other component of your site) load Google Chart? There is a name collision between this plugin and IPU-Chart with the ‘chart’ shortcode. Please, try with the shortcodes ‘ipu-chart’ and ‘ipu-csv’ instead of ‘chart’ and ‘csv’ to verify this.
If this does not work, please contact us again. Best via our support forum (https://www.ipublia.com/support/forums/).
Thomas
Forum: Reviews
In reply to: [IPU-Chart] 100% Paid. Doesn't Belong Here in the RepositorySorry, you are wrong. You can download and use IPU-Chart including bar, line, pie, bubble charts and so on for free. Try it!
Forum: Plugins
In reply to: [IPU-Chart] position of bubble in bubble chartYes, IPU-Chart calculates size and position of the bubbles. It uses a layout manager of D3 for this (and I’am happy that D3 does this tedious work for us!). So you can’t assign the x/y position yourself.
The position of a bubble is determined by a sort algorithm (see https://www.ipublia.com/support/docs/ipu-chart-for-wordpress-user-guide/usage-examples/#usageBubble).
In the new version to come about mid of august it will be possible to overwrite this sorting function.
Forum: Plugins
In reply to: [IPU-Chart] No Chart DisplayedProblem resolved.
Forum: Plugins
In reply to: [IPU-Chart] No Chart Displayed– Close the ipu-csv shortcode also with the ‘ipu-‘ prefix.
– Attributes need no ‘ipu-‘ prefix.Like: [ipu-csv]…[/ipu-csv]
and: [ipu-chart id=”c757562″ csv=”#d757562″…
Afterwards it should work.
Forum: Plugins
In reply to: [IPU-Chart] No Chart DisplayedYou don’t need a license key for the basic version from the WordPress plugin directory.
A license key is only needed for the Multi Series Plugin (https://www.ipublia.com/ipu-chart-multi-series-charts-for-wordpress-released/).
I had a look at your website. It seems that you have installed Google Charts which uses the same shortcode ‘chart’ as IPU-Chart. Try using ‘ipu-chart’, ‘ipu-csv’ and so on instead of ‘chart’.
Forum: Plugins
In reply to: [IPU-Chart] No Chart DisplayedCould you set the ‘debug’ attribute of your chart shortcode to ‘true’, open the browser’s console and reload the page. What does the log in the console display?
Forum: Plugins
In reply to: [IPU-Chart] Error "There was an error loading the data: csv"Yes, I’ll clarify this. I voted for legibility of the code… but it’s confusing.
Thanks for the helpful feedback! Hope you enjoy the plugin.
Forum: Plugins
In reply to: [IPU-Chart] Error "There was an error loading the data: csv"Thanks!
The linefeeds in the documentation are for legibility. Please enter the data like this:
[csv id='data']Country,Population China,1343.24 India,1205.07 USA,313.85 Indonesia,248.22 Brazil,205.72[/csv]
And remove the linefeeds between the attributes like:
[chart csv="#data" type="bar" category="Country" ...]
Don’t forget the # to reference the csv data (from the log it seems that it is missing). It indicates that the data is local (vs remote by url).