Joshua Sigar
Forum Replies Created
-
Forum: Themes and Templates
In reply to: a Theme for all browsers?And why do you limit yourself to WP Theme? Why don’t you check out the websites of some well-known web designers? Or check csszengarden? Those probably good candidates.
Forum: Themes and Templates
In reply to: Display all sub categories and posts within?Nothing is impossible; it’s just a matter whether I want to bother with it. You just need to modify WP’s list_cats to grab the corresponding Posts as it traverses the categories.
Forum: Themes and Templates
In reply to: a Theme for all browsers?I don’t get it. Is it that hard? What’s the problem exactly?
Or by “all browsers” you mean including IE5, Netscape 4, and the like?Forum: Plugins
In reply to: New Plugin : PHk Big Var Dump v1.0 for WordPressOnly for admin page? Output on front-end will be more useful.
Forum: Themes and Templates
In reply to: Display all sub categories and posts within?Try this
<?php single_cat_title(); ?>
<?php $catId = get_query_var( 'cat' ); ?>
<?php wp_list_cats( 'child_of=' . $catId ); ?>It doesn’t display the Posts in the category, though
Forum: Fixing WordPress
In reply to: Cannot set page templateI might have had the same problem. You’re saying that there’s no dropdown menu for Page Template, right? To resolve it, go to Custom Fields box, select “_wp_page_template” from Key dropdown menu, and set the Value with the name of Page Template that you have. Click on “Add Custom Field” and the Page Template dropdown menu should re-appear.
Forum: Fixing WordPress
In reply to: Green Marinee help pleaseAt the very top? Just open up header.php, I suppose, and edit away right after the opening
<body>tag.Forum: Plugins
In reply to: Any user list plugin for match-making functionality?I haven’t seen this kind of plugin. You may need to hire someone for this custom functionality.
Forum: Plugins
In reply to: unique calendar pluginYou could the same look of calendar from the built-in one. You just need to be good at CSS.
Forum: Fixing WordPress
In reply to: subpage menu order<?php wp_list_pages('sort_column=menu_order&title_li=&child_of='. $parent_id); ?>Forum: Fixing WordPress
In reply to: subpage menu orderYour code does not pass the parameter “sort_column”
Forum: Fixing WordPress
In reply to: Using Custom Fields to Categorize PostsIf you do that, you may need to construct your own SQL query to get the Posts. Because, as far as I know there’s no built-in function to get Posts by custom-field, or search custom field.
Nonetheless, if you’re familiar with SQL, it’s pretty much feasible.
However, I was wondering if you couldn’t just assign multiple categories to a Post?
Forum: Fixing WordPress
In reply to: subpage menu orderIs your code something like this?
<?php wp_list_pages('childof=5&sort_column=menu_order&title_li='); ?>Forum: Themes and Templates
In reply to: Storing User InfoI don’t know what you meant. I thought Kafkaesqui’s anwer already covered it.
Try the delete the first occurence of the following.
<?php if (have_posts()) : ?>