Obadiah
Forum Replies Created
-
Forum: Plugins
In reply to: [Adminimize] Can’t see link to logout of WP adminI had a similar issue. I was able to fix it by doing the following:
In the plugin admin page, towards the bottom of “Admin Bar Back end Options”, make sure “No Title!” Group is not selected.
Forum: Plugins
In reply to: [Super Custom Login] Login page not loadingAs long as your custom logo is saved as “login_logo.png”, and is located in your current theme’s images directory.
Example: YourDomainName.com/wp-content/themes/YourTheme/images/login_logo.png
Make sure the /images directory is located in your theme’s main directory, and not a sub directory. If not, just create your own.
I hope that helps!
Forum: Plugins
In reply to: [Super Custom Login] Login page not loadingdaryless, if you’ve installed WordPress in the root directory, you should be able to find your login page at yourdomainname.com/wp-admin
(replace yourdomainname with your actual domain name)
Forum: Plugins
In reply to: [Simple Lightbox] Stopped working for meI also noticed Simple Lightbox plugin wasn’t working after updating to WP 3.5 or 3.5.1.
Following your advice above, I found a different plugin was loading jQuery.
After removing the jQuery inclusion code, Simple Lightbox seems to work fine!
Thanks!
Forum: Plugins
In reply to: [Super Custom Login] where do i change the logo and settings?Also, please double check the location and name of the logo file. It should look just like the following example with your actual domain name substituted for YourDomainName.com and your current theme name substituted for YourTheme.
YourDomainName.com/wp-content/themes/YourTheme/images/login_logo.png
Some WordPress themes have multiple levels of sub directory structure. Make sure the /images directory is located in your theme’s main directory, and not a sub directory. If not, just create your own.
Forum: Plugins
In reply to: [Super Custom Login] where do i change the logo and settings?Could you send me the URL of your login page? If so, I could take a look and try to help you troubleshoot. If you don’t want to post it publicly, you can send it privately via email at http://middleearmedia.com
Forum: Plugins
In reply to: [Super Custom Login] where do i change the logo and settings?First, you must create your own logo on your computer with a graphic editing program such as Photoshop or Gimp. Keep in mind it should be 328 pixels wide by 84 pixels high at 72 ppi(pixels per inch). I’ve included a template which you can use to ensure your custom logo fits properly.
To find the template, you’ll need FTP access to your server, or you can download the plugin to your computer rather than installing it directly through WordPress. There are two files. One is called login_logo.psd which is a multi-layered Photoshop file. The other is called login_logo.png which is a transparent PNG. Either can be used as a template.
Your custom logo must be saved as a transparent PNG named “login_logo.png”, and must be placed in your current theme’s images directory.
Example: YourDomainName.com/wp-content/themes/YourTheme/images/login_logo.png
You’ll need access to the file structure on your server in order to place your custom logo in the correct place.
I hope that helps!
Forum: Localhost Installs
In reply to: DB_Options table marked as crashedYou’re welcome. I’m glad to help. I spent too much time trying to solve a similar problem before figuring it out on my own.
Forum: Fixing WordPress
In reply to: HELP PLEASE! malware ruining my lifeIt could be hiding in your database. Did you reinstall the old database? Make sure to find and remove any references to “you need to pay for this crypt” or whatever other code you’re seeing.
Also, make sure the computer you’re logging into your site with is free of malware, or it’ll keep gaining your new passwords and reinfecting your site.
Forum: Fixing WordPress
In reply to: wp_options: Table is marked as crashedI had a similar error recently. You should be able to repair it in phpMyAdmin. Log into phpMyAdmin, click on your database. Select the table that is crashed. Underneath, there is a drop down options box that says “With selected:” Choose Repair Table.
Always backup database first. Hope that helps.
Forum: Localhost Installs
In reply to: Install an online Database for editing at localhostGlad to help!
Forum: Fixing WordPress
In reply to: Showing links in category 'page'You’re welcome!
Forum: Fixing WordPress
In reply to: Showing links in category 'page'Make sure the loop in your theme is using the_content() rather than the_excerpt().
Forum: Fixing WordPress
In reply to: How to build a recipe "template" for users to contribute their own?Forum: Localhost Installs
In reply to: How do I install a backup WP website to wamp localhostYou have to change the php.ini file which is probably located in C:\wamp\bin\apache\php.ini if you are using WAMP or something similar. Or maybe even C:\wamp\bin\apache\Apache?.?.??\bin\php.ini
Anyway, open php.ini and search for upload_max_filesize. Change it’s value to the desired size. Then, search for post_max_size and give it a larger value than upload_max_filesize. Search for memory_limit and give it a larger value than both upload_max_filesize and post_max_size.
Restart the WAMP server and you should then be able to import a larger database.