- Status
- Resolved by author
- Related plugin/theme
- Premium Addons for Elementor
- Topic tags
- Compatibility
Overview of the issue
When using the Vertical Scroll Widget provided by Premium Addons for Elementor to display an Elementor template, page translations do not display content as expected. The translated pages appear empty, lacking the intended content.
Workaround
Please, make sure of having a full backup of your site before proceeding.
- Open the …/wp-content/plugins/premium-addons-for-elementor/includes/class-premium-template-tags.php file
- Look for line 140.
- Replace:
$args = array( 'post_type' => 'elementor_library', 'post_status' => 'publish', 'posts_per_page' => 1, 'title' => $title, //'suppress_filters' => true, );
- For:
$args = array( 'post_type' => 'elementor_library', 'post_status' => 'publish', 'posts_per_page' => 1, 'title' => $title, 'suppress_filters' => true, );