creativevegans
Forum Replies Created
-
Now they are showing β perhaps they just had not loaded. Sorry for bringing it up π
Forum: Fixing WordPress
In reply to: Email Notification for New Comments Not SendingThank you! Now it works!!!!!!!!! So happy. Thank you again.
Forum: Fixing WordPress
In reply to: Email Notification for New Comments Not SendingHi,
Yes, I wrote to them and all they answered was “Mail functionality is disabled on free accounts.” π
I have an email accout with SMTP hosted with them. Can I somehow myself tell wordpress to use that to send email notifications?Forum: Fixing WordPress
In reply to: Post title editorOk, then I don’t know anything about that. π I hope someone alse can help you.
Forum: Fixing WordPress
In reply to: Email Notification for New Comments Not SendingThank you. It seems like the emails are being blocked. Is there any way I can fix this myself? (I’m using the free hosting plan at freehosting.com, and I haven’t got any reply to my questions thus far.)
Forum: Fixing WordPress
In reply to: Post title editorWhat do you mean with adding an editor to the post title? When you write a post, you can choose the title. If you want to style to look of the title, you need to do that in your child theme’s stylesheet.
Forum: Fixing WordPress
In reply to: Ads between posts: StylingThank you. I value your input.
Forum: Fixing WordPress
In reply to: Ads between posts: StylingGreat! It works. Thanks!
Where would you suggest to put the ads for maximum benefit (I don’t want the site to look spammy)?Forum: Fixing WordPress
In reply to: Page Temporarily UnavailableSorry for my dumb question, but what do you mean with server configuration? Where do I change it?
(I only get the error sometimes, and if I wait a little time, it goes away :S)Forum: Fixing WordPress
In reply to: Move header image down into headerThank you. Unfortunately, it made no difference (by the way, I could not get the .gif transparent).
Forum: Fixing WordPress
In reply to: Style Search Form in Menu BarHi,
Thank you CMSHelpLive! Unfortunately, it did not work. Here is the code I used to get it to work
stylesheet:/* Search Bar */ @media screen and (min-width: 600px) { li.search { margin: 0; padding-top: 6px; float: right; } }functions file:
<?php * @since Twenty Twelve 1.0 */ function menu_search($items){ $search = '<li class="search">'; $search .= '<form method="get" id="searchform" action="/">'; $search .= '<label for="s" class="assistive-text">Search</label>'; $search .= '<input type="text" class="field" name="s" id="s" placeholder="Search" />'; $search .= '</form>'; $search .= '</li>'; return $items . $search; } add_filter('wp_nav_menu_items','menu_search');