Chip Bennett
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why not simple and built-in option for Hide/Display Date ?Exactly what @esmi said.
If you want to display the category description for all categories, modify the
category.phptemplate file.If you want to display the category description only for a specific category, e.g. category
foobar, create acategory-foobar.phptemplate file.Forum: Themes and Templates
In reply to: Featured content (post 'n pages)Your best bet is probably to use custom post meta data, with custom meta boxes.
Forum: Themes and Templates
In reply to: How to add a image slider in home pageTry a Plugin?
Forum: Fixing WordPress
In reply to: Shady-looking external resourceI did what you said. It’s still called. I still have no idea what it is or how I would go about getting rid of it, if I should.
Well, that tells you that the external resource is not called by the Theme.
What Plugins do you have active?
(Note: I suspect that this resource is not malicious; it sounds looks to me like a CDN reference.)
Forum: Themes and Templates
In reply to: Missing Template Selection on Page Attributes in WordPress 3.3.2Where do you switch “hierarichal => true”? That’s not core functionality.
Can you replicate the problem with:
1. ALL Plugins disabled
2. Twenty Eleven Theme activeForum: Fixing WordPress
In reply to: Why not simple and built-in option for Hide/Display Date ?If you want a “welcome or introduction as a static message”, just create a static front page. Voila! No date displayed on your welcome message. 🙂
Forum: Fixing WordPress
In reply to: Shady-looking external resourceAre you sure it’s coming from the Theme?
To test: switch (temporarily) to the Twenty Eleven Theme, and see if the external resource is still called.
Forum: Fixing WordPress
In reply to: Can't add new elements to the footer menu!What Theme are you using?
Forum: Themes and Templates
In reply to: WYSIWYG CSS editor2010 Weaver is actually no longer supported. You may be interested in its successor: Weaver II.
Forum: Themes and Templates
In reply to: Blog-less ThemeEvery Theme in the official Theme repository – at least every one updated in the past year and a half or so – is perfectly suitable for a site that does not incorporate a blog.
All you need to do is create a static front page, and not specify a Page for Posts. Voila! Your site no longer presents a blog posts index.
Will you still see the blog functionality in the WP-Admin area? Yes, of course. But that’s not a Theme issue; Themes are entirely Presentational – they merely specify what your site visitors see. If you want to remove any mention of blog posts from the WP-Admin area, you’ll probably need to look for a Plugin to do that.
Forum: Themes and Templates
In reply to: Missing Template Selection on Page Attributes in WordPress 3.3.2Can you verify that the “Page Attributes” meta box is enabled on the edit page screen, by clicking the “Screen Options” tab, and ensuring that the “Page Attributes” checkbox is checked?
Forum: Themes and Templates
In reply to: Featured content (post 'n pages)How do you intend to determine which posts are “featured”? Sticky posts? Taxonomy? Custom post meta? Something else?
Forum: Fixing WordPress
In reply to: New Site has blank homepageI would recommend starting with the Theme’s readme.txt:
http://themes.svn.wordpress.org/figero/1.5/readme.txtThis Theme is a commercial, up-sell Theme, for which the developer provides paid access to support:
http://www.inkthemes.com/support/Forum: Fixing WordPress
In reply to: Remove sticky posts from "posts page"Any particular reason you opted to check if it’s the page for posts rather than the homepage?
Yes: because I didn’t want to assume that you wanted to modify handling of sticky posts if you later decided to display the blog posts index on the site front page.
As an alternative, you could test for the showcase template itself:
function mychildtheme_filter_pre_get_posts( $query ) { if ( ! is_page_template( 'showcase.php' ) ) { $query->set( 'ignore_sticky_posts', true ); } return $query; } add_filter( 'pre_get_posts', 'mychildtheme_filter_pre_get_posts' );That way, you would only ever see/use sticky posts on a page using the Showcase template, regardless of what other template file is loaded.
Forum: Themes and Templates
In reply to: Theme not working. Help!My webhost is WordPress
No. WordPress is simply an application running on a web server. Your WebHost is the company from whom you lease that server space.