Created
July 14, 2020 18:08
-
-
Save montrealist/a02e90b2f73e70846ec16858c42d03a9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action('init', function () { | |
add_filter('wpml_elementor_widgets_to_translate', 'wpml_translate_widget_retina_image_20200714'); | |
}); | |
function wpml_translate_widget_retina_image_20200714($widgets) | |
{ | |
$widgets['uael-marketing-button'] = [ | |
'conditions' => ['widgetType' => 'uael-marketing-button'], | |
'fields' => [ | |
[ | |
'field' => 'text', | |
'type' => __('Title', 'uael'), | |
'editor_type' => 'AREA' | |
], | |
[ | |
'field' => 'desc_text', | |
'type' => __('Description', 'uael'), | |
'editor_type' => 'AREA' | |
], | |
[ | |
'field' => 'link', | |
'type' => __('Link', 'uael'), | |
'editor_type' => 'LINK' | |
] | |
] | |
]; | |
// error_log('wpml_translate_widget_retina_image - $widgets[uael-marketing-button]:'); | |
// error_log(print_r($widgets['uael-marketing-button'], true)); | |
return $widgets; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment