Sevenhelmets
Forum Replies Created
-
@leolatex I believe the “dark” and “light” options are available from the plugin settings page…no need to edit the file.
Just a heads up, a possible solution was posted here:
http://wordpress.org/support/topic/plugin-wordpress-seo-yoast-seo-and-qtranslate?replies=35
Just in case someone is looking for a solution, there is a possible one posted here:
http://wordpress.org/support/topic/plugin-wordpress-seo-yoast-seo-and-qtranslate?replies=35
Really glad to hear development has started back up again! Thanks guys
Forum: Plugins
In reply to: [Redirection] Getting Redirection to Automatically create 301s?Awesome, thanks for the input folks. Someone else suggested:
http://wordpress.org/extend/plugins/link-juice-keeper/
which was pretty much what I was looking for. I’d also be interested in finding out more about the regex redirect in Redirection, because that sounds more powerful, and potentially a better idea all around. Any “help guides” on that John?
Forum: Plugins
In reply to: [Redirection] Getting Redirection to Automatically create 301s?No the point is that I want to avoid a 404 like the plague. It’s a little hard to explain, but this domain is simply better off directing people to the home page than leaving them stranded on a 404, regardless of how helpful or useful it may be.
So basically I’m just looking for a way to create 301 redirects on the fly, and the URL can be the same for all of them.
Is this even possible?
Forum: Fixing WordPress
In reply to: Creating a URLThanks for the response Rev. Voodoo!
Unfortunately I can’t quite follow the last part of your instructions. Are you referring to editing the page in the page editor section (Appearance —> Editor)?
I followed your instructions so far – copied index.php, renamed it blog.php, inserted the
<?php /* Template Name: Blog */ ?>At the very top of the file, and then inserted
<?php if (is_page('blog')) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("category_name=blog&paged=$paged"); } ?>Just before the “if have posts” part of the code.
But after that I’m lost – is the blog.php suppose to be the new index page? Any help would be much much much appreciated, unfortunately I don’t have a single shred of programming experience, so I’m just picking up as I go…
Forum: Fixing WordPress
In reply to: Creating a URLYou are a STAR! Thank you, that worked pretty well. Just a few slight issues – it’s only showing the last 3 posts (with no links to “read previous ones”), and they are all “expanded”. The theme previously was showing snippets only, and would take the first image from the blog post and display it as a thumbnail using Tim Thumb, which I’m totally unfamiliar with.
Any idea how I could achieve that? I’m so grateful for your help, because doing the programming side of things is definitely something I couldn’t have done.