From 42e22f5b8b42b9dc831eed58154161de062b9bbb Mon Sep 17 00:00:00 2001 From: Arghadeep Dey Date: Wed, 8 Jul 2026 14:16:02 +0530 Subject: [PATCH 01/93] changing blog archive padding values as per new design --- core/includes/customizer/custom-styles.php | 18 +++++++++--------- ...responsive-container-spacing-customizer.php | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/core/includes/customizer/custom-styles.php b/core/includes/customizer/custom-styles.php index 84c401fc9..8ad244b80 100644 --- a/core/includes/customizer/custom-styles.php +++ b/core/includes/customizer/custom-styles.php @@ -7162,15 +7162,15 @@ function responsive_build_responsive_margin_spacing_css( $margin ) { $blog_outside_container_mobile_padding_bottom = esc_html( get_theme_mod( 'responsive_blog_outside_container_mobile_bottom_padding', 0 ) ); // Inside Container Spacing. - $blog_inside_container_padding_right = esc_html( get_theme_mod( 'responsive_blog_inside_container_right_padding', 15 ) ); - $blog_inside_container_padding_left = esc_html( get_theme_mod( 'responsive_blog_inside_container_left_padding', 15 ) ); - $blog_inside_container_padding_top = esc_html( get_theme_mod( 'responsive_blog_inside_container_top_padding', 15 ) ); - $blog_inside_container_padding_bottom = esc_html( get_theme_mod( 'responsive_blog_inside_container_bottom_padding', 15 ) ); - - $blog_inside_container_tablet_padding_right = esc_html( get_theme_mod( 'responsive_blog_inside_container_tablet_right_padding', 15 ) ); - $blog_inside_container_tablet_padding_left = esc_html( get_theme_mod( 'responsive_blog_inside_container_tablet_left_padding', 15 ) ); - $blog_inside_container_tablet_padding_top = esc_html( get_theme_mod( 'responsive_blog_inside_container_tablet_top_padding', 15 ) ); - $blog_inside_container_tablet_padding_bottom = esc_html( get_theme_mod( 'responsive_blog_inside_container_tablet_bottom_padding', 15 ) ); + $blog_inside_container_padding_right = esc_html( get_theme_mod( 'responsive_blog_inside_container_right_padding', 30 ) ); + $blog_inside_container_padding_left = esc_html( get_theme_mod( 'responsive_blog_inside_container_left_padding', 30 ) ); + $blog_inside_container_padding_top = esc_html( get_theme_mod( 'responsive_blog_inside_container_top_padding', 30 ) ); + $blog_inside_container_padding_bottom = esc_html( get_theme_mod( 'responsive_blog_inside_container_bottom_padding', 30 ) ); + + $blog_inside_container_tablet_padding_right = esc_html( get_theme_mod( 'responsive_blog_inside_container_tablet_right_padding', 30 ) ); + $blog_inside_container_tablet_padding_left = esc_html( get_theme_mod( 'responsive_blog_inside_container_tablet_left_padding', 30 ) ); + $blog_inside_container_tablet_padding_top = esc_html( get_theme_mod( 'responsive_blog_inside_container_tablet_top_padding', 30 ) ); + $blog_inside_container_tablet_padding_bottom = esc_html( get_theme_mod( 'responsive_blog_inside_container_tablet_bottom_padding', 30 ) ); $blog_inside_container_mobile_padding_right = esc_html( get_theme_mod( 'responsive_blog_inside_container_mobile_right_padding', 15 ) ); $blog_inside_container_mobile_padding_left = esc_html( get_theme_mod( 'responsive_blog_inside_container_mobile_left_padding', 15 ) ); diff --git a/core/includes/customizer/settings/class-responsive-container-spacing-customizer.php b/core/includes/customizer/settings/class-responsive-container-spacing-customizer.php index 91e9746c7..d8478ec9d 100644 --- a/core/includes/customizer/settings/class-responsive-container-spacing-customizer.php +++ b/core/includes/customizer/settings/class-responsive-container-spacing-customizer.php @@ -46,7 +46,7 @@ public function customizer_options( $wp_customize ) { // Inside Container. $outside_container_label = __( 'Inside Container (px)', 'responsive' ); - responsive_padding_control( $wp_customize, 'blog_inside_container', 'responsive_blog_layout', 270, 15, 15, 'responsive_not_active_site_style_flat', $outside_container_label ); + responsive_padding_control( $wp_customize, 'blog_inside_container', 'responsive_blog_layout', 270, 30, 30, 'responsive_not_active_site_style_flat', $outside_container_label, 'postMessage', 30, 30, 15, 15 ); $container_spacing_label = esc_html__( 'Spacing', 'responsive' ); responsive_separator_control( $wp_customize, 'single_blog_container_spacing', $container_spacing_label, 'responsive_single_blog_layout', 250 ); From ad739f64e84a884f2faf42b8c6847dc19e30299f Mon Sep 17 00:00:00 2001 From: Arghadeep Dey Date: Tue, 21 Jul 2026 10:50:38 +0530 Subject: [PATCH 02/93] changing default container padding for mobiles to 30px, removing author and folder icons from posts --- core/includes/customizer/custom-styles.php | 8 ++++---- partials/entry/meta.php | 14 +------------- partials/single/meta.php | 14 +------------- 3 files changed, 6 insertions(+), 30 deletions(-) diff --git a/core/includes/customizer/custom-styles.php b/core/includes/customizer/custom-styles.php index 27c4d2c45..517e969d5 100644 --- a/core/includes/customizer/custom-styles.php +++ b/core/includes/customizer/custom-styles.php @@ -7198,10 +7198,10 @@ function responsive_build_responsive_margin_spacing_css( $margin ) { $blog_inside_container_tablet_padding_top = esc_html( get_theme_mod( 'responsive_blog_inside_container_tablet_top_padding', 30 ) ); $blog_inside_container_tablet_padding_bottom = esc_html( get_theme_mod( 'responsive_blog_inside_container_tablet_bottom_padding', 30 ) ); - $blog_inside_container_mobile_padding_right = esc_html( get_theme_mod( 'responsive_blog_inside_container_mobile_right_padding', 15 ) ); - $blog_inside_container_mobile_padding_left = esc_html( get_theme_mod( 'responsive_blog_inside_container_mobile_left_padding', 15 ) ); - $blog_inside_container_mobile_padding_top = esc_html( get_theme_mod( 'responsive_blog_inside_container_mobile_top_padding', 15 ) ); - $blog_inside_container_mobile_padding_bottom = esc_html( get_theme_mod( 'responsive_blog_inside_container_mobile_bottom_padding', 15 ) ); + $blog_inside_container_mobile_padding_right = esc_html( get_theme_mod( 'responsive_blog_inside_container_mobile_right_padding', 30 ) ); + $blog_inside_container_mobile_padding_left = esc_html( get_theme_mod( 'responsive_blog_inside_container_mobile_left_padding', 30 ) ); + $blog_inside_container_mobile_padding_top = esc_html( get_theme_mod( 'responsive_blog_inside_container_mobile_top_padding', 30 ) ); + $blog_inside_container_mobile_padding_bottom = esc_html( get_theme_mod( 'responsive_blog_inside_container_mobile_bottom_padding', 30 ) ); // Outside Container Spacing. $single_blog_outside_container_padding_right = esc_html( get_theme_mod( 'responsive_single_blog_outside_container_right_padding', 15 ) ); diff --git a/partials/entry/meta.php b/partials/entry/meta.php index bff67ae07..00d086c4f 100644 --- a/partials/entry/meta.php +++ b/partials/entry/meta.php @@ -45,7 +45,6 @@ sprintf( ' ', @@ -116,18 +115,7 @@ - - diff --git a/partials/single/meta.php b/partials/single/meta.php index 6cc72b447..d23845123 100644 --- a/partials/single/meta.php +++ b/partials/single/meta.php @@ -40,7 +40,6 @@ echo sprintf( ' ', @@ -108,18 +107,7 @@ - - From 2c8b02d7d7f35751bd80a286e7ccd969f387cee4 Mon Sep 17 00:00:00 2001 From: Arghadeep Dey Date: Wed, 22 Jul 2026 15:28:40 +0530 Subject: [PATCH 03/93] frontend ui improvements --- comments.php | 4 ++-- core/gutenberg/gutenberg-support.php | 2 +- core/includes/customizer/custom-styles.php | 17 ++++++++------ core/includes/customizer/helper.php | 16 +++++++------ ...lass-responsive-blog-layout-customizer.php | 2 +- ...esponsive-container-spacing-customizer.php | 2 +- ...sponsive-single-blog-layout-customizer.php | 4 ++-- ...ass-responsive-site-layouts-customizer.php | 4 ++-- ...class-responsive-typography-customizer.php | 9 +++++++- core/includes/functions-extras.php | 2 +- core/includes/functions.php | 17 +++++++------- .../class-responsive-related-posts.php | 2 +- core/sass/_blog.scss | 7 ++++++ core/sass/_mixins.scss | 4 +++- core/sass/_typography.scss | 7 +++++- functions.php | 18 +++++++++++---- gutenberg-fullwidth.php | 2 +- image.php | 2 +- partials/entry/categories.php | 23 +++++++++++++++++++ partials/entry/content.php | 2 +- partials/entry/meta.php | 4 ++-- partials/page/content.php | 2 +- partials/single/categories.php | 23 +++++++++++++++++++ partials/single/meta.php | 2 +- 24 files changed, 130 insertions(+), 47 deletions(-) create mode 100644 partials/entry/categories.php create mode 100644 partials/single/categories.php diff --git a/comments.php b/comments.php index 97afc269b..9a6c34737 100644 --- a/comments.php +++ b/comments.php @@ -25,8 +25,8 @@ $is_comments_enabled = get_theme_mod( 'responsive_single_blog_comments', Responsive\Core\get_responsive_customizer_defaults( 'responsive_single_blog_comments' ) ); -// Exit early if password protected, comments disabled, or no comments and discussion is off. -if ( post_password_required() || ! $is_comments_enabled || ( ! have_comments() && ! comments_open() && ! pings_open() ) ) { +// Exit early if password protected, comments disabled, or no comments and comments are closed. +if ( post_password_required() || ! $is_comments_enabled || ( ! have_comments() && ! comments_open() ) ) { return; } ?> diff --git a/core/gutenberg/gutenberg-support.php b/core/gutenberg/gutenberg-support.php index ed4d45f94..9f431a742 100644 --- a/core/gutenberg/gutenberg-support.php +++ b/core/gutenberg/gutenberg-support.php @@ -263,7 +263,7 @@ function responsive_gutenberg_customizer_css() { $all_headings_typography = get_theme_mod( 'headings_typography' ); $box_background_image = get_theme_mod( 'responsive_box_background_image_toggle' ) ? esc_url( get_theme_mod( 'responsive_box_background_image' ) ) : null ; - $responsive_container_width = get_theme_mod( 'responsive_container_width', 1140 ); + $responsive_container_width = get_theme_mod( 'responsive_container_width', Responsive\Core\get_responsive_customizer_defaults( 'responsive_container_width' ) ); $responsive_page_content_width = get_theme_mod( 'responsive_page_content_width', Responsive\Core\get_responsive_customizer_defaults( 'page_content_width' ) ); $global_sidebar_position = get_theme_mod( 'responsive_default_sidebar_position', 'no' ); $page_sidebar_setting = get_theme_mod( 'responsive_page_sidebar_position' ); diff --git a/core/includes/customizer/custom-styles.php b/core/includes/customizer/custom-styles.php index 517e969d5..5e892f28b 100644 --- a/core/includes/customizer/custom-styles.php +++ b/core/includes/customizer/custom-styles.php @@ -116,7 +116,7 @@ function responsive_customizer_styles() { $underline_content_links = esc_html( get_theme_mod( 'responsive_underline_content_links', false ) ); // Site custom styles. - $container_max_width = esc_html( get_theme_mod( 'responsive_container_width', 1140 ) ); + $container_max_width = esc_html( get_theme_mod( 'responsive_container_width', Responsive\Core\get_responsive_customizer_defaults( 'responsive_container_width' ) ) ); $logo_custom_width = esc_html( get_theme_mod( 'responsive_logo_width' ) ); $logo_custom_width_tablet = esc_html( get_theme_mod( 'responsive_logo_width_tablet' ) ); $logo_custom_width_mobile = esc_html( get_theme_mod( 'responsive_logo_width_mobile') ); @@ -1121,15 +1121,18 @@ function responsive_customizer_styles() { .post-meta *, .hentry .post-meta a { color:{$meta_text_color}; } - a { + a:not(:where(h1, h2, h3, h4, h5, h6) a) { color:{$link_color}; } + :where(h1, h2, h3, h4, h5, h6) a { + color: inherit; + } .entry-content .woocommerce a.remove:hover { color:{$link_color} !important; border-color:{$link_color}; } - a:hover { - color:{$link_hover_color}; + a:hover:not(:where(h1, h2, h3, h4, h5, h6) a) { + color: {$link_hover_color}; } label, div.wpforms-container-full .wpforms-form .wpforms-field-label, @@ -3798,7 +3801,7 @@ function responsive_customizer_styles() { } // Entry Blog Meta Separator. - $blog_entry_meta_separator = esc_html( get_theme_mod( 'responsive_blog_entry_meta_separator_text', '-' ) ); + $blog_entry_meta_separator = esc_html( get_theme_mod( 'responsive_blog_entry_meta_separator_text', '•' ) ); $custom_css .= " .search .hentry .post-meta > span::after, @@ -3868,7 +3871,7 @@ function responsive_customizer_styles() { } // Entry Blog Meta Separator. - $single_blog_entry_meta_separator = esc_html( get_theme_mod( 'responsive_single_blog_meta_separator_text', '-' ) ); + $single_blog_entry_meta_separator = esc_html( get_theme_mod( 'responsive_single_blog_meta_separator_text', '•' ) ); $custom_css .= " .single .hentry .post-meta > span::after { @@ -9009,7 +9012,7 @@ function responsive_build_responsive_margin_spacing_css( $margin ) { $floatingb_addtocart_font_color = esc_html( get_theme_mod( 'responsive_floatingb_addtocart_font_color', '#ffffff' ) ); $floatingb_addtocart_fonthover_color = esc_html( get_theme_mod( 'responsive_floatingb_addtocart_fonthover_color', '#f1f1f1' ) ); $floatingb_width = esc_html( get_theme_mod( 'responsive_width', 'contained' ) ); - $floatingb_container_width = esc_html( get_theme_mod( 'responsive_container_width', 1140 ) ); + $floatingb_container_width = esc_html( get_theme_mod( 'responsive_container_width', Responsive\Core\get_responsive_customizer_defaults( 'responsive_container_width' ) ) ); if ( is_admin_bar_showing() ) { $woocommerce_custom_css .= ' diff --git a/core/includes/customizer/helper.php b/core/includes/customizer/helper.php index f3fc2e6cd..b5c49c743 100644 --- a/core/includes/customizer/helper.php +++ b/core/includes/customizer/helper.php @@ -32,6 +32,7 @@ function responsive_blog_entry_elements() { $elements = apply_filters( 'responsive_blog_entry_elements', array( + 'categories' => esc_html__( 'Categories', 'responsive' ), 'title' => esc_html__( 'Title', 'responsive' ), 'featured_image' => esc_html__( 'Featured Image', 'responsive' ), 'meta' => esc_html__( 'Meta', 'responsive' ), @@ -55,7 +56,7 @@ function responsive_blog_entry_elements() { function responsive_blog_entry_elements_positioning() { // Default sections. - $sections = array( 'title', 'meta', 'featured_image', 'content' ); + $sections = array( 'featured_image', 'categories', 'title', 'meta', 'content' ); // Get sections from Customizer. $sections = get_theme_mod( 'responsive_blog_entry_elements_positioning', $sections ); @@ -83,7 +84,7 @@ function responsive_blog_entry_elements_positioning() { function responsive_blog_entry_meta() { // Default sections. - $sections = array( 'author', 'date', 'categories', 'tag' ); + $sections = array( 'author', 'date', 'tag' ); // Get sections from Customizer. $sections = get_theme_mod( 'responsive_blog_entry_meta', $sections ); @@ -114,6 +115,7 @@ function responsive_blog_single_elements() { $elements = apply_filters( 'responsive_blog_single_elements', array( + 'categories' => esc_html__( 'Categories', 'responsive' ), 'title' => esc_html__( 'Title', 'responsive' ), 'featured_image' => esc_html__( 'Featured Image', 'responsive' ), 'meta' => esc_html__( 'Meta', 'responsive' ), @@ -137,7 +139,7 @@ function responsive_blog_single_elements() { function responsive_blog_single_elements_positioning() { // Default sections. - $sections = array( 'title', 'meta', 'featured_image', 'content' ); + $sections = array( 'categories', 'title', 'meta', 'featured_image', 'content' ); // Get sections from Customizer. $sections = get_theme_mod( 'responsive_blog_single_elements_positioning', $sections ); @@ -210,7 +212,7 @@ function responsive_hamburger_font_size_value() { function responsive_blog_single_meta() { /** Default sections */ - $sections = array( 'author', 'date', 'categories', 'comments', 'tag' ); + $sections = array( 'author', 'date', 'comments', 'tag' ); /** Get sections from Customizer */ $sections = get_theme_mod( 'responsive_blog_single_meta', $sections ); @@ -833,7 +835,7 @@ function responsive_schema_markup( $location ) { */ function responsive_read_more_text( $text ) { - $read_more = get_theme_mod( 'responsive_blog_read_more_text', __( 'Read more »', 'responsive' ) ); + $read_more = get_theme_mod( 'responsive_blog_read_more_text', __( 'Read more →', 'responsive' ) ); if ( '' !== $read_more ) { $text = $read_more; } @@ -873,7 +875,7 @@ function responsive_custom_excerpt_length( $length ) { */ function responsive_post_link( $output_filter = '' ) { - $read_more_text = apply_filters( 'responsive_post_read_more', __( 'Read More »', 'responsive' ) ); + $read_more_text = apply_filters( 'responsive_post_read_more', __( 'Read more →', 'responsive' ) ); $post_link = sprintf( esc_html( '%s' ), @@ -894,7 +896,7 @@ function responsive_post_link( $output_filter = '' ) { * @return html */ function responsive_modify_read_more_link() { - $read_more_text = apply_filters( 'responsive_post_read_more', __( 'Read More »', 'responsive' ) ); + $read_more_text = apply_filters( 'responsive_post_read_more', __( 'Read more →', 'responsive' ) ); return '' . $read_more_text . ''; } } diff --git a/core/includes/customizer/settings/class-responsive-blog-layout-customizer.php b/core/includes/customizer/settings/class-responsive-blog-layout-customizer.php index a49d5ab7e..e51e2d135 100644 --- a/core/includes/customizer/settings/class-responsive-blog-layout-customizer.php +++ b/core/includes/customizer/settings/class-responsive-blog-layout-customizer.php @@ -338,7 +338,7 @@ public function customizer_options( $wp_customize ) { $wp_customize->add_setting( 'responsive_blog_entry_meta_separator_text', array( - 'default' => '-', + 'default' => '•', 'sanitize_callback' => 'wp_check_invalid_utf8', 'type' => 'theme_mod', 'transport' => 'postMessage', diff --git a/core/includes/customizer/settings/class-responsive-container-spacing-customizer.php b/core/includes/customizer/settings/class-responsive-container-spacing-customizer.php index d8478ec9d..d4199e541 100644 --- a/core/includes/customizer/settings/class-responsive-container-spacing-customizer.php +++ b/core/includes/customizer/settings/class-responsive-container-spacing-customizer.php @@ -46,7 +46,7 @@ public function customizer_options( $wp_customize ) { // Inside Container. $outside_container_label = __( 'Inside Container (px)', 'responsive' ); - responsive_padding_control( $wp_customize, 'blog_inside_container', 'responsive_blog_layout', 270, 30, 30, 'responsive_not_active_site_style_flat', $outside_container_label, 'postMessage', 30, 30, 15, 15 ); + responsive_padding_control( $wp_customize, 'blog_inside_container', 'responsive_blog_layout', 270, 30, 30, 'responsive_not_active_site_style_flat', $outside_container_label, 'postMessage', 30, 30, 30, 30 ); $container_spacing_label = esc_html__( 'Spacing', 'responsive' ); responsive_separator_control( $wp_customize, 'single_blog_container_spacing', $container_spacing_label, 'responsive_single_blog_layout', 250 ); diff --git a/core/includes/customizer/settings/class-responsive-single-blog-layout-customizer.php b/core/includes/customizer/settings/class-responsive-single-blog-layout-customizer.php index bffdd7ae1..2da865485 100644 --- a/core/includes/customizer/settings/class-responsive-single-blog-layout-customizer.php +++ b/core/includes/customizer/settings/class-responsive-single-blog-layout-customizer.php @@ -61,7 +61,7 @@ public function customizer_options( $wp_customize ) { 'responsive_comments_layout', array( 'title' => esc_html__( 'Comments', 'responsive' ), - 'panel' => 'responsive_blog', + 'panel' => 'responsive_post_types', 'priority' => 24, ) ); @@ -329,7 +329,7 @@ public function customizer_options( $wp_customize ) { $wp_customize->add_setting( 'responsive_single_blog_meta_separator_text', array( - 'default' => '-', + 'default' => '•', 'sanitize_callback' => 'wp_check_invalid_utf8', 'type' => 'theme_mod', 'transport' => 'postMessage', diff --git a/core/includes/customizer/settings/class-responsive-site-layouts-customizer.php b/core/includes/customizer/settings/class-responsive-site-layouts-customizer.php index e0f6a7b20..451ae46d5 100644 --- a/core/includes/customizer/settings/class-responsive-site-layouts-customizer.php +++ b/core/includes/customizer/settings/class-responsive-site-layouts-customizer.php @@ -141,7 +141,7 @@ public function customizer_options( $wp_customize ) { // Container Width. $container_width_label = __( 'Container Width (px)', 'responsive' ); - responsive_drag_number_control( $wp_customize, 'container_width', $container_width_label, 'responsive_layout', 20, 1140, 'responsive_active_site_layout_contained', 1500, 768, 'postMessage' ); + responsive_drag_number_control( $wp_customize, 'container_width', $container_width_label, 'responsive_layout', 20, 1340, 'responsive_active_site_layout_contained', 1500, 768, 'postMessage' ); if ( $wp_customize->get_control( 'responsive_container_width' ) ) { $wp_customize->get_control( 'responsive_container_width' )->description = __( 'Note: This setting applies to Desktop devices only.', 'responsive' ); } @@ -162,7 +162,7 @@ public function customizer_options( $wp_customize ) { // Box Radius. $box_radius_label = __( 'Box Radius (px)', 'responsive' ); - responsive_radius_control( $wp_customize, 'box', 'responsive_layout', 50, 8, 8, 'responsive_not_active_site_style_flat', $box_radius_label ); + responsive_radius_control( $wp_customize, 'box', 'responsive_layout', 50, 4, 4, 'responsive_not_active_site_style_flat', $box_radius_label ); // responsive_number_control( $wp_customize, 'box_radius', $box_radius_label, 'responsive_layout', 50, 0, 'responsive_not_active_site_style_flat' ); diff --git a/core/includes/customizer/settings/class-responsive-typography-customizer.php b/core/includes/customizer/settings/class-responsive-typography-customizer.php index a7bc79a9e..7c7586658 100644 --- a/core/includes/customizer/settings/class-responsive-typography-customizer.php +++ b/core/includes/customizer/settings/class-responsive-typography-customizer.php @@ -68,6 +68,7 @@ public function elements() { 'priority' => 2, 'exclude' => array( 'font-color' ), 'defaults' => array( + 'font-family' => 'Inter', 'font-size' => '16px', 'font-weight' => '400', 'line-height' => '1.75', @@ -106,7 +107,9 @@ public function elements() { 'priority' => 9, 'exclude' => array( 'font-color' ), 'defaults' => array( - 'font-size' => '26px', + 'font-family' => 'Inter', + 'font-size' => '30px', + 'font-weight' => '600', 'line-height' => '1.25', 'text-transform' => 'inherit', ), @@ -165,6 +168,7 @@ public function elements() { 'priority' => 19, 'exclude' => array( 'font-color' ), 'defaults' => array( + 'font-family' => 'Inter', 'font-size' => '12px', 'line-height' => '1.75', 'text-transform' => 'uppercase', @@ -199,6 +203,7 @@ public function elements() { 'priority' => 14, 'exclude' => array( 'font-color' ), 'defaults' => array( + 'font-family' => 'Inter', 'font-size' => '20px', 'line-height' => '1', 'letter-spacing' => '0', @@ -211,6 +216,7 @@ public function elements() { 'priority' => 15, 'exclude' => array( 'font-color' ), 'defaults' => array( + 'font-family' => 'Inter', 'font-size' => '13px', 'line-height' => '1.25', 'letter-spacing' => '0', @@ -254,6 +260,7 @@ public function elements() { 'priority' => 110, 'active_callback' => 'responsive_disabled_main_menu', 'defaults' => array( + 'font-family' => 'Inter', 'font-size' => '16px', 'font-weight' => '600', 'line-height' => '1.75', diff --git a/core/includes/functions-extras.php b/core/includes/functions-extras.php index eff5a78f1..438da04ad 100644 --- a/core/includes/functions-extras.php +++ b/core/includes/functions-extras.php @@ -132,7 +132,7 @@ function responsive_read_more() { global $post; if ( is_object( $post ) ) { if ( 'product' !== $post->post_type ) { - return ''; + return ''; } } } diff --git a/core/includes/functions.php b/core/includes/functions.php index fd3239f00..1ca3a8c49 100644 --- a/core/includes/functions.php +++ b/core/includes/functions.php @@ -822,7 +822,7 @@ function responsive_post_meta_data() {