Marc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comment link anchorNothing is missed, that is the way the single.php or comment.php (whatever your theme calls it) is coded.
Unless you have written a blog version of “War and Peace why is this a problem?
Forum: Fixing WordPress
In reply to: Though It Shows Up, the RSS Feed not WorkingFirst of all how would your friends know what your RSS feed url is? You don’t have it displayed in your sidebar.
Secondly however your friends checked your feed, they are dead wrong.
I just checked it via my reader (RSS Bandit) and it worked fine.
Of course I had to first dig up your blog URL that you failed to post here. Then dig thru your source code to get the feed URLWhich you can display in your sidebar using this URL
http://butuki.com/laughing_knees/feed/
EDIT: thanks you added the blog url while I posted this.
BTW why do you connect your lack of visitors to a non-working RSS feed?
Forum: Fixing WordPress
In reply to: How to I show ALL categories in version 1.5Empty categories won’t show on your index page. They will be displayed on your “write post” section of your admin page.
Do you mean to say they are missing on the write page?
Modify your files from admin >presentation> theme editor.
All your files should be listed on the right side of that page.
Forum: Plugins
In reply to: Plugin: MiniblogAdd this code to your sidebar and it will callup the number of miniblog entries you have set for it.
<li><h2>YOUR TITLE HERE</h2><ul> <?php
$asides = miniblog_return_entries(5, 0, '', 'Title');
foreach($asides as $aside) { ?>
<li><?php _e($aside->title); ?><br /><?php _e($aside->text); ?></li>
<?php } ?></ul></li>BTW the above link to my blog isn’t being redirected from the forum:
http://cranialcavity.net/wordpress/index.php/You can view how the above code looks under “Short Takes” in the sidebar.
Forum: Fixing WordPress
In reply to: Wrong Page Displaying in BlogThey’re the same alright:
Both spam ads from someone trying to be cute.
Forum: Themes and Templates
In reply to: Strange sidebar bulletsThat’s the code for this: >>
Forum: Plugins
In reply to: Plugin: MiniblogI installed the plugin late last week without any problems. I have been using it as a way to post snippets of news of other blog entires to the side bar vice a full blog post.
It is set to display 5 entries. Just today I entered the sixth entry.
I assumed the sixth would delete the oldest and display #6. The plugin failed to make that change.
Is this a bug or do I have to manually delete the oldest entry.
Forum: Fixing WordPress
In reply to: what’s your policy regarding registering/commentingRegistering just to comment flat out sucks.
I was reminded of this thread topic just two minutes ago. I had a question on a plugin and sifted thru a very long comment thread at the programers site.
After making sure that my question had not been answered in one of the 50 plus comments, what do I find? Registration just to ask a simple question.
So any answer is delayed because I must go thru the reg process, then await the PW email, surf back to the site, then and only then post my question.
It SUCKS – with all the available spam plugins their is absolutly no need for that.
Forum: Fixing WordPress
In reply to: My blog takes too long to saveTurn off all your plugins and the ping function, if enabled.
Then see if it clears the problem. For some odd reason maybe one of the plugins is in conflict with the new design.
Forum: Your WordPress
In reply to: Moved from Pivot to WordPress – The Armageddon ProjectHey it didn’t scare me, looks nice and love the content. Even if the book cover pic of Shillary is scary as hell.
Forum: Fixing WordPress
In reply to: Sending referrersForum: Fixing WordPress
In reply to: How Do I Post to Another Page?Your index.php file must have a link to “register”
A new member then clicks that link that takes them to the register section where they signup and receive a password.
Forum: Fixing WordPress
In reply to: How Do I Post to Another Page?You can’t “post” to a page you have created. You can go to manage pages then edit the pages you have previously created.
A page is not dynamic like normal blog entry.
Forum: Themes and Templates
In reply to: CSS template help pleaseAnd I agree Podz, and if it wasn’t pointed out very early in this thread that Green Marinée was broken in IE I would not have started down the road I did.
I also remember your correct prediction brfore the theme contest was completed.
Forum: Plugins
In reply to: Looking for automatic drop caps pluginSo you make a new quicktag and add it to the js that inputs
<span id=”first letter of para”></span>I used that exact method for both WP 1.2 Mingas and WP 1.3 with absolutly zero problems.