kylefitzp
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Can’t access sub-domain dashboard of multisite networkHi Davide, I never found out what was wrong. When I reinstalled it, everything worked fine, so I’m guess that I did something wrong during setup. Sorry that I can’t help more.
Good Luck!
Forum: Networking WordPress
In reply to: Can’t access sub-domain dashboard of multisite networkHi,
I was able to get everything to work, by wiping my wp install and starting over. I think I did something wrong with the htaccess code the first time around.
Never mind! Dumb mistake on my part. Your instructions were perfect!
So, I’m trying to add place holder text for Mailchimp widget following the instructions above, but I must be missing something. Is the above placeholder=”Your best email….” written exactly as it should be (minus “your best email…”)?
This is what I have:
<input type=”text” size=”4″ maxlength=”4″ value=”” name=”‘.esc_attr($opt.'[detail2]’).'” id=”‘.esc_attr($opt.’-detail2′).'” class=”mc_input mc_phone” />
‘;
break;
case ’email’:
case ‘url’:
case ‘imageurl’:
case ‘text’:
case ‘number’:
default:
$html .= ‘
<input type=”text” size=”18″ value=”‘.esc_html($var[‘default’]).'” name=”‘.esc_attr($opt).'” id=”‘.esc_attr($opt).'” class=”mc_input”/>’ placeholder=”Your best email….”;
break;Thanks for your help!