Andrea Garza
Forum Replies Created
-
update_option('siteurl','http://example.com'); update_option('home','http://example.com');Add that back to your functions.php replacing example.com with your url (be sure to add www if you want to force www in your url).
then you should be able to get your home page and dashboard,
THEN, go to permalinks and update your permalink (you don’t have to change it just press update), this will update your .htaccess file, then your site should work just fine.Make sure the urls in settings < general are correct
THEN go to functions.php and remove those statements you put there. You’re set
Forum: Fixing WordPress
In reply to: Menus not displaying correctly.also for grins try shortening the link title names in the menu, it may be the container its in is squashing it together as well
Forum: Fixing WordPress
In reply to: Menus not displaying correctly.It could be they unchecked the assign the menu to its theme location ..
Appearance < menu < menu settings < theme locationForum: Fixing WordPress
In reply to: Menus not displaying correctly.I can’t see the issue from the css … if you want you can go to andreagarza.com and fill out my contact form (dont want my email address on the forum) and send me your admin login and I can take a look and see if I can figure out what is going on.
Forum: Fixing WordPress
In reply to: Edited my theme = broken dashboard and site :(if you can’t get into the dashboard .. then via cpanel, go to wp-content/themes and go to the simplemag theme folder and open the header.php file and copy the contents and put them here
Forum: Fixing WordPress
In reply to: Edited my theme = broken dashboard and site :(copy and paste (using the “code” button above and then at the end of it press /code button .. ) the contents of the header.php file .. you can find it under Appearance < Editor then find header.php and copy everything out of it and paste it here
Forum: Fixing WordPress
In reply to: how to hide "?>" in the header.php fileI am assuming you just accidentally left off the </title>
if not, you need to close the title tag usig </title> just after the last ?>Forum: Fixing WordPress
In reply to: Dashboard usage and loading issues after updateFirst, try manually upgrading it yourself in case something went wrong during upgrade. If that doesn’t fix it then you most likely have some kind of plugin incompatibility issue. In which case you can turn them all off, make an update and see if all is fixed. If it is, then start enabling them one by one and make an update and when you see the issue arise again, then you will know which plugin is the culprit. Then you can turn them all back on except the problematic one.
Forum: Fixing WordPress
In reply to: Missing category after 3.8.2 updateI hover over Oakland County, click on Birthday parties, takes me to this page:
http://oaklandcountymoms.com/category/oakland-county/birthday-parties/and lists all posts for birthday parties (paginated, 4 pages of them) ..
It is not showing up in your Recent Articles on home page however.
Can you post the php from your index.php or homepage template (whichever your theme is using) here.Forum: Fixing WordPress
In reply to: Right sidebar not aligned to top of 1 webpageyou should also fix the error at the top of your site
Paste your Bing Webmaster Tools verification code hereForum: Fixing WordPress
In reply to: Permalink structure has numbers at endsure thing, have fun
Forum: Fixing WordPress
In reply to: Right sidebar not aligned to top of 1 webpageI suspect you are missing 2 things from what I can tell, I know your
</div><!-- end primary -->
is actually the end div for your wrapper div, so you have missed a </div> in there, plus your sidebar div needs to be inside your div id=”primary” div.I suspect you have a custom template for testimonials. If you will post the code from your entire testimonials template then I can help you troubleshoot it if you can’t figure it out from the info above.
Forum: Fixing WordPress
In reply to: Permalink structure has numbers at endits because you’ve made the same page several times and named it the same thing. Everytime you create a new page and name it the same as something you already have, it will add a 1 or 2 or whatever at the end of the url.
You need to edit the SLUG and remove the dash and number from it, then press OK, then press update.
The slug may be the little url under your title in the page while editing it, or you may see below the textbox area a place that says “slug” where you can edit it there, if you don’t see it, then go to screen options at top right corner of editor on that page and put a checkmark by “slug”, then close the screen options, then you can see the slug.
Be sure to press OK, after editing the slug, then dont forget to press Update (republish the page) .. If you have any links hardcoded to the old links be sure to update those to your new page links.
Forum: Fixing WordPress
In reply to: Menus not displaying correctly.would need to see the result .. ie, the site url
Also what code are you using to pull in the menu (list pages or the custom menu, where you edit the menu under Appearances < Menu)?
Forum: Fixing WordPress
In reply to: Can't open my site after editing .htaccess fileI just realised there are 2 directories with .htaccess files,
1) /public_html
2) /wwwThese are the same place (www is just a shortcut to public_html).
For now, let’s just remove this statement from just before the
# END WordPress statement in your .htaccessRewriteEngine on RewriteCond %{HTTP_HOST} !^www\.viralarchives\.com RewriteRule (.*) http://www.viralarchives.com/$1 [R=301,L]so that the ONLY thing in your .htaccess file is
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressThis should fix any strange errors. If so, then from there we can work on getting www forced into the url. That said, I use hostgator and simply updating the url in the general settings to have www in it (both the urls you see there in Settings < general and it forces www.
Are you directing your domain to hostgator via using their nameservers or are you pointing only the A record to their IP address? If using their nameservers it should work flawlessly without any .htaccess hack. If pointing A record to an IP then you may not have it pointed for www also .. you need to get with your DNS records and that would be your issue if that is how you’re pointing it to your hosting.