ehoanshelt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with PHP Header() urlHey, this is more of a php question than a WordPress question but the one thing I would make sure of that no PHP is being executed before your header statement. If there is, them the php header information has already been sent.
I would look into doing a JavaScript redirect and populate the JavaScript with php variable.
Forum: Fixing WordPress
In reply to: Captions do not fit around imagesNo link attached
Forum: Fixing WordPress
In reply to: My admin page and page site not loadingGoogle Adsense is not support by these forums ?? Sorry!
But if I had to guess….make sure you are putting in your birthday correctly
Forum: Fixing WordPress
In reply to: My admin page and page site not loadingLooking at your whois, looks like you are on dreamhost. Dreamhost has been having some trouble today.
https://www.dreamhoststatus.com/
Let them fix it up there server issues and you should be back up and running.
Log into your server via FTP and find the wp-config.php file. Look for the require_once code and remove the // from the wp-settings.php.
That should fix it up
Forum: Themes and Templates
In reply to: How to remove extra spacing on a page?Look at your skin.css style sheet on line 2756
you will see this:
.page_404 { margin-top: 270px; text-align: center; }
Change that margin-top to like 40px or something
Forum: Fixing WordPress
In reply to: Old website still up, how to create new oneExactly ??
Welcome to development 101.
If you want to go even further, I would recommend local development on your machine. Easier and does not require a internet connection. You can use a tool like https://serverpress.com/products/desktopserver/ or research WAMP on google.
You would need to use CSS. I’m not familiar with the theme but there is normally a spot for custom CSS. This is the CSS you need:
.page-title, #sidebar-wide .widget-title, #sidebar-footer-wide .widget-title { font-style: normal; }
Forum: Themes and Templates
In reply to: [GamePress] Font Size and ColorHey Zack,
There is alot of text on these pages, what exactly would you want white and larger? The main text, headers, links, etc…
Forum: Fixing WordPress
In reply to: Captions do not fit around imagesWe would need to see an example of the issue ??
Once we see that, we can assist further.
Thanks!
EricForum: Fixing WordPress
In reply to: Create New wp_users Table in phpMyAdmin (cpanel)First off, do you have a backup you could restore from? That would be the easiest method. One thing you might want to check for is that PHPmyadmin isn’t hiding the wp_users table. PHPmyadmin will use pagination to split up the tables into pages. Be sure that wp_users isn’t on a different page in phpmyadmin.
If all that checks out, here is a SQL line you can run to recreate the tables:
then you will just need to fill in the data once it is created.
Forum: Fixing WordPress
In reply to: Old website still up, how to create new oneIt depends on how you setup your new host area. If your new wordpress and host is expecting your live domain, then you need to fool your local host file to point your domain to the new host area.
Here is how to do it on a MAC:
https://osxdaily.com/2012/08/07/edit-hosts-file-mac-os-x/If you are using windows, use google to search for “Edit host file on [what ever your current operating system is]”
Essentially, if you make this edit to a host file
111.111.111.111 yourdomain.comThen when you go to the browser ONLY on your local machine with yourdomain.com go to the 111.111.111.111 IP address.
Hope this helps!
Forum: Fixing WordPress
In reply to: Adjusting theme and change in colorThis would need to be solved using CSS:
This will remove all the purple from your site:
.content-n #content .container { background: none repeat scroll 0 0 transparent; }
If you want to change the purple to a different color, use this:
.content-n #content .container { background: none repeat scroll 0 0 #FFFFFF; }
Change #FFFFFF to what you want it to be.
Forum: Reviews
In reply to: [Maintenance Checklist] Damaged siteI have installed the plugin on WP 3.5 and no errors happened.
I also installed it on a fresh copy of twenty twelve and eleven with no errors.
If you could please let me know what the error said, I can assist you more.
Thanks!
Forum: Reviews
In reply to: [Maintenance Checklist] Damaged siteHey!
I’m the plugin author. I’m looking into this issue now.
For future reference with plugin reviews, please make sure you contact the plugin author also to let them know you are experiencing an issue before writing a bad review. ??
I’ll let you know when I solve this.
Thanks!