ColdForged
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Bug: code tag parsingI’ve always put my first line of code immediately after the code tag and the last on the same line as the closing tag. That way those breaks don’t exist. Is that not sufficient?
Forum: Fixing WordPress
In reply to: Adding a PayPal Subscripiton ButtonCan you post your page content here so we can see what it looks like?
Forum: Fixing WordPress
In reply to: Arrrgh!! Can someone please help me!?You’ll have to modify the core. Open the file
wp-includes/classes.phpin your editor of choice on your host. Search for the two lines that look something like this:$whichcat .= get_category_children($cat_array...Insert a
//before those lines.Forum: Fixing WordPress
In reply to: How often RSS gets updated?Are you asking how do you get an RSS feed for your site? If you have permalinks active, http://www.yoursite.com/feed/ will fetch your feed. If you don’t have permalinks, http://www.yoursite.com/wp-feed.php will pull it.
Forum: Fixing WordPress
In reply to: How often RSS gets updated?When you say “check RSS,” what does that mean? Do those new posts show up on your web site? If so, that is the same path the RSS generation code goes through so the posts will show up in the RSS feed when requested. Are you certain that this isn’t a caching issue with whatever you are using to pull your RSS? For instance, if you click on your RSS feed in IE or Firefox, then hard-refresh it, do your new posts show up?
Forum: Themes and Templates
In reply to: Admin area styles/layoutsJoe Kohlmann’s admin interface has been developed as a plugin.
Seems to work fine for me, no signs of glitches and that’s even with me diddling with the admin pages for further development.
Forum: Fixing WordPress
In reply to: Adding a PayPal Subscripiton ButtonKhhhaaan! You have the fastest “Send Post” button in the west, podz. 😉
Forum: Fixing WordPress
In reply to: Adding a PayPal Subscripiton ButtonIs it PHP code? If so, did you wrap the code in
<?php ?>tags?Forum: Fixing WordPress
In reply to: How often RSS gets updated?Bloglines’ update frequency has nothing to do with WordPress 1.5’s RSS updating. Every time you make a post your RSS is updated in WordPress.
Forum: Themes and Templates
In reply to: Admin area styles/layoutsI’d double-check your install, XeroCool… works just dandy for me in both of those browsers.
Forum: Everything else WordPress
In reply to: Website been hackedDo you have shell access or some way to modify your files? If so, check your .htaccess file at the web root. Look for redirects there. Also, make sure that only you have write access to that file.
Forum: Requests and Feedback
In reply to: Looking for ProgrammerI don’t know about PHP exec, but I assume it’s much the same as RunPHP. If that’s the case, the only content that is available for PHP evaluation is the post content. The comments are not evaluated.
Forum: Plugins
In reply to: Nofollow for linksThanks, Pplproof, I appreciate it. I also liked the Codforged typo… made a whole new take on my name :D.
Forum: Plugins
In reply to: Nofollow for linksIt’s possible, but you’ll need to diddle with the core. There may be a sneaky way to do it with a plugin, but I’m too lazy this morning :).
Edit
wp-admin/link-manager.php. Go to the line that says:if ('identity' == $class && in_array('me', $rels) ) echo ' checked="checked"';Add the following line right after it:
if( 'nofollow' == $class && in_array('nofollow', $rels) ) echo ' checked="checked"';Find the following lines further down:
<?php _e('sweetheart') ?></label>
</td>
</tr>Now add the following lines immediately after:
<tr>
<th scope="row"> <?php _e('nofollow') ?> </th>
<td>
<label for="nofollow">
<input class="valinp" type="checkbox" name="nofollow" value="nofollow" id="nofollow" <?php xfn_check('nofollow','nofollow'); ?> />
<?php _e('nofollow') ?></label>
</td>
</tr>Voila.
Forum: Plugins
In reply to: MYSQL Errors with Ryan’s ‘Custom Posts Per Page’ and ‘Nicer Archives’Try editing the postsperpage.php file. Find this line:
$query_string = preg_replace("/posts_per_page=[0-9]*/", "posts_per_page=$num", $query_string);and try making it:
$query_string = preg_replace("/posts_per_page=-?[0-9]*/", "posts_per_page=$num", $query_string);