how to edit homepage

If the theme doesn’t have a dedicated admin page for customizing home page, most probably that text should be customizable via WordPress customizer:

CSS in child theme isn’t working properly

You’ll have to enter that code at the start of the functions.php file in your child theme to include the parent theme’s style.css file <?php add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ ); function my_theme_enqueue_styles() { wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ ); } visit this page for more information

How do I remove search bar that isn’t a widget?

You can that by css : Appearance -> Customize -> Additional CSS Paste this code AFTER all the contents .main-navigation .menu-item-search { display: none; } Save You can also do that by adding this code of line in the bottom most part of the functions. Login to Dashboard Go to Appearance -> Editor Click Theme … Read more

Theme-based character encoding issue

The issue resides within the CSS. I found the style block below baked in to the base stylesheet. Font-feature-settings, “gives you control over advanced typographic features in OpenType fonts.” “liga” refers to ligatures and dlig refers to discretionary ligatures. Both of which are included in OpenType font sets. https://developer.mozilla.org/en-US/docs/Web/CSS/font-feature-settings https://css-tricks.com/almanac/properties/f/font-feature-settings/ p { -webkit-font-feature-settings: “liga”, “dlig”; … Read more

SSL errors when I activate my custom theme

I agree with Drupalizeme above. Use phpmyadmin and go to wp-options table. you should see a line for siteurl. make sure it does not say HTTPS. There will most likely be a second line for the wordpress site which you should also check. Those two settings are usually in the Settings > General tab in … Read more