Joe Hall
Forum Replies Created
-
Forum: Hacks
In reply to: Exclude content from search resultsTry this on for size:
<? get_header()?> <div id="sub_header"> <?php include (TEMPLATEPATH . '/includes/search_form.php'); ?> </div> <div id="content"> <div id="left_2_col"> <div id="search_results"> <h2 class="search_results">Search Results</h2> <div id="search_results_top"></div> <h3>Search Results for "<?= get_search_query() ?>". <!-- <span class="showing">Showing 0 - 0 of 0.</span>--></h3> <? if (have_posts()) : ?> <table> <tr> <th>Title</th> </tr> <? $i = 0; while (have_posts()) : the_post(); $i++; ?> <tr <?=((($i % 2) == 1) ? "class=\"alt\"" : NULL)?>> <td> <a href="<? the_permalink() ?>" rel="bookmark" title="Permanent Link to <? the_title_attribute() ?>"><? the_title() ?></a> </td> </tr> <? endwhile; ?> </table>Forum: Fixing WordPress
In reply to: posts don't show on frontpage anymoreCan you please post a link so we know what we are dealing with??
Forum: Fixing WordPress
In reply to: Remove or edit mouse hover on navigation menu optionFirst I would check out the menus tab in WordPress here wp-admin/nav-menus.php to see if you can edit it there. Then if you can’t then take a look at your theme’s header.php document. Look for the menu function somewhere at the top. delete anything that says excerpt or description.
When all else fails, ask the folks that made the theme at:
Forum: Themes and Templates
In reply to: Will pay you with LOVE.@medievia You have to point the image tags to actual images. I used “your-thumbnail.jpg” in my example just as a place holder.
Forum: Fixing WordPress
In reply to: Removing the "index.php" from links?Have you checked wp-admin/options-general.php ? Go there and make sure index.php isn’t in the “Site address (URL)” field.
Forum: Fixing WordPress
In reply to: Looking for email subscription widgetFeedBurner can do that for you.
Forum: Fixing WordPress
In reply to: Is it possible to post to two blogs at once?Yes, I use a desktop application called BlogDesk that makes this quite easy. http://www.blogdesk.org/en/index.htm
You can set it up to post to as many blogs as you like.
Forum: Fixing WordPress
In reply to: images do not appear in firefox, OK in IEI am using the most recent version of firefox and I can see your images. Make sure that you aren’t running a FF plugin that is malfunctioning or broken.
Forum: Networking WordPress
In reply to: Is WPMU the Right Solution?@gcarson No you don’t need to hack anything…thats the point of MU it does that for you.
Forum: Networking WordPress
In reply to: Is WPMU the Right Solution?@gcarson, MU shares sets theme options on a per user basis. So if one user has different settings for the same theme it shouldn’t matter. In other words all of the users use the same theme files, but their options are stored separately in the database.
Forum: Themes and Templates
In reply to: Advanced Featured-posts functionWhen you edit or create a new post go to the custom field box and use “slide” as name with out quotes, and then as the value put the URL of the thumbnail.
Forum: Fixing WordPress
In reply to: Looking for email subscription widgetHave you tried FeedBurner?
Forum: Themes and Templates
In reply to: Will pay you with LOVE.Assuming your thumbnails are all the same width, then this code should work nicely.
<div style="text-align:center;width:100%;display:block"> <img align="left" src="your-thumbnail.jpg" /> <img align="left" src="your-thumbnail.jpg" /> <img align="left" src="your-thumbnail.jpg" /> <img align="left" src="your-thumbnail.jpg" /> <img align="left" src="your-thumbnail.jpg" /> <br /> <img align="left" src="your-thumbnail.jpg" /> <img align="left" src="your-thumbnail.jpg" /> <img align="left" src="your-thumbnail.jpg" /> <img align="left" src="your-thumbnail.jpg" /> <br /> <img align="left" src="your-thumbnail.jpg" /> <img align="left" src="your-thumbnail.jpg" /> <img align="left" src="your-thumbnail.jpg" /> </div>Forum: Networking WordPress
In reply to: Is WPMU the Right Solution?It might be overkill, but then again it might be cheaper than having a custom system built. If you are going to be the person that inputs all their data then its no big deal. But, if you are going to actually give them each access to their WordPress dashboard then you have to be responsible for training them how to edit their sites and answering any and all support questions, possibility going behind them to fix their mistakes that kinda thing.
So I would say if your intention is for them to have the ability to edit their own sites, then yes its over kill for a user that doesn’t blog. But if you are doing all the editing then maybe its the best solution.
Forum: Fixing WordPress
In reply to: Google Ads replaced my sidebarsCan you please provide a link for us to look at? Not sure how to help otherwise.