How to remove SKU on the product page of Magento 2.3.7?

To remove it just from the view, copy the following file: vendor\magento\module-catalog\view\frontend\layout\catalog_product_view.xml to your template folder, which should be something like this:   app\design\frontend\[your_theme]\theme\Magento_Catalog\layout\catalog_product_view.xml Then remove the following block of code (should be somewhere around line 44) <code> <block class=”Magento\Catalog\Block\Product\View\Description”… Read moreHow to remove SKU on the product page of Magento 2.3.7?

How to change the locale code for a theme in magento 2?

Say https://www.eyewearuk.com/,  the theme outputs all the static file to: <link rel=”stylesheet” type=”text/css” media=”all” href=”https://www.eyewearuk.com/pub/static/version1618304858/frontend/Mgs/cheapglasses/en_US/mage/calendar.css” /> <link rel=”stylesheet” type=”text/css” media=”all” href=”https://www.eyewearuk.com/pub/static/version1618304858/frontend/Mgs/cheapglasses/en_US/MGS_Mpanel/css/owl.carousel.css” /> <link rel=”stylesheet” type=”text/css” media=”all” href=”https://www.eyewearuk.com/pub/static/version1618304858/frontend/Mgs/cheapglasses/en_US/MGS_Mpanel/css/owl.theme.min.css” /> <link rel=”stylesheet” type=”text/css” media=”all” href=”https://www.eyewearuk.com/pub/static/version1618304858/frontend/Mgs/cheapglasses/en_US/MGS_Mpanel/css/animate.css” /> <link rel=”stylesheet” type=”text/css” media=”all” href=”https://www.eyewearuk.com/pub/static/version1618304858/frontend/Mgs/cheapglasses/en_US/MGS_Mpanel/css/magnific-popup.css” />… Read moreHow to change the locale code for a theme in magento 2?

How to Set height of the categories meta box in post dashboard of WordPress?

Say we are trying to modify the height of the categories meta box of www.glassescanada.com, edit functions.php, which is under: https://www.glassescanada.com/wp-includes/, add the following code at the end of  functions.php function change_cat_meta_postbox_css(){ ?> <style type=”text/css”> .wp-tab-panel, .categorydiv div.tabs-panel, .customlinkdiv div.tabs-panel,… Read moreHow to Set height of the categories meta box in post dashboard of WordPress?