hgrietkerk
Forum Replies Created
-
Forum: Plugins
In reply to: Spam Filter that DOESN’T moderate comments?This sounds great. I don’t know how these spammers work but lately I get around 10 spam comments a day and still increasing. They are posting comments on non-excisting posts. In the email it mentions:
A new comment on the post #1 “” is waiting for your approval
…but there is no post 1 anymore. Can’t turn off the comments feature either in those cases.
To have a solution that blocks these guys from cracking into the system would be greatly appreciated.Forum: Fixing WordPress
In reply to: Cruft free URLsI am actually trying to figure this out as well for a while. I get server errors when I attempt to use URIs with subdirectories (cruft free ones).
Do I need to change anything on the server to make this happen? May you can refer us to a place where it is explained how it works or how to get it running. Thanks a lot!Forum: Plugins
In reply to: Email posting plugin?For wp-email I have setup a Cronjob in the admin section of my website. In the Cron Manager I placed the line:
php /home/name_of_website/other_directories/wp-mail.php in order to point it properly to wp-mail.php
Set the the time & frequency you want the Cron to run. Check with your provider otherwise how to set it up in your server.Forum: Requests and Feedback
In reply to: Separate template for each categoryI actually changed my site to have a seperate template for the homepage than for the other pages. The solution was somewhere in this forum under “design”.
I replaced the following string:
@import url( <?php echo get_settings(‘siteurl’); ?>path and name of stylesheet );
with the following one:
@import url( <?php if ($cat == “1”) {echo “path and name of stylesheet );”;}else{echo “path and name of second stylesheet );”;} ?>
In the line above I included the url in the path. It works, you can check out my site.
It is not so pretty (some of the php guys can do it a lot better…)