dtlevin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hide contentSorry to be a bother but I can not find one of the pages you are referring to? Can you post a link that show the problem?
Forum: Fixing WordPress
In reply to: ERROR: Invalid username. Lost your passwordIf you have phpAdmin for your DB then then you can create a new user like this
These instruction with images can be found in the article I pasted before
https://codex.www.ads-software.com/Resetting_Your_PasswordInstead of editing a user just create a new one. and then follow the rest of the directions regarding the password etc.
Through phpMyAdmin
This article is for those who have phpMyAdmin access to their database. Note: use phpMyAdmin at your own risk. If you doubt your ability to use it, seek further advice. WordPress is not responsible for loss of data.1. Begin by logging into phpMyAdmin and clicking databases.
2. A list of databases will appear. Click your WordPress database.
3. All the tables in your database will appear. If not, click Structure.
4. Look for wp_users in the Table column.
5. Click on the icon for browse.
6. Locate your Username under user_login
7. Click edit (may look like a pencil icon in some versions of phpMyAdmin)
8. Your user_id will be shown, click on Edit
9. Next to the user_pass is a long list of numbers and letters.
10. Select and delete these and type in your new password.
11. Type in the password you want to use. Just type it in normally, but remember, it is case-sensitive.
12. In this example, the new password will be ‘rabbitseatcarrots’
13. Once you have done that, click the dropdown menu indicated, and select MD5 from the menu.
14. Check that your password is actually correct, and that MD5 is in the box.
15. Click the ‘Go’ button to the bottom right.
16. Test the new password on the login screen. If it doesn’t work, check that you’ve followed these instructions exactly.Forum: Installing WordPress
In reply to: Install WP in different subdomainsDoes your hosting support Multisite? Some do not.
Can you post links to the other sites as well?
Forum: Fixing WordPress
In reply to: Problem displaying frontpage!I can’t tell what exactly is happening yet. When it first loads the page is messed up, then if you click on a link and then go back the the page loads fine. (the food looks great btw) I did see this at the bottom of the page.
Generated by Endurance Page Cache
The code is different when it loads a second time than the first.
Do you have a page cache running on your site? If you do try emptying it out and have it rebuild.
- This reply was modified 7 years, 3 months ago by dtlevin.
Forum: Fixing WordPress
In reply to: Reducing space vertical between footer widgetsStrange I just added both to the inspector and did not get 4 columns. None of the code you have there would affect the margins between the items. What are using that for?
Forum: Fixing WordPress
In reply to: Reducing space vertical between footer widgetsSo there are a few places where there is a margin or padding. Here is some css that will take out some of it for you.
This one will take out the 40px of margin on the bottom of each footer widget, it looks like you have 4? You can change the number ot whatever amount of margin you want
.footer-widget aside { margin-bottom: 0px; }
This take out the padding on the top and bottom on the disclaimer paragraph you have. You can also set these number to whatever you want if you want some padding.
.panel-grid { padding-top: 0px !important; padding-bottom: 0px !important; }
Forum: Fixing WordPress
In reply to: Reducing space vertical between footer widgetsIt looks like you are running some kind of content protection script, it doesn’t allow right clicking to inspect the code or see the code with dev tools. With that on I can not look at the code accurately.
I just checked your site at different browser sizes and everything was working correctly. Have you tried emptying your cache?
What images are specifically talking about?
Forum: Fixing WordPress
In reply to: Hide contentCan you post a link to the site?
Forum: Fixing WordPress
In reply to: Reducing space vertical between footer widgetsCan you post a link to the site? Then I can see what code you will need.
Forum: Fixing WordPress
In reply to: Editor Problem in 4.9.1Now try turning off all the plugins. And then turn them on one by one and test each time you turn one on. Then you will know which one is giving you trouble.
Forum: Fixing WordPress
In reply to: ERROR: Invalid username. Lost your passwordSo you do not remember what you used for the username and password on step 9? or they do not work?
If you can get into the DB you can reset the admin name and password there and then log in.
Here is the codex article on it
https://codex.www.ads-software.com/Resetting_Your_PasswordForum: Networking WordPress
In reply to: Element loading problemCan you post a link to the site?
Have you checked your logs to see if there are any errors?
Or turn on debug mode
https://codex.www.ads-software.com/Debugging_in_WordPressThis should at least point you in the right direction or you can post the information here.
Forum: Localhost Installs
In reply to: Message “object not located”“I am trying to set up a web page that I have with wordpress and that has a section made with joomla (the start menu).”
You shouldn’t mix Joomla and WordPress, that might be your problem.
Forum: Installing WordPress
In reply to: Install WP in different subdomainsIt sounds like what you want to do is create a WordPress MultiSite. Where you can use one installation of WordPress to run a number of different sites.
Here are a few articles explaining it more
Codex:
https://codex.www.ads-software.com/Create_A_NetworkWPBeginner
https://www.wpbeginner.com/glossary/multisite/WPBeginner
https://www.wpbeginner.com/wp-tutorials/how-to-install-and-setup-wordpress-multisite-network/