thefikus
Forum Replies Created
-
Forum: Themes and Templates
In reply to: how to find themes with jquery for advanced categories?Check to see what javascript files are linked in the header. Look for something similar to:
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/jquery-1.2.6.js"></script>or
<?php wp_enqueue_script('jquery'); ?>Forum: Installing WordPress
In reply to: index.php confusionhttp://install4free.wordpress.net/ for the instillation service.
Check out the wp-config-sample.php file included with wordpress. The only lines you need to update are 3,4,5 (maybe 6 depending on your host) & 13 (update it with your secret key) . I also recommend changing 16 for security reasons to something a bit more random (instead of wp_ using d837_wp_8hb_. Don’t make any other changes and you should be all set.
Finally, be careful typing.Forum: Fixing WordPress
In reply to: Ordering posts by Custom FieldI’ve searched some more and changed my query a bit. it’s now:
<?php $wpdb->flush(); $querystr = " SELECT * FROM $wpdb->posts LEFT JOIN $wpdb->postmeta AS eventdate1 ON( $wpdb->posts.ID = eventdate1.post_id AND eventdate1.meta_key = 'eventdate1' ) LEFT JOIN $wpdb->term_relationships ON($wpdb->posts.ID = $wpdb->term_relationships.object_id) LEFT JOIN $wpdb->term_taxonomy ON($wpdb->term_relationships.term_taxonomy_id = $wpdb->term_taxonomy.term_taxonomy_id) LEFT JOIN $wpdb->terms ON($wpdb->term_taxonomy.term_id = $wpdb->terms.term_id) WHERE $wpdb->terms.name = '$cat1' AND $wpdb->term_taxonomy.taxonomy = 'category' AND $wpdb->posts.post_status = 'publish' ORDER BY eventdate1.meta_value ASC "; $pageposts = $wpdb->get_results($querystr, OBJECT); ?>This has partially solved my problem. it’s sorting by the correct custom field, however it is sorting the numbers wrong. For example, the order it produces is:
1,11,12,13…2,21,22,23,24,25…
It seems to be sorting by the first number and not recognizing the number as a number. Any ideas on how to fix this fix this? is it a bug?
Forum: Fixing WordPress
In reply to: Untitled Subscription – RSS IssueCheck out Here for more info.
The most basic way to accomplish this is to add the following to the bottom of your css file in your theme.#blog_title { display:none } #blog_moto { display:none }Uncomment your title and moto and try that.
Forum: Fixing WordPress
In reply to: Multiple Custom Fields Causing IssuesI stand corrected.
Forum: Fixing WordPress
In reply to: Multiple Custom Fields Causing IssuesI’m pretty sure each custom field requires it’s own unique key.
Forum: Fixing WordPress
In reply to: Untitled Subscription – RSS IssueIt depends on the theme you are using. In the default theme, this is the call for the blog title and description:
<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1> <div class="description"><?php bloginfo('description'); ?></div>If you want it to not display on screens, just put it in a div who’s display attribute is set to none in a css file that is called for screens.
Forum: Fixing WordPress
In reply to: Upgrading 2.1.3 to 2.5Hi,
Here is a list of all the tickets closed in 2.2, 2.3 and 2.5. it’s a lot of information and is most likely too much.
changes in 2.5
changes in 2.3
changes in 2.2A bit more human readable list of changes for each of the releases:
2.2
2.3
2.5 – this one isn’t written well yet.I hope that helps you out a bit.
Forum: Fixing WordPress
In reply to: script.aculo.us toggle in pageThe problem was with my theme.