Michael Bishop
Forum Replies Created
-
Forum: Hacks
In reply to: Add custom field befor Biographical Info in Profile PageDo you mean in the Contact Info section where website, AIM, Yahoo IM/Jabber is?
Forum: Hacks
In reply to: How to insert some code BEFORE 1st image in every post?Can you be more specific what you want to insert? And how is the image being inserted?
Forum: Hacks
In reply to: How to remove Personal Options in Profile Page?I don’t think there currently are any filters to remove those options. You can Google this for some options that hide the fields.
There’s a patch sitting in Trac that adds some filters, but it doesn’t look like it’s going to make it into 3.4.
Forum: Hacks
In reply to: jQuery execution problemAlso, I think
wp_enqueue_script('jquery');loads the version of jquery bundled with WordPress , so you are loading it twice.Forum: Hacks
In reply to: jQuery execution problemYou wrap those in a function then execute via
add_action ('wp_enqueue_scripts', 'my_load_scripts');So:
function my_load_scripts() { if (!is_admin()) { wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', get_bloginfo('stylesheet_directory').'/libs/jquery-1.6.1.min.js' ); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'jquery_ui', get_bloginfo('stylesheet_directory').'/libs/jquery-ui.custom.min.js' ); wp_enqueue_script( 'jquery_masonry', get_bloginfo('stylesheet_directory').'/libs/jquery.masonry.min.js' ); } } add_action ('wp_enqueue_scripts', 'my_load_scripts');See if that helps
Forum: Hacks
In reply to: How to remove Personal Options in Profile Page?If you are referring to the items like AIM, Website, Yahoo IM, you can use a function to remove them.
Basic example:
function remove_contactmethods($contactmethods ) { // Remove AIM, Yahoo IM, Google Talk/Jabber unset($contactmethods['aim']); unset($contactmethods['website']); unset($contactmethods['yim']); unset($contactmethods['jabber']); // make it go! return $contactmethods; } add_filter( 'user_contactmethods', 'remove_contactmethods' );Forum: Hacks
In reply to: Featured Image in The Loop (help a newb!)Without seeing the exact code of your index file, you could modify the loop to only show the featured image and Title.
Basic example:<div class="box"> <?php the_post_thumbnail(); ?> <a href="<?php the_permalink(); ?><?php the_title(); ?></a> </div>You can then either set under Settings-Reading->Blogs pages show at most 16 posts, or modify the query for just that template to pull 16 posts.
You can then just CSS to position your boxes to float and grid.
More about Post Thumbnail Images
Forum: Themes and Templates
In reply to: want welcome page different from themeYou should be able to create a home.php template and code it however you please.
If you’re site normally shows blog posts on the home page, you could also create a new page for the landing page, create a custom page Template, and use Settings->Reading, and set that new page for front page, and another new page for blog posts.
See Template Hierarchy.
Forum: Hacks
In reply to: Want to add thumbnails to show up on category listsI would recommend looking into using the Post Thumbnails and modifying your theme to use the featured image.
If you don’t want to do that, and want to just use the 1st image in a post, I’d recommend Get the Image plugin.
Cheers and thanks.
Forum: Fixing WordPress
In reply to: terminology for top menuYou can edit that file via the editor under Appearance, assuming the permissions are properly set. I’ve never actually used that editor. I copy the file via SFTP to my local machine, make the edits, and then upload back to the server.
Only AFTER I’ve made a backup of the file before making any edits. Regardless of the method of editing.
Forum: Fixing WordPress
In reply to: How do I set RSS setting for my site, WP version 3.1.1The feed is the feed, how each individual configures their browser/device to handle a feed is just that, personal settings.
Nothing in WordPress by default dictates how/where that feed is consumed/read.
As to a feed address for Amazon, see my previous link for Feed URL.
Forum: Fixing WordPress
In reply to: Where to change post font?Check your CSS, you are missing some quotes around Helvetica Neue in two places I can see.
Forum: Installing WordPress
In reply to: SQL syntax errorMore specifically, what plugin are you using for the mobile?
Forum: Fixing WordPress
In reply to: How do I set RSS setting for my site, WP version 3.1.1You won’t really “set” the RSS. The reason you are getting a page for “Live Bookmarks” is due to how you have Firefox configured. You can modify that in FF preferences under Applications->Web Feed