Sam Scholfield
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: new page does not show up on actual webtieare you seeing text on the page that says
“To create a custom menu, give it a name above and click Create Menu. Then choose items like pages, categories or custom links from the left column to add to this menu.”?
Forum: Fixing WordPress
In reply to: new page does not show up on actual webtieSo there is no checkbox next to the page name?
If that’s the case I’m not sure, you may need to get in touch with the person who made the website.
Forum: Everything else WordPress
In reply to: Custom Post Types and PermalinksIf all of the posts are going to have the url /portfolio/ at the start then enter /portfolio/%postname%
I currently use /blogs/%category%/%postname%
and get links like:post with category ‘example’: /blogs/example/post-9
‘example’ category link: /blogs/category/example
archive link: /blogs/2011/07Hope that helps
Forum: Themes and Templates
In reply to: editing help pleaseThey look like widgets, have a look in the widgets menu and see if you can remove them from there.
Forum: Fixing WordPress
In reply to: Close this gap?You will need to change the CSS of the website. If you have a copy of the website I can see I can tell you exactly where.
Forum: Fixing WordPress
In reply to: new page does not show up on actual webtieIn appearance > menus, on the left there is ‘Pages’ your new page should be in there, if you tick the box next to it, then click ‘add to menu’, it should appear at the bottom of the list in the main section. you can then click and drag this to move it up or down the list, and expand it to change some of the values like the name.
Forum: Fixing WordPress
In reply to: query_post('tag= I can only find unresolved topicstry adding
global $more; $more = 1;above
the_content();1 will display ALL of the content,
0 will display some of the content, but you will need to changethe_content()to something likethe_content('more...');Beyond that, I’m not sure, it seems like an odd issue.
Forum: Themes and Templates
In reply to: How to remove "leave a reply box" from the website?That is a comment box, in wordpress if you go to the page, click edit, then in ‘Discussion’ uncheck the box ‘Allow comments’
(if you can’t see this, click ‘Screen options’ at the top of the page, and tick the box saying ‘Discussions’, this will then appear in the main part of the page)
Forum: Fixing WordPress
In reply to: new page does not show up on actual webtieOK no worries.
Having a quick look at your website, it seems as if only one page is using wordpress. if this is the case you won’t be able to update the navigation on every page (just the wordpress pages).
However, in the wordpress pages, the navigation will be in one of two places, either in appearance > menus, if its here then you can simply add the new page to the list. Otherwise it ‘should’ be in the header.php file found in appearance > editor. You will need some HTML knowledge to change this, but just incase you don’t have any, look for
<ul>tags, thats a start of a list, then each
<li>item will be the menu item.Hope that helps
Forum: Fixing WordPress
In reply to: new page does not show up on actual webtieHi Laj
Have you created a custom menu? or installed a theme?
Can you also provide a link to your website.
Forum: Themes and Templates
In reply to: Help needed about HeaderHi Yasiradnan,
The easiest way is to create a custom menu (appearance > menu). This allows you to add custom urls, posts, categories etc into a menu.
Just make sure you set the “Theme Location” to the “Primary Menu”
Forum: Fixing WordPress
In reply to: query_post('tag= I can only find unresolved topicsthe_content(); doesn’t need to be echo’d out. Other than that it looks fine. Try it out without the require_once(); if your still having problems.
?php $tag="folding-chairs"; // retrieve one post with a tag of folding-chairs query_posts( 'tag='.$tag ); // the Loop while (have_posts()) : the_post(); the_content(); endwhile; ?>Forum: Themes and Templates
In reply to: [Crafty Cart] Crafty Cart installationHaving done a quick google search, crafty cart is a theme, not a plugin
http://wordpress.org/extend/themes/crafty-cart
Try moving it into your theme folder
Forum: Themes and Templates
In reply to: HOW t upload my logo to my blogHi,
Which theme are you using? is it a custom one? or the standard twentyeleven theme?