claudio
Forum Replies Created
-
Forum: Plugins
In reply to: [ReactPress - Create React App for Wordpress] Identify current userHi! Thanks for the answer, but how do I access the variable? Something like process.env.reactPress?
thanks!Thanks! It worked like a charm! Not the best for security, but still…
Forum: Plugins
In reply to: [WP Business Intelligence Lite] Fatal Error with Enterprise EditionHi Will,
you should post questions on the contact form on the WPBI web site.
You have v 2.2 of Enterprise now. You can download it from the download section of your WPBI account.
We the recent WordPress upgrade the buttons are having more and more problems so we will probably discontinue them soon. I advise you to manually insert the shortcodes as they are very simple and you just need the chart ID.
Cheers,
ClaudioHi, you need to delete the row in the WPBI_connections table in the DB and a new connection record with be created after reload.
Forum: Plugins
In reply to: [WP Business Intelligence Lite] Fatal Error with Enterprise EditionHi sorry for the late reply but this is not exactly the place to post support request for the Enterprise version.
The error is due to the failed creation of a DB object. Which kind of DB are you trying to connect to?
Which version of WPBI are you running?
Thank youForum: Plugins
In reply to: [WP Business Intelligence Lite] Search Box Not Showing With TableYes thanks for the notice. This is a bug we will fix soon.
Forum: Plugins
In reply to: [WP Business Intelligence Lite] Time display not in local timezoneThis has been fixed in the latest release.
Forum: Plugins
In reply to: [WP Business Intelligence Lite] WP runtime variables: Tables PrefixSorry Martin, I’ll have a look with the next release 1.7.
Thanks for your patience
C.Forum: Plugins
In reply to: [WP Business Intelligence Lite] CSV Download link not workingPlease try giving a name and title to the table. It seems the csv file has no name.
C.Forum: Plugins
In reply to: [WP Business Intelligence Lite] Vulnerability?Thank you for answering White Fir Design.
Anyway thank you for the notice as well.
Cheers,
ClaudioForum: Plugins
In reply to: [WP Business Intelligence Lite] Thai TranslationThank you Tom!
great Job!Forum: Plugins
In reply to: [WP Business Intelligence Lite] Table not showing on the Pageplease provide more details.
can you test the table in the admin pane?
does the query return data?
is the page publicly accessible to have a look?
did you set title and name to the table?Forum: Plugins
In reply to: [WP Business Intelligence Lite] Time display not in local timezoneDid you check the actual time on your server? Is it correct?
Otherwise you can always play with the formula to add/remove the 2 hours.
add the minutes to the date.getTimezoneOffset() call
(date.getTimezoneOffset() +- 120)Forum: Plugins
In reply to: [WP Business Intelligence Lite] Time display not in local timezoneYou have to look in the PHP file
nvd3_lineChart.php
under
resources\nvd3\wrappersyou have this code around line 102
chart.xAxis
.tickFormat(function(d) {
return d3.time.format(‘%d/%m/%Y’)(new Date(d))
});replace it with the code above
Forum: Plugins
In reply to: [WP Business Intelligence Lite] Time display not in local timezoneHi Martin,
yes we’re fixing this in the next release.
In the meantime you can fix it by replacing the exiting code with these lines in the concerned chart PHP filechart.xAxis
.tickFormat(function(d) {
var date = new Date(d);
var dd = d + date.getTimezoneOffset() * 60 * 1000;
return d3.time.format(‘” . $this->timeFormat . “‘)(new Date(dd))
});