jasonag77
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom Header QuestionHi John,
You’ll want to edit the templates\header.php file, and look for the following piece of code about 15 lines from the top:
<div id="caption"> <h1 id="title"><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1> <div id="tagline"><?php bloginfo('description'); ?></div> </div>Simply remove the
<div id="tagline">line, so the code looks like this:<div id="caption"> <h1 id="title"><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1> </div>You’ll still have the H1 for your SEO, but the caption will be gone. Hope this helps!
Forum: Fixing WordPress
In reply to: How to hard code a specific user on wp-login?That did it! Actually, I went one step further and made an input type=”hidden” so users won’t even see anything other than the password field.
Thanks for pointing me in the right direction!
Forum: Fixing WordPress
In reply to: Google Maps and Adding a Logo to the title,Two google maps on a page shouldn’t be a problem. I think you’re missing some img tags in the cell where you’re wanting to place the actual map.
Forum: Fixing WordPress
In reply to: php_curl.dll – Access DeniedHi ghostboy,
I take it this is running on a server with IIS? Were you installing curl or is this something your provider was doing? Are you able to change permissions on files such as libeay32.dll and ssleay32.dll?
Hoping to get some more answers to help narrow down what the problem is…
Forum: Installing WordPress
In reply to: mac install (stuck at step 4)There’s another good tutorial that came out fairly recently here. Lots of good pictures to step you through. Hopefully it will help you troubleshoot!