Sam Scholfield
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: domain nameHi,
you will need to move all of the files that are currently within your /wordpress folder (on your server) to the home directory.
Follow the instructions in the codex to help you
Forum: Themes and Templates
In reply to: Latest blog on static home page for Twenty ten themeBy default, latest blog posts go to the homepage. However if they aren’t you will need to add a WordPress loop to the template files.
If you change your theme, all of your pages, settings, blog posts, uploads etc stay the same, the only things that change are the files, so if you changed anything within a template, this change will not go into the new theme (as the files are different). your changes however won’t be lost in that theme should you return to it.
Forum: Installing WordPress
In reply to: cannot access proper admin pageTry adding:
define('WP_HOME','http://www.kuhnglobaltalent.com'); define('WP_SITEURL','http://www.kuhnglobaltalent.com');to your wp-config file.
Forum: Fixing WordPress
In reply to: grabbing full posts when the page has a more sectionUse:
global $more; // Declare global $more (before the loop). $more = 1; // Set (inside the loop) to display all content, including text below more. the_content();instead of
get_the_content();get_the_contentwill put it into a variable, so$text = get_the_content();is the correct usage. If this is what you are after, then$morestill applies.Have a look at the the_content() in the codex
Forum: Fixing WordPress
In reply to: How to preserve home page and have all posts only under categoriesIt might also be worth reading up about post types, as this could also solve your problem. link here
Forum: Fixing WordPress
In reply to: How to preserve home page and have all posts only under categoriesHi Bob,
First thing you will need to do is create a new ‘Page’ and assign this to be your homepage in settings > reading.
You will then need to create a template file for the page with the categories. You will need to edit the loop (query_posts) to be:
<?php query_posts('category_name=CATEGORY_NAME'); ?>Have a look at the loop in the codex to help you.
Forum: Fixing WordPress
In reply to: temp landing page but access rest of siteOK create a new ‘page’ in your admin screen, then in the settings > reading, change the front page to a static page and select the page that you just created.
Forum: Fixing WordPress
In reply to: Unable to hide object from homepage!put a ; after
echo "It works!"Forum: Fixing WordPress
In reply to: temp landing page but access rest of siteYou could use a plugin like this one.
When you sign in as Admin you can access the website like normal, but everyone else will only see the under construction page.
Forum: Installing WordPress
In reply to: 2 languages – how to build the folders?Could you not use a translator plugin like gtranslate?
That would solve you having to re-write all of the blog posts twice.
Forum: Fixing WordPress
In reply to: Show the last 5 updated pagesThat line of code is working for me.
Check that the correct file is being called, e.g. if it’s in sidebar.php, make sure that its not after a dynamic sidebar (that has widgets selected in the admin menu) and the parent file (e.g. pages.php) is calling the sidebar (get_sidebar()).
If you didn’t to code this, you could use the ‘Pages’ widget.
Forum: Fixing WordPress
In reply to: Permalink change for one categoryYou could create a new post type. This would allow you to have the movies post as a separate section to your blog (and other categories).
Have a look at the codex for information on how to do this.
Forum: Fixing WordPress
In reply to: Can I use multiple fonts in my blog title?You could change your template files. It will most likely be in your header.php file in some <h1> tags. However this will mean that you can’t edit it from your General Settings menu.
Forum: Fixing WordPress
In reply to: How to remove "comment" box of main roll but leave in post??If it is a ‘Page’ you are working on, you can disable the comments on each specific page by going into the edit screen of that page, in the discussions section, you can untick the box saying ‘Allow comments.’
If you can’t see the discussion box, click ‘Screen options’ at the top of the page, and tick ‘Discussion’. The discussions section will now appear further down your page.
* EDIT * If your on wordpress.com (not .org) see the post below
Forum: Fixing WordPress
In reply to: Show the last 5 updated pagesIf its in the sidebar, you should use:
<?php wp_list_pages( $args ); ?>
instead of your current code. The code you have would be used in the main loops on your pages.Check out the codex for the values of $args