Home › Forums › WoodMart support forum › Custom selector does not work on mobile devices
Custom selector does not work on mobile devices
- This topic has 7 replies, 3 voices, and was last updated 4 years, 2 months ago by
Artem Temos.
-
AuthorPosts
-
June 25, 2021 at 11:54 am #302479
PhilParticipantGood day!
I set a different font for a text block with custom selector.
It is not working on mobile devices, because the text size does not change as it should.
On desktop is doing his job well.Do you have any idea what could have caused the problem?
Thanks in advance,
Phil
Attachments:
You must be logged in to view attached files.June 26, 2021 at 8:09 am #302630
Elise NoromitMemberHello,
Please, provide your site admin access to the private area.
Please confirm the permit for us to deactivate the plugins not related to the theme and switch to the parent theme for the while of checking what may take up to 15 minutes. Please make the full backup of your site.
Best Regards
June 26, 2021 at 7:32 pm #302759
PhilParticipantHello,
you have the permit to deactivate the plugins not related to the theme and switch to the parent theme for the while of checking.
Best Regards
June 27, 2021 at 12:26 pm #302832
Elise NoromitMemberHello,
Please provide the page URL and screen of the block you want to customize.
Best Regards
June 27, 2021 at 2:21 pm #302852
PhilParticipantHello,
you can find the informations in private content.
Kind Regards
Attachments:
You must be logged in to view attached files.June 27, 2021 at 7:27 pm #302883
Elise NoromitMemberHello,
Please give me the screen which title you are trying to edit and please give me the site admin access into the private area.
Best Regards
June 29, 2021 at 12:39 pm #303337
PhilParticipantHello,
okay, let me try it again.
June 29, 2021 at 12:42 pm #303341
Artem TemosKeymasterHello,
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
-
AuthorPosts
- You must be logged in to create new topics. Login / Register