Home › Forums › WoodMart support forum › Missing page title › Reply To: Missing page title
January 6, 2023 at 4:03 pm
#433607
steen.r.nielsen
Participant
No cant have access. I put this code for now on the page.php if you have a more elegant solution please.
<?php if ((get_post_type() === 'page') && ( ! Elementor\Plugin::instance()->db->is_built_with_elementor( get_the_ID()) )) {
// PAGE H1 title on non elementor pages
?>
<h1 class="wd-entities-title title post-title"><?php single_post_title(); ?></h1>
<?php
} ?>