Site switches to mobile theme in IE 10 desktop. I've checked all the settings and the only setting change that makes a difference is shutting the theme switching option off. -_-
I've tried using browsecap and the included Mobile Tools Detection and still nothing's changed. Also tried shutting the cache off, still nothing.
I've already posted this on the "mobile tools" module bug pages but I was wondering if anyone had a quick fix or someway to trouble shoot this. (and it will most likely take a while for them to get to my question)
I'm looking for a way to send an e-mail newsletter to all users of my drupal D6 site, with the following requirements: a) Rate limit of 1 e-mail every 10 seconds (to stay within my Amazon SES quota). b) easy opt-out (by visiting a personalized link in the newsletter).
I am looking at some modules like simplenews, but I don't see how they fulfil the rate limit requirement. I would prefer a solution that just handles the opt-out, while I send the actual email through other means (Using Amazon SES SDK). But I'm open to a complete solution as well.
Profile values are not available in views. I need to user_load every time, when I use global $user for profile values. But when I use hook_user for login it has all values of profile.
function demo_user($op, &$edit, &$account, $category = NULL) {
if ($op == 'login') {
global $user;
flog_it($user);
}
}
Log shows all the values with profile values, but when I go any view the "global $user" profile values are missing. Is there any way, to avoid user_load all the places or I should use in the same way.