paulwpxp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comment box not appearing on posts when date is changedI think it’s this comment setting: Automatically close comments on articles older than [X] days
https://codex.wordpress.org/Settings_Discussion_ScreenForum: Plugins
In reply to: [Simple Author Box] How to add text ABOVE the author box?This CSS will add this text “About the author” to the topmost of this plugin’s div.
.saboxplugin-wrap::before { content:"About the author"; display:block; font-size:18px; }Just put the code in Additional CSS option.
Forum: Fixing WordPress
In reply to: Menu not clickable in Android phoneI’m glad it works π
Forum: Fixing WordPress
In reply to: Menu not clickable in Android phoneThe CSS for search form is blocking it. Removing
bottom:-27px;from#branding .with-image #searchformin style.css line 693 fixes the issue.I suppose you took that CSS from somewhere and wasn’t aware to limit it to big screen only.
I don’t know how much the style.css had been edited, but if that’s the only thing you did I’d suggest revert the whole style.css to theme’s original one and then just put this in Custom CSS.
#branding .with-image #searchform { bottom:-27px; } @media (max-width: 800px) { #branding .with-image #searchform { bottom: auto; } }Forum: Fixing WordPress
In reply to: Trying to update gallery, changes are saving but not publishing?That’s great! I can now see your new gallery too.
Forum: Fixing WordPress
In reply to: Trying to update gallery, changes are saving but not publishing?It could be caching problem, have you tried clearing browser cache? Also, some web hostings do install cache without users knowledge/consent, check with your hosting and learn how to clear it.
It could also be the fact that the Page that’s set as front page hadn’t been saved. Your front home page has many sections and gallery is one of them, saving changes in this gallery section might require clicking save the Page too. Check with your theme documentation.
If problem persists, try disable all plugins and see if some plugin might be the culprit.
Forum: Fixing WordPress
In reply to: My website has changed since updatesthe format and alignment has all changed
This sounds like theme updated to new version and it might have some changes that come with it, or your previous theme had been edited/modified and upon theme update they got rewritten (which in this case there is no way to revert it unless you have theme files backup somewhere).
Did you have some changes made to theme template prior? Does your theme have some options setting that might get reset during update?
If the newly changed format/alignment doesn’t affect functionality I think it’s fine to just go with it. To make the theme look like it was before we need to know specifically what’d been done to the theme prior to update.
Forum: Fixing WordPress
In reply to: Image Alternate Text and Title Attribute DisappearFor good practice on accessibility reason, since WP 3.5 the image title is not used when inserting img into post content, itβs still be used as title for media/attachment page, I guess.
Use this plugin if you have a good reason to use image title the way it used to be.
https://wordpress.org/plugins/restore-image-title/Accessibility: Title attribute should not be added to image markup by media.php
https://core.trac.wordpress.org/ticket/18984Forum: Fixing WordPress
In reply to: My “Home” page is not showing under “pages”So what should I do?
It depends on what you are trying to achieve.
If you want a regular Page to be set as site’s front page, just make a Page and fill in content (that you normally do with Page), give it whatever title but for simplicity just title this Page as Home or Front, and then set this page as site front page, instruction is in the above link.
If you want to make your site front page do thing that normal Page could’t do, we need to create a template (WP php template), and this is not what normal users can do.
Should I make another page and transfer all my content to the new page, and delete the homepage?
The content as seen in your front home page right now is automatically pulled from posts and displayed in the fashion that is controlled by your theme’s template, so we can not move content in this page to a regular WP’s Page, also we can’t delete it.
Or will the homepage always remain?
Yes, but if you want to change how things displayed, you can make your own template or use a regular WP’s Page and set this page as front home page.
Forum: Fixing WordPress
In reply to: My “Home” page is not showing under “pages”In general “Home” refers to the main archive of blog (posts listing) page. This is a page that WP automatically creates and it is not an actual Page. The content of this page and how it has all the posts display is totally depend on the theme’s template.
Sometimes site owner want to set a Page as website’s front page, that page can be name whatever but usually it has “Home” as title.
https://codex.wordpress.org/Creating_a_Static_Front_PageForum: Fixing WordPress
In reply to: Website disappearedThere must be some kind if misunderstanding here. The site in question is not built with WP. There is no reference to WP in the source code whatsoever.
Are you linking to the correct url?
Forum: Fixing WordPress
In reply to: page URL displays all posts instead of the pageYou’re welcome, I’m happy to help out community here π
In regard to the theme and Chrome, please consider posting it in theme’s own sub-forum, so the dev can help identify the problem.
https://wordpress.org/support/theme/publishable-mag
Sometimes, js conflict in WP admin comes from theme/plugin using too many scripts.
Forum: Fixing WordPress
In reply to: Help! Multiple “warnings” appearing on my blog.You’re welcome! I’m glad you finally found it π
Forum: Fixing WordPress
In reply to: Pages that were working fine have now disappearedThe theme is Sydney theme and it has custom post type = service, that page is a so called single page (of a post type = service).
The archive is showing that page but the single page of it returns 404
http://www.harmonytherapieslondon.co.uk/?s=vitamin+boostingTry visiting Dashboard β Settings β Permalinks, just visit and do nothing, then go to that vitamin boosting page again see if it’s now working.
If that doesn’t do anything, then the problem might be some plugin conflicts or maybe some compat issues after update.
Forum: Fixing WordPress
In reply to: Can’t get access to my WP siteDo you remember what you did just before this happen? Did you install any new plugin? Did you update WP core?
I could see from google cache that the theme is from around 2016 and WP version is 4.8.5, it’s possible that WP might upgrade itselft (auto minor update) and it has conflict with theme or plugin in use.
Login to your server via cPanel or sFTP and navigate to
/wp-content/plugins/[plugin-folder-name]and rename all the plugin folders (just add something like-oldto all of them), this will disable all plugins and then see if you can now login to WP as normal.If that doesn’t do it. Disable the theme, again via cPanel or sFTP and navigate to
/wp-content/plugins/[theme-folder-name]and rename your theme’s folder.If those above don’t fix the issue, it’s time to manually update WP. Read the instruction here https://codex.wordpress.org/Updating_WordPress#Manual_Update and make sure that you do have the complete backup before doing the manual update.