Have to tweak the theme to my design and speed. So first step – do it via a child theme.
Have setup this via plugin
Child theme can be done manually too
- Create a folder for your child theme (e.g.,
mytheme-child) in thewp-content/themesdirectory. - Inside the folder, create a
style.cssfile with the following code:/* Theme Name: MyTheme Child Template: mytheme */Replace
mythemewith the folder name of your parent theme. - Create a
functions.phpfile in the child theme folder and add this code:<?php function mytheme_child_enqueue_styles() { wp_enqueue_style('parent-style', get_template_directory_uri() . '/style.css'); } add_action('wp_enqueue_scripts', 'mytheme_child_enqueue_styles'); - Activate the child theme from Appearance > Themes.