chochem
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to delete all comments in moderationI figure you’ve solved you problem by now, but for future reference I’ll explain what I did.
I figure that there is some way to get the ‘mass moderation’ to show more than 20 comments at a time (why is this not an option!?) but since I couldn’t find it, I went to work directly at the MySQL database where they’re stored. The exact details of how to get to it and how to edit it varies with the your host and the MySQL management tool they put at your disposal but going to your ‘control panel’ (from your web host account) and choosing ‘MySQL’ is probably right. My host uses the program PhpMyAdmin. I chose ‘Databases’ and then the only database I’m allowed which was simply called ‘web33767’ as this is my account name. From the list of various types of entries, find ‘blog_comments’ and choose ‘browse’. Now you’re looking at a large table of all the comments posted. You should have the option to show as many as you like at one time (e.g. 500) and to order it by any of the columns (e.g. ‘approved’ which has the value 0 for not approved and 1 for approved), check all and delete them by the boatload.
Forum: Plugins
In reply to: Quick “Bad Behavior” questionNegative or not, it is kinda… uhm frustrating… to be shut out of your own site. Opera, IE, Firefox, proxy or no proxy. So I’m pretty tempted to delete it, too. Also I now know why I’ve been having difficulty accessing a number of sites.
Cypher: Could I just ask – what did you figure out?
Forum: Fixing WordPress
In reply to: Horizontal shifts from page to pageBoy is my face red… Yes, it is obvious. I guess I was just too immersed in the code to see what was actually on the screen… Thanks anyway.
Forum: Fixing WordPress
In reply to: How to get rid of WYSIWYG editor?Ah yes, should’ve checked myself… thanks 🙂
Forum: Fixing WordPress
In reply to: How-to: RSS feed – just the title link?anyone?
Forum: Fixing WordPress
In reply to: RSS feed shows RSS comments after updateUhm I am no expert and maybe this is completely of the mark but I’m pretty sure it’s really down to the theme. Go to the “Presentation” part of the administration, click “Theme Editor” and check the file which will most probably be called “Sidebar”. Somewhere in there should be a reference to your rss feed. Mine looks like this:
<a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a>In case the php refers to the comments instead it would look something like this:
<a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a>?Basically you should simply be able to copy-paste the one you want into the sidebar file and remember to hit the ‘update’ button at the bottom of the screen.
Forum: Fixing WordPress
In reply to: Problem in writing a postWell, I guess the obvious questions are: What browser do you use and have you tried another? It looks just like it’s simply a bad interpretation of the page layout…