Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author xnau webdesign

    (@xnau)

    You’re right, it’s not a browser issue, but an issue with the translation files. It can be fixed if you know how to edit translation files, several of them have an error where the token {field} was translated, but it needs to stay in English so the code will work.

    Thread Starter amgfreak

    (@amgfreak)

    Thanks a lot! It has worked for me when I’ve changed the language of WordPress to English.

    I can’t find the code where the token field is translated, only this one:
    #: participants-database.php:578
    msgid “Delete the \”{name}\” {thing}?”
    msgstr “L?schen von \”{name}\” {thing}?”

    There it shouldn’t be translated, the field name should be the same in English and German, right?

    Plugin Author xnau webdesign

    (@xnau)

    yes, correct, that looks OK.

    Thread Starter amgfreak

    (@amgfreak)

    Ok… but with this it doesn’t work while WordPress is running on German. After changing on English it works.
    Little mistake in my first post: of course I wanted to say that I can add fields, not pages, I’m sorry. So everything works fine apart from the deleting button.

    Do you have any other ideas?
    Thanks a lot ??

    Plugin Author xnau webdesign

    (@xnau)

    OK, try this fix. You’ll need to edit the plugin file classes/PDb_Manage_Fields.class.php

    on line 646, you’ll see:

    case 'delete_field':

    Change this to:

    case 'delete_' . $this->i18n['field']:

    Similarly, on line 658, change it to:

    case 'delete_' . $this->i18n['group']:

    Thread Starter amgfreak

    (@amgfreak)

    Yeah, it worked, very good! Thank you a lot for your support!! ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Delete button doesn't work’ is closed to new replies.