RossMitchell
Forum Replies Created
-
Please provide the links to the different pages involved. Also the picture you mentioned.
Forum: Everything else WordPress
In reply to: WP Hosting provider seeking advice for WP clientsI have found text chat in web browser to be very productive, you get a session ID number from the hosting management login, it is used for user validation.
It is good if the support person can address subscription and account issues as well as technical ones.
I am sure that the support person is dealing with a few clients at a time, this is OK as long as they remain responsive.
I can copy/paste things between my site and computer as can they.
For some time now WordPress has done auto updates, this is mostly a good thing, it should cover CORE only, themes and plugins should not auto update. On one occasion a theme failed when the javascript version updated, it broke the theme, it was unworkable, I had to turn off auto updates and revert to an earlier WP version until the theme was revised. This is much more likely with themes and plugins.Forum: Installing WordPress
In reply to: Problem with my siteI routinely setup sites on both localhost and various hosting servers, I just follow the instructions, though the 5 minutes has some poetic license.
However the steps have to be done in the nominated order. I notice that you FTP then admin/install BEFORE the config file and database, bound to end in tears.I copy/paste everything possible in the text around configuring and setup, nothing gets re-keyed EVER, this includes database names, usernames, passwords etc.
I have the following organisation of local files:
wpsetup/ core/ wordpress494AU wordpress491AU noncore/ config/ wp-config-sample.php wp-config<client>.php (all clients like this) themes/ storefront224/ storefront-child/ plugins/ testimonialslider295/ z.maintenance robotsBAN.txt robotsALLOW.txt googleWebmasterValidation.htmlSo that using filezilla I can instigate the core file upload, and then put up selected themes and plugins and housekeeping files too. Then some get renamed.
Setting things up this way is really boring.
Forum: Fixing WordPress
In reply to: responsive menu and js not workingMixed http and https could be doing all sorts of things.
Have you enabled debugging ? Examined the error logs ?
Suggest that you also review:
https://make.wordpress.org/support/user-manual/web-publishing/https-for-wordpress/Forum: Fixing WordPress
In reply to: Kale Theme Stylesheet (style.css)Are you really sure you are viewing the site you restored ? Clear cache, try a new computer ?
Forum: Localhost Installs
In reply to: Using Wamp Issues with WordPress 4.9.4I am running WPv4.9.4 just fine on localhost, Ubuntu 16.04 i5 x64, Apache2, have you tried a different theme or eliminating plugins ?
The healthcheck plugin could help here:
https://wordpress.org/plugins/health-check/There was a js package update that happened back in the 4.5 era, it hit some themes, I wonder which side of that upgrade 4.5.2 is ?
Forum: Fixing WordPress
In reply to: Transfering custom CSS to child themeOf course you backup your theme and plugin files and database before doing anything.
My concern comes from reading suggestions that updating the theme may trash the custom CSS.
If you have edited the .css files of the theme, then these edits will be lost. If these edits were in a child theme they would be safe. If you used the customizer > additional css then these will be safe.
I’m unclear whether that risk is just when changing from Theme A to Theme B or whether there it is likely to affext Theme A v2 to Theme A v3.
Change A-B will not lose settings or files, they will remain in place to be copied, will return to active service if you switch back.
Upgrade V2 to V3 will kill your V2 edits on the parent, a child will survive.There is the issue that html and css markup classes and IDs etc also hook functions will change between versions, and between themes A to B, so some testing is necessary and revisions anticipated. I have found it handy to be able to review what the old version did etc while tuning the new one.
Yes a standard theme is more marketable.
When I create a custom page template, I start with a copy of that template from the parent theme. I browse various themes for inspiration to see how they hang the pieces together.
Forum: Fixing WordPress
In reply to: Kale Theme Stylesheet (style.css)Yes restoring from an XML backup sounds like a good idea.
When I do a file restore, I put in a small subtle change like setting text red or something so that I know that I have really updated the right file, and that none of the cache things are in the way, afterwards I remove the hack.Thank you RossMitchell, your answer is more useful to me
Useful is the goal.
but if I want develop new themes for sale, is it a good idea to provide only child themes?
There are some child themes in the marketplace, which I find surprising. Usually these have a theme framework as parent which is never used raw. Of course the reason against buying child themes is that there is no such thing as a grandchild theme, hence three different aspects of theme customization are impacted:
– customize style.css, effective alternatives are the customizer and plugins
– customize functions.php, viable alternative is to put code into a plugin
– custom page templates, no other option, the clients will have to manage their own backups and updates.From your initial query:
Do I need to hardly coding its templates (archive, article, category, sidebar, search, etc)?
The template docs will show you how specific these are and how they fall back.
Forum: Fixing WordPress
In reply to: How to get rid of horizontal black boxes around video?Looking at your page with my browser inspector, I see that the video player and styling all involves “mejs” things. Is this a plugin ? All I can suggest is seeking support from this plugin or theme author.
Forum: Fixing WordPress
In reply to: Web Site – Now showing Main MenuHow can I get rid of the recent comments, archives, categories, meta tags….that show up on my website page?
These are configured in widgets, probably called META.
Find them in Dashboard > Appearance > Widgets
Be sure to save your changes.Also an easy trap with menus is to create and configure the menu, but not set the menu location, be sure to check this.
Forum: Fixing WordPress
In reply to: responsive menu and js not workingIn moving hosting you have changed PHP and other versions. Some hosting control panels permit you to select which version you use.
If you still have access to the old hosting, see which versions it used, create a .php file like:
<?php phpinfo(); ?>and save its output.
Forum: Fixing WordPress
In reply to: HTML5 for WPIf you want to fix it yourself:
– First establish a child theme, otherwise your changes will get lost in an update, details on creating a child theme here:
http://codex.wordpress.org/Child_Themes
– The DOCTYPE element absolutely comes from the theme, most usually from a single file that is included into every page template, it is conventionally called “header.php”, BUT these are just common conventions and could be different.Once you are done, suggest that you verify your site for html and css compliance, it is nice to have but not mandatory. Details here:
http://validator.w3.org/
http://jigsaw.w3.org/css-validator/The quick answer is to choose an existing theme as your parent and then customize it. Effort put into researching which parent to start with is well rewarded as all the features it provides are inherited completely.
When it comes to customizing page templates, start with a copy of the parent’s template file in that role, details on how they are derived and named here:
https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/
https://developer.wordpress.org/themes/basics/template-hierarchy/