🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:wpml.php
<?php /** * Description * * @package wpml.php * @since 8.1.1 * @author Stas * @link http://xstore.8theme.com * @license Themeforest Split Licence */ add_filter( 'wpml_decode_custom_field', function( $value, $key ) { if ( 'viwec_email_structure' === $key ) { $value = json_decode( html_entity_decode( $value ) ); } return $value; }, 10, 2 ); add_filter( 'wpml_encode_custom_field', function( $value, $key ) { if ( 'viwec_email_structure' === $key ) { $value = htmlentities( wp_json_encode( $value ) ); } return $value; }, 10, 2 );
Save Changes
Cancel
Create New File
Create New Folder