samandjt
Forum Replies Created
-
To me (not an expert), the issue appears to be in gad-data-model.php, line 158:
$current_date=$start_date_ts + (60*60*24*$count);I believe $start_date_ts is not the correct value, might be a scope issue.
I replaced this code with
$current_date= time() + (60*60*24*($count-30));this basically reacalculates $start_date_ts as a part of the $current_date calculation
I have the same issue.
To me (not an expert), the issue appears to be in gad-data-model.php, line 158:
$current_date=$start_date_ts + (60*60*24*$count);I believe $start_date_ts is not the correct value, might be a scope issue.
I replaced this code with
$current_date= time() + (60*60*24*($count-30));this basically reacalculates $start_date_ts as a part of the $current_date calculation
Hope it helps,
Sam
Forum: Networking WordPress
In reply to: My users can't see settings of some themesWow. Thanks andrea_r!
Quick search of wp.org and your solution saved me hours of digging around.
You are awesome!
Sam
Forum: Plugins
In reply to: [Audio Player] [Plugin: Audio Player] jQuery conflict in Internet Explorer 8I now have the same issue. Works in FF but not IE8.
When you say you remove “my call to jQuery” what specific call are you making to jQ that you removed?
Thanks.
Sam
Forum: Fixing WordPress
In reply to: Can’t adjust media file size since upgrading to 2.7Also, the fixes (in particular the php-gd) do not appear to be retroactive. So only new pictures added will have the option. Pictures previously loaded do not appear to have the size options even after the fixes.
Hope this helps.