mxnet
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] Font issues Internet Explorer 11Hello, can anyone give any indications why IE11 is not displaying the Lato webfont and falls back to Arial?
This issue has been resolved by purchasing WPML and using its string translation plugin.
I wonder why the WordPress community doesn’t give any feedback on simple requests like this. For example:
No .po .mo files are required at all. Just purchase a multi-language plugin like WPML and use the translation features of the plugin. Would have saved me 2 days of reading forums -.-Forum: Themes and Templates
In reply to: [Zerif Lite] Remove Zerif Widgets from Admin PanelThe solution is so easy actually. Just wondering why no one here was able to help me, as it turns the out the problem is very simple. I missed only 1 line of code to resolve the problem.
This works flawless:
add_action( 'after_setup_theme', 'kill_zerif_widgets', 11 ); function kill_zerif_widgets(){ remove_action( 'widgets_init', 'zerif_widgets_init' ); remove_action( 'widgets_init', 'zerif_register_widgets' ); }Topic resolved and closed.
Forum: Themes and Templates
In reply to: [Zerif Lite] Remove Zerif Widgets from Admin PanelHello,
I have was able to remove a portion of the widgets by using this code:
add_action( 'after_setup_theme', 'kill_zerif_widgets', 11 ); function kill_zerif_widgets(){ remove_action( 'widgets_init', 'zerif_widgets_init' ); }However, that removes only the standard widget areas like footer widgets or search. How do I need to modify the above code, so it removes the following widgets and widget areas:
Zerif – Clients widget
Zerif – Our focus widget
Zerif – Team member widget
Zerif – Testimonial widgetForum: Themes and Templates
In reply to: [Theme: Zerif Lite] Smooth Scroll Broken – How to fixHello Support,
it seems that issue is caused only when the WP-Admin toolbar is visible. The page scrolls correctly when I’m not signed in as admin.
However, it seems only to work on links in the nav menu.
I have some other links in my content jumping to the contact section. They do not smooth scroll. Do I need to specify a CSS class or something for those links, so they also use the smooth scrolling?
Forum: Themes and Templates
In reply to: WordPress Theme Creation – Help Required.was easier to achieve than expected!
got it workingForum: Themes and Templates
In reply to: [Theme: Zerif Lite] Require help with several customizationsI was able to fix most of the CSS issues by trial and error.
However, I still have problems with the child theme functions.php. Please refer to my post in this thread: https://ww.wp.xz.cn/support/topic/our-team-section-1?replies=5
Forum: Themes and Templates
In reply to: [Zerif Lite] Our Team sectionHello Community,
I am facing the same issue and need to customize the code in Zerif’s functions.php.
I am using a Zerif Child theme with a custom functions.php. My child theme was created by following this tutorial http://docs.themeisle.com/article/14-how-to-create-a-child-theme, Method 1., ao my child themes functions.php looks exactly as shown in the tutorial.
Questions
1. Do I need to copy the whole functions.php from Zerif theme folder to my child theme, or only the parts I need to change?2. Can someone please provide examples or tutorials, how the child themes functions.php need to look like in case I can copy only the changed parts in it.
3. In case I need to copy the complete functions.php from Zerif to my child theme, how will this affect future theme updates? In case a official Zerif theme update is released and makes changes to functions.php, how will these changes be implemented to my child theme?