Home Forums WoodMart support forum H1 Font Size for single product Titel not working

H1 Font Size for single product Titel not working

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #302460

    iRomeK
    Participant

    Hey guys,

    since your last update, my font size settings won’t work anymore.As you can see in the attachment, to sizes should change. I am using elementor pro as well. Does this affect the settings since the last update?

    You can check the affected product – page above.

    Hope you can help me to bring back a normal size to h1 for mobile (26px not 45px).

    Thank you and best regards,
    iRomeK

    Attachments:
    You must be logged in to view attached files.
    #302508

    Hello,

    Please update the theme to the latest Woodmart 6.1.3 version released now. Also, update the theme plugins as well, I am sure your issue will be solved.

    Best Regards.

    #302636

    iRomeK
    Participant

    Hey,

    installed the new version 6.1.3, cleared cache. Not working at all.
    I have still the font size in mobile, which I set for desktop. The size for mobile is ignored. Stil 45 than 26.

    Best regards,
    iRomeK

    #302672

    Hello,

    Please deactivate all the third party plugins and provide with the admin panel login details of the website.

    Best Regards

    #302675

    iRomeK
    Participant

    Here is access to the staging environment.

    Worked fine till the last 2 updates. Hope you can fix this.

    best regards and thank you,
    iRomeK

    #302715

    Hello,

    I have logged into your website and all the third party plugins are still activated.

    Please deactivate all the third party plugins and tell me then we will troubleshoot with the theme plugins.

    Best Regards

    #302718

    iRomeK
    Participant

    all deactivated. Problem still there.

    Thank you

    #303014

    Hello,

    I have tried to login to your website and it is redirecting to the 404 page.

    Screenshot for Clarification: https://gyazo.com/76eec39dd87d829eaa9dc2ce15548aeb

    Please fix this issue to let me assist you further.

    Regards.
    Xtemos Studios.

    #303016

    Artem Temos
    Keymaster

    Hello,

    It seems to be a bug in our theme. In order to fix it, you need to edit the file “woodmart/inc/classes/Themesettingscss.php” and replace the following code

    private function get_all_css( $preset_id = '' ) {
        $options    = Options::get_instance();
        $css_parser = CSSParser::get_instance();
        $options->load_defaults();
        $options->load_options();
        $options->load_presets( $preset_id );
        $options->override_options_from_meta();
        $options->setup_globals();
        $css_index = $css_parser->ParseCSS( $options->get_css_output() );
        $css       = $css_parser->GetCSS( $css_index );
        $css .= $this->get_theme_settings_css();
        $css .= $this->get_icons_font_css();
        $css .= $this->get_custom_fonts_css();
        $css .= $this->get_custom_css();
        return apply_filters( 'woodmart_get_all_theme_settings_css', $css );
    }

    with this one

    private function get_all_css( $preset_id = '' ) {
        $options = Options::get_instance();
        $options->load_defaults();
        $options->load_options();
        $options->load_presets( $preset_id );
        $options->override_options_from_meta();
        $options->setup_globals();
        $css = $options->get_css_output();
        $css .= $this->get_theme_settings_css();
        $css .= $this->get_icons_font_css();
        $css .= $this->get_custom_fonts_css();
        $css .= $this->get_custom_css();
        return apply_filters( 'woodmart_get_all_theme_settings_css', $css );
    }

    Kind Regards

    #303510

    iRomeK
    Participant

    Hello and thanks for the code.

    I replaced it but nothing has happen. The font size is still not changing on mobile.

    Best regards,
    iRomeK

    #303526

    Artem Temos
    Keymaster

    Please, send us your FTP access so we can check this ourselves.

    #303530

    iRomeK
    Participant

    Credential for you.

    #303547

    Artem Temos
    Keymaster

    You need to resave Theme Settings after changes in the code.

    #304101

    iRomeK
    Participant

    That worked! Thank you! 🙂

    #304112

    Artem Temos
    Keymaster

    Great, you are welcome!

Viewing 15 posts - 1 through 15 (of 15 total)

The topic ‘H1 Font Size for single product Titel not working’ is closed to new replies.