Skip Navigation

This thread is resolved. Here is a description of the problem and solution.

Problem:
Beloni is a theme that allows you to have customized footers. However the footer will always be in the default langue even on translations.

Solution:
The solution was to modify the theme code and add a filter that retrieves the footer ID in the current language (and if the footer is not translated yet it will get the ID in default language as fallback)
- Open the footer.php file in your text editor and replace:

global $beloni_page_id;
  $beloni_settings = beloni_global_settings();
  $footer_style = beloni_get_config('footer_style','');
  $footer_style = (get_post_meta( $beloni_page_id,'page_footer_style', true )) ? get_post_meta( $beloni_page_id, 'page_footer_style', true ) : $footer_style ;

by:

global $beloni_page_id;
  $beloni_settings = beloni_global_settings();
  $footer_style = beloni_get_config('footer_style','');
  $footer_style = (get_post_meta( $beloni_page_id,'page_footer_style', true )) ? get_post_meta( $beloni_page_id, 'page_footer_style', true ) : $footer_style ;
  $footer_style = apply_filters( 'wpml_object_id', $footer_style, 'bwp_footer', TRUE  ); // added for WPML support

WARNING: This is a custom code to fix an issue from a third party theme. We're not responsible for it! We encourage any client of this theme to contact the theme author and report the issue and validate this workaround.

Relevant Documentation:
https://wpml.org/forums/topic/shop-footer-not-transilate/#post-13533333

This is the technical support forum for WPML - the multilingual WordPress plugin.

Everyone can read, but only WPML clients can post here. WPML team is replying on the forum 6 days per week, 22 hours per day.

Tagged: 

This topic contains 12 replies, has 2 voices.

Last updated by Nicolas V. 1 year, 11 months ago.

Assisted by: Nicolas V..

Author Posts
April 11, 2023 at 11:36 am #13444901

faizanA-4

hidden link

April 11, 2023 at 11:37 am #13444903

faizanA-4

shop page footer not translate to arabic

April 12, 2023 at 12:56 pm #13456167

Nicolas V.
Supporter

Languages: English (English ) French (Français )

Timezone: America/Lima (GMT-05:00)

Hello,

Welcome to the WPML support forum. My name is Nicolas and I will be happy to help you today.

To help speed up the support process, I've enabled a private message for submitting the debug information for this support ticket. Please follow these initial debugging steps:
https://wpml.org/faq/provide-debug-information-faster-support/
In short:
- Go to "WPML > Support > Debug Information" (link)
- Copy the Debug Information from there.
- Find the private field I activated and paste that information.

---

While waiting for that file, I had a quick look at your website and I can see that the footer is using Elementor widgets but the footer ID is "bwp-footer" (which is not from Elementor). So, I'm not sure about the issue here.

1. If the footer is coming from Elementor:
Here is our tutorial for Elementor, please make sure that you translated your Elementor templates (header/footer) in "WPML > Translation Management":
https://wpml.org/documentation/plugins-compatibility/elementor/#translate-elementor-templates

2. If the footer is not coming from Elementor
Please provide me with all the details:
- How did you create that footer? Is it from your theme or an add-on plugin?
- Were you able to translate that footer but the text is not translated on the frontend?

Nico

April 13, 2023 at 8:04 pm #13468305

faizanA-4

THIS IS

April 13, 2023 at 8:14 pm #13468311

faizanA-4

Footer coming from default theme settings

April 14, 2023 at 2:57 pm #13474643

Nicolas V.
Supporter

Languages: English (English ) French (Français )

Timezone: America/Lima (GMT-05:00)

Hello,

Thanks for providing your debug file. Your configuration seems fine!

You mentioned that the footer was coming from your theme, I checked and "Beloni" is not on the list of compatible themes (https://wpml.org/theme/).
That doesn't mean that the theme is not compatible, it means that we didn't test it and we don't have a specific documentation for it.
I see on their themeforest page that they claim to be compatible with WPML. Do you have access to their documentation? Anything mentioned about WPML?

If you have a hard time to explain in details the issue, I can also have a look. That should save us time.
Could you please provide me with a temporary admin access (wp-admin and FTP) – preferably to a test site where the issue has been replicated – so I can further investigate. I will activate a private field for your next answer where you can provide that information safely (this field is only visible by you and the support team). Don't share your own admin account, create a new one that you will delete when we finish troubleshooting.

IMPORTANT: Before we proceed, please backup your site and database.

Nico

April 19, 2023 at 2:33 pm #13505507

Nicolas V.
Supporter

Languages: English (English ) French (Français )

Timezone: America/Lima (GMT-05:00)

Hello,

Thank you for providing me access. I was on the right track, the footer is indeed coming from your theme options:
- Go to "WPbingo > Footers" to see all your English footers
- Go to "WPML > Settings > Post Types Translation" and change the translation preference of "Footer (bwp_footer)" from "Not translatable" to "Translatable"
- Now go back to "WPbingo > Footers" and you will see the "+" icon that allows you to translate your footers
- FYI, the first link you sent (hidden link) uses "Footer 2" in case you want to start with this one.

Nico

screenshot-2023.04.19-09_26_09.png
April 21, 2023 at 2:26 pm #13518593

faizanA-4

all footers are translated but arabic shop and cart and single products checkout pages are still English

April 24, 2023 at 12:12 pm #13527033

faizanA-4

please need assistance

April 24, 2023 at 1:45 pm #13527803

Nicolas V.
Supporter

Languages: English (English ) French (Français )

Timezone: America/Lima (GMT-05:00)

Hello,

Could you please explain me where do you select "Footer 2" for your products? I think that field needs to be copied or translated.

Nico

April 24, 2023 at 5:05 pm #13528989

faizanA-4

footer 2 choose from theme option ->general -> footer 2

Theme Options ‹ UNBOUND — WordPress.png
April 25, 2023 at 11:42 am #13532897

Nicolas V.
Supporter

Languages: English (English ) French (Français )

Timezone: America/Lima (GMT-05:00)

Hello,

Thank you, I will have a look now. I'll come back to you in a moment.

Nico

April 25, 2023 at 1:03 pm #13533333

Nicolas V.
Supporter

Languages: English (English ) French (Français )

Timezone: America/Lima (GMT-05:00)

Hello again,

It seems that your theme is not 100% compatible with WPML.

I had to modify the code in footer.php to make it work here: hidden link

global $beloni_page_id;
  $beloni_settings = beloni_global_settings();
  $footer_style = beloni_get_config('footer_style','');
  $footer_style = (get_post_meta( $beloni_page_id,'page_footer_style', true )) ? get_post_meta( $beloni_page_id, 'page_footer_style', true ) : $footer_style ;
  $footer_style = apply_filters( 'wpml_object_id', $footer_style, 'bwp_footer', TRUE  ); // added for WPML support

I added a filter that retrieves the footer ID in the current language (and if the footer is not translated yet it will get the ID in default language)

IMPORTANT: Please note that custom codes are out of the scope of our support but I wanted to help you out here. We cannot guarantee/maintain this code. Please test the code yourself, make sure that everything is working fine. If you need help you can also contact one of our certified partners from this link: http://wpml.org/documentation/support/wpml-contractors/
You will get the custom assistance you need to get on with your project.

Also, note that this change shouldn't be done directly in your theme, because every time the theme is updated by the author, your changes will be overwritten. Instead you should use a child theme.
Ref: https://developer.wordpress.org/themes/advanced-topics/child-themes/

Last, I would strongly recommend to contact the theme authors and invite them to join our GoGlobal program: https://wpml.org/documentation/support/go-global-program/
Our developers will be more than happy to help them make their theme 100% compatible and listed on our site as compatible theme here: https://wpml.org/theme/