Marc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: www and trailing slash problemAll that said “WWW” isn’t useful any more and there is no valid reason to use it despite what the originator of this thread believes.
Forum: Fixing WordPress
In reply to: trackback fixedYou could have placed this under the many other threads you have with this same discussion.
It would make following the progression of the final solution easier.
Forum: Plugins
In reply to: Is the a plugin to create a web links directory?A word of caution:
You may want to re-enter a reference to the original designer of this page you have modified.
http://www.nickjones15racing.com/
It’s pretty obvious it is the Clean Breeze theme, but also not modified enough to not give credit out of courtesy. For someone that apparently has published and operate so many sites you should understand the concept of giving credit.
You also may want to check your links page off that site.
All the graphics you have included have destroyed the page in FF.
Forum: Installing WordPress
In reply to: Making WP & xampp friendlyI have being running XAMPP with WP and php 5 for about 4 months with no problems.
Forum: Fixing WordPress
In reply to: Saving changes to templates“Man I really am a big time noob at this.”
We all were!
BTW if your host uses CPanel to administer your site you can use that thru it’s file manager to change file permissions.
Forum: Fixing WordPress
In reply to: Saving changes to templatesYou have to use your ftp client to chmod your template files (666 will work). Then that “curios statement” will disappear. And then your files will be saved.
Forum: Requests and Feedback
In reply to: Please make a big SAVE button for creating new pages.So now that you know it’s function, why is it so confusing?
Forum: Fixing WordPress
In reply to: links on the sidebar by categoriesTry this:
<ul>
<?php
$link_cats = $wpdb->get_results("SELECT cat_id, cat_name FROM $wpdb->linkcategories");
foreach ($link_cats as $link_cat) {
?>
<li id="linkcat-<?php echo $link_cat->cat_id; ?>"><h2><?php echo $link_cat->cat_name; ?></h2>
<ul>
<?php wp_get_links($link_cat->cat_id); ?>
</ul>
</li>
<?php } ?>
</ul>Forum: Fixing WordPress
In reply to: Removing WordPressYou’ll be sorry.
Taking all bets:
Within a week sinebar will either post the deletion didn’t take place or it has been reinstalled.
🙂
Forum: Your WordPress
In reply to: End PegHmmm… cut bait or fish.
Your definitely fishing!
It should be released as a theme.
Forum: Fixing WordPress
In reply to: Drop-Down Menus for v1.5This is for 1.2 but look in the comments section for a guide on 1.5
http://typedby.com/archives/2004/06/14/drop-down-plugin-for-wp-links-manager/
Forum: Fixing WordPress
In reply to: how to copy code hints here?Strange, I just copied the code from the last entry on that link.
Check your copy paste function on another page or from your blog page to test the mouse.
Forum: Fixing WordPress
In reply to: how to copy code hints here?Where are you copying the code from? If from someone else’s page they might have right click disabled.
Forum: Requests and Feedback
In reply to: Could someone code my layout?Good idea!!
Forum: Plugins
In reply to: In search of global RSS Posts Comments in oneYou shouldn’t need a hack or plugin. Your RSS 2.0 feed provides both content and the comments.
In your admin page under Options >> Reading you will find a checkbox to select whether you want the full text or a summary of each post.