Ajith Edassery
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Serving static files from a cookieless domain (w/ MaxCDN)Hey, thanks for this MaxCDN setting 🙂 Have been fighting the ‘cookieless..’ report for a whole. It just worked with the 7 days setting as angelcosta mentioned. The ‘set cookie domain’ was already on.
Forum: Plugins
In reply to: [W3 Total Cache] Don't upgrade to v. 0.9.3 for nowHi dfumagalli,
Thanks for your reply. In fact, I have done everything from cache priming to multiple configurations. What I see is that, once I access the page, the TTFB comes down drastically for the next few minutes. If I access the site after a long time, it is slow again. I used a reasonably powerful VPS server. I guess, I need to dig into the header details as you suggested.Forum: Plugins
In reply to: [W3 Total Cache] Don't upgrade to v. 0.9.3 for nowFolks, I am running 0.9.2.4 (reverted from 0.9.3 after initial failure) and facing some issues. The inconsistency is with TTFB when I test it on webpagetest. Sometimes it gives an A but mostly goes back to rating C soon. Here’s the link to the affected site. Everything else works perfectly except the time to first byte.
Has 0.9.3 done any good with respect to initial byte speed?
Forum: Fixing WordPress
In reply to: google analytics counts admin-loginHave you tried wrapping the Analytics code within two lines of code that checks if the user is logged in? This may help with older versions of WP to project more accurate page views as well.
The code would be something like this:
<?php if (!is_user_logged_in()) { ?>Insert your Google Analytics code here
<?php } ?>
For more info and an alternate approach, please check out the post below:
http://www.dollarshower.com/exclude-wordpress-admin-user-page-views-google-analytics/
cheers,
AjithForum: Fixing WordPress
In reply to: remove date in Search engine description?jfgreen,
You may check out this thread for a possible solution that worked for me at least.Forum: Plugins
In reply to: How Do I Stop Google Showing the Date in the Front of my Description?Check out this thread for a possible solution that worked for me.
Forum: Fixing WordPress
In reply to: how to remove date from GoogleI got a workaround for this problem though nobody really knows why Google would do it for certain blogs where as it’s not there for others. The behavior varies between blogs using the same theme.
Check out my post for the work around.
How to remove date from Google search description?
Hope this helps..
Forum: Fixing WordPress
In reply to: Help needed to remove date from Google meta descriptionI did a work around to solve this problem and it seems to work for me… Check out this thread
Forum: Fixing WordPress
In reply to: Post date appears in Google Search ResultI just figured out how to remove it and blogged about the same. Basically, you have to mask the date via image date logic or javascript so that Google wouldn’t pick if for indexing.