Skip Navigation

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 0 replies, has 1 voice.

Last updated by kevinB-74 2 weeks, 3 days ago.

Author Posts
June 6, 2025 at 6:47 am #17112929

kevinB-74

Background of the issue:
I am trying to enable the 'Hide page title' option from Elementor. It works well on the main language page, but it doesn't replicate on translated pages. I don't want to use only CSS because I would have duplicate H1 tags. The issue can be seen on this page: hidden link

Symptoms:
I expected to see no page title in the HTML code, but instead, I got: <h1 class="entry-title">Homepagina v3</h1>

Questions:
Why doesn't the 'Hide page title' option replicate on translated pages?
How can I hide the page title on translated pages without using only CSS?

June 6, 2025 at 7:48 am #17113104

kevinB-74

Works with this piece of code to insert in a snippet :
function ele_disable_page_title( $return ) {
return false;
}

add_filter( 'hello_elementor_page_title', 'ele_disable_page_title' );