ftschumann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot Create Spaces Between Paragraphs on PostsSounds like a problem with your theme’s style.css file (or maybe a function). I couldn’t possibility fix it via this forum, but a bypass might be to make sure that you’re in the ‘Text’ editor (not the ‘visual’ editor) and every time you wish to make a blank line, write
& n b s p ; [remove the spaces]
in that line. If that doesn’t work, try adding a few </br>
Let me know if that works.
Best,
Florian
Forum: Fixing WordPress
In reply to: Fatal ErrorStrange. Are all files definitely uploaded to your server?
First thing I would try is make that that the plugins aren’t causing an issue.
Try deactivating the plugins one by one and see if eventually the problem is resolved.
If you can’t access the plugins, just go to wp-content/plugins/ via FTP and add “_past” to the end of each folder name one by one and check is the problem disappears.
If that does nothing, you might want to make sure that all files being called upon are actually present. So it might be worth a try re-uploading (replacing) all WordPress files via FTP. Backup all files before you do this. And make sure not replace the wp-content/plugins and wp-content/uploads folder. Also, make sure not to replace wp-config.php from the home folder.
Best,
Florian
Forum: Fixing WordPress
In reply to: stylesheet and image path issueGreat, glad that worked.
Best of luck with your site.
Florian
Forum: Fixing WordPress
In reply to: Cannot log-in Admin panel after I changed the URLHi Websun,
You need to log into your host’s cpanel. phpmyadmin is usually beside or near the databases option.
Let me know if you have any issues and I’ll do my best to guide you through it.
Florian
Hi,
I’m having the same issue and posted it a few hours ago.
You can read how I temporarily bypass this issue on my post:
https://wordpress.org/support/topic/all-admin-panel-menu-returns-me-to-login?replies=1Quick question, would you be willing to list the plugins you use so I can compare with the ones I use so that I can identify if that’s the problem?
Also what theme are you using?
And finally, are you using https or http?
Thanks,
Florian
Forum: Fixing WordPress
In reply to: Error in Communication with wordpress.orgIt might be a server problem, so you may need to contact your host.
Alternatively, it may be a .htaccess issue, a wp-config.php mistake or even a plugin issue.
Try deactivating all plugins and see if that resolves the problem. If it does, activate each plugin again one by one until the same error comes up to identify which plugin might be responsible.
Forum: Fixing WordPress
In reply to: stylesheet and image path issueDo any of these folder have a .htaccess file within them, also, what have you set the folder permissions to?
Sounds strange, I have no idea really.
Probably a stupid question, but when you go to Settings > Reading, is ‘Discourage search engines from indexing this site’ ticked?
Forum: Fixing WordPress
In reply to: move or delete "posted & date"Easiest quick solution would be to do the following:
Log into you admin panel, then go to Appearance > Editor.
From the drop-down menu on the top right corner, make sure that ‘Twenty Eleven’ is selected.
Scroll down and select Stylesheet (style.css) from the file list that runs down along the right side of the page.
Then search the loaded page for the following:
.entry-meta {
color: #666;
clear: both;
font-size: 12px;
line-height: 18px;
}And replace that with:
.entry-meta {
color: #666;
clear: both;
font-size: 0px;
line-height: 0px;
visibility: hidden;
}Finally, press on ‘Update File.’
You may need to refresh the home page a few times before it loads the updated version.
Let me know if this works – it should π
Best,
Florian
Forum: Fixing WordPress
In reply to: All my options on the left of my dashboard have disappearedDoes everything else on the site work? Especially the front-end?
Have you made any changes to any files with /wp-admin/ or /wp-content/plugins/ ??
It might also be a plugin compatibility issue. Can you provide me with the link to your site?
Best,
Florian
Forum: Fixing WordPress
In reply to: stylesheet and image path issueI don’t think it’s your theme.css stylesheet.
Does the folder
http://www.joannakeller.com/wp-content/themes/Beautique/images/
really exist? It doesn’t appear so.Also, case sensitive, if the folder exists, is Pinterest.png really present?
Best,
Florian
Forum: Fixing WordPress
In reply to: PHP Warnings in Core FilesCan you open the mentioned files and check what the lines referred to say? That might help to figure this out π
Forum: Fixing WordPress
In reply to: Cannot log-in Admin panel after I changed the URLYes, unfortunately, it’s not as straight forward as just changing it on that one page.
You’ll need to make some changes in your phpmyadmin. Make a search /wordpress and remove that part of the address wherever it is referring to the old location.
Also, a reference to the old address (such as /wordpress/index.php) or 2 may be found in the small file .htaccess in your main wordpress folder.
Alternatively, if you wish to fix this without the word (i.e. go back to using /wordpress/ in your address) do a search in your phpmyadmin for the address without the wordpress back, and change to include it again.
Hope that helps.
Best,
Florian
Forum: Fixing WordPress
In reply to: move or delete "posted & date"Chances are that this is set by your theme, which controls the layout and what’s visible on your blog.
You can remove this by editing/removing the php code on the relevant page.
On what page exactly does the “Posted + Date” show up when you? i.e. the page where you read a single blog page, when you view the front blog page, etc.
Also, if you are going to edit theme files, it would be worth looking into creating a child theme, because otherwise your change may be undone when an update is released for your theme.
Best,
Florian
Forum: Fixing WordPress
In reply to: Make section of post viewable only to registered usersThat worked perfectly. Thank you so much.