stanordan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to disable redirect domainI would try modifying the site URL from the config file. It is also possible that there are some hard links left over in the database. I would consider using a link checker to check for 404 errors.
Forum: Requests and Feedback
In reply to: Plugins install: Show VersionThat sounds like it would be helpful. I would submit that request to the WordPress ideas page.
Forum: Fixing WordPress
In reply to: WordPress htaccess changes break www redirectIf you have not already, you can try setting the www redirect as part of the site title. This should redirect newly created URLs to the www as you hoped.
Forum: Fixing WordPress
In reply to: Customiser screen showing whiteIf you have FTP access to the files on the server, you can deactivate the plugins by renaming the original plugins directory and creating a new one.
The plugins directory is located in the
wp-contentdirectory.Forum: Fixing WordPress
In reply to: 500 Error For All Themes > Appearance > CustomizeIf you have already checked the PHP version you may need to restore/replace the core files. The 500 error is pretty vague.
- This reply was modified 9 years, 7 months ago by stanordan.
Forum: Localhost Installs
In reply to: Connecting to WordPress serverIf you are accessing the installation locally, you should still be able to get around the firewall. I’m not sure what kind of firewall you’re using. I have a basic APF firewall in Ubuntu. It’s possible the error you’re seeing could be related to file permissions.
Forum: Fixing WordPress
In reply to: Changing relative links to local page indexes?If you are trying to do relative linking in order to move content around more easily or changing permalinks without having to redirect old URLs you could do the reverse:
<a href="?p=1234">Another link</a>The link above will automatically convert into whatever the current permalink structure is if that post or page exists in the database.
This is helpful because you can avoid getting 404 errors if you had old URL lying around or bookmarked somewhere.
Forum: Fixing WordPress
In reply to: Too many redirect issue after installing SSLYou may need to check the
.htaccessfile for your site. WordPress has its own redirect rules, and it is possible they are conflicting with other rules in that file.Forum: Fixing WordPress
In reply to: Changing my posts taxonomy: SEO gain or loss?I’m not sure if using the category in your URL will have a directly positive effect, but if you choose to do that you will want to be careful to use canonical URLs. This means that the post or page is only available on that URL. It can dilute your SEO efforts if you have the same content available on two different URLs. For example, if you have the same post in two categories it would be available on two different URLs. This would create duplicate content — which can be problematic for search enginges. The Yoast SEO plugin helps with this.
Forum: Fixing WordPress
In reply to: Caching Issue?Is it possible that you are connecting to the same database? What method were you using to re-install or restore the core files?
Forum: Fixing WordPress
In reply to: All Post page returns 404I cannot speculate as to how, but it is possible you are missing some core files. You may want to consider replacing core files.
Forum: Fixing WordPress
In reply to: Tags and categories not working on custom postYou may need to add the Tags taxonomy to your custom post type.
Forum: Fixing WordPress
In reply to: Need to find a proper PluginIt is highly likely the effect we observe in the link you provided is done with Javascript. Searching for a plugin that will replicate the effect exactly may not provide many results. However, there seem to be a good deal of plugins that can allow you to add Javascript without editing source files. I found one in the plugin directory that may be helpful to you.
Alternatively, you would want to search for a Javascript developer who could “enqueue” the necessary scripts into your theme.
Forum: Fixing WordPress
In reply to: No-index on featured imagesThis is an example of a rule I have used in a
robots.txtfile placed in the root directory of the site:User-agent: * Disallow: /wp-content/Since by default WordPress places the uploaded images into
/wp-content/uploads/, this should disallow crawling on those images. However, it all depends on whether or not the search engine will honor your restriction. Google seems to be good about that.I’ll add: since you have a photography site, you may want certain images to be crawled for their tags etc. In this instance, you might consider separating your featured images from your main galleries and adjust the above rule accordingly.
- This reply was modified 9 years, 8 months ago by stanordan.
Forum: Fixing WordPress
In reply to: Archiving old contentDealing with older content is certainly an issue a lot of users must face. I am not sure exactly how major news sites do it, but as a general purpose solution you can consider creating a custom taxonomy. You can name this taxonomy something like “archives”, for example, and assign it to the older posts and pages. Or, you can assign a taxonomy for “new” posts. Either way, you can use this as a method of filtering posts and pages, so you don’t have to do deal with a full load of content at once.