Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: New staff member post not showing up after deleting old staffYou’re running a caching plugin on the site. The team page is cached from 5th April. Clear the cache.
Forum: Fixing WordPress
In reply to: Image ALT tags not showingSince you’re already using a child theme, you’ll have been getting into the whole grandchild theme issue. You may be better off forking the child theme so as to avoid any original child theme updates overwriting your custom work.
So either in the original child theme (Church) or your new forked theme, open the functions.php file. Add the following to the bottom of the first function in the functions.php (church_setup) file, just above the closing brace:
remove_action('omega_header', 'omega_branding'); add_action('omega_header', 'its_branding');Then, after the add_action line, paste in this new replacement branding function, I’ve put it at pastebin:
That should provide an alt tag containing the site description. Feel free to change it to something of your liking 🙂
Forum: Fixing WordPress
In reply to: where is my website?The login is here: http://eqalix.com/wp-login.php
Forum: Fixing WordPress
In reply to: Website takes users to WordPress Login.I think that link is hard coded in the header. Did you let anyone edit your files for you? Where did you get the theme?
Forum: Fixing WordPress
In reply to: Blank screen with a dot on ALL of my installsCan you increase the verbosity of the error logs, see if you can get more information?
Forum: Fixing WordPress
In reply to: Blank screen with a dot on ALL of my installsDid you check the server log files for errors?
I see images. I noticed you’re using a lazy load plugin on your site. Does the issue occur (for you) when you disable it?
Forum: Fixing WordPress
In reply to: Media Library items missing, but files on diskI wrote something a few weeks back. It rebuilds image meta data:
Forum: Fixing WordPress
In reply to: WordPress 3.9 seems to have removed ALL my imagesYou may have corrupted meta data. I created a small plugin that will rebuild your image meta data. Download it here on GitHub.
Upload, activate, run and then rebuild your thumbnails with something like the Force Regenerate Thumbnails plugin.
Forum: Fixing WordPress
In reply to: 504 Gateway errorI just looked at your site and can reach your login screen. Your auto loading music scared me, I had my speakers on loud!
Forum: Fixing WordPress
In reply to: Protect source codeUse version control such as git. Provide the client with a zipped copy of your work that matches the final commit. Get him to sign off that this is the work you provided.
If the client changes something and does as you say, falsely claims any subsequent errors are your fault, you can compare the live site with your version controlled copy.
Yes.
wordpress.comis a hosted service, you just provide the content. Using WordPress self-hosted, you’re the boss 🙂Forum: Fixing WordPress
In reply to: Error establishing a database connectionUse an FTP client such as FileZilla and connect to your web hosts. If you’ve never done it before, your hosts should be able to provide details on your username/password settings etc. Once connected, navigate to the root of your WordPress installation where, in most cases, you’ll find wp-config.php.
Download, make a backup copy, edit and then upload back to the site.
Take a look at this help page at WordPress(.com)
Forum: Fixing WordPress
In reply to: WP/Woocommerce Checkout page Issue…AGAIN!Looks like you simply need to set your site to use a static page, but use your front page template for Front Page and your blog template for Posts.