Skip Navigation

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

Problem:
The client is experiencing an issue where the footer disappears on the French version of their website after using WPML to translate it. They use a VamTam theme and VamTam builder for the footer. Despite trying to duplicate and retranslate the footer, the problem persists.
Solution:
First, we recommend updating all themes and plugins to their latest versions, as outdated versions can cause compatibility issues. Specifically, update the VamTam theme and any active plugins. Next, deactivate any unnecessary or redundant plugins, especially multiple page builders.
Regarding the footer, since it uses specific shortcodes (e.g.,

[fl_builder_insert_layout id=988638]

), these need to be placed on each page where the footer should appear.

If these steps do not resolve the issue, or if the solution becomes outdated, we highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If the problem persists, please open a new support ticket.

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 6 replies, has 0 voices.

Last updated by nickB-47 1 month ago.

Assisted by: Andreas W..

Author Posts
May 7, 2025 at 12:48 am #17003949

nickB-47

Background of the issue:
I have translated my website to French using WPML, and everything works great except the footer. I use a VamTam theme and VamTam builder for the footer. The issue can be seen on this page: hidden link. I expected to see the footer in French here: hidden link.

Symptoms:
The footer disappears on the French side after translation. When I manually choose the translated French footer, it is missing on the English side. I tried duplicating the footer and translating again, but the same issue occurred.

Questions:
Why does the footer disappear on the French side after translation?
How can I ensure the footer appears correctly on both the French and English sides?

May 7, 2025 at 12:59 am #17003993

Andreas W.
WPML Supporter since 12/2018

Languages: English (English ) Spanish (Español ) German (Deutsch )

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

Hello,

It seems the minimum requirements on the server are not met:
https://wpml.org/en/home/minimum-requirements/

Could you please increase the WordPress memory limit (WP Memory Limit) to at least 256 MB? WPML requires at least 128 MB.
Your current values ​​are:

PHP Memory Limit 2048 MB
WP Memory Limit 40 MB

To do this, you need to connect to your website's server and open the wp-config.php file in a text editor. The file is located in the WordPress root directory.

Add this code to the wp-config.php file to increase WordPress's memory:

define ('WP_MEMORY_LIMIT', '256M');

Add this just before this comment:

// That's all, stop editing! Happy blogging.

The current values ​​can be viewed under WPML > Support > WordPress.

These settings can be restricted directly by your hosting provider. Therefore, I recommend contacting them and asking them to change them directly if the changes are not applied immediately.

In doubt, make sure to try to save the footer template translation again.

If this will not solve the issue, please let me know.

Best regards,
Andreas

May 10, 2025 at 3:01 am #17018367

nickB-47

I have updated the memory limits and issue is persisting

May 10, 2025 at 3:17 am #17018375

Andreas W.
WPML Supporter since 12/2018

Languages: English (English ) Spanish (Español ) German (Deutsch )

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

Hello,

I would like to request temporary access (wp-admin and FTP) to the website to investigate the issue further.

You can find the required fields below the comments section when you log in to leave the next reply. The information you provide is private, meaning only you and I can see and access it.

IMPORTANT
Please be sure to back up your website and database before granting us access.
If you can't see the "wp-admin / FTP" fields, your post and website credentials will be set to "PUBLIC." DO NOT publish the data unless you see the required wp-admin / FTP fields.

The private reply form looks like this:
hidden link

Click "I still need assistance" the next time you reply.

Video:
hidden link

Please note that we are required to request this information individually on each ticket. We are not permitted to access any credentials that were not specifically submitted on this ticket using the private response form.

Best regards,
Andreas

May 13, 2025 at 4:58 pm #17029238

Andreas W.
WPML Supporter since 12/2018

Languages: English (English ) Spanish (Español ) German (Deutsch )

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

Before we take any further steps, I would kindly like to ask you to run all available updates disable any unnecessary or redundant plugins on your site, and then test if the issue persists.

Note, that also the theme is outdated. Please update it, and run any available plugin updates.

IMPORTANT:
On you are site three active page builder plugins:
- Beaver Builder
- Elementor
- Siteorigin

In case you build your content with Elementor, please make sure that only this page builder is active on the site and disable the other two page builders.

The same goes for "VamTam Elements (B)" which would only be needed if you build your content with "Beaver Builder".

If you do not use "SKT Templates" please also disable this plugin.

You further have two form plugins enabled:
- Ninja Forms (has forms)
- WPForms (no forms)

Make sure to only use one plugin per plugin type and disable any plugin that is not used on the site.

After that, please leave me a comment so that I take another look at the site.

May 14, 2025 at 1:24 am #17029986

nickB-47

Thankyou for the update, I have run all updates and disabled the below plugins that I don't use
- Elementor
- SiteOrigin
- WPForms
- SKTemplates

May 14, 2025 at 2:28 am #17030008

Andreas W.
WPML Supporter since 12/2018

Languages: English (English ) Spanish (Español ) German (Deutsch )

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

This seems to be an issue with VamTam Builder and its templates.

I see each template uses a unique shortcode, like for example:
[fl_builder_insert_layout id=988638]

The shortcodes would need to be placed manually on each page in this case.

Where exactly do you integrate the footer into the site? Are you using these shortcodes?

May 14, 2025 at 4:35 am #17030065

nickB-47

Thank you, I added this code into the functions.php, which has added the footer to each of the French pages

function insert_layout_shortcode_in_footer() {
if (defined('ICL_LANGUAGE_CODE') && ICL_LANGUAGE_CODE === 'fr' && is_page()) {
echo do_shortcode('[fl_builder_insert_layout id=988638]');
}
}
add_action('wp_footer', 'insert_layout_shortcode_in_footer');