auschick
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Show post/page IDs…come to think of it… hovering is not such a big deal to me… just make sure it’s mentioned in the codex on the wp_list_pages page so that others will know where to look.
Forum: Requests and Feedback
In reply to: Show post/page IDs+1 for visible page ID’s too!! I use wp_list_pages too and the functions only allow for numbers rather than names.
Forum: Plugins
In reply to: [Plugin: Exclude Pages] wordpress 2.5 compatibilityForum: Themes and Templates
In reply to: Categories Index on a Separate pageOne way to do this is to create a Page Template (you can copy your “page.php” into the template). Using the List Categories code, write your list into the template. Then, create a “page” in WP and choose the template you just created.
Forum: Plugins
In reply to: Show Recently Popular with Popularity ContestThis site might help you. It has a code to call most popular within a month.
Forum: Fixing WordPress
In reply to: Easiest method to disable email option.If you are using version 1.5.1 or 2.0 (not sure about the others), you can go to the options page and disable it there. In 1.5.1 this is located at Options | ShareThis Classic. In 2.0 you can do it on the sharethis website. (www.sharethis.com).
Forum: Plugins
In reply to: Any slideshow plugins?@joomlaworks — do you have the standalone version for WordPress ready yet? I can see the static version on your site, but it appears to involve editing the html file.
Forum: Fixing WordPress
In reply to: Display a complete archive listthank you thank you thank you! this is just what i was looking for!!
Forum: Fixing WordPress
In reply to: Allowing people to post comments with an avatarThere are a few plugins that will automatically detect the commenter via IP address. This is one such:
https://priyadi.net/archives/2005/02/25/wordpress-ip-to-country-plugin/Forum: Fixing WordPress
In reply to: removing <p> tag from the_excerptSweet! I had the same problem and that fixed it :-).
@Kappuluppa: one thing you can do is go back through your posts and fill in the “optional excerpt” bit at the bottom of the write post admin panel. WordPress will use this excerpt rather than the generated one.
This is what my template looks like:
<?php the_excerpt(); ?><span class="readmore"><a href="<?php the_permalink ?>">Read This</a></span>
Forum: Fixing WordPress
In reply to: Moderate all comments in specific categories onlyactually, I wrote that really badly. my bad!
I don’t want to moderate all comments that I receive.
BUT there are certain categories that any comments I receive to those need to be moderated.
So is there a way to have category based comment moderation?
Forum: Plugins
In reply to: Alex King’s Share-ThisI had a problem where the popup box works when you have the plugin set to automatically install, but doesn’t work when you manually install it.
*Finally* figured out why :). When installing manually, do this in the .php file:
@define('AKST_ADDTOCONTENT', false);
@define('AKST_ADDTOFOOTER', true);That worked for me, so hopefully it works for you!