Edson Galina Fortes
Forum Replies Created
-
Forum: Plugins
In reply to: [Translate WordPress with Weglot - Multilingual AI Translation] Weglot + DiviHi @sugarev ,
hope you’re fine and sorry for the issue you’re facing. It strange, this should launch only if you have param et_fb or builder on your url. May you have an url i can see the issue?
Are you able to reach the issue to support@weglot.com and mention me i may need to access your admin. I’ll post ths solution here to share it with the community.
Regards- This reply was modified 1 year, 3 months ago by Edson Galina Fortes.
Hi @micahricah hope you’re fine ?
i’m glad to help you. To edit your translation you have to go tou your weglot dashaborad dashboard@weglot.com and go to languages.
here you can fine the documentation that explain how to do ti : https://support.weglot.com/article/128-how-to-edit-my-translations
don’t hesitate if you need more help.
RegardForum: Plugins
In reply to: [Translate WordPress with Weglot - Multilingual AI Translation] Weglot + DiviHi @wiscocreative ,
hope you’re fine ? do you still facing your issue ? May you can share your php log and your php config to check if we find a reason for your issue ?
Regards- This reply was modified 1 year, 4 months ago by Edson Galina Fortes.
Forum: Plugins
In reply to: [Translate WordPress with Weglot - Multilingual AI Translation] Weglot + DiviHi @wiscocreative , hope you’re fine ?
Sorry for the issue your facing, i’m gald to help. This issue is already known and should be fix on our next release. For the moment you can add this code on your website to fix it. You can add it not conflict when the next release of our plugin.
You can add this code in your website code ( in your functions.php theme file ou other way)// Disable translation if certain GET parameters are present
if(isset($_GET['et_fb']) || isset($_GET['builder'])){
add_filter( 'weglot_active_translation', '__return_false' );
}
// Add a custom action to prevent translation during specific AJAX calls
add_filter('weglot_ajax_no_translate', 'custom_ajax_no_translate', 10, 1);
/**
* Add custom AJAX actions to the "no translate" filter.
*
* @param array $ajax_action Existing list of AJAX actions.
* @return array Modified list of AJAX actions.
*/
function custom_ajax_no_translate($ajax_action){
$ajax_action[] = 'et_fb_ajax_save';
return $ajax_action;
}Or using a plugin (code snippet for example). The code must be launch everywhere (front and admin)
add_action('init', function () {
// Disable translation if certain GET parameters are present
if (isset($_GET['et_fb']) || isset($_GET['builder'])) {
add_filter('weglot_active_translation', '__return_false');
}
// Add a custom action to prevent translation during specific AJAX calls
add_filter('weglot_ajax_no_translate', 'custom_ajax_no_translate', 10, 1);
});
/**
* Add custom AJAX actions to the "no translate" filter.
*
* @param array $ajax_action Existing list of AJAX actions.
* @return array Modified list of AJAX actions.
*/
function custom_ajax_no_translate($ajax_action) {
$ajax_action[] = 'et_fb_ajax_save';
return $ajax_action;
}If you still facing your issue, don’t hesitate to send a message to support@weglot.com and mention this thread to be reach to me.
RegardsHi @dumel ,
we have juste release a new version of the plugin. Can you try it and tell me if you still facing your issue ?
RegardsHi @dumel,
sorry for the late answer. Do you still facing your issue ? A new plugin is plan for the 20ty january but i can provide a version inadvance on monday to check if it fixed your issue .
let me know if you want it
RegardsHi @oleviolin ,
sorry for the issue you’re facing ? Are you using Weglot or WPML ? Here it’s the support thread of Weglot and i’m not sure I can help you with WPML. You may contact their support team.
RegardsHi @lauramelos ,
thanks for your message it’s helpful ^^and sorry for the issue you’re facing. The issue is already known on our side and will be fixed on our next release. You can install this patch version until the release: https://we.tl/t-lacAgLreGo
it include the fix for your issue
Don’t hesitate if you’ve other question or need more help
RegardsHi @dumel ,
thanks for your reply, i’ll make some test on my side to try reproduce it and i get you in touch .
Just to be sure, if you deactivate wordfence plugin and keep Weglot activated, you have the issue ? I want to be sure is a conflict between Wordfence and Weglot
regards- This reply was modified 1 year, 6 months ago by Edson Galina Fortes.
Hi @nineteen88 ,
here : https://we.tl/t-msVfv15WSE you can fin the fix version of the plugin for your issue. You can install it and make the futur update (4.3.0) who include the fix too.
Let me know if your still facing your issue
RegardsHI @dumel ,
sorry for the issue your facing.
This is the first time I’ve been told this issue, do you have a specific configuration with WordFence or to reproduce it just need to install and activate WordFence? I will try to reproduce it on my own. Can you report the issue to our support in case I need more access to reproduce the issue
RegardsHi @nineteen88 ,
hope you’re fine? Thanks for your message it’s help. We are already know this deprecation and it will be fix on our next release. Do you need a patch version of the plugin or you can wait the release (planed for january 2025) ?
Regardshi @tady ,
let me know if you still facing your issue or if it’s ok on your side?
Don’t hesitate if you need more help
RegardsHi @barthdesigns ,
thanks for your question ^^. About the wp_installer_settings i’m not sure is related to the weglot plugin.
I’ve make a search on a project and i’ve this list of option related to Weglot (i mean created by us):
weglot_version
widget_weglot-translate
weglot-translate-v3
weglot-translate-api_key_private
weglot-translate-api_key
_transient_weglot_slugs_cache
_transient_weglot_slugs_cache
_transient_weglot_cache_cdn
I’ll open an issue to delete them when the plugin is uninstall.
you can launch this query to find them on your DB :
SELECT * FROMwp_optionsWHEREoption_nameLIKE ‘%weglot%’ LIMIT 50
If you’re not using the plugin any more feel free to delete this options from your DB ;).
Don’t hesitate if you need more help !
RegardsHi @tady ,
hope you’re fine? Sorry for the issue you’re facing. The issue is open on our side. For the moment you can use this patch version of the plugin if you want to turn on your PHP warnings : https://we.tl/t-4OqRoOit46
Regards