Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed cover layout issue with CPT #4295

Merged
merged 11 commits into from
Oct 28, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ test.describe('Single Post Check', function () {
baseURL,
});
const HIDDEN = [
'.entry-header',
'.nv-thumb-wrap',
'.entry-content',
'.nv-tags-list',
Expand Down
2 changes: 1 addition & 1 deletion inc/customizer/options/layout_single_page.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ public function add_controls() {
* @return bool
*/
public static function is_cover_layout() {
return get_theme_mod( 'neve_page_header_layout' ) === 'cover';
return class_exists( '\Neve_Pro\Admin\Custom_Layouts_Cpt' ) && get_theme_mod( 'neve_page_header_layout' ) === 'cover';
}
}
2 changes: 1 addition & 1 deletion inc/customizer/options/layout_single_post.php
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ public function sanitize_post_elements_ordering( $value ) {
* @return bool
*/
public static function is_cover_layout() {
return get_theme_mod( 'neve_post_header_layout' ) === 'cover';
return class_exists( '\Neve_Pro\Admin\Custom_Layouts_Cpt' ) && get_theme_mod( 'neve_post_header_layout' ) === 'cover';
}

/**
Expand Down
4 changes: 4 additions & 0 deletions inc/views/post_layout.php
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,10 @@ private function get_content_order() {
}
}

if ( ! Layout_Single_Post::is_cover_layout() ) {
$content_order = array_unique( array_merge( array( 'title-meta' ), $content_order ) );
}

return apply_filters( 'neve_layout_single_post_elements_order', $content_order );
}
}
Loading