Albinal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: No "awaiting moderation" message when anonymous comments are enabledI just had this very same problem. I couldn’t find a solution so I made my own. The moderation message will only show if the user enters a name. So, I added some JQuery to fill in the name with “Anonymous” if the author field is blank on submit.
<script>
// Anonymous comments don’t give moderation message. So, if field is blank fill it in…
$(document).ready(function(){
$(“#submit”).click(function(){
if($(“#author”).val() == “”)
{
$(“#author”).val(“Anonymous”);
}
});
});
</script>It seems a bit daft, but it works.
Forum: Plugins
In reply to: [AutoChimp] Only one group option showing in interest groupI had this problem too. I’ve just done some digging, mainly here: http://www.wandererllc.com/company/plugins/autochimp/ …and have discovered that you need to add one group and then add your real groups as sub-groups. The sub-groups then all show in the WordPress admin. It seems odd but it works.
Forum: Themes and Templates
In reply to: can't get set_post_thumbnail_size() to workI’m getting the same problem. And using a different theme is not really an option since I’m trying to make my own.
I have managed to change the size using this on the template page though:
the_post_thumbnail(array(100,100));Forum: Plugins
In reply to: Cache Images plugin does not workYes, it’s just larger versions of those images. Any idea how to get those across as well? Thanks.
Forum: Plugins
In reply to: Cache Images plugin does not workActually, I’ve told a lie. The image URLs are fine but the links surrounding the images (to open a larger version) still point to Blogger. I was hoping to get the larger versions in and have control over them too.
Forum: Plugins
In reply to: Cache Images plugin does not workThis plugin imported all of my images, unfortunately it didn’t change any of the links in the posts, they all still point to blogger?!? Any ideas on how to fix that?
Forum: Plugins
In reply to: simplexml_load_fileThanks Peter. I will look into it.