lettergrade
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Changing Width Of PostHi ryan_93, NewsFocus is not a supported wp.org theme. You may have better luck asking in the theme developer’s support area.
Forum: Themes and Templates
In reply to: [Customizr] Slider Won't slideHi sillystrations, you can post questions related to the customizr theme in the customizr support forum.
Forum: Themes and Templates
In reply to: Make Blog Look like a blogHi adawnstyle,
Home page: Right now, you have your home page set as a static page called ‘Home.’ This is easy to change: if you want your blog posts to show up as your home page instead, go to Settings > Reading in your Admin dashboard and change ‘Front page displays’ to ‘Your latest posts.’
Blog posts: Right now, you don’t have any blog posts yet. To add individual posts, you can find a little information here.
Sidebars: The sidebars should show up when there are widget items assigned to them. Maybe you removed yours? Go to Appearance > Widgets in your admin dashboard, and make sure there are widgets in your ‘Main Sidebar’ area.
Does that cover what you need?
Forum: Installing WordPress
In reply to: Where do you place the wp-config.php?Hi sergec10, the wp-config-sample.php is in the main folder of your WordPress install files. Once you find it, you can manually change the values, then save it and rename it wp-config.php
Are you opening wp-admin/install.php by visiting the location in your browser or by opening the file in a text editor?
Forum: Fixing WordPress
In reply to: WordPress Roles: the missing role between Contributor and AuthorNo problem, glad you found something that works.
Forum: Fixing WordPress
In reply to: Show 5 latest blog posts, page the restSure! Here’s a step-by-step. How you approach depends on how you’re set up, so I will assume that you’re using a .org directory theme (like twentyeleven, etc) rather than a custom-built theme.
1. Create a Child Theme (so that you’re not messing with your current theme’s template files) and activate it.
2. Create a Page Template by copying your current theme’s index.php into your child theme and formatting and renaming it to function as a template.
3. Add a query to the loop in your page template
4. Create a News page and assign your template to it.
5. Add the News page to your menu
This are good techniques to test out anyway — once you get the hang of page templates and queries, you’ll find lots of ways to customize your content feeds. Let us know how it goes!
Forum: Fixing WordPress
In reply to: Show 5 latest blog posts, page the rest(The less-simple solution is to create a page template that displays only the last five posts instead of the set site default number, then activate that template on a News page you create to display those posts. If you have other categories of posts, you will need that template to also specify only the ‘News’ category. Ask if you need help with this direction.)
Forum: Fixing WordPress
In reply to: Show 5 latest blog posts, page the restThere’s a super-simple solution, if you want to apply that to all your archive pages: go to Admin Dashboard > Settings > Reading and set “Blog pages show at most # posts” to 5.
Forum: Fixing WordPress
In reply to: WordPress Roles: the missing role between Contributor and AuthorI haven’t tried any of them personally, but you can try the plugins listed in the plugin directory by searching for ‘Role Manager’ here: http://wordpress.org/plugins/search.php?q=role+manager
Forum: Themes and Templates
In reply to: Deleted a line out of the index.phpThere are a lot of errors in that code. Without going too deep, I removed a bunch of the typos that were causing things to break. There are a few things about image treatment that I couldn’t be certain about at first glance, but hopefully the surface errors are the source. Let me know if it helps!
<?php get_header();?> <div id="main-container"> <ul class="posts"> <?php if(have_posts()):?> <?php while(have_posts()):the_post();?> <?php if (is_paged()) : ?> <?php $postclass = ('post'); ?> <?php else : ?> <?php $postclass = ($post == $posts[0]) ? 'featured-post' : 'post'; ?> <?php endif; ?> <?php if ($postclass == 'featured-post'){ ?> <div class="feature-post"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php if ( get_post_meta($post->ID, 'image', true) ) { ?> <img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta($post->ID, 'image', $single = true); ?>&h=164&w=320&zc=1&q=100" class="thumb-image" /></a> <?php } else { ?> <img src="<?php bloginfo('template_directory'); ?>/images/latest_post.jpg" /></a> <?php } ?> <img src="http://i12.photobucket.com/albums/a243/Disneylover1031/missing-image_zps3803d257.png" border="0" alt="" /></a> <div class="post-title-big"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> </div> <?php the_excerpt(); ?> <a href="<?php the_permalink();?>" id="continue-btn" title="Continue Reading">Continue</a> </div><!--feature-post--> <?php } else { ?> <li> <div class="<?php echo $postclass; ?>"> <div class="post-title"><span class="comments-bubble"><?php comments_number('0', '1', '%');?></span><a href="<?php the_permalink(); ?>" title="<?php the_title();?>"><?php the_title();?></a><!--comments-bubble--></div><!--post-title--> <?php if ( get_post_meta($post->ID, 'image', true) ) { ?> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta($post->ID, 'image', $single = true); ?>&h=164&w=320&zc=1&q=100" class="thumb-image" /></a> <?php } ?> <div class="post-excerpt"> <?php the_excerpt();?> </div><!--post-excerpt--> </div><!--post--> </li> <?php } ?> <?php endwhile;?> </ul> <?php endif;?> <div class="page-navigation"> <?php if(function_exists('wp_pagenavi')) {?> <?php wp_pagenavi(); ?> <?php } else { ?> <?php posts_nav_link();?> <?php } ?> </div><!--page-navigation--> </div><!--main-container--> <?php get_footer();?>Forum: Installing WordPress
In reply to: Have a domain name, want to use wordpress as host. How to do?If you currently have a wordpress.com site, you can map your godaddy domain to it for an extra fee: Map An Existing Domain
Your other option would be to purchase 3rd party hosting (through godaddy, likely, since your domain is already there) and set up a new wordpress.org install on it, then transfer all your existing content over there.
Forum: Fixing WordPress
In reply to: Need help with RSS FeedsHi Rick! You’ll be happy to find out that it’s easier than you think — RSS feeds are built into WordPress. You can read up on it here, and come back and ask if you still have questions: WordPress Feeds
Forum: Fixing WordPress
In reply to: Change date formatIn that case, the date format values are most likely hard-coded into your php file, and accidentally duplicated as well. It would be best to start over with a new theme and create a child theme for any edits you might want to make to the php files. It’s a bad idea to edit the original theme.
Forum: Fixing WordPress
In reply to: Change date formatYou can change the date format in your admin dashboard: Settings > General. There’s a screenshot here: Settings General Screen
The problem for the author entry is that display has been set to ‘none.’ If you delete that line in your .css file, the author should show on your page.
.single-author .entry-meta .by-author { display: none; }Forum: Fixing WordPress
In reply to: Html to WordPressThat link is the html version, yes?
Without seeing your converted site, it’s hard to know what your problem might be. The immediate solution is to hard-code the menu items in your header.php file just as if it were an html file.
However! There’s a better way: you might find this article on registering custom menus in your theme helpful: http://codex.wordpress.org/Navigation_Menus
If you set up your navigation menu code properly in your theme template as that article instructs, then this will allow you to manipulate and edit those menus from the admin dashboard under Appearance > Menus.