Okay
  Public Ticket #1506438
Turkish String (UFT8) Character Problem
Closed

Comments

  •   BYMORPHEUS started the conversation
  •  471
    Isidora replied

    Hi BYMORPHEUS,
    Thank you for your purchase.

    Yes we notice that. Gravity forms keep that format in database and wpdatatables just read that values. We need to do some changes in code so can you please provide me a temporary WP-admin login  and FTP credentials for your site where this happens, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue. We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course we do not provide login data to third party. You can write credentials here just check Private Reply so nobody can see them except us.

    Kind Regards, 

    Isidora Markovic

    wpDataTables: FAQFacebookTwitterFront-end and back-end demoDocs

    Amelia: FAQFacebookTwitter |  Amelia demo sites | Docs

    You can try our wpDataTables add-ons before purchase on these sandbox sites:

    Powerful FiltersGravity Forms Integration for wpDataTablesFormidable Forms Integration for wpDataTables

  •   BYMORPHEUS replied privately
  •   BYMORPHEUS replied privately
  •  471
    Isidora replied

    Hi BYMORPHEUS,

    Sorry for late response. 

    We are located in Serbia and our working time is from 10:00 to 17:00 CET. business days.

    Yes if you are familiar with coding you can change it yourself.

    In file wp-content/plugins/wdt-gravity-integration/wdt-gravity-integration.php around line 513 you will find this:

     case 'multiselect':
                    $fieldData = str_replace(',', ', ', str_replace(array('[', ']', '"'), '', $entry[$fieldData['fieldIds']]));
                  
                    return $fieldData;
                    break;

    and you have to add two more lines of code and your code will looks like this

     case 'multiselect':
                    $fieldData = str_replace(',', ', ', str_replace(array('[', ']', '"'), '', $entry[$fieldData['fieldIds']]));
                    $fieldData    = str_replace('\u','u',$fieldData);
                    $fieldData = preg_replace('/u([\da-fA-F]{4})/', '&#x\1;', $fieldData);
                    return $fieldData;
                    break;

    This will be overwritten in next update so you have to come back and change ti again.

    Kind Regards, 

    Isidora Markovic

    wpDataTables: FAQFacebookTwitterFront-end and back-end demoDocs

    Amelia: FAQFacebookTwitter |  Amelia demo sites | Docs

    You can try our wpDataTables add-ons before purchase on these sandbox sites:

    Powerful FiltersGravity Forms Integration for wpDataTablesFormidable Forms Integration for wpDataTables

  •   BYMORPHEUS replied privately
  •   Isidora replied privately
  •   BYMORPHEUS replied privately
  •  471
    Isidora replied

    HI BYMORPHEUS,

    You are welcome.  

    If you have any more issues feel free to open a new ticket, we will gladly help.

    We'd greatly appreciate it if you could take a minute and leave a review on CodeCanyon on this link. Thanks! 

    Kind Regards, 

    Isidora Markovic

    wpDataTables: FAQFacebookTwitterFront-end and back-end demoDocs

    Amelia: FAQFacebookTwitter |  Amelia demo sites | Docs

    You can try our wpDataTables add-ons before purchase on these sandbox sites:

    Powerful FiltersGravity Forms Integration for wpDataTablesFormidable Forms Integration for wpDataTables