{"id":328362,"date":"2022-04-09T06:45:52","date_gmt":"2022-04-09T06:45:52","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=328362"},"modified":"2025-12-11T04:52:03","modified_gmt":"2025-12-11T04:52:03","slug":"how-to-create-your-own-theme-in-hyva-theme","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/","title":{"rendered":"How to create your own theme in Hyv\u00e4 Theme?"},"content":{"rendered":"\n<p>Hyv\u00e4 Theme is a modern frontend theme\/framework for Magento 2 \u2014 rebuilt from the ground up to provide a lightning-fast, minimal, developer-friendly storefront experience.<\/p>\n\n\n\n<p>Key aspects:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Instead of relying on Magento\u2019s older frontend stack (with many JS\/CSS dependencies, complex UI-Components, RequireJS, Knockout, etc.), Hyv\u00e4 uses a much simpler and modern tech stack: Tailwind CSS for styling + Alpine.js for interactivity.<\/li>\n\n\n\n<li>It embraces clean and lean code \u2014 minimizing unnecessary assets, reducing page weight and HTTP requests, which significantly improves frontend performance.<\/li>\n\n\n\n<li>Hyv\u00e4 aims to deliver a storefront that passes modern web performance standards, including good Core Web Vitals, better page-speed scores, smoother browsing, and improved user experience.<\/li>\n<\/ul>\n\n\n\n<p>Before creating your own custom Hyv\u00e4 theme, you must install the base Hyv\u00e4 Theme in your Magento 2 project.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"requirements\">Requirements<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Magento&nbsp;<code>2.4.4-p9<\/code>,&nbsp;<code>2.4.5-p8<\/code>,&nbsp;<code>2.4.6-p7<\/code>,&nbsp;<code>2.4.7-p1<\/code>&nbsp;or higher<\/li>\n\n\n\n<li>A Hyv\u00e4 packagist.com key<\/li>\n\n\n\n<li>PHP&nbsp;<code>7.4<\/code>,&nbsp;<code>8.1<\/code>,&nbsp;<code>8.2<\/code>,&nbsp;<code>8.3<\/code>&nbsp;or&nbsp;<code>8.4<\/code><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installation\">Installation \u2013 Hyv\u00e4 Theme Is Now Open Source<\/h2>\n\n\n\n<p>You need a valid Hyv\u00e4 packagist.com key.<\/p>\n\n\n\n<p>Get a free key by registering an account at&nbsp;<a href=\"https:\/\/hyva.io\/\" target=\"_blank\" rel=\"noreferrer noopener\">hyva.io<\/a>&nbsp;and creating one from your account dashboard.<\/p>\n\n\n\n<p>You will receive instruction like the following after creating your packagist.com key:<br><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\"># this command adds your key to your projects auth.json file\n# replace yourLicenseAuthentificationKey with your own key\ncomposer config --auth http-basic.hyva-themes.repo.packagist.com token yourLicenseAuthentificationKey\n# replace yourProjectName with your project name\ncomposer config repositories.private-packagist composer https:\/\/hyva-themes.repo.packagist.com\/yourProjectName\/<\/pre>\n\n\n\n<p>Run those commands, and then, install the theme and its dependencies with composer:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">composer require hyva-themes\/magento2-default-theme<\/pre>\n\n\n\n<p>Next, run the Magento installer:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">bin\/magento setup:upgrade<\/pre>\n\n\n\n<p>Navigate to the Content &gt; Design &gt; Configuration admin section and activate the hyva\/default theme<\/p>\n\n\n\n<p>There are two ways to create  your own theme<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>By creating a child theme like default Magento works<\/li>\n\n\n\n<li>By duplicating <code>hyva-themes\/magento2-default-theme<\/code>&nbsp;and modify that<\/li>\n<\/ol>\n\n\n\n<p>As a beginner, we will go for the first way and later we will create a separate blog for the second approach <\/p>\n\n\n\n<p>To create a child theme is <a href=\"https:\/\/store.webkul.com\/Magento-2\/hyva-theme-extensions.html\">Hyv\u00e4 theme<\/a> is slightly the same as the default <a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Magento 2<\/a> except for adding a few more steps in Hyv\u00e4 will see in this blog.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1<\/h2>\n\n\n\n<p>Create a folder <code>Webkul\/hyva_child<\/code> inside the &#8220;app\/design\/frontend&#8221;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2<\/h2>\n\n\n\n<p>create a <code>theme.xml file<\/code> inside the folder path &#8220;<code>app\/design\/frontend\/Webkul\/hyva_child<\/code>&#8221; and in the theme.xml file add the few lines of code <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;theme xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:Config\/etc\/theme.xsd&quot;&gt;\n    &lt;title&gt;Webkul Hyva Theme&lt;\/title&gt;\n    &lt;parent&gt;Hyva\/default&lt;\/parent&gt;\n    &lt;media&gt;\n        &lt;preview_image&gt;media\/preview.png&lt;\/preview_image&gt;\n    &lt;\/media&gt;\n&lt;\/theme&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3<\/h2>\n\n\n\n<p>create a <code>registration.php file<\/code> inside the folder path &#8220;<code>app\/design\/frontend\/Webkul\/hyva_child<\/code>&#8221; and in the registration.php file add the few lines of code<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n \n\\Magento\\Framework\\Component\\ComponentRegistrar::register(\n \n  \\Magento\\Framework\\Component\\ComponentRegistrar::THEME,\n \n  &#039;frontend\/Webkul\/hyva_child&#039;,\n \n  __DIR__\n);<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4<\/h2>\n\n\n\n<p>create a <code>composer.json file<\/code> inside the folder path &#8220;<code>app\/design\/frontend\/Webkul\/hyva_child<\/code>&#8221; and in the composer.json file add the few lines of code<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">{\n    &quot;name&quot;: &quot;webkul\/theme-frontend-hyva-child&quot;,\n    &quot;description&quot;: &quot;N\/A&quot;,\n    &quot;require&quot;: {\n        &quot;php&quot;: &quot;~5.5.0|~5.6.0|~7.0.0&quot;,\n        &quot;magento\/luma&quot;: &quot;100.0.*&quot;,\n        &quot;magento\/framework&quot;: &quot;100.0.*&quot;\n    },\n    &quot;type&quot;: &quot;magento2-theme&quot;,\n    &quot;version&quot;: &quot;2.2.1&quot;,\n    &quot;license&quot;: &#091;\n        &quot;OSL-3.0&quot;,\n        &quot;AFL-3.0&quot;\n    ],\n    &quot;autoload&quot;: {\n        &quot;files&quot;: &#091;\n            &quot;registration.php&quot;\n        ]\n    }\n}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5<\/h2>\n\n\n\n<p>Copy <code>web<\/code> folder from <code>vendor\/hyva-themes\/magento2-default-theme\/web\/<\/code> to the app\/design\/frontend\/Webkul\/hyva_child . <\/p>\n\n\n\n<p>Because in later you will do customize css for that it will be required to add in purgeCSS. <\/p>\n\n\n\n<p>If you are not aware of TailwindCSS please check this blog <a href=\"https:\/\/webkul.com\/blog\/working-with-tailwindcss-in-hyva-theme\/\" target=\"_blank\" rel=\"noreferrer noopener\">Working with TailwindCSS in Hyv\u00e4&nbsp; Theme<\/a>.<\/p>\n\n\n\n<p>Also check the tutorials of TailwindCSS by creators : &#8211; <a href=\"https:\/\/www.youtube.com\/playlist?list=PL5f_mz_zU5eXWYDXHUDOLBE0scnuJofO0\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.youtube.com\/playlist?list=PL5f_mz_zU5eXWYDXHUDOLBE0scnuJofO0<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6<\/h2>\n\n\n\n<p>You must configure the parent theme path in the&nbsp;<code>web\/tailwind\/tailwind.config.js<\/code>&nbsp;file of your child theme. <\/p>\n\n\n\n<p>To do this check this code in <\/p>\n\n\n\n<p><code>app\/design\/frontend\/Webkul\/hyva_child\/web\/tailwind\/tailwind.config.js<\/code> and just uncomment the line below the commented line written with &#8220;parent theme in Vendor&#8221;.<\/p>\n\n\n\n<p> if this line is not available then add this line as shown in the code below.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">module.exports = {\n  ...\n  \/\/ keep the original settings from tailwind.config.js\n  \/\/ only add the path below to the purge &gt; content settings\n  ...\n  purge: {\n    content: &#091;\n        ...\n        \/\/ parent theme in Vendor\n        &#039;..\/..\/..\/..\/..\/..\/..\/vendor\/hyva-themes\/magento2-default-theme\/**\/*.phtml&#039;,\n        ...\n    ]\n  }\n}\n...<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7<\/h2>\n\n\n\n<p>Go to the Admin Dashboard  Content-&gt;Design-&gt;Configuration and select your child theme Hyva Webkul from the dropdown and save and Flush the cache.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"620\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-1200x620.webp\" alt=\"Hyva Child Theme Configuration\" class=\"wp-image-516328\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-1200x620.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-300x155.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-250x129.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-768x397.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1.webp 1425w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8<\/h2>\n\n\n\n<p>Take a backup of pub\/static folder for images, CSS, and js. Also, delete the static folder and run the static content deploy<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">php bin\/magento setup:static-content:deploy<\/pre>\n\n\n\n<p>Extending your theme works just like with default Magento Themes. You can override .pthml files and extend layout xml the same way as you could with a default Magento theme based on Luma.<\/p>\n\n\n\n<p>Previous blog  <a href=\"https:\/\/webkul.com\/blog\/working-with-tailwindcss-in-hyva-theme\/\" target=\"_blank\" rel=\"noreferrer noopener\">Working with TailwindCSS in Hyv\u00e4&nbsp; Theme<\/a><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hyv\u00e4 Theme is a modern frontend theme\/framework for Magento 2 \u2014 rebuilt from the ground up to provide a lightning-fast, minimal, developer-friendly storefront experience. Key aspects: Before creating your own custom Hyv\u00e4 theme, you must install the base Hyv\u00e4 Theme in your Magento 2 project. Requirements Installation \u2013 Hyv\u00e4 Theme Is Now Open Source You <a href=\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":422,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[],"class_list":["post-328362","post","type-post","status-publish","format-standard","hentry","category-magento-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to create your own theme in Hyv\u00e4 Theme? - Webkul Blog<\/title>\n<meta name=\"description\" content=\"How to create your own theme in Hyv\u00e4 Theme by creating child theme\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create your own theme in Hyv\u00e4 Theme? - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"How to create your own theme in Hyv\u00e4 Theme by creating child theme\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-09T06:45:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-11T04:52:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-1200x620.webp\" \/>\n<meta name=\"author\" content=\"Shreyas Vispute\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Shreyas Vispute\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/\"},\"author\":{\"name\":\"Shreyas Vispute\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/d4ed4835e93c06b089c32370181b1033\"},\"headline\":\"How to create your own theme in Hyv\u00e4 Theme?\",\"datePublished\":\"2022-04-09T06:45:52+00:00\",\"dateModified\":\"2025-12-11T04:52:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/\"},\"wordCount\":597,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-1200x620.webp\",\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/\",\"name\":\"How to create your own theme in Hyv\u00e4 Theme? - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-1200x620.webp\",\"datePublished\":\"2022-04-09T06:45:52+00:00\",\"dateModified\":\"2025-12-11T04:52:03+00:00\",\"description\":\"How to create your own theme in Hyv\u00e4 Theme by creating child theme\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1.webp\",\"width\":1425,\"height\":736},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create your own theme in Hyv\u00e4 Theme?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/d4ed4835e93c06b089c32370181b1033\",\"name\":\"Shreyas Vispute\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c979339c2c52bba9ace844f53c8b0199863bb13db9c69398cf7e8f9ac338524b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c979339c2c52bba9ace844f53c8b0199863bb13db9c69398cf7e8f9ac338524b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Shreyas Vispute\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/shreyas-vilas522\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create your own theme in Hyv\u00e4 Theme? - Webkul Blog","description":"How to create your own theme in Hyv\u00e4 Theme by creating child theme","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/","og_locale":"en_US","og_type":"article","og_title":"How to create your own theme in Hyv\u00e4 Theme? - Webkul Blog","og_description":"How to create your own theme in Hyv\u00e4 Theme by creating child theme","og_url":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-04-09T06:45:52+00:00","article_modified_time":"2025-12-11T04:52:03+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-1200x620.webp","type":"","width":"","height":""}],"author":"Shreyas Vispute","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Shreyas Vispute","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/"},"author":{"name":"Shreyas Vispute","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/d4ed4835e93c06b089c32370181b1033"},"headline":"How to create your own theme in Hyv\u00e4 Theme?","datePublished":"2022-04-09T06:45:52+00:00","dateModified":"2025-12-11T04:52:03+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/"},"wordCount":597,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-1200x620.webp","articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/","url":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/","name":"How to create your own theme in Hyv\u00e4 Theme? - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1-1200x620.webp","datePublished":"2022-04-09T06:45:52+00:00","dateModified":"2025-12-11T04:52:03+00:00","description":"How to create your own theme in Hyv\u00e4 Theme by creating child theme","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/04\/custom-hyva-theme-configuration-1.webp","width":1425,"height":736},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-create-your-own-theme-in-hyva-theme\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create your own theme in Hyv\u00e4 Theme?"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/d4ed4835e93c06b089c32370181b1033","name":"Shreyas Vispute","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c979339c2c52bba9ace844f53c8b0199863bb13db9c69398cf7e8f9ac338524b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c979339c2c52bba9ace844f53c8b0199863bb13db9c69398cf7e8f9ac338524b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Shreyas Vispute"},"url":"https:\/\/webkul.com\/blog\/author\/shreyas-vilas522\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/328362","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/422"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=328362"}],"version-history":[{"count":9,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/328362\/revisions"}],"predecessor-version":[{"id":516341,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/328362\/revisions\/516341"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=328362"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=328362"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=328362"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}