• Hi,

    Working with the WordPress plugin version 0.9.7 I experienced the following problems:

    (1) I use the default nl_NL version. However, no all text strings have been translated. What can I do to translate the sentence “There were errors submitting your guestbook entry.”?

    (2) The recaptcha form has not been translated as well. How can I solve this problem?

    (3) Is it possible to use a different recaptcha theme? The current theme is the red theme.

    (4) When I uncheck the “Moderate entries before publishing them” option, then all the new entries are marked as spam and not shown automatically. I don’t understand this behaviour.

    (5) When I try to the mark those entries as not spam, then the plugin will not update the entries. Why?

Viewing 1 replies (of 1 total)
  • So for everyone who’s wondering why unchecking “Moderate entries before publishing them” doesn’t really change anything: there’s a little bug in functions/gwolle_gb_save_entry.func.php. Luckily, it’s very easy to fix it:

    On line 60 and 61 this code

    ".$entry['is_checked'].",
    ".$entry['is_spam']."

    needs to be changed to this

    ".$entry['is_spam'].",
    ".$entry['is_checked']."

    That’s all!

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin gwolle-gb] nl_NL localisation: not all text strings have been translated’ is closed to new replies.