Error Message – Cannot login to WordPress

The answer is in the error message – it’s the ‘bbp-style-pack’ plugin. Temporarily rename that plugin folder (in the wp-content/plugins folder) to disable it. Then, after you log in as admin, check the plugin version to see if it is current. It current, delete the plugin – you don’t need that hassle.

WooCommerce: I Need to hide my page title/header (including menu) from all the WooCommerce related product pages, such as category and keyword pages

Take a look at the body class tags. This will help you further define your CSS selectors to target the elements you want to hide. In this use case, you can a single CSS rule to hide the header on each and every woocommerce page. Here is what I would use in your case .woocommerce … Read more

WordPress mobile and desktop header problems [closed]

The problem either in your theme setting or in css. if the theme setting try make header backround #000 on mobile and align logo center. So that will how your site look on mobile if you write custom css, here is the solution @media screen and (max-width: 767px) { #masthead_TesseractTheme .site-branding { text-align: center !important; … Read more

How to get customable image header?

Add the below code in functions.php File of your theme. It will tells your theme to support custom headers: $defaults = array( ‘default-image’ => ”, ‘width’ => 0, ‘height’ => 0, ‘flex-height’ => false, ‘flex-width’ => false, ‘uploads’ => true, ‘random-default’ => false, ‘header-text’ => true, ‘default-text-color’ => ”, ‘wp-head-callback’ => ”, ‘admin-head-callback’ => ”, … Read more

CSS does not take effects and it doesn’t show in inspect [closed]

This is the relevant section of CSS in your stylesheet: /*————————————————————– ## Uling dini ke beten, Bapak Ngelah olah2an. Kangguang deen malu! ————————————————————–*/ /*————————————————————– ## Header ————————————————————–* .site-header { background-color: #473C93; } #branding-logo { float: left; width: 50px; height: auto; } /*————————————————————– ## Menus ————————————————————–*/ If you look closely you’ll see that the CSS comment … Read more