Closed kishanjasani closed 4 years ago
Current behavior: The title is not hidden on a single page even if we select to hide it from the meta box.
In the template-parts/components/blog/entry-header.php change class name from hide to bootstrap classd-none
template-parts/components/blog/entry-header.php
hide
d-none
$heading_class = ! empty( $hide_title ) && 'yes' === $hide_title ? 'd-none' : '';
👍 Done. Thanks @kishanjasani
Current behavior: The title is not hidden on a single page even if we select to hide it from the meta box.
In the
template-parts/components/blog/entry-header.php
change class name fromhide
to bootstrap classd-none
$heading_class = ! empty( $hide_title ) && 'yes' === $hide_title ? 'd-none' : '';