Rezan Ferdous
Rezan Ferdous

Reputation: 161

Where does elementor stores the data from the content that is created from the frontend view?

I am trying to change a value/text in page created by elementor page builder plugin that exists on around 400 pages. I have edited the database (wp_posts) with the right values but it's not changed on the front end. The values are still the old values on the pages. It almost seems like something is being cached somewhere, but I do not have any caching currently enabled.

If I completely disable elementor and elementor pro. The correct values are shown. If I re-enable elementor the old incorrect values are shown again.

Does anyone know where does elementor stores the data from the content that is created from the frontend view? In the database (where?) in files? (where?) Thanks so much!!

Upvotes: 16

Views: 22456

Answers (1)

Ahmer WPCODER110
Ahmer WPCODER110

Reputation: 451

Elementor stores its data in the postmeta table ({wp_prefix}postmeta), where {wp_prefix} represents the prefix assigned during the WordPress installation (commonly wp_). For each page or post ID, the page data is stored in the meta key _elementor_data.

Upvotes: 27

Related Questions