gamelust
Forum Replies Created
-
Forum: Plugins
In reply to: [CMB2] Need Help: Weird Issue with Timestamps & the DatepickerYes, the data in the database is always correct. The only time I run into problems is when viewing the post to update it, or when it’s displayed on post type list in the back end. Also, as I said before, I tried to see if disabling all plugins had any effect, it did not.
The thing that really throws me off is that this is not consistent at all. Sometimes the dates are correct, other times they’re not. That’s why I’m having trouble pinpointing a cause, I can’t find a consistent result or cause.
Here’s some screenshots of what I’m running into.
Here’s the back end for the Class post type.
Picture of the metaboxes on an individual class which has bad dates in the date picker.
Not sure if any of this sheds any light on what may be happening here.
Could it be the sheer volume of meta data this site generates? They delete the entire schedule and re-upload a new schedule every single day and have done so for the past 3+ years.
Forum: Plugins
In reply to: [CMB2] Need Help: Weird Issue with Timestamps & the DatepickerOhh, I wish it were that simple. No, there are quite a bit of metaboxes on this site on a wide variety of post types. It was an existing site and this bug quite frankly came out of nowhere. Everything had seemed to work fine until the recent WordPress upgrades. This particular site has been up for at least 3+ years.
I’ve included all the metaboxes that we have created for this particular post type into pastebin. Here is the link. https://pastebin.com/Wj43y8kL
Forum: Plugins
In reply to: [Analyticator] Not working with latest WPProblem has nothing to do with your WP version, it was a core change in the GA API. The ga:timeOnSite metric was depricated back in April.
Metric – ga:timeOnSite – Use ga:sessionDuration instead.
GA Core Change LogIn order to fix the chart on the dashboard you’ll need to edit the plug-in.
It’s line 454 in google-analytics-summary-widget.php, just replace ga:timeOnSite with ga:sessionDuration and it will work again.
should look like this…
$stats = $this->api->getMetrics('ga:visits,ga:bounces,ga:entrances,ga:pageviews,ga:sessionDuration,ga:newVisits', $this->date_before, $this->date_yesterday);Forum: Plugins
In reply to: [Analyticator] PHP fatal errorsThe ga:timeOnSite metric was depricated back in April.
Metric – ga:timeOnSite – Use ga:sessionDuration instead.
GA Core Change LogIn order to fix the chart on the dashboard you’ll need to edit the plug-in.
It’s line 454 in google-analytics-summary-widget.php, just replace ga:timeOnSite with ga:sessionDuration and it will work again.
should look like this…
$stats = $this->api->getMetrics('ga:visits,ga:bounces,ga:entrances,ga:pageviews,ga:sessionDuration,ga:newVisits', $this->date_before, $this->date_yesterday);- This reply was modified 8 years, 9 months ago by gamelust.