if ($type == 'checkbox')
{
$ph = '';
$ph .= '<label for="'.$DOMid.'" id="'.$DOMid.'Label">'.$label."\n";
$options = explode(',', $values);
foreach ($options as $eachOption)
{
$option = explode('(', $eachOption);
$option = str_replace(')', '', $option);
if (isset($viewUser[$name]))
{
if ($viewUser[$name] == 'on')
{
$ph .= $option[0].' <input type="checkbox" id="'.$DOMid.'" name="'.$name.'" checked="checked" />'."\n";
}
else
{
$ph .= $option[0].' <input type="checkbox" id="'.$DOMid.'" name="'.$name.'" />'."\n";
}
}
else
{
$ph .= $option[0].' <input type="checkbox" id="'.$DOMid.'" name="'.$name.'" />'."\n";
}
}
$ph .= '</label>'."\n";
// Set the Placeholder
$modx->setPlaceholder('form.'.$name, $ph);
}
}
have you cleared the cache? that always gets me.
Isn’t this rather controlled via CSS? Do you have a live URL to check?
For some reason, after I completed the registration form and hit the "register"-button I got stuck on http://symphonicheaven.com/my/register/create/
Nothing happens. No redirect, no message, nothing. Just a white screen. Turns out, when I wanted to register again, it said "already registered".
It would be nice to see some kind of confirmation screen so the user knows what’s going on...
Then, after logging in, I don’t see any Edit Account page, nor any link called "myCollection" or similar. Nor a "logout" link, for that matter.
Frankly, it’s all very confusing o_O
Nope. I even deleted all cookies from your site, logged in again, but after that it’s the same: No "edit profile" or logout-links. No dropdown menu either.
Latest Firefox/WinXP here, if that matters...