Skip to content Skip to sidebar

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.

This topic contains 8 replies, has 1 voice.

Last updated by Pierre Sylvestre 3 weeks, 3 days ago.

Assisted by: Pierre Sylvestre.

Author Posts
April 2, 2026 at 8:10 am #17945140

nas-luxuryR

I am using WP All Import from property from bitrix with WPML for property listings.

Default language: English
Translations created automatically via WPML
WP All Import is set to delete properties missing from the XML feed

Issue:
When a property is removed from the XML feed, it is deleted only in English. Translated versions (Arabic, Russian, etc.) remain in the database.

I need translations to be deleted automatically when the original post is deleted.

April 2, 2026 at 11:11 am #17945777

Pierre Sylvestre
Supporter

Languages: English (English ) French (Français ) Portuguese (Brazil) (Português )

Timezone: America/Sao_Paulo (GMT-03:00)

Hi @nas-luxuryR,

Could you please confirm that you had the option "When deleting a post, delete translations as well" enabled when you imported your content? (in WPML > Settings > Posts and pages synchronization)

Thanks,
Pierre

Settings-‹-WPML-Dev-—-WordPress-04-02-2026_08_11_AM.png
April 3, 2026 at 6:30 am #17947240

nas-luxuryR

Hi, Good morning!

That option is already enabled.

April 6, 2026 at 6:06 pm #17952136

Pierre Sylvestre
Supporter

Languages: English (English ) French (Français ) Portuguese (Brazil) (Português )

Timezone: America/Sao_Paulo (GMT-03:00)

@nas-luxuryR,

I've tried to reproduce your issue locally without success. There are so many options in WP All Import and WP All Export that it's easy to miss an issue that has a limited scope.

Could you please record and share a quick screencast showing the full import process with WP All Import?

Could you please also share your XML feed for the import?

Thanks,
Pierre

April 7, 2026 at 12:18 pm #17954114

nas-luxuryR

Hi,

This is xml-feed for the Company Website

hidden link

Thanks.

Screenshot 2026-04-07 161103.png
April 8, 2026 at 11:49 am #17956719

Pierre Sylvestre
Supporter

Languages: English (English ) French (Français ) Portuguese (Brazil) (Português )

Timezone: America/Sao_Paulo (GMT-03:00)

@nas-luxuryR,

Unfortunately, I am missing some information to simulate the same import workflow locally (maybe additional addons).

Could you please grant me a temporary access to your WordPress admin? (see Privacy and Security when Providing Debug Information for Support)

Please share a link to your import entity in the "Manage imports" menu.

Thanks,
Pierre

April 9, 2026 at 5:34 am #17958012

nas-luxuryR

Hi Pierre,

Good morning.

Currently, the properties are still not being imported via WP All Import, and this is seriously affecting our business since our listings depend entirely on this feed.

We kindly ask you to please prioritize this issue and investigate immediately.
We would really appreciate an urgent resolution.

Thanks

Screenshot 2026-04-09 092114.png
April 9, 2026 at 6:11 am #17958038

nas-luxuryR

Could you please respond faster or assign me to another support agent? This issue is extremely important to our business, and I’ve been waiting for more than a day without any response, which is very frustrating.

At the moment, all our properties have disappeared from our website. Could you please clarify what has happened and whether any action has been taken on your side?

I would appreciate your urgent response, or kindly transfer me to an agent who can assist more promptly.

Thank you.

April 9, 2026 at 3:16 pm #17959933

Pierre Sylvestre
Supporter

Languages: English (English ) French (Français ) Portuguese (Brazil) (Português )

Timezone: America/Sao_Paulo (GMT-03:00)

Hi @nas-luxuryR,

I am working on your issue, but the hardest part is to replicate and isolate the problem. Your site is quite big with a number of specific configuration.

First of all, as a curative action, I can help you to delete all existing translated properties that are not attached to an original English one anymore (means the English source has been removed).

To do that, you can run the following SQL request:

DELETE p, pm, t
FROM wp_icl_translations t
LEFT JOIN wp_icl_translations src_t
	ON src_t.trid = t.trid
	AND src_t.language_code = t.source_language_code
LEFT JOIN wp_posts src_p
	ON src_p.ID = src_t.element_id
LEFT JOIN wp_posts p
	ON p.ID = t.element_id
LEFT JOIN wp_postmeta pm
	ON pm.post_id = t.element_id
WHERE t.element_type = 'post_property'
	AND t.language_code <> 'en'
	AND t.source_language_code IS NOT NULL
    AND src_t.language_code IS NULL

Before running this request, please take a full backup of your site.

If you need help to run this request, let me know and I will apply it on your site.

Once this is fixed, and if you still need help, we can monitor and check if new imports are working as expected or not.

Thanks,
Pierre